From 3a73f3fbdeb75571c7da4816dee3e7a46391577e Mon Sep 17 00:00:00 2001 From: Vladislav Khorev Date: Thu, 21 May 2026 11:48:18 +0300 Subject: [PATCH] Improved pathfinding logic --- PATHFINDING.md | 260 + resources/config2/gameobjects.json | 186 - resources/config2/gameobjects2.json | 176 - .../config2/gameobjects_uni_exterior.json | 14 +- .../config2/gameobjects_uni_interior.json | 16 +- .../interactive_objects_uni_interior.json | 4 +- resources/config2/npcs.json | 99 - resources/config2/npcs2.json | 125 - resources/config2/npcs_dorm.json | 14 +- resources/config2/npcs_uni_interior.json | 14 +- resources/config2/teleports2.json | 30 - ...ports.json => teleports_uni_interior.json} | 0 resources/config2/trigger_zones2.json | 4 - .../config2/trigger_zones_uni_interior.json | 2 +- .../dialogue/uni_interior_dialogues.json | 148 +- resources/first_cutscene.png | 3 - resources/portraits/elder_bor_neutral.png | 3 - resources/second_cutscene.png | 3 - resources/start_uni_interior.lua | 46 +- resources/w/girlfriend/Girl_Base_color.png | 3 + resources/w/girlfriend/girlfriend_idle002.txt | 122367 +++++++++++++++ resources/w/girlfriend/girlfriend_idle003.txt | 116120 ++++++++++++++ resources/w/girlfriend/girlfriend_walk001.txt | 114287 ++++++++++++++ resources/w/girlfriend/girlfriend_walk003.txt | 104689 ++++++++++++ resources/w/interior/computer001_002.txt | 182 - resources/w/interior/computer001_004.txt | 172 + resources/w/interior/computer_texture002.png | 3 + src/Character.cpp | 22 + src/Character.h | 14 + src/Game.cpp | 4 +- src/Location.cpp | 46 +- src/Location.h | 1 + src/ScriptEngine.cpp | 10 +- src/items/GameObjectLoader.cpp | 9 +- src/navigation/PathFinder.cpp | 118 + src/navigation/PathFinder.h | 14 + 36 files changed, 458337 insertions(+), 871 deletions(-) create mode 100644 PATHFINDING.md delete mode 100644 resources/config2/gameobjects.json delete mode 100644 resources/config2/gameobjects2.json delete mode 100644 resources/config2/npcs.json delete mode 100644 resources/config2/npcs2.json delete mode 100644 resources/config2/teleports2.json rename resources/config2/{teleports.json => teleports_uni_interior.json} (100%) delete mode 100644 resources/config2/trigger_zones2.json delete mode 100644 resources/first_cutscene.png delete mode 100644 resources/portraits/elder_bor_neutral.png delete mode 100644 resources/second_cutscene.png create mode 100644 resources/w/girlfriend/Girl_Base_color.png create mode 100644 resources/w/girlfriend/girlfriend_idle002.txt create mode 100644 resources/w/girlfriend/girlfriend_idle003.txt create mode 100644 resources/w/girlfriend/girlfriend_walk001.txt create mode 100644 resources/w/girlfriend/girlfriend_walk003.txt delete mode 100644 resources/w/interior/computer001_002.txt create mode 100644 resources/w/interior/computer001_004.txt create mode 100644 resources/w/interior/computer_texture002.png diff --git a/PATHFINDING.md b/PATHFINDING.md new file mode 100644 index 0000000..0262e88 --- /dev/null +++ b/PATHFINDING.md @@ -0,0 +1,260 @@ +# Pathfinding System + +This document describes the grid-based pathfinding used for the player and all NPCs, including the collision avoidance and movement quality improvements. + +--- + +## Table of Contents + +1. [Grid Representation](#1-grid-representation) +2. [Building the Walkable Grid](#2-building-the-walkable-grid) +3. [A\* Path Search](#3-a-path-search) +4. [Path Smoothing](#4-path-smoothing) +5. [Approaching Unreachable Destinations](#5-approaching-unreachable-destinations) +6. [Dynamic Obstacles](#6-dynamic-obstacles) +7. [Path Following](#7-path-following) +8. [Character Collision Resolution](#8-character-collision-resolution) +9. [Dynamic Replanning](#9-dynamic-replanning) +10. [Key Constants Reference](#10-key-constants-reference) + +--- + +## 1. Grid Representation + +The world is divided into a uniform 2D grid in the XZ plane (Y is ignored during pathfinding; all characters walk on a flat floor at `floorY`). + +Each cell is either **walkable** (`1`) or **blocked** (`0`). The grid is stored as a flat `std::vector` indexed by `z * gridWidth + x`. + +**Parameters** (all configurable in the JSON config file): + +| Parameter | Default | Description | +|---|---|---| +| `cellSize` | 0.4 m | Width and depth of one cell | +| `agentRadius` | 0.45 m | Half-width of a character — used to erode free space | +| `objectPadding` | 0.25 m | Extra clearance added around obstacle polygons | +| `boundaryPadding` | 0.0 m | Inward erosion from the edges of navigation areas | +| `floorY` | 0.0 | Y coordinate placed on every path waypoint | + +**Grid bounds** are computed from the union of all navigation area polygons plus a padding margin of `cellSize * 2 + agentRadius + objectPadding` on every side. + +**Cell coordinate conversion:** + +``` +cell.x = floor((worldX - minX) / cellSize) +cell.z = floor((worldZ - minZ) / cellSize) + +cellCenter.x = minX + (cell.x + 0.5) * cellSize +cellCenter.z = minZ + (cell.z + 0.5) * cellSize +``` + +--- + +## 2. Building the Walkable Grid + +The grid can be loaded in two ways. + +### 2a. Pre-computed grid (`.txt` file) + +A plain-text file with a small header followed by rows of `1`/`0` characters: + +``` +cellSize 0.4 +agentRadius 0.45 +floorY 0.0 +... +minX -5.0 +minZ -5.0 +gridWidth 50 +gridDepth 50 +11111111... +10000001... +``` + +This format is generated by `PathFinder::saveGrid()` after building from polygons and can be loaded much faster than recomputing from geometry. + +### 2b. Polygon-based config (`.json` file) + +The JSON file lists **navigation areas** (convex or concave walkable regions) and **obstacle polygons** (impassable zones within those regions): + +```json +{ + "cellSize": 0.4, + "areas": [ + { "name": "main_room", "available": true, "polygon": [[x,z], ...] } + ], + "obstacles": [ + { "name": "table", "polygon": [[x,z], ...] } + ] +} +``` + +**Build steps:** + +1. **Mark available areas walkable** — every cell whose center lies inside any `available` navigation area polygon gets `walkable = 1`. If `boundaryPadding > 0`, cells too close to the outer edge of the area are left blocked. +2. **Mark obstacle polygons blocked** — cells whose center lies inside an obstacle polygon, or within `agentRadius + objectPadding` of its edges, are set to `0`. + +Navigation areas can be toggled at runtime via `PathFinder::setAreaAvailable()`, which rebuilds the entire grid. This is used to open or close doors, gated areas, etc. + +--- + +## 3. A\* Path Search + +`PathFinder::findPath(start, end)` runs a standard A\* on the walkable grid. + +**Neighbor connectivity:** 8-directional (cardinal + diagonal). Diagonal moves are blocked if either of the two adjacent cardinal cells is unwalkable (no corner-cutting). + +**Step costs:** `1.0` for cardinal, `√2 ≈ 1.414` for diagonal. + +**Heuristic:** Euclidean distance in cell units to the end cell. + +**Start/end snapping:** If the exact cell for `start` or `end` is not walkable, `findNearestWalkableCell` expands a square ring outward (up to radius 8 m) to find the nearest walkable cell. This makes clicking slightly outside the nav mesh still produce a valid path. + +**Path reconstruction:** After A\* completes, the cell chain is walked via `cameFrom[]` from `end` back to `start`, reversed, then smoothed (see §4). + +**First-waypoint trimming:** If the first waypoint is within `cellSize × 0.75` of `start`, it is dropped (the character is already close enough). + +**Last-waypoint precision:** If the requested `end` maps to the same cell as the snapped end cell, the last waypoint is replaced with the exact `end` world position rather than the cell centre. + +--- + +## 4. Path Smoothing + +Raw A\* paths follow the grid diagonals and produce staircase-shaped routes. A **string-pulling** (line-of-sight) pass compresses them: + +``` +anchor = path[0] +result = [anchor] +while anchor is not the last cell: + find the furthest cell 'next' from anchor with unobstructed line of sight + result.append(next) + anchor = next +``` + +Line-of-sight is checked by stepping along the segment in increments of `cellSize / 2` and verifying that each sampled cell is walkable. The result is a minimal set of waypoints connected by straight, obstacle-free segments. + +--- + +## 5. Approaching Unreachable Destinations + +When a player clicks on a point in a disconnected region (e.g., across a thin wall), the original `findPath` returns an empty path and the character does not move. This is surprising — a click on a solid wall sensibly moves the character to the nearest reachable point, but a click into an inaccessible room does nothing. + +**`findPathToNearest`** fixes this with a three-step cascade: + +1. Try `findPath` with dynamic obstacles (stationary characters are avoided). +2. If empty, retry `findPath` without dynamic obstacles (an NPC blocking a doorway is ignored). +3. If still empty (destination genuinely unreachable), run **nearest-reachable A\***. + +**Nearest-reachable A\***, implemented in `findNearestReachableImpl`: + +- Runs the identical A\* loop against the static walkable grid. +- While processing cells, tracks `bestIndex` — the already-visited cell with the smallest Euclidean distance (in cell units) to the end cell. +- If A\* exhausts all reachable space without finding `end`, it reconstructs and returns a path to `bestIndex`. +- If `bestIndex` is still the start cell (character is completely isolated), an empty path is returned and the character stays put. + +The net effect: clicking anywhere in the world always moves the character as close as possible to the target, matching the behaviour of clicking on a solid wall. + +`findPathToNearest` replaces the direct `findPath` call in `Location::setupNavigation`'s path planner lambda, so it applies equally to the player and all NPCs. + +--- + +## 6. Dynamic Obstacles + +When a path is planned, other characters can temporarily mark cells as blocked to make the character walk around them rather than through them. + +**How it works:** + +In `Location::setupNavigation`, every character is given a `PathPlanner` closure. Before calling `findPath`, the closure builds a list of `PathFinder::DynamicObstacle` entries (position + radius) representing nearby characters. `findPath` copies the static walkable grid, stamps zeros in circles around each obstacle, then runs A\* on the modified copy. The static grid is never mutated. + +**Which characters become obstacles:** + +A character is added as a dynamic obstacle only when **all** of these are true: + +- It is not the character currently planning the path (`self`). +- It is alive and enabled. +- **It is not moving** — a moving character is transparent to pathfinding, so it does not block narrow corridors that it is actively passing through. +- Its position lies within `kDynamicObstacleInfluenceDist = 6 m` of the direct line segment from `start` to `end` (distant characters do not affect the search). + +**Obstacle radius:** `character.collisionRadius × 0.6`. Using 60 % of the physical collision radius makes path planning less conservative; physical separation at full radius is still enforced by collision resolution (§8). + +**Fallback when dynamic obstacles block the only path:** + +If step 1 of `findPathToNearest` (with dynamic obstacles) returns empty, step 2 retries without any dynamic obstacles. This handles the common case of an NPC standing in a doorway: the player paths through the NPC's position, and the nudge logic (§8) pushes the NPC aside as the player passes. + +--- + +## 7. Path Following + +`Character::setTarget(destination, onArrived)` sets a new walk target. It calls the path planner to generate a waypoint list. The result is stored in `pathWaypoints`; the final destination is also stored in `walkTarget` and `requestedWalkTarget`. + +Each frame in `Character::update`: + +1. **Active target** — if `pathWaypoints` is non-empty, the character moves toward `pathWaypoints[currentWaypointIndex]`; otherwise it moves toward `walkTarget`. +2. **Movement** — the character advances along the XZ direction at `walkSpeed` m/s and rotates smoothly toward the movement direction at `rotationSpeed` rad/s. +3. **Waypoint advance** — when the character is within `WALK_THRESHOLD = 0.05 m` of the current waypoint, it advances to the next one. When the last waypoint is reached, `pathWaypoints` is cleared and the optional `onArrived` callback is fired. +4. **State machine** — the animation state switches between `STAND` and `WALK` based on whether the character is moving. + +`Character::isMoving()` returns `true` if `pathWaypoints` is non-empty or the distance to `walkTarget` exceeds `WALK_THRESHOLD`. This is used by dynamic obstacle filtering and collision nudging. + +**Stopping in place:** `Character::stopInPlace()` sets `walkTarget` and `requestedWalkTarget` to the current position and clears `pathWaypoints`. It is called when an external force (collision resolution) displaces a stationary player so that the player does not walk back to their previous target position. + +--- + +## 8. Character Collision Resolution + +Pathfinding alone does not prevent two characters from occupying the same space — it only steers paths around stationary characters. Physical separation is handled separately each frame by `Location::resolveCharacterCollisions`. + +**Algorithm** (3 iterations per frame): + +For every pair `(A, B)` of living, enabled characters: + +1. Compute the overlap: `penetration = (collisionRadius_A + collisionRadius_B) - distance(A, B)`. +2. If `penetration > 0`, compute a push direction (A-to-B normal) and a push magnitude of `penetration / 2` per character. +3. Compute candidate new positions `newA` and `newB`. +4. Validate against the navigation grid (`PathFinder::isWalkable`). If a pushed position is unwalkable, only the other character is moved. +5. **Player stays put:** if the player was not moving (`!isMoving()`) before the push, `stopInPlace()` is called after the push so the player does not walk back to the old target. +6. **NPC yielding:** if one character was moving and the other was standing, `nudgeCharacterAside` is called on the standing character. + +**`nudgeCharacterAside(standing, awayFrom)`:** + +Gives the standing NPC a short walk target so it steps out of the way: + +1. Compute the direction from `awayFrom` to the NPC's current position. +2. Try four candidate targets at distance `1.2 m` in directions: straight away, +90°, −90°, 180°. +3. Use the first candidate that is walkable (per `PathFinder::isWalkable`). +4. Call `standing->setTarget(candidate)` — the NPC takes a small step aside, then stands at the new spot. +5. The player is never nudged; combat NPCs can be nudged, but their attack AI immediately overrides the yield target on the next tick. + +--- + +## 9. Dynamic Replanning + +When characters move they can displace each other or enter each other's planned paths. `Location::updateDynamicReplans` handles this: + +**Every frame:** + +1. Measure how much each character moved since the last frame. Characters that moved more than `kMovedEps = 0.05 m` are collected as **movers**. +2. For each mover, find other characters that are currently walking. If the mover's position is within `kReplanTriggerDist = 1.8 m` of the segment `[walker.position → walker.nextWaypoint]`, trigger a replan for the walker via `forceReplan()`. +3. A per-character cooldown of `kReplanCooldownMs = 500 ms` prevents the same character from replanning more often than twice per second. + +**`Character::forceReplan()`** re-runs the path planner from the character's current position to its stored `requestedWalkTarget`, updating `pathWaypoints` in place. If the replanned path is empty, the character stops at its current position. + +The relatively generous trigger distance (1.8 m vs the old 1.1 m) and cooldown (500 ms vs 300 ms) prevent micro-jitter: small position corrections from collision resolution no longer spam replanning events. + +--- + +## 10. Key Constants Reference + +| Constant | Location | Value | Description | +|---|---|---|---| +| `cellSize` | `PathFinder` config | 0.4 m | Grid cell size | +| `agentRadius` | `PathFinder` config | 0.45 m | Character half-width for grid erosion | +| `objectPadding` | `PathFinder` config | 0.25 m | Extra clearance around obstacles | +| `WALK_THRESHOLD` | `Character.h` | 0.05 m | Distance below which a waypoint is considered reached | +| `TARGET_REPLAN_THRESHOLD` | `Character.h` | 0.25 m | Deduplication threshold in `setTarget` | +| `kDynamicObstacleInfluenceDist` | `Location.cpp` | 6.0 m | Max distance from path for a character to become an obstacle | +| `kDynamicObstacleRadiusFraction` | `Location.cpp` | 0.6× | Fraction of collision radius used for dynamic obstacle footprint | +| `kNudgeDist` | `Location.cpp` | 1.2 m | Distance an NPC steps aside when yielding | +| `kReplanTriggerDist` | `Location.cpp` | 1.8 m | Mover must be this close to a walker's path to trigger replan | +| `kReplanCooldownMs` | `Location.cpp` | 500 ms | Minimum interval between replans for any one character | +| `NPC_TALK_DISTANCE` | `Location.cpp` | 1.35 m | Distance at which walking-to-NPC interaction fires | +| `kIterations` (collision) | `Location.cpp` | 3 | Push-apart iterations per frame | diff --git a/resources/config2/gameobjects.json b/resources/config2/gameobjects.json deleted file mode 100644 index c7fe8dd..0000000 --- a/resources/config2/gameobjects.json +++ /dev/null @@ -1,186 +0,0 @@ -{ - "objects": [ - { - "name": "Plane", - "texturePath": "resources/w/exterior/Segmented_Plane002.png", - "meshPath": "resources/w/exterior/Segmented_Plane002.txt", - "rotationX": 0.0, - "rotationY": 0.0, - "rotationZ": 0.0, - "positionX": 0.0, - "positionY": -5.0, - "positionZ": 0.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "door", - "texturePath": "resources/w/exterior/door002.png", - "meshPath": "resources/w/exterior/ext_door001.txt", - "rotationX": 0.0, - "rotationY": 0.0, - "rotationZ": 0.0, - "positionX": 0.0, - "positionY": -5.0, - "positionZ": 0.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "inai", - "texturePath": "resources/w/exterior/Building_work014.png", - "meshPath": "resources/w/exterior/int_building002.txt", - "rotationX": 0.0, - "rotationY": 0.0, - "rotationZ": 0.0, - "positionX": 0.0, - "positionY": -5.0, - "positionZ": 0.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "stairs", - "texturePath": "resources/w/exterior/Staircase001.png", - "meshPath": "resources/w/exterior/int_stairs001.txt", - "rotationX": 0.0, - "rotationY": 0.0, - "rotationZ": 0.0, - "positionX": 0.0, - "positionY": -5.0, - "positionZ": 0.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree001", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": -1.5707963267948966, - "rotationZ": 0.0, - "positionX": 10.0, - "positionY": -5.0, - "positionZ": 12.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree002", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": 1.5707963267948966, - "rotationZ": 0.0, - "positionX": -12, - "positionY": -5.0, - "positionZ": 19.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree003", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": 0.0, - "rotationZ": 0.0, - "positionX": -12.0, - "positionY": -5.0, - "positionZ": 8.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree004", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": -1.5707963267948966, - "rotationZ": 0.0, - "positionX": -12.0, - "positionY": -5.0, - "positionZ": 0.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree005", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": 1.5707963267948966, - "rotationZ": 0.0, - "positionX": -12.0, - "positionY": -5.0, - "positionZ": -8.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree006", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": 0.0, - "rotationZ": 0.0, - "positionX": 8.49915, - "positionY": -5.0, - "positionZ": -2.59884, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree007", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": -1.5707963267948966, - "rotationZ": 0.0, - "positionX": 14.5936, - "positionY": -5.0, - "positionZ": 5.3401, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree008", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": 1.5707963267948966, - "rotationZ": 0.0, - "positionX": 23.9295, - "positionY": -5.0, - "positionZ": 9.00583, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree009", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": 0.0, - "rotationZ": 0.0, - "positionX": 29.8128, - "positionY": -5.0, - "positionZ": -1.45278, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree010", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": -1.5707963267948966, - "rotationZ": 0.0, - "positionX": 33.1771, - "positionY": -5.0, - "positionZ": 14.609, - "scale": 1.0, - "interactive": false - } - ] - } \ No newline at end of file diff --git a/resources/config2/gameobjects2.json b/resources/config2/gameobjects2.json deleted file mode 100644 index 612e72b..0000000 --- a/resources/config2/gameobjects2.json +++ /dev/null @@ -1,176 +0,0 @@ -{ - "objects": [ - { - "name": "Plane", - "texturePath": "resources/w/exterior/Segmented_Plane002.png", - "textureDarkandsPath": "resources/w/exterior/darklands_Segmented_Plane002.png", - "meshPath": "resources/w/exterior/Segmented_Plane002.txt", - "rotationX": 0.0, - "rotationY": 0.0, - "rotationZ": 0.0, - "positionX": 0.0, - "positionY": 0.0, - "positionZ": 0.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "door", - "texturePath": "resources/w/exterior/door002.png", - "textureDarkandsPath": "resources/w/exterior/darklands_door002.png", - "meshPath": "resources/w/exterior/ext_door001.txt", - "rotationX": 0.0, - "rotationY": 0.0, - "rotationZ": 0.0, - "positionX": 0.0, - "positionY": 0.0, - "positionZ": 0.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "inai", - "texturePath": "resources/w/exterior/Ext_Building004.png", - "textureDarkandsPath": "resources/w/exterior/darklands_Ext_Building004.png", - "meshPath": "resources/w/exterior/ext_building001.txt", - "rotationX": 0.0, - "rotationY": 0.0, - "rotationZ": 0.0, - "positionX": 0.0, - "positionY": 0.0, - "positionZ": 0.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree001", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": -1.5707963267948966, - "rotationZ": 0.0, - "positionX": 10.0, - "positionY": 0.0, - "positionZ": 12.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree002", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": 1.5707963267948966, - "rotationZ": 0.0, - "positionX": -12, - "positionY": 0.0, - "positionZ": 19.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree003", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": 0.0, - "rotationZ": 0.0, - "positionX": -12.0, - "positionY": 0.0, - "positionZ": 8.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree004", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": -1.5707963267948966, - "rotationZ": 0.0, - "positionX": -12.0, - "positionY": 0.0, - "positionZ": 0.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree005", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": 1.5707963267948966, - "rotationZ": 0.0, - "positionX": -12.0, - "positionY": 0.0, - "positionZ": -8.0, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree006", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": 0.0, - "rotationZ": 0.0, - "positionX": 8.49915, - "positionY": 0.0, - "positionZ": -2.59884, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree007", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": -1.5707963267948966, - "rotationZ": 0.0, - "positionX": 14.5936, - "positionY": 0.0, - "positionZ": 5.3401, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree008", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": 1.5707963267948966, - "rotationZ": 0.0, - "positionX": 23.9295, - "positionY": 0.0, - "positionZ": 9.00583, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree009", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": 0.0, - "rotationZ": 0.0, - "positionX": 29.8128, - "positionY": 0.0, - "positionZ": -1.45278, - "scale": 1.0, - "interactive": false - }, - { - "name": "tree010", - "texturePath": "resources/w/exterior/tree001.png", - "meshPath": "resources/w/exterior/tree003.txt", - "rotationX": 0.0, - "rotationY": -1.5707963267948966, - "rotationZ": 0.0, - "positionX": 33.1771, - "positionY": 0.0, - "positionZ": 14.609, - "scale": 1.0, - "interactive": false - } - ] - } \ No newline at end of file diff --git a/resources/config2/gameobjects_uni_exterior.json b/resources/config2/gameobjects_uni_exterior.json index 612e72b..c727c62 100644 --- a/resources/config2/gameobjects_uni_exterior.json +++ b/resources/config2/gameobjects_uni_exterior.json @@ -47,7 +47,7 @@ "texturePath": "resources/w/exterior/tree001.png", "meshPath": "resources/w/exterior/tree003.txt", "rotationX": 0.0, - "rotationY": -1.5707963267948966, + "rotationY": -90, "rotationZ": 0.0, "positionX": 10.0, "positionY": 0.0, @@ -60,7 +60,7 @@ "texturePath": "resources/w/exterior/tree001.png", "meshPath": "resources/w/exterior/tree003.txt", "rotationX": 0.0, - "rotationY": 1.5707963267948966, + "rotationY": 90, "rotationZ": 0.0, "positionX": -12, "positionY": 0.0, @@ -86,7 +86,7 @@ "texturePath": "resources/w/exterior/tree001.png", "meshPath": "resources/w/exterior/tree003.txt", "rotationX": 0.0, - "rotationY": -1.5707963267948966, + "rotationY": -90, "rotationZ": 0.0, "positionX": -12.0, "positionY": 0.0, @@ -99,7 +99,7 @@ "texturePath": "resources/w/exterior/tree001.png", "meshPath": "resources/w/exterior/tree003.txt", "rotationX": 0.0, - "rotationY": 1.5707963267948966, + "rotationY": 90, "rotationZ": 0.0, "positionX": -12.0, "positionY": 0.0, @@ -125,7 +125,7 @@ "texturePath": "resources/w/exterior/tree001.png", "meshPath": "resources/w/exterior/tree003.txt", "rotationX": 0.0, - "rotationY": -1.5707963267948966, + "rotationY": -90, "rotationZ": 0.0, "positionX": 14.5936, "positionY": 0.0, @@ -138,7 +138,7 @@ "texturePath": "resources/w/exterior/tree001.png", "meshPath": "resources/w/exterior/tree003.txt", "rotationX": 0.0, - "rotationY": 1.5707963267948966, + "rotationY": 90, "rotationZ": 0.0, "positionX": 23.9295, "positionY": 0.0, @@ -164,7 +164,7 @@ "texturePath": "resources/w/exterior/tree001.png", "meshPath": "resources/w/exterior/tree003.txt", "rotationX": 0.0, - "rotationY": -1.5707963267948966, + "rotationY": -90, "rotationZ": 0.0, "positionX": 33.1771, "positionY": 0.0, diff --git a/resources/config2/gameobjects_uni_interior.json b/resources/config2/gameobjects_uni_interior.json index d4be4ea..e177564 100644 --- a/resources/config2/gameobjects_uni_interior.json +++ b/resources/config2/gameobjects_uni_interior.json @@ -105,7 +105,7 @@ "texturePath": "resources/w/interior/doors_tex001.png", "meshPath": "resources/w/interior/outputRoom_N_0_Leaf001.txt", "rotationX": 0.0, - "rotationY": 1.5708, + "rotationY": 90, "rotationZ": 0.0, "positionX": 1.5, "positionY": 0.975, @@ -117,7 +117,7 @@ "texturePath": "resources/w/exterior/tree001.png", "meshPath": "resources/w/exterior/tree003.txt", "rotationX": 0.0, - "rotationY": -1.5707963267948966, + "rotationY": -90, "rotationZ": 0.0, "positionX": 10.0, "positionY": -5.0, @@ -129,7 +129,7 @@ "texturePath": "resources/w/exterior/tree001.png", "meshPath": "resources/w/exterior/tree003.txt", "rotationX": 0.0, - "rotationY": 1.5707963267948966, + "rotationY": 90, "rotationZ": 0.0, "positionX": -12, "positionY": -5.0, @@ -153,7 +153,7 @@ "texturePath": "resources/w/exterior/tree001.png", "meshPath": "resources/w/exterior/tree003.txt", "rotationX": 0.0, - "rotationY": -1.5707963267948966, + "rotationY": -90, "rotationZ": 0.0, "positionX": -12.0, "positionY": -5.0, @@ -165,7 +165,7 @@ "texturePath": "resources/w/exterior/tree001.png", "meshPath": "resources/w/exterior/tree003.txt", "rotationX": 0.0, - "rotationY": 1.5707963267948966, + "rotationY": 90, "rotationZ": 0.0, "positionX": -12.0, "positionY": -5.0, @@ -189,7 +189,7 @@ "texturePath": "resources/w/exterior/tree001.png", "meshPath": "resources/w/exterior/tree003.txt", "rotationX": 0.0, - "rotationY": -1.5707963267948966, + "rotationY": -90, "rotationZ": 0.0, "positionX": 14.5936, "positionY": -5.0, @@ -201,7 +201,7 @@ "texturePath": "resources/w/exterior/tree001.png", "meshPath": "resources/w/exterior/tree003.txt", "rotationX": 0.0, - "rotationY": 1.5707963267948966, + "rotationY": 90, "rotationZ": 0.0, "positionX": 23.9295, "positionY": -5.0, @@ -225,7 +225,7 @@ "texturePath": "resources/w/exterior/tree001.png", "meshPath": "resources/w/exterior/tree003.txt", "rotationX": 0.0, - "rotationY": -1.5707963267948966, + "rotationY": -90, "rotationZ": 0.0, "positionX": 33.1771, "positionY": -5.0, diff --git a/resources/config2/interactive_objects_uni_interior.json b/resources/config2/interactive_objects_uni_interior.json index 8014916..029dc63 100644 --- a/resources/config2/interactive_objects_uni_interior.json +++ b/resources/config2/interactive_objects_uni_interior.json @@ -30,8 +30,8 @@ }, { "name": "Computer001", - "texturePath": "resources/w/interior/computer_texture001.png", - "meshPath": "resources/w/interior/computer001_003.txt", + "texturePath": "resources/w/interior/computer_texture002.png", + "meshPath": "resources/w/interior/computer001_004.txt", "rotationX": 0.0, "rotationY": 0.0, "rotationZ": 0.0, diff --git a/resources/config2/npcs.json b/resources/config2/npcs.json deleted file mode 100644 index 4fea5cc..0000000 --- a/resources/config2/npcs.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "npcs": [ - { - "id": "npc_04_ghost", - "name": "Беспокойный Призрак", - "texturePath": "resources/w/ghost_skin001.png", - "animationIdlePath": "resources/w/default_float001.anim", - "animationWalkPath": "resources/w/default_float001.anim", - "positionX": -0.28594, - "positionY": 0, - "positionZ": 13.9641, - "walkSpeed": 1.5, - "rotationSpeed": 8.0, - "modelScale": 0.01, - "modelCorrectionRotX": 0.0, - "modelCorrectionRotY": 180.0, - "modelCorrectionRotZ": 0.0, - "interactionRadius": 1.0, - "gift": { - "id": "ghost_essence", - "name": "Ghost's Essence", - "description": "A mysterious essence from the Ghost realm", - "icon": "resources/w/red.png" - } - }, - { - "id": "ghost_01x", - "name": "Опасный Призрак", - "texturePath": "resources/w/ghost_skin002.png", - "animationIdlePath": "resources/w/default_float001.anim", - "animationWalkPath": "resources/w/default_float001.anim", - "animationActionIdlePath": "resources/w/float_attack003_cut.anim", - "animationActionAttackPath": "resources/w/float_attack003.anim", - "animationStandToActionPath": "resources/w/default_float001_cut.anim", - "animationActionToStandPath": "resources/w/default_float001_cut.anim", - "animationActionToDeathPath": "resources/w/default_float001_cut.anim", - "animationDeathIdlePath": "resources/w/default_float001_cut.anim", - "positionX": 4.09561, - "positionY": 0.0, - "positionZ": 6.28458, - "walkSpeed": 1.5, - "rotationSpeed": 8.0, - "modelScale": 0.01, - "modelCorrectionRotX": 0.0, - "modelCorrectionRotY": 180.0, - "modelCorrectionRotZ": 0.0, - "hp": 35, - "canAttack": true - }, - { - "id": "ghost_02x", - "name": "Злой призрак", - "texturePath": "resources/w/ghost_skin002.png", - "animationIdlePath": "resources/w/default_float001.anim", - "animationWalkPath": "resources/w/default_float001.anim", - "animationActionIdlePath": "resources/w/float_attack003_cut.anim", - "animationActionAttackPath": "resources/w/float_attack003.anim", - "animationStandToActionPath": "resources/w/default_float001_cut.anim", - "animationActionToStandPath": "resources/w/default_float001_cut.anim", - "animationActionToDeathPath": "resources/w/default_float001_cut.anim", - "animationDeathIdlePath": "resources/w/default_float001_cut.anim", - "positionX": -4.95651, - "positionY": 0.0, - "positionZ": 5.81422, - "walkSpeed": 1.5, - "rotationSpeed": 8.0, - "modelScale": 0.01, - "modelCorrectionRotX": 0.0, - "modelCorrectionRotY": 180.0, - "modelCorrectionRotZ": 0.0, - "hp": 25, - "canAttack": true - }, - { - "id": "ghost_02x", - "name": "Злой дух", - "texturePath": "resources/w/ghost_skin002.png", - "animationIdlePath": "resources/w/default_float001.anim", - "animationWalkPath": "resources/w/default_float001.anim", - "animationActionIdlePath": "resources/w/float_attack003_cut.anim", - "animationActionAttackPath": "resources/w/float_attack003.anim", - "animationStandToActionPath": "resources/w/default_float001_cut.anim", - "animationActionToStandPath": "resources/w/default_float001_cut.anim", - "animationActionToDeathPath": "resources/w/default_float001_cut.anim", - "animationDeathIdlePath": "resources/w/default_float001_cut.anim", - "positionX": 0, - "positionY": 0.0, - "positionZ": 10, - "walkSpeed": 1.5, - "rotationSpeed": 8.0, - "modelScale": 0.01, - "modelCorrectionRotX": 0.0, - "modelCorrectionRotY": 180.0, - "modelCorrectionRotZ": 0.0, - "hp": 15, - "canAttack": true - } - ] - } \ No newline at end of file diff --git a/resources/config2/npcs2.json b/resources/config2/npcs2.json deleted file mode 100644 index 89a2cc1..0000000 --- a/resources/config2/npcs2.json +++ /dev/null @@ -1,125 +0,0 @@ -{ - "npcs": [ - { - "id": "npc_01_default", - "name": "Студент", - "animationIdlePath": "resources/w/jam/man_stand_idle002.anim", - "animationWalkPath": "resources/w/jam/man_walk002.anim", - "meshTextures": { - "Body": "resources/w/jam/male_packed0_diffuse.png", - "Bottoms": "resources/w/jam/male_packed1_diffuse.png", - "Eyelashes": "resources/w/jam/male_packed0_diffuse.png", - "Eyes": "resources/w/jam/male_packed0_diffuse.png", - "Eyewear": "resources/w/jam/male_packed0_diffuse.png", - "Gloves": "resources/w/jam/male_packed1_diffuse.png", - "Hair": "resources/w/jam/male_packed0_diffuse.png", - "Shoes": "resources/w/jam/male_packed1_diffuse.png", - "Tops": "resources/w/jam/male_packed2_diffuse.png" - }, - "positionX": 2.95, - "positionY": 0.0, - "positionZ": 16.65, - "facingAngle" : 3.141592, - "walkSpeed": 1.5, - "rotationSpeed": 8.0, - "modelScale": 0.0001, - "modelCorrectionRotX": 0.0, - "modelCorrectionRotY": 180.0, - "modelCorrectionRotZ": 0.0, - "interactionRadius": 2.0, - "gift": { - "id": "guard_token", - "name": "Guard's Token", - "description": "A token from the Guard - sign of respect", - "icon": "resources/w/red.png" - } - }, - { - "id": "npc_02_woman", - "name": "Студентка", - "animationIdlePath": "resources/w/girl/girl_walk001.txt", - "animationWalkPath": "resources/w/girl/girl_walk001.txt", - "meshTextures": { - "polySurface1": "resources/w/girl/Chat_02_diff_1.png" - }, - "positionX": 19.5, - "positionY": 0.0, - "positionZ": 32.0, - "facingAngle" : 3.141592, - "walkSpeed": 1.5, - "rotationSpeed": 8.0, - "modelScale": 0.01, - "modelCorrectionRotX": 0.0, - "modelCorrectionRotY": 180.0, - "modelCorrectionRotZ": 0.0, - "interactionRadius": 2.0 - }, - { - "id": "npc_03_salesman", - "name": "Мухтар Байке", - "animationIdlePath": "resources/w/jam/salesperson_stand_idle003.anim", - "animationWalkPath": "resources/w/jam/salesperson_walk001.anim", - "meshTextures": { - "Body": "resources/w/jam/Salesperson_packed0_diffuse.png", - "Bottoms": "resources/w/jam/Salesperson_packed2_diffuse.png", - "Eyelashes": "resources/w/jam/Salesperson_packed0_diffuse.png", - "Eyes": "resources/w/jam/Salesperson_packed0_diffuse.png", - "Hats": "resources/w/jam/Salesperson_packed1_diffuse.png", - "Mustashes": "resources/w/jam/Salesperson_packed1_diffuse.png", - "Shoes": "resources/w/jam/Salesperson_packed1_diffuse.png", - "Tops": "resources/w/jam/Salesperson_packed1_diffuse.png" - }, - "positionX": -1.94774, - "positionY": 0.0, - "positionZ": 16.2712, - "facingAngle" : 3.141592, - "walkSpeed": 1.5, - "rotationSpeed": 8.0, - "modelScale": 0.001, - "modelCorrectionRotX": 0.0, - "modelCorrectionRotY": 180.0, - "modelCorrectionRotZ": 0.0, - "interactionRadius": 2.0 - }, - { - "id": "npc_teacher", - "name": "Аида Токтоналы", - "animationIdlePath": "resources/w/new_anims/teacher_stand_idle001.txt", - "animationWalkPath": "resources/w/new_anims/woman_walk4_001.txt", - "meshTextures": { - "Teacher_lowpoly": "resources/w/new_anims/UniV_Grid_2K.001_Base_color.png" - }, - "positionX": -3.76765, - "positionY": 0.0, - "positionZ": -21.8495, - "facingAngle" : 0, - "walkSpeed": 1.3, - "rotationSpeed": 8.0, - "modelScale": 1.0, - "modelCorrectionRotX": -90.0, - "modelCorrectionRotY": 180.0, - "modelCorrectionRotZ": 0.0, - "interactionRadius": 2.0 - }, - { - "id": "npc_teacher02", - "name": "Асель Дженибековна", - "animationIdlePath": "resources/w/new_anims/teacher_stand_idle001.txt", - "animationWalkPath": "resources/w/new_anims/woman_walk4_001.txt", - "meshTextures": { - "Teacher_lowpoly": "resources/w/new_anims/UniV_Grid_2K.001_Base_color.png" - }, - "positionX": 12.7499, - "positionY": 0.0, - "positionZ": -20.8708, - "facingAngle" : 0, - "walkSpeed": 1.3, - "rotationSpeed": 8.0, - "modelScale": 1.0, - "modelCorrectionRotX": -90.0, - "modelCorrectionRotY": 180.0, - "modelCorrectionRotZ": 0.0, - "interactionRadius": 2.0 - } - ] - } \ No newline at end of file diff --git a/resources/config2/npcs_dorm.json b/resources/config2/npcs_dorm.json index 05950ad..614909e 100644 --- a/resources/config2/npcs_dorm.json +++ b/resources/config2/npcs_dorm.json @@ -3,19 +3,19 @@ { "id": "npc_01_woman", "name": "Бермет", - "animationIdlePath": "resources/w/girl/girl_idle001.txt", - "animationWalkPath": "resources/w/girl/girl_walk010.txt", + "animationIdlePath": "resources/w/girlfriend/girlfriend_idle003.txt", + "animationWalkPath": "resources/w/girlfriend/girlfriend_walk003.txt", "meshTextures": { - "polySurface1": "resources/w/girl/Chat_02_diff_1r006.png" + "Girl_Low": "resources/w/girlfriend/Girl_Base_color.png" }, "positionX": 1.03298, "positionY": 0.0, "positionZ": -4.61801, - "facingAngle" : 3.141592, + "facingAngle" : 180, "walkSpeed": 1.8, "rotationSpeed": 8.0, - "modelScale": 0.016, - "modelCorrectionRotX": 0.0, + "modelScale": 1.0, + "modelCorrectionRotX": -90.0, "modelCorrectionRotY": 180.0, "modelCorrectionRotZ": 0.0, "interactionRadius": 2.0 @@ -59,7 +59,7 @@ "positionX": -6.33478, "positionY": 0.0, "positionZ": -15.0382, - "facingAngle" : 3.141592, + "facingAngle" : 180, "walkSpeed": 1.5, "rotationSpeed": 8.0, "modelScale": 0.0001, diff --git a/resources/config2/npcs_uni_interior.json b/resources/config2/npcs_uni_interior.json index 00686c8..3cf76eb 100644 --- a/resources/config2/npcs_uni_interior.json +++ b/resources/config2/npcs_uni_interior.json @@ -14,7 +14,7 @@ "walkSpeed": 1.3, "rotationSpeed": 8.0, "modelScale": 1.0, - "facingAngle" : 3.141592, + "facingAngle" : 180, "modelCorrectionRotX": -90.0, "modelCorrectionRotY": 180.0, "modelCorrectionRotZ": 0.0, @@ -23,19 +23,19 @@ { "id": "npc_02_woman", "name": "Айпери", - "animationIdlePath": "resources/w/girl/girl_idle001.txt", - "animationWalkPath": "resources/w/girl/girl_walk002.txt", + "animationIdlePath": "resources/w/girlfriend/girlfriend_idle003.txt", + "animationWalkPath": "resources/w/girlfriend/girlfriend_walk003.txt", "meshTextures": { - "polySurface1": "resources/w/girl/Chat_02_diff_1r006.png" + "Girl_Low": "resources/w/girlfriend/Girl_Base_color.png" }, "positionX": 0.764049, "positionY": 0.0, "positionZ": -8.53475, - "facingAngle" : 3.141592, + "facingAngle" : 180, "walkSpeed": 1.66, "rotationSpeed": 8.0, - "modelScale": 0.016, - "modelCorrectionRotX": 0.0, + "modelScale": 1.0, + "modelCorrectionRotX": -90.0, "modelCorrectionRotY": 180.0, "modelCorrectionRotZ": 0.0, "interactionRadius": 2.0, diff --git a/resources/config2/teleports2.json b/resources/config2/teleports2.json deleted file mode 100644 index cb8c71e..0000000 --- a/resources/config2/teleports2.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "teleports": [ - { - "id": "tp_loc2_to_loc1", - "positionX": 8.2, - "positionY": 0.0, - "positionZ": -9.9, - "radius": 1.5, - "active": true, - "destinationLocation": "uni_interior", - "destinationPositionX": 2.64621, - "destinationPositionY": 0.0, - "destinationPositionZ": -9.37259, - "destinationRotationY": -1.5708 - }, - { - "id": "tp_loc2_to_dorm", - "positionX": -21.7327, - "positionY": 0.0, - "positionZ": -34.1036, - "radius": 2.5, - "active": true, - "destinationLocation": "location_dorm", - "destinationPositionX": -8.32343, - "destinationPositionY": 0.0, - "destinationPositionZ": -0.152264, - "destinationRotationY": 1.5708 - } - ] -} diff --git a/resources/config2/teleports.json b/resources/config2/teleports_uni_interior.json similarity index 100% rename from resources/config2/teleports.json rename to resources/config2/teleports_uni_interior.json diff --git a/resources/config2/trigger_zones2.json b/resources/config2/trigger_zones2.json deleted file mode 100644 index 7c1b29e..0000000 --- a/resources/config2/trigger_zones2.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "trigger_zones": [ - ] -} \ No newline at end of file diff --git a/resources/config2/trigger_zones_uni_interior.json b/resources/config2/trigger_zones_uni_interior.json index 5dbeffa..856da30 100644 --- a/resources/config2/trigger_zones_uni_interior.json +++ b/resources/config2/trigger_zones_uni_interior.json @@ -34,7 +34,7 @@ "positionZ": 6.17516, "radius": 2.0, "hysteresis": 0.1, - "enabled": false + "enabled": true } ] } diff --git a/resources/dialogue/uni_interior_dialogues.json b/resources/dialogue/uni_interior_dialogues.json index 03467c4..7b424d7 100644 --- a/resources/dialogue/uni_interior_dialogues.json +++ b/resources/dialogue/uni_interior_dialogues.json @@ -833,6 +833,132 @@ "type": "End" } ] + }, + { + "id": "book_dialog003", + "start": "line_1", + "nodes": [ + { + "id": "line_1", + "type": "Line", + "speaker": "Бекзат", + "portrait": "resources/w/gg/gg2_s_podsvetkoy5.png", + "text": "Да, вот эта книга! Я возьму ее.", + "next": "end_1" + }, + { + "id": "end_1", + "type": "End" + } + ] + }, + { + "id": "book_dialog004", + "start": "line_1", + "nodes": [ + { + "id": "line_1", + "type": "Line", + "speaker": "Бекзат", + "portrait": "resources/w/gg/gg2_s_podsvetkoy5.png", + "text": "Я вернул книгу на место.", + "next": "end_1" + }, + { + "id": "end_1", + "type": "End" + } + ] + }, + { + "id": "book_dialog005", + "start": "line_1", + "nodes": [ + { + "id": "line_1", + "type": "Line", + "speaker": "Бекзат", + "portrait": "resources/w/gg/gg2_s_podsvetkoy5.png", + "text": "На этой полке лежат самые скучные книги в этом кабинете.", + "next": "end_1" + }, + { + "id": "end_1", + "type": "End" + } + ] + }, + { + "id": "book_dialog006", + "start": "line_1", + "nodes": [ + { + "id": "line_1", + "type": "Line", + "speaker": "Бекзат", + "portrait": "resources/w/gg/gg2_s_podsvetkoy5.png", + "text": "Я надеюсь, мне эта книга больше не пригодится.", + "next": "end_1" + }, + { + "id": "end_1", + "type": "End" + } + ] + }, + { + "id": "computer_dialog001", + "start": "line_1", + "nodes": [ + { + "id": "line_1", + "type": "Line", + "speaker": "Бекзат", + "portrait": "resources/w/gg/gg2_s_podsvetkoy5.png", + "text": "Это старый библиотечный компьютер, он даже не подключен к интернету.", + "next": "end_1" + }, + { + "id": "end_1", + "type": "End" + } + ] + }, + { + "id": "computer_dialog002", + "start": "line_1", + "nodes": [ + { + "id": "line_1", + "type": "Line", + "speaker": "Бекзат", + "portrait": "resources/w/gg/gg2_s_podsvetkoy5.png", + "text": "От этого компьютера сейчас не будет никакого толку.", + "next": "end_1" + }, + { + "id": "end_1", + "type": "End" + } + ] + }, + { + "id": "computer_dialog003", + "start": "line_1", + "nodes": [ + { + "id": "line_1", + "type": "Line", + "speaker": "Бекзат", + "portrait": "resources/w/gg/gg2_s_podsvetkoy5.png", + "text": "Надеюсь мне больше не придется притрагиваться к этому компьютеру.", + "next": "end_1" + }, + { + "id": "end_1", + "type": "End" + } + ] }, { "id": "dialog_report_card001", @@ -936,7 +1062,9 @@ }, { "id": "test_cutscene_02", - "background": "resources/test_cutscene001.png", + "background": "resources/black.png", + "backgroundWidth" : 1280, + "backgroundHeight" : 720, "durationMs": 5000, "fadeOutMs": 500, "fadeInMs": 500, @@ -980,7 +1108,9 @@ }, { "id": "darklands_exit001", - "background": "resources/test_cutscene001.png", + "background": "resources/black.png", + "backgroundWidth" : 1280, + "backgroundHeight" : 720, "durationMs": 5000, "fadeOutMs": 500, "fadeInMs": 500, @@ -1002,21 +1132,23 @@ ], "lines": [ { - "speaker": "Бекзат", "portrait": "resources/hero.png", - "text": "Кажется, после того как я умер, я очнулся.", + "text": "Мгновенно как я упал без сил, что-то сверкнуло.", "durationMs": 3000 }, { - "speaker": "Бекзат", "portrait": "resources/hero.png", - "text": "Жесть вообще, хочу спать.", + "text": "Я открыл глаза и понял, что я по-прежнему в универе.", "durationMs": 3000 }, { - "speaker": "Бекзат", "portrait": "resources/hero.png", - "text": "Который час?", + "text": "Все тело болело, как будто я всю ночь таскал мешки с цементом.", + "durationMs": 3000 + }, + { + "portrait": "resources/hero.png", + "text": "А еще мне сильно хотелось спать...", "durationMs": 2000, "background": "resources/test_cutscene001.png" } diff --git a/resources/first_cutscene.png b/resources/first_cutscene.png deleted file mode 100644 index 7e9a378..0000000 --- a/resources/first_cutscene.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c11579d1e2930947f39c31d9ed5d798b32f72e483032d8b519bca1a0477107b8 -size 1024447 diff --git a/resources/portraits/elder_bor_neutral.png b/resources/portraits/elder_bor_neutral.png deleted file mode 100644 index 130ff37..0000000 --- a/resources/portraits/elder_bor_neutral.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c6e2b21c0d776d382a6194fe1a7e53455183a5a02e1e5b18e438fb971e7602df -size 2432469 diff --git a/resources/second_cutscene.png b/resources/second_cutscene.png deleted file mode 100644 index e77f337..0000000 --- a/resources/second_cutscene.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0bbc3563a65a71ed2cd6c708217da7c787c8561a5bbabf8d5ee4f14f91e06423 -size 2132238 diff --git a/resources/start_uni_interior.lua b/resources/start_uni_interior.lua index eb93b1f..bc30101 100644 --- a/resources/start_uni_interior.lua +++ b/resources/start_uni_interior.lua @@ -84,21 +84,35 @@ game_api.npc_walk_to(0, -4.57412, 0, 6.78495, on_teacher_arrived2) end function on_book_pickup() + print("on_book_pickup") + local day = game_api.getIntValue("day") if (teacher_told_about_book) then + print("on_book_pickup step1") if not player_hold_book then + if (night_time) or (day >=1) then + game_api.start_dialogue("book_dialog006") + else game_api.pickup_item("book") game_api.deactivate_interactive_object("Book001") player_hold_book = true + game_api.start_dialogue("book_dialog003") + --game_api.set_trigger_zone_enabled(3, true) + end else game_api.remove_item("book") game_api.activate_interactive_object("Book001") player_hold_book = false + game_api.start_dialogue("book_dialog004") + --game_api.set_trigger_zone_enabled(3, false) end + else + print("on_book_pickup step2") + game_api.start_dialogue("book_dialog005") end end function on_bookshelf_clicked() - if not player_hold_book then + --[[if not player_hold_book then game_api.pickup_item("book") game_api.deactivate_interactive_object("Book001") player_hold_book = true @@ -108,7 +122,8 @@ function on_bookshelf_clicked() game_api.activate_interactive_object("Book001") player_hold_book = false game_api.set_trigger_zone_enabled(3, false) - end + end]] + on_book_pickup() end @@ -353,11 +368,16 @@ print("Teacher arrived2") end function book_dialog_zone001_enter_callback() + print("book_dialog_zone001_enter_callback step 1") if (game_api.is_darklands()) then + print("book_dialog_zone001_enter_callback step 2") game_api.start_dialogue("ghost_dialog002") game_api.set_trigger_zone_enabled(3, false) else - if (night_time == false) then + + print("book_dialog_zone001_enter_callback step 3") + if (player_hold_book) and (night_time == false) then + print("book_dialog_zone001_enter_callback step 4") game_api.start_dialogue("book_dialog001") game_api.switch_navigation(5) end @@ -365,7 +385,8 @@ function book_dialog_zone001_enter_callback() end function book_dialog_zone001_exit_callback() -if (night_time == false) then +print("book_dialog_zone001_exit_callback step 1") +if (player_hold_book) and (night_time == false) then game_api.switch_navigation(3) end end @@ -376,14 +397,27 @@ print("on_computer_clicked--") if (day == 1) then -- TODO: some dialog like I don't need it + print("on_computer_clicked--1") + game_api.start_dialogue("computer_dialog003") else - + if teacher_told_about_book then + print("on_computer_clicked--2") if (night_time == false) then + print("on_computer_clicked--3") if (player_hold_book) then + print("on_computer_clicked--4") game_api.start_cutscene("test_cutscene_02") else + print("on_computer_clicked--5") game_api.start_dialogue("book_dialog002") end + else + print("on_computer_clicked--6") + game_api.start_dialogue("computer_dialog002") + end + else + print("on_computer_clicked--7") + game_api.start_dialogue("computer_dialog001") end end end @@ -469,6 +503,8 @@ game_api.set_darklands_callbacks( first_time_darklands = false end + game_api.set_trigger_zone_enabled(1, false) + game_api.set_npc_enabled(0, false) game_api.set_npc_enabled(1, false) diff --git a/resources/w/girlfriend/Girl_Base_color.png b/resources/w/girlfriend/Girl_Base_color.png new file mode 100644 index 0000000..0c06463 --- /dev/null +++ b/resources/w/girlfriend/Girl_Base_color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c17d5b0b64e49af162f4f6ed3f71844c89cb0f3ef0769cffd1e04c0e14ef8cad +size 2964043 diff --git a/resources/w/girlfriend/girlfriend_idle002.txt b/resources/w/girlfriend/girlfriend_idle002.txt new file mode 100644 index 0000000..1f4a13d --- /dev/null +++ b/resources/w/girlfriend/girlfriend_idle002.txt @@ -0,0 +1,122367 @@ +=== Armature Matrix === + + + + +=== Armature Bones: 63 +Bone: Hips + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.09507554942544139 + + + + Parent: None + Children: ['Spine', 'LeftUpLeg', 'RightUpLeg'] +Bone: Spine + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.12353978971747905 + + + + Parent: Hips + Children: ['Spine1'] +Bone: Spine1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.14721100651092592 + + + + Parent: Spine + Children: ['Spine2'] +Bone: Spine2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.1504897780231176 + + + + Parent: Spine1 + Children: ['Neck', 'LeftShoulder', 'RightShoulder'] +Bone: Neck + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.14121287866897442 + + + + Parent: Spine2 + Children: ['Head'] +Bone: Head + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.22816329000639674 + + + + Parent: Neck + Children: ['Head_end'] +Bone: Head_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.24200952050650212 + + + + Parent: Head + Children: [] +Bone: LeftShoulder + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.12367134536725961 + + + + Parent: Spine2 + Children: ['LeftArm'] +Bone: LeftArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2452980058838208 + + + + Parent: LeftShoulder + Children: ['LeftForeArm'] +Bone: LeftForeArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2225854961490068 + + + + Parent: LeftArm + Children: ['LeftHand'] +Bone: LeftHand + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.059997293858802675 + + + + Parent: LeftForeArm + Children: ['LeftHandThumb1', 'LeftHandIndex1', 'LeftHandMiddle1', 'LeftHandRing1', 'LeftHandPinky1'] +Bone: LeftHandThumb1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.024587623753619402 + + + + Parent: LeftHand + Children: ['LeftHandThumb2'] +Bone: LeftHandThumb2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022115675238174277 + + + + Parent: LeftHandThumb1 + Children: ['LeftHandThumb3'] +Bone: LeftHandThumb3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02079256883015047 + + + + Parent: LeftHandThumb2 + Children: ['LeftHandThumb3_end'] +Bone: LeftHandThumb3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02144576255051639 + + + + Parent: LeftHandThumb3 + Children: [] +Bone: LeftHandIndex1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.039380642877091566 + + + + Parent: LeftHand + Children: ['LeftHandIndex2'] +Bone: LeftHandIndex2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02689386367683547 + + + + Parent: LeftHandIndex1 + Children: ['LeftHandIndex3'] +Bone: LeftHandIndex3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.021548516170175166 + + + + Parent: LeftHandIndex2 + Children: ['LeftHandIndex3_end'] +Bone: LeftHandIndex3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.017936713692482353 + + + + Parent: LeftHandIndex3 + Children: [] +Bone: LeftHandMiddle1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.03128070502690231 + + + + Parent: LeftHand + Children: ['LeftHandMiddle2'] +Bone: LeftHandMiddle2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02933969730155993 + + + + Parent: LeftHandMiddle1 + Children: ['LeftHandMiddle3'] +Bone: LeftHandMiddle3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02854078575259649 + + + + Parent: LeftHandMiddle2 + Children: ['LeftHandMiddle3_end'] +Bone: LeftHandMiddle3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02217298257472352 + + + + Parent: LeftHandMiddle3 + Children: [] +Bone: LeftHandRing1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02824055589541246 + + + + Parent: LeftHand + Children: ['LeftHandRing2'] +Bone: LeftHandRing2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.026119443766119885 + + + + Parent: LeftHandRing1 + Children: ['LeftHandRing3'] +Bone: LeftHandRing3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.025662976201378793 + + + + Parent: LeftHandRing2 + Children: ['LeftHandRing3_end'] +Bone: LeftHandRing3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01959367912247575 + + + + Parent: LeftHandRing3 + Children: [] +Bone: LeftHandPinky1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02621499128668013 + + + + Parent: LeftHand + Children: ['LeftHandPinky2'] +Bone: LeftHandPinky2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.023017874331436206 + + + + Parent: LeftHandPinky1 + Children: ['LeftHandPinky3'] +Bone: LeftHandPinky3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022463324798304887 + + + + Parent: LeftHandPinky2 + Children: ['LeftHandPinky3_end'] +Bone: LeftHandPinky3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01734677299296374 + + + + Parent: LeftHandPinky3 + Children: [] +Bone: RightShoulder + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.12367134536725961 + + + + Parent: Spine2 + Children: ['RightArm'] +Bone: RightArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2452980058838208 + + + + Parent: RightShoulder + Children: ['RightForeArm'] +Bone: RightForeArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2225854961490068 + + + + Parent: RightArm + Children: ['RightHand'] +Bone: RightHand + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.059997293858802675 + + + + Parent: RightForeArm + Children: ['RightHandThumb1', 'RightHandIndex1', 'RightHandMiddle1', 'RightHandRing1', 'RightHandPinky1'] +Bone: RightHandThumb1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.024587623753619402 + + + + Parent: RightHand + Children: ['RightHandThumb2'] +Bone: RightHandThumb2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022115675238174277 + + + + Parent: RightHandThumb1 + Children: ['RightHandThumb3'] +Bone: RightHandThumb3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02079256883015047 + + + + Parent: RightHandThumb2 + Children: ['RightHandThumb3_end'] +Bone: RightHandThumb3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02144576255051639 + + + + Parent: RightHandThumb3 + Children: [] +Bone: RightHandIndex1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.039380642877091566 + + + + Parent: RightHand + Children: ['RightHandIndex2'] +Bone: RightHandIndex2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02689386367683547 + + + + Parent: RightHandIndex1 + Children: ['RightHandIndex3'] +Bone: RightHandIndex3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.021548516170175166 + + + + Parent: RightHandIndex2 + Children: ['RightHandIndex3_end'] +Bone: RightHandIndex3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.017936713692482353 + + + + Parent: RightHandIndex3 + Children: [] +Bone: RightHandMiddle1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.03128070502690231 + + + + Parent: RightHand + Children: ['RightHandMiddle2'] +Bone: RightHandMiddle2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02933969730155993 + + + + Parent: RightHandMiddle1 + Children: ['RightHandMiddle3'] +Bone: RightHandMiddle3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02854078575259649 + + + + Parent: RightHandMiddle2 + Children: ['RightHandMiddle3_end'] +Bone: RightHandMiddle3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02217298257472352 + + + + Parent: RightHandMiddle3 + Children: [] +Bone: RightHandRing1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02824055589541246 + + + + Parent: RightHand + Children: ['RightHandRing2'] +Bone: RightHandRing2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.026119443766119885 + + + + Parent: RightHandRing1 + Children: ['RightHandRing3'] +Bone: RightHandRing3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.025662976201378793 + + + + Parent: RightHandRing2 + Children: ['RightHandRing3_end'] +Bone: RightHandRing3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01959367912247575 + + + + Parent: RightHandRing3 + Children: [] +Bone: RightHandPinky1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02606178578371245 + + + + Parent: RightHand + Children: ['RightHandPinky2'] +Bone: RightHandPinky2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.023017874331436206 + + + + Parent: RightHandPinky1 + Children: ['RightHandPinky3'] +Bone: RightHandPinky3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022463324798304887 + + + + Parent: RightHandPinky2 + Children: ['RightHandPinky3_end'] +Bone: RightHandPinky3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01734677299296374 + + + + Parent: RightHandPinky3 + Children: [] +Bone: LeftUpLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.3457044687537974 + + + + Parent: Hips + Children: ['LeftLeg'] +Bone: LeftLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.380034175614433 + + + + Parent: LeftUpLeg + Children: ['LeftFoot'] +Bone: LeftFoot + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.1334373005165752 + + + + Parent: LeftLeg + Children: ['LeftToeBase'] +Bone: LeftToeBase + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.13343730116493727 + + + + Parent: LeftFoot + Children: [] +Bone: RightUpLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.3457048513836104 + + + + Parent: Hips + Children: ['RightLeg'] +Bone: RightLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.3800342598547777 + + + + Parent: RightUpLeg + Children: ['RightFoot'] +Bone: RightFoot + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.13343732145500467 + + + + Parent: RightLeg + Children: ['RightToeBase'] +Bone: RightToeBase + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.13343732505038894 + + + + Parent: RightFoot + Children: [] +=== TOTAL MESHES TO EXPORT: 1 === +=== Mesh Object: Girl_Low === +===Vertices: 5400 +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: +Vertex 2660: +Vertex 2661: +Vertex 2662: +Vertex 2663: +Vertex 2664: +Vertex 2665: +Vertex 2666: +Vertex 2667: +Vertex 2668: +Vertex 2669: +Vertex 2670: +Vertex 2671: +Vertex 2672: +Vertex 2673: +Vertex 2674: +Vertex 2675: +Vertex 2676: +Vertex 2677: +Vertex 2678: +Vertex 2679: +Vertex 2680: +Vertex 2681: +Vertex 2682: +Vertex 2683: +Vertex 2684: +Vertex 2685: +Vertex 2686: +Vertex 2687: +Vertex 2688: +Vertex 2689: +Vertex 2690: +Vertex 2691: +Vertex 2692: +Vertex 2693: +Vertex 2694: +Vertex 2695: +Vertex 2696: +Vertex 2697: +Vertex 2698: +Vertex 2699: +Vertex 2700: +Vertex 2701: +Vertex 2702: +Vertex 2703: +Vertex 2704: +Vertex 2705: +Vertex 2706: +Vertex 2707: +Vertex 2708: +Vertex 2709: +Vertex 2710: +Vertex 2711: +Vertex 2712: +Vertex 2713: +Vertex 2714: +Vertex 2715: +Vertex 2716: +Vertex 2717: +Vertex 2718: +Vertex 2719: +Vertex 2720: +Vertex 2721: +Vertex 2722: +Vertex 2723: +Vertex 2724: +Vertex 2725: +Vertex 2726: +Vertex 2727: +Vertex 2728: +Vertex 2729: +Vertex 2730: +Vertex 2731: +Vertex 2732: +Vertex 2733: +Vertex 2734: +Vertex 2735: +Vertex 2736: +Vertex 2737: +Vertex 2738: +Vertex 2739: +Vertex 2740: +Vertex 2741: +Vertex 2742: +Vertex 2743: +Vertex 2744: +Vertex 2745: +Vertex 2746: +Vertex 2747: +Vertex 2748: +Vertex 2749: +Vertex 2750: +Vertex 2751: +Vertex 2752: +Vertex 2753: +Vertex 2754: +Vertex 2755: +Vertex 2756: +Vertex 2757: +Vertex 2758: +Vertex 2759: +Vertex 2760: +Vertex 2761: +Vertex 2762: +Vertex 2763: +Vertex 2764: +Vertex 2765: +Vertex 2766: +Vertex 2767: +Vertex 2768: +Vertex 2769: +Vertex 2770: +Vertex 2771: +Vertex 2772: +Vertex 2773: +Vertex 2774: +Vertex 2775: +Vertex 2776: +Vertex 2777: +Vertex 2778: +Vertex 2779: +Vertex 2780: +Vertex 2781: +Vertex 2782: +Vertex 2783: +Vertex 2784: +Vertex 2785: +Vertex 2786: +Vertex 2787: +Vertex 2788: +Vertex 2789: +Vertex 2790: +Vertex 2791: +Vertex 2792: +Vertex 2793: +Vertex 2794: +Vertex 2795: +Vertex 2796: +Vertex 2797: +Vertex 2798: +Vertex 2799: +Vertex 2800: +Vertex 2801: +Vertex 2802: +Vertex 2803: +Vertex 2804: +Vertex 2805: +Vertex 2806: +Vertex 2807: +Vertex 2808: +Vertex 2809: +Vertex 2810: +Vertex 2811: +Vertex 2812: +Vertex 2813: +Vertex 2814: +Vertex 2815: +Vertex 2816: +Vertex 2817: +Vertex 2818: +Vertex 2819: +Vertex 2820: +Vertex 2821: +Vertex 2822: +Vertex 2823: +Vertex 2824: +Vertex 2825: +Vertex 2826: +Vertex 2827: +Vertex 2828: +Vertex 2829: +Vertex 2830: +Vertex 2831: +Vertex 2832: +Vertex 2833: +Vertex 2834: +Vertex 2835: +Vertex 2836: +Vertex 2837: +Vertex 2838: +Vertex 2839: +Vertex 2840: +Vertex 2841: +Vertex 2842: +Vertex 2843: +Vertex 2844: +Vertex 2845: +Vertex 2846: +Vertex 2847: +Vertex 2848: +Vertex 2849: +Vertex 2850: +Vertex 2851: +Vertex 2852: +Vertex 2853: +Vertex 2854: +Vertex 2855: +Vertex 2856: +Vertex 2857: +Vertex 2858: +Vertex 2859: +Vertex 2860: +Vertex 2861: +Vertex 2862: +Vertex 2863: +Vertex 2864: +Vertex 2865: +Vertex 2866: +Vertex 2867: +Vertex 2868: +Vertex 2869: +Vertex 2870: +Vertex 2871: +Vertex 2872: +Vertex 2873: +Vertex 2874: +Vertex 2875: +Vertex 2876: +Vertex 2877: +Vertex 2878: +Vertex 2879: +Vertex 2880: +Vertex 2881: +Vertex 2882: +Vertex 2883: +Vertex 2884: +Vertex 2885: +Vertex 2886: +Vertex 2887: +Vertex 2888: +Vertex 2889: +Vertex 2890: +Vertex 2891: +Vertex 2892: +Vertex 2893: +Vertex 2894: +Vertex 2895: +Vertex 2896: +Vertex 2897: +Vertex 2898: +Vertex 2899: +Vertex 2900: +Vertex 2901: +Vertex 2902: +Vertex 2903: +Vertex 2904: +Vertex 2905: +Vertex 2906: +Vertex 2907: +Vertex 2908: +Vertex 2909: +Vertex 2910: +Vertex 2911: +Vertex 2912: +Vertex 2913: +Vertex 2914: +Vertex 2915: +Vertex 2916: +Vertex 2917: +Vertex 2918: +Vertex 2919: +Vertex 2920: +Vertex 2921: +Vertex 2922: +Vertex 2923: +Vertex 2924: +Vertex 2925: +Vertex 2926: +Vertex 2927: +Vertex 2928: +Vertex 2929: +Vertex 2930: +Vertex 2931: +Vertex 2932: +Vertex 2933: +Vertex 2934: +Vertex 2935: +Vertex 2936: +Vertex 2937: +Vertex 2938: +Vertex 2939: +Vertex 2940: +Vertex 2941: +Vertex 2942: +Vertex 2943: +Vertex 2944: +Vertex 2945: +Vertex 2946: +Vertex 2947: +Vertex 2948: +Vertex 2949: +Vertex 2950: +Vertex 2951: +Vertex 2952: +Vertex 2953: +Vertex 2954: +Vertex 2955: +Vertex 2956: +Vertex 2957: +Vertex 2958: +Vertex 2959: +Vertex 2960: +Vertex 2961: +Vertex 2962: +Vertex 2963: +Vertex 2964: +Vertex 2965: +Vertex 2966: +Vertex 2967: +Vertex 2968: +Vertex 2969: +Vertex 2970: +Vertex 2971: +Vertex 2972: +Vertex 2973: +Vertex 2974: +Vertex 2975: +Vertex 2976: +Vertex 2977: +Vertex 2978: +Vertex 2979: +Vertex 2980: +Vertex 2981: +Vertex 2982: +Vertex 2983: +Vertex 2984: +Vertex 2985: +Vertex 2986: +Vertex 2987: +Vertex 2988: +Vertex 2989: +Vertex 2990: +Vertex 2991: +Vertex 2992: +Vertex 2993: +Vertex 2994: +Vertex 2995: +Vertex 2996: +Vertex 2997: +Vertex 2998: +Vertex 2999: +Vertex 3000: +Vertex 3001: +Vertex 3002: +Vertex 3003: +Vertex 3004: +Vertex 3005: +Vertex 3006: +Vertex 3007: +Vertex 3008: +Vertex 3009: +Vertex 3010: +Vertex 3011: +Vertex 3012: +Vertex 3013: +Vertex 3014: +Vertex 3015: +Vertex 3016: +Vertex 3017: +Vertex 3018: +Vertex 3019: +Vertex 3020: +Vertex 3021: +Vertex 3022: +Vertex 3023: +Vertex 3024: +Vertex 3025: +Vertex 3026: +Vertex 3027: +Vertex 3028: +Vertex 3029: +Vertex 3030: +Vertex 3031: +Vertex 3032: +Vertex 3033: +Vertex 3034: +Vertex 3035: +Vertex 3036: +Vertex 3037: +Vertex 3038: +Vertex 3039: +Vertex 3040: +Vertex 3041: +Vertex 3042: +Vertex 3043: +Vertex 3044: +Vertex 3045: +Vertex 3046: +Vertex 3047: +Vertex 3048: +Vertex 3049: +Vertex 3050: +Vertex 3051: +Vertex 3052: +Vertex 3053: +Vertex 3054: +Vertex 3055: +Vertex 3056: +Vertex 3057: +Vertex 3058: +Vertex 3059: +Vertex 3060: +Vertex 3061: +Vertex 3062: +Vertex 3063: +Vertex 3064: +Vertex 3065: +Vertex 3066: +Vertex 3067: +Vertex 3068: +Vertex 3069: +Vertex 3070: +Vertex 3071: +Vertex 3072: +Vertex 3073: +Vertex 3074: +Vertex 3075: +Vertex 3076: +Vertex 3077: +Vertex 3078: +Vertex 3079: +Vertex 3080: +Vertex 3081: +Vertex 3082: +Vertex 3083: +Vertex 3084: +Vertex 3085: +Vertex 3086: +Vertex 3087: +Vertex 3088: +Vertex 3089: +Vertex 3090: +Vertex 3091: +Vertex 3092: +Vertex 3093: +Vertex 3094: +Vertex 3095: +Vertex 3096: +Vertex 3097: +Vertex 3098: +Vertex 3099: +Vertex 3100: +Vertex 3101: +Vertex 3102: +Vertex 3103: +Vertex 3104: +Vertex 3105: +Vertex 3106: +Vertex 3107: +Vertex 3108: +Vertex 3109: +Vertex 3110: +Vertex 3111: +Vertex 3112: +Vertex 3113: +Vertex 3114: +Vertex 3115: +Vertex 3116: +Vertex 3117: +Vertex 3118: +Vertex 3119: +Vertex 3120: +Vertex 3121: +Vertex 3122: +Vertex 3123: +Vertex 3124: +Vertex 3125: +Vertex 3126: +Vertex 3127: +Vertex 3128: +Vertex 3129: +Vertex 3130: +Vertex 3131: +Vertex 3132: +Vertex 3133: +Vertex 3134: +Vertex 3135: +Vertex 3136: +Vertex 3137: +Vertex 3138: +Vertex 3139: +Vertex 3140: +Vertex 3141: +Vertex 3142: +Vertex 3143: +Vertex 3144: +Vertex 3145: +Vertex 3146: +Vertex 3147: +Vertex 3148: +Vertex 3149: +Vertex 3150: +Vertex 3151: +Vertex 3152: +Vertex 3153: +Vertex 3154: +Vertex 3155: +Vertex 3156: +Vertex 3157: +Vertex 3158: +Vertex 3159: +Vertex 3160: +Vertex 3161: +Vertex 3162: +Vertex 3163: +Vertex 3164: +Vertex 3165: +Vertex 3166: +Vertex 3167: +Vertex 3168: +Vertex 3169: +Vertex 3170: +Vertex 3171: +Vertex 3172: +Vertex 3173: +Vertex 3174: +Vertex 3175: +Vertex 3176: +Vertex 3177: +Vertex 3178: +Vertex 3179: +Vertex 3180: +Vertex 3181: +Vertex 3182: +Vertex 3183: +Vertex 3184: +Vertex 3185: +Vertex 3186: +Vertex 3187: +Vertex 3188: +Vertex 3189: +Vertex 3190: +Vertex 3191: +Vertex 3192: +Vertex 3193: +Vertex 3194: +Vertex 3195: +Vertex 3196: +Vertex 3197: +Vertex 3198: +Vertex 3199: +Vertex 3200: +Vertex 3201: +Vertex 3202: +Vertex 3203: +Vertex 3204: +Vertex 3205: +Vertex 3206: +Vertex 3207: +Vertex 3208: +Vertex 3209: +Vertex 3210: +Vertex 3211: +Vertex 3212: +Vertex 3213: +Vertex 3214: +Vertex 3215: +Vertex 3216: +Vertex 3217: +Vertex 3218: +Vertex 3219: +Vertex 3220: +Vertex 3221: +Vertex 3222: +Vertex 3223: +Vertex 3224: +Vertex 3225: +Vertex 3226: +Vertex 3227: +Vertex 3228: +Vertex 3229: +Vertex 3230: +Vertex 3231: +Vertex 3232: +Vertex 3233: +Vertex 3234: +Vertex 3235: +Vertex 3236: +Vertex 3237: +Vertex 3238: +Vertex 3239: +Vertex 3240: +Vertex 3241: +Vertex 3242: +Vertex 3243: +Vertex 3244: +Vertex 3245: +Vertex 3246: +Vertex 3247: +Vertex 3248: +Vertex 3249: +Vertex 3250: +Vertex 3251: +Vertex 3252: +Vertex 3253: +Vertex 3254: +Vertex 3255: +Vertex 3256: +Vertex 3257: +Vertex 3258: +Vertex 3259: +Vertex 3260: +Vertex 3261: +Vertex 3262: +Vertex 3263: +Vertex 3264: +Vertex 3265: +Vertex 3266: +Vertex 3267: +Vertex 3268: +Vertex 3269: +Vertex 3270: +Vertex 3271: +Vertex 3272: +Vertex 3273: +Vertex 3274: +Vertex 3275: +Vertex 3276: +Vertex 3277: +Vertex 3278: +Vertex 3279: +Vertex 3280: +Vertex 3281: +Vertex 3282: +Vertex 3283: +Vertex 3284: +Vertex 3285: +Vertex 3286: +Vertex 3287: +Vertex 3288: +Vertex 3289: +Vertex 3290: +Vertex 3291: +Vertex 3292: +Vertex 3293: +Vertex 3294: +Vertex 3295: +Vertex 3296: +Vertex 3297: +Vertex 3298: +Vertex 3299: +Vertex 3300: +Vertex 3301: +Vertex 3302: +Vertex 3303: +Vertex 3304: +Vertex 3305: +Vertex 3306: +Vertex 3307: +Vertex 3308: +Vertex 3309: +Vertex 3310: +Vertex 3311: +Vertex 3312: +Vertex 3313: +Vertex 3314: +Vertex 3315: +Vertex 3316: +Vertex 3317: +Vertex 3318: +Vertex 3319: +Vertex 3320: +Vertex 3321: +Vertex 3322: +Vertex 3323: +Vertex 3324: +Vertex 3325: +Vertex 3326: +Vertex 3327: +Vertex 3328: +Vertex 3329: +Vertex 3330: +Vertex 3331: +Vertex 3332: +Vertex 3333: +Vertex 3334: +Vertex 3335: +Vertex 3336: +Vertex 3337: +Vertex 3338: +Vertex 3339: +Vertex 3340: +Vertex 3341: +Vertex 3342: +Vertex 3343: +Vertex 3344: +Vertex 3345: +Vertex 3346: +Vertex 3347: +Vertex 3348: +Vertex 3349: +Vertex 3350: +Vertex 3351: +Vertex 3352: +Vertex 3353: +Vertex 3354: +Vertex 3355: +Vertex 3356: +Vertex 3357: +Vertex 3358: +Vertex 3359: +Vertex 3360: +Vertex 3361: +Vertex 3362: +Vertex 3363: +Vertex 3364: +Vertex 3365: +Vertex 3366: +Vertex 3367: +Vertex 3368: +Vertex 3369: +Vertex 3370: +Vertex 3371: +Vertex 3372: +Vertex 3373: +Vertex 3374: +Vertex 3375: +Vertex 3376: +Vertex 3377: +Vertex 3378: +Vertex 3379: +Vertex 3380: +Vertex 3381: +Vertex 3382: +Vertex 3383: +Vertex 3384: +Vertex 3385: +Vertex 3386: +Vertex 3387: +Vertex 3388: +Vertex 3389: +Vertex 3390: +Vertex 3391: +Vertex 3392: +Vertex 3393: +Vertex 3394: +Vertex 3395: +Vertex 3396: +Vertex 3397: +Vertex 3398: +Vertex 3399: +Vertex 3400: +Vertex 3401: +Vertex 3402: +Vertex 3403: +Vertex 3404: +Vertex 3405: +Vertex 3406: +Vertex 3407: +Vertex 3408: +Vertex 3409: +Vertex 3410: +Vertex 3411: +Vertex 3412: +Vertex 3413: +Vertex 3414: +Vertex 3415: +Vertex 3416: +Vertex 3417: +Vertex 3418: +Vertex 3419: +Vertex 3420: +Vertex 3421: +Vertex 3422: +Vertex 3423: +Vertex 3424: +Vertex 3425: +Vertex 3426: +Vertex 3427: +Vertex 3428: +Vertex 3429: +Vertex 3430: +Vertex 3431: +Vertex 3432: +Vertex 3433: +Vertex 3434: +Vertex 3435: +Vertex 3436: +Vertex 3437: +Vertex 3438: +Vertex 3439: +Vertex 3440: +Vertex 3441: +Vertex 3442: +Vertex 3443: +Vertex 3444: +Vertex 3445: +Vertex 3446: +Vertex 3447: +Vertex 3448: +Vertex 3449: +Vertex 3450: +Vertex 3451: +Vertex 3452: +Vertex 3453: +Vertex 3454: +Vertex 3455: +Vertex 3456: +Vertex 3457: +Vertex 3458: +Vertex 3459: +Vertex 3460: +Vertex 3461: +Vertex 3462: +Vertex 3463: +Vertex 3464: +Vertex 3465: +Vertex 3466: +Vertex 3467: +Vertex 3468: +Vertex 3469: +Vertex 3470: +Vertex 3471: +Vertex 3472: +Vertex 3473: +Vertex 3474: +Vertex 3475: +Vertex 3476: +Vertex 3477: +Vertex 3478: +Vertex 3479: +Vertex 3480: +Vertex 3481: +Vertex 3482: +Vertex 3483: +Vertex 3484: +Vertex 3485: +Vertex 3486: +Vertex 3487: +Vertex 3488: +Vertex 3489: +Vertex 3490: +Vertex 3491: +Vertex 3492: +Vertex 3493: +Vertex 3494: +Vertex 3495: +Vertex 3496: +Vertex 3497: +Vertex 3498: +Vertex 3499: +Vertex 3500: +Vertex 3501: +Vertex 3502: +Vertex 3503: +Vertex 3504: +Vertex 3505: +Vertex 3506: +Vertex 3507: +Vertex 3508: +Vertex 3509: +Vertex 3510: +Vertex 3511: +Vertex 3512: +Vertex 3513: +Vertex 3514: +Vertex 3515: +Vertex 3516: +Vertex 3517: +Vertex 3518: +Vertex 3519: +Vertex 3520: +Vertex 3521: +Vertex 3522: +Vertex 3523: +Vertex 3524: +Vertex 3525: +Vertex 3526: +Vertex 3527: +Vertex 3528: +Vertex 3529: +Vertex 3530: +Vertex 3531: +Vertex 3532: +Vertex 3533: +Vertex 3534: +Vertex 3535: +Vertex 3536: +Vertex 3537: +Vertex 3538: +Vertex 3539: +Vertex 3540: +Vertex 3541: +Vertex 3542: +Vertex 3543: +Vertex 3544: +Vertex 3545: +Vertex 3546: +Vertex 3547: +Vertex 3548: +Vertex 3549: +Vertex 3550: +Vertex 3551: +Vertex 3552: +Vertex 3553: +Vertex 3554: +Vertex 3555: +Vertex 3556: +Vertex 3557: +Vertex 3558: +Vertex 3559: +Vertex 3560: +Vertex 3561: +Vertex 3562: +Vertex 3563: +Vertex 3564: +Vertex 3565: +Vertex 3566: +Vertex 3567: +Vertex 3568: +Vertex 3569: +Vertex 3570: +Vertex 3571: +Vertex 3572: +Vertex 3573: +Vertex 3574: +Vertex 3575: +Vertex 3576: +Vertex 3577: +Vertex 3578: +Vertex 3579: +Vertex 3580: +Vertex 3581: +Vertex 3582: +Vertex 3583: +Vertex 3584: +Vertex 3585: +Vertex 3586: +Vertex 3587: +Vertex 3588: +Vertex 3589: +Vertex 3590: +Vertex 3591: +Vertex 3592: +Vertex 3593: +Vertex 3594: +Vertex 3595: +Vertex 3596: +Vertex 3597: +Vertex 3598: +Vertex 3599: +Vertex 3600: +Vertex 3601: +Vertex 3602: +Vertex 3603: +Vertex 3604: +Vertex 3605: +Vertex 3606: +Vertex 3607: +Vertex 3608: +Vertex 3609: +Vertex 3610: +Vertex 3611: +Vertex 3612: +Vertex 3613: +Vertex 3614: +Vertex 3615: +Vertex 3616: +Vertex 3617: +Vertex 3618: +Vertex 3619: +Vertex 3620: +Vertex 3621: +Vertex 3622: +Vertex 3623: +Vertex 3624: +Vertex 3625: +Vertex 3626: +Vertex 3627: +Vertex 3628: +Vertex 3629: +Vertex 3630: +Vertex 3631: +Vertex 3632: +Vertex 3633: +Vertex 3634: +Vertex 3635: +Vertex 3636: +Vertex 3637: +Vertex 3638: +Vertex 3639: +Vertex 3640: +Vertex 3641: +Vertex 3642: +Vertex 3643: +Vertex 3644: +Vertex 3645: +Vertex 3646: +Vertex 3647: +Vertex 3648: +Vertex 3649: +Vertex 3650: +Vertex 3651: +Vertex 3652: +Vertex 3653: +Vertex 3654: +Vertex 3655: +Vertex 3656: +Vertex 3657: +Vertex 3658: +Vertex 3659: +Vertex 3660: +Vertex 3661: +Vertex 3662: +Vertex 3663: +Vertex 3664: +Vertex 3665: +Vertex 3666: +Vertex 3667: +Vertex 3668: +Vertex 3669: +Vertex 3670: +Vertex 3671: +Vertex 3672: +Vertex 3673: +Vertex 3674: +Vertex 3675: +Vertex 3676: +Vertex 3677: +Vertex 3678: +Vertex 3679: +Vertex 3680: +Vertex 3681: +Vertex 3682: +Vertex 3683: +Vertex 3684: +Vertex 3685: +Vertex 3686: +Vertex 3687: +Vertex 3688: +Vertex 3689: +Vertex 3690: +Vertex 3691: +Vertex 3692: +Vertex 3693: +Vertex 3694: +Vertex 3695: +Vertex 3696: +Vertex 3697: +Vertex 3698: +Vertex 3699: +Vertex 3700: +Vertex 3701: +Vertex 3702: +Vertex 3703: +Vertex 3704: +Vertex 3705: +Vertex 3706: +Vertex 3707: +Vertex 3708: +Vertex 3709: +Vertex 3710: +Vertex 3711: +Vertex 3712: +Vertex 3713: +Vertex 3714: +Vertex 3715: +Vertex 3716: +Vertex 3717: +Vertex 3718: +Vertex 3719: +Vertex 3720: +Vertex 3721: +Vertex 3722: +Vertex 3723: +Vertex 3724: +Vertex 3725: +Vertex 3726: +Vertex 3727: +Vertex 3728: +Vertex 3729: +Vertex 3730: +Vertex 3731: +Vertex 3732: +Vertex 3733: +Vertex 3734: +Vertex 3735: +Vertex 3736: +Vertex 3737: +Vertex 3738: +Vertex 3739: +Vertex 3740: +Vertex 3741: +Vertex 3742: +Vertex 3743: +Vertex 3744: +Vertex 3745: +Vertex 3746: +Vertex 3747: +Vertex 3748: +Vertex 3749: +Vertex 3750: +Vertex 3751: +Vertex 3752: +Vertex 3753: +Vertex 3754: +Vertex 3755: +Vertex 3756: +Vertex 3757: +Vertex 3758: +Vertex 3759: +Vertex 3760: +Vertex 3761: +Vertex 3762: +Vertex 3763: +Vertex 3764: +Vertex 3765: +Vertex 3766: +Vertex 3767: +Vertex 3768: +Vertex 3769: +Vertex 3770: +Vertex 3771: +Vertex 3772: +Vertex 3773: +Vertex 3774: +Vertex 3775: +Vertex 3776: +Vertex 3777: +Vertex 3778: +Vertex 3779: +Vertex 3780: +Vertex 3781: +Vertex 3782: +Vertex 3783: +Vertex 3784: +Vertex 3785: +Vertex 3786: +Vertex 3787: +Vertex 3788: +Vertex 3789: +Vertex 3790: +Vertex 3791: +Vertex 3792: +Vertex 3793: +Vertex 3794: +Vertex 3795: +Vertex 3796: +Vertex 3797: +Vertex 3798: +Vertex 3799: +Vertex 3800: +Vertex 3801: +Vertex 3802: +Vertex 3803: +Vertex 3804: +Vertex 3805: +Vertex 3806: +Vertex 3807: +Vertex 3808: +Vertex 3809: +Vertex 3810: +Vertex 3811: +Vertex 3812: +Vertex 3813: +Vertex 3814: +Vertex 3815: +Vertex 3816: +Vertex 3817: +Vertex 3818: +Vertex 3819: +Vertex 3820: +Vertex 3821: +Vertex 3822: +Vertex 3823: +Vertex 3824: +Vertex 3825: +Vertex 3826: +Vertex 3827: +Vertex 3828: +Vertex 3829: +Vertex 3830: +Vertex 3831: +Vertex 3832: +Vertex 3833: +Vertex 3834: +Vertex 3835: +Vertex 3836: +Vertex 3837: +Vertex 3838: +Vertex 3839: +Vertex 3840: +Vertex 3841: +Vertex 3842: +Vertex 3843: +Vertex 3844: +Vertex 3845: +Vertex 3846: +Vertex 3847: +Vertex 3848: +Vertex 3849: +Vertex 3850: +Vertex 3851: +Vertex 3852: +Vertex 3853: +Vertex 3854: +Vertex 3855: +Vertex 3856: +Vertex 3857: +Vertex 3858: +Vertex 3859: +Vertex 3860: +Vertex 3861: +Vertex 3862: +Vertex 3863: +Vertex 3864: +Vertex 3865: +Vertex 3866: +Vertex 3867: +Vertex 3868: +Vertex 3869: +Vertex 3870: +Vertex 3871: +Vertex 3872: +Vertex 3873: +Vertex 3874: +Vertex 3875: +Vertex 3876: +Vertex 3877: +Vertex 3878: +Vertex 3879: +Vertex 3880: +Vertex 3881: +Vertex 3882: +Vertex 3883: +Vertex 3884: +Vertex 3885: +Vertex 3886: +Vertex 3887: +Vertex 3888: +Vertex 3889: +Vertex 3890: +Vertex 3891: +Vertex 3892: +Vertex 3893: +Vertex 3894: +Vertex 3895: +Vertex 3896: +Vertex 3897: +Vertex 3898: +Vertex 3899: +Vertex 3900: +Vertex 3901: +Vertex 3902: +Vertex 3903: +Vertex 3904: +Vertex 3905: +Vertex 3906: +Vertex 3907: +Vertex 3908: +Vertex 3909: +Vertex 3910: +Vertex 3911: +Vertex 3912: +Vertex 3913: +Vertex 3914: +Vertex 3915: +Vertex 3916: +Vertex 3917: +Vertex 3918: +Vertex 3919: +Vertex 3920: +Vertex 3921: +Vertex 3922: +Vertex 3923: +Vertex 3924: +Vertex 3925: +Vertex 3926: +Vertex 3927: +Vertex 3928: +Vertex 3929: +Vertex 3930: +Vertex 3931: +Vertex 3932: +Vertex 3933: +Vertex 3934: +Vertex 3935: +Vertex 3936: +Vertex 3937: +Vertex 3938: +Vertex 3939: +Vertex 3940: +Vertex 3941: +Vertex 3942: +Vertex 3943: +Vertex 3944: +Vertex 3945: +Vertex 3946: +Vertex 3947: +Vertex 3948: +Vertex 3949: +Vertex 3950: +Vertex 3951: +Vertex 3952: +Vertex 3953: +Vertex 3954: +Vertex 3955: +Vertex 3956: +Vertex 3957: +Vertex 3958: +Vertex 3959: +Vertex 3960: +Vertex 3961: +Vertex 3962: +Vertex 3963: +Vertex 3964: +Vertex 3965: +Vertex 3966: +Vertex 3967: +Vertex 3968: +Vertex 3969: +Vertex 3970: +Vertex 3971: +Vertex 3972: +Vertex 3973: +Vertex 3974: +Vertex 3975: +Vertex 3976: +Vertex 3977: +Vertex 3978: +Vertex 3979: +Vertex 3980: +Vertex 3981: +Vertex 3982: +Vertex 3983: +Vertex 3984: +Vertex 3985: +Vertex 3986: +Vertex 3987: +Vertex 3988: +Vertex 3989: +Vertex 3990: +Vertex 3991: +Vertex 3992: +Vertex 3993: +Vertex 3994: +Vertex 3995: +Vertex 3996: +Vertex 3997: +Vertex 3998: +Vertex 3999: +Vertex 4000: +Vertex 4001: +Vertex 4002: +Vertex 4003: +Vertex 4004: +Vertex 4005: +Vertex 4006: +Vertex 4007: +Vertex 4008: +Vertex 4009: +Vertex 4010: +Vertex 4011: +Vertex 4012: +Vertex 4013: +Vertex 4014: +Vertex 4015: +Vertex 4016: +Vertex 4017: +Vertex 4018: +Vertex 4019: +Vertex 4020: +Vertex 4021: +Vertex 4022: +Vertex 4023: +Vertex 4024: +Vertex 4025: +Vertex 4026: +Vertex 4027: +Vertex 4028: +Vertex 4029: +Vertex 4030: +Vertex 4031: +Vertex 4032: +Vertex 4033: +Vertex 4034: +Vertex 4035: +Vertex 4036: +Vertex 4037: +Vertex 4038: +Vertex 4039: +Vertex 4040: +Vertex 4041: +Vertex 4042: +Vertex 4043: +Vertex 4044: +Vertex 4045: +Vertex 4046: +Vertex 4047: +Vertex 4048: +Vertex 4049: +Vertex 4050: +Vertex 4051: +Vertex 4052: +Vertex 4053: +Vertex 4054: +Vertex 4055: +Vertex 4056: +Vertex 4057: +Vertex 4058: +Vertex 4059: +Vertex 4060: +Vertex 4061: +Vertex 4062: +Vertex 4063: +Vertex 4064: +Vertex 4065: +Vertex 4066: +Vertex 4067: +Vertex 4068: +Vertex 4069: +Vertex 4070: +Vertex 4071: +Vertex 4072: +Vertex 4073: +Vertex 4074: +Vertex 4075: +Vertex 4076: +Vertex 4077: +Vertex 4078: +Vertex 4079: +Vertex 4080: +Vertex 4081: +Vertex 4082: +Vertex 4083: +Vertex 4084: +Vertex 4085: +Vertex 4086: +Vertex 4087: +Vertex 4088: +Vertex 4089: +Vertex 4090: +Vertex 4091: +Vertex 4092: +Vertex 4093: +Vertex 4094: +Vertex 4095: +Vertex 4096: +Vertex 4097: +Vertex 4098: +Vertex 4099: +Vertex 4100: +Vertex 4101: +Vertex 4102: +Vertex 4103: +Vertex 4104: +Vertex 4105: +Vertex 4106: +Vertex 4107: +Vertex 4108: +Vertex 4109: +Vertex 4110: +Vertex 4111: +Vertex 4112: +Vertex 4113: +Vertex 4114: +Vertex 4115: +Vertex 4116: +Vertex 4117: +Vertex 4118: +Vertex 4119: +Vertex 4120: +Vertex 4121: +Vertex 4122: +Vertex 4123: +Vertex 4124: +Vertex 4125: +Vertex 4126: +Vertex 4127: +Vertex 4128: +Vertex 4129: +Vertex 4130: +Vertex 4131: +Vertex 4132: +Vertex 4133: +Vertex 4134: +Vertex 4135: +Vertex 4136: +Vertex 4137: +Vertex 4138: +Vertex 4139: +Vertex 4140: +Vertex 4141: +Vertex 4142: +Vertex 4143: +Vertex 4144: +Vertex 4145: +Vertex 4146: +Vertex 4147: +Vertex 4148: +Vertex 4149: +Vertex 4150: +Vertex 4151: +Vertex 4152: +Vertex 4153: +Vertex 4154: +Vertex 4155: +Vertex 4156: +Vertex 4157: +Vertex 4158: +Vertex 4159: +Vertex 4160: +Vertex 4161: +Vertex 4162: +Vertex 4163: +Vertex 4164: +Vertex 4165: +Vertex 4166: +Vertex 4167: +Vertex 4168: +Vertex 4169: +Vertex 4170: +Vertex 4171: +Vertex 4172: +Vertex 4173: +Vertex 4174: +Vertex 4175: +Vertex 4176: +Vertex 4177: +Vertex 4178: +Vertex 4179: +Vertex 4180: +Vertex 4181: +Vertex 4182: +Vertex 4183: +Vertex 4184: +Vertex 4185: +Vertex 4186: +Vertex 4187: +Vertex 4188: +Vertex 4189: +Vertex 4190: +Vertex 4191: +Vertex 4192: +Vertex 4193: +Vertex 4194: +Vertex 4195: +Vertex 4196: +Vertex 4197: +Vertex 4198: +Vertex 4199: +Vertex 4200: +Vertex 4201: +Vertex 4202: +Vertex 4203: +Vertex 4204: +Vertex 4205: +Vertex 4206: +Vertex 4207: +Vertex 4208: +Vertex 4209: +Vertex 4210: +Vertex 4211: +Vertex 4212: +Vertex 4213: +Vertex 4214: +Vertex 4215: +Vertex 4216: +Vertex 4217: +Vertex 4218: +Vertex 4219: +Vertex 4220: +Vertex 4221: +Vertex 4222: +Vertex 4223: +Vertex 4224: +Vertex 4225: +Vertex 4226: +Vertex 4227: +Vertex 4228: +Vertex 4229: +Vertex 4230: +Vertex 4231: +Vertex 4232: +Vertex 4233: +Vertex 4234: +Vertex 4235: +Vertex 4236: +Vertex 4237: +Vertex 4238: +Vertex 4239: +Vertex 4240: +Vertex 4241: +Vertex 4242: +Vertex 4243: +Vertex 4244: +Vertex 4245: +Vertex 4246: +Vertex 4247: +Vertex 4248: +Vertex 4249: +Vertex 4250: +Vertex 4251: +Vertex 4252: +Vertex 4253: +Vertex 4254: +Vertex 4255: +Vertex 4256: +Vertex 4257: +Vertex 4258: +Vertex 4259: +Vertex 4260: +Vertex 4261: +Vertex 4262: +Vertex 4263: +Vertex 4264: +Vertex 4265: +Vertex 4266: +Vertex 4267: +Vertex 4268: +Vertex 4269: +Vertex 4270: +Vertex 4271: +Vertex 4272: +Vertex 4273: +Vertex 4274: +Vertex 4275: +Vertex 4276: +Vertex 4277: +Vertex 4278: +Vertex 4279: +Vertex 4280: +Vertex 4281: +Vertex 4282: +Vertex 4283: +Vertex 4284: +Vertex 4285: +Vertex 4286: +Vertex 4287: +Vertex 4288: +Vertex 4289: +Vertex 4290: +Vertex 4291: +Vertex 4292: +Vertex 4293: +Vertex 4294: +Vertex 4295: +Vertex 4296: +Vertex 4297: +Vertex 4298: +Vertex 4299: +Vertex 4300: +Vertex 4301: +Vertex 4302: +Vertex 4303: +Vertex 4304: +Vertex 4305: +Vertex 4306: +Vertex 4307: +Vertex 4308: +Vertex 4309: +Vertex 4310: +Vertex 4311: +Vertex 4312: +Vertex 4313: +Vertex 4314: +Vertex 4315: +Vertex 4316: +Vertex 4317: +Vertex 4318: +Vertex 4319: +Vertex 4320: +Vertex 4321: +Vertex 4322: +Vertex 4323: +Vertex 4324: +Vertex 4325: +Vertex 4326: +Vertex 4327: +Vertex 4328: +Vertex 4329: +Vertex 4330: +Vertex 4331: +Vertex 4332: +Vertex 4333: +Vertex 4334: +Vertex 4335: +Vertex 4336: +Vertex 4337: +Vertex 4338: +Vertex 4339: +Vertex 4340: +Vertex 4341: +Vertex 4342: +Vertex 4343: +Vertex 4344: +Vertex 4345: +Vertex 4346: +Vertex 4347: +Vertex 4348: +Vertex 4349: +Vertex 4350: +Vertex 4351: +Vertex 4352: +Vertex 4353: +Vertex 4354: +Vertex 4355: +Vertex 4356: +Vertex 4357: +Vertex 4358: +Vertex 4359: +Vertex 4360: +Vertex 4361: +Vertex 4362: +Vertex 4363: +Vertex 4364: +Vertex 4365: +Vertex 4366: +Vertex 4367: +Vertex 4368: +Vertex 4369: +Vertex 4370: +Vertex 4371: +Vertex 4372: +Vertex 4373: +Vertex 4374: +Vertex 4375: +Vertex 4376: +Vertex 4377: +Vertex 4378: +Vertex 4379: +Vertex 4380: +Vertex 4381: +Vertex 4382: +Vertex 4383: +Vertex 4384: +Vertex 4385: +Vertex 4386: +Vertex 4387: +Vertex 4388: +Vertex 4389: +Vertex 4390: +Vertex 4391: +Vertex 4392: +Vertex 4393: +Vertex 4394: +Vertex 4395: +Vertex 4396: +Vertex 4397: +Vertex 4398: +Vertex 4399: +Vertex 4400: +Vertex 4401: +Vertex 4402: +Vertex 4403: +Vertex 4404: +Vertex 4405: +Vertex 4406: +Vertex 4407: +Vertex 4408: +Vertex 4409: +Vertex 4410: +Vertex 4411: +Vertex 4412: +Vertex 4413: +Vertex 4414: +Vertex 4415: +Vertex 4416: +Vertex 4417: +Vertex 4418: +Vertex 4419: +Vertex 4420: +Vertex 4421: +Vertex 4422: +Vertex 4423: +Vertex 4424: +Vertex 4425: +Vertex 4426: +Vertex 4427: +Vertex 4428: +Vertex 4429: +Vertex 4430: +Vertex 4431: +Vertex 4432: +Vertex 4433: +Vertex 4434: +Vertex 4435: +Vertex 4436: +Vertex 4437: +Vertex 4438: +Vertex 4439: +Vertex 4440: +Vertex 4441: +Vertex 4442: +Vertex 4443: +Vertex 4444: +Vertex 4445: +Vertex 4446: +Vertex 4447: +Vertex 4448: +Vertex 4449: +Vertex 4450: +Vertex 4451: +Vertex 4452: +Vertex 4453: +Vertex 4454: +Vertex 4455: +Vertex 4456: +Vertex 4457: +Vertex 4458: +Vertex 4459: +Vertex 4460: +Vertex 4461: +Vertex 4462: +Vertex 4463: +Vertex 4464: +Vertex 4465: +Vertex 4466: +Vertex 4467: +Vertex 4468: +Vertex 4469: +Vertex 4470: +Vertex 4471: +Vertex 4472: +Vertex 4473: +Vertex 4474: +Vertex 4475: +Vertex 4476: +Vertex 4477: +Vertex 4478: +Vertex 4479: +Vertex 4480: +Vertex 4481: +Vertex 4482: +Vertex 4483: +Vertex 4484: +Vertex 4485: +Vertex 4486: +Vertex 4487: +Vertex 4488: +Vertex 4489: +Vertex 4490: +Vertex 4491: +Vertex 4492: +Vertex 4493: +Vertex 4494: +Vertex 4495: +Vertex 4496: +Vertex 4497: +Vertex 4498: +Vertex 4499: +Vertex 4500: +Vertex 4501: +Vertex 4502: +Vertex 4503: +Vertex 4504: +Vertex 4505: +Vertex 4506: +Vertex 4507: +Vertex 4508: +Vertex 4509: +Vertex 4510: +Vertex 4511: +Vertex 4512: +Vertex 4513: +Vertex 4514: +Vertex 4515: +Vertex 4516: +Vertex 4517: +Vertex 4518: +Vertex 4519: +Vertex 4520: +Vertex 4521: +Vertex 4522: +Vertex 4523: +Vertex 4524: +Vertex 4525: +Vertex 4526: +Vertex 4527: +Vertex 4528: +Vertex 4529: +Vertex 4530: +Vertex 4531: +Vertex 4532: +Vertex 4533: +Vertex 4534: +Vertex 4535: +Vertex 4536: +Vertex 4537: +Vertex 4538: +Vertex 4539: +Vertex 4540: +Vertex 4541: +Vertex 4542: +Vertex 4543: +Vertex 4544: +Vertex 4545: +Vertex 4546: +Vertex 4547: +Vertex 4548: +Vertex 4549: +Vertex 4550: +Vertex 4551: +Vertex 4552: +Vertex 4553: +Vertex 4554: +Vertex 4555: +Vertex 4556: +Vertex 4557: +Vertex 4558: +Vertex 4559: +Vertex 4560: +Vertex 4561: +Vertex 4562: +Vertex 4563: +Vertex 4564: +Vertex 4565: +Vertex 4566: +Vertex 4567: +Vertex 4568: +Vertex 4569: +Vertex 4570: +Vertex 4571: +Vertex 4572: +Vertex 4573: +Vertex 4574: +Vertex 4575: +Vertex 4576: +Vertex 4577: +Vertex 4578: +Vertex 4579: +Vertex 4580: +Vertex 4581: +Vertex 4582: +Vertex 4583: +Vertex 4584: +Vertex 4585: +Vertex 4586: +Vertex 4587: +Vertex 4588: +Vertex 4589: +Vertex 4590: +Vertex 4591: +Vertex 4592: +Vertex 4593: +Vertex 4594: +Vertex 4595: +Vertex 4596: +Vertex 4597: +Vertex 4598: +Vertex 4599: +Vertex 4600: +Vertex 4601: +Vertex 4602: +Vertex 4603: +Vertex 4604: +Vertex 4605: +Vertex 4606: +Vertex 4607: +Vertex 4608: +Vertex 4609: +Vertex 4610: +Vertex 4611: +Vertex 4612: +Vertex 4613: +Vertex 4614: +Vertex 4615: +Vertex 4616: +Vertex 4617: +Vertex 4618: +Vertex 4619: +Vertex 4620: +Vertex 4621: +Vertex 4622: +Vertex 4623: +Vertex 4624: +Vertex 4625: +Vertex 4626: +Vertex 4627: +Vertex 4628: +Vertex 4629: +Vertex 4630: +Vertex 4631: +Vertex 4632: +Vertex 4633: +Vertex 4634: +Vertex 4635: +Vertex 4636: +Vertex 4637: +Vertex 4638: +Vertex 4639: +Vertex 4640: +Vertex 4641: +Vertex 4642: +Vertex 4643: +Vertex 4644: +Vertex 4645: +Vertex 4646: +Vertex 4647: +Vertex 4648: +Vertex 4649: +Vertex 4650: +Vertex 4651: +Vertex 4652: +Vertex 4653: +Vertex 4654: +Vertex 4655: +Vertex 4656: +Vertex 4657: +Vertex 4658: +Vertex 4659: +Vertex 4660: +Vertex 4661: +Vertex 4662: +Vertex 4663: +Vertex 4664: +Vertex 4665: +Vertex 4666: +Vertex 4667: +Vertex 4668: +Vertex 4669: +Vertex 4670: +Vertex 4671: +Vertex 4672: +Vertex 4673: +Vertex 4674: +Vertex 4675: +Vertex 4676: +Vertex 4677: +Vertex 4678: +Vertex 4679: +Vertex 4680: +Vertex 4681: +Vertex 4682: +Vertex 4683: +Vertex 4684: +Vertex 4685: +Vertex 4686: +Vertex 4687: +Vertex 4688: +Vertex 4689: +Vertex 4690: +Vertex 4691: +Vertex 4692: +Vertex 4693: +Vertex 4694: +Vertex 4695: +Vertex 4696: +Vertex 4697: +Vertex 4698: +Vertex 4699: +Vertex 4700: +Vertex 4701: +Vertex 4702: +Vertex 4703: +Vertex 4704: +Vertex 4705: +Vertex 4706: +Vertex 4707: +Vertex 4708: +Vertex 4709: +Vertex 4710: +Vertex 4711: +Vertex 4712: +Vertex 4713: +Vertex 4714: +Vertex 4715: +Vertex 4716: +Vertex 4717: +Vertex 4718: +Vertex 4719: +Vertex 4720: +Vertex 4721: +Vertex 4722: +Vertex 4723: +Vertex 4724: +Vertex 4725: +Vertex 4726: +Vertex 4727: +Vertex 4728: +Vertex 4729: +Vertex 4730: +Vertex 4731: +Vertex 4732: +Vertex 4733: +Vertex 4734: +Vertex 4735: +Vertex 4736: +Vertex 4737: +Vertex 4738: +Vertex 4739: +Vertex 4740: +Vertex 4741: +Vertex 4742: +Vertex 4743: +Vertex 4744: +Vertex 4745: +Vertex 4746: +Vertex 4747: +Vertex 4748: +Vertex 4749: +Vertex 4750: +Vertex 4751: +Vertex 4752: +Vertex 4753: +Vertex 4754: +Vertex 4755: +Vertex 4756: +Vertex 4757: +Vertex 4758: +Vertex 4759: +Vertex 4760: +Vertex 4761: +Vertex 4762: +Vertex 4763: +Vertex 4764: +Vertex 4765: +Vertex 4766: +Vertex 4767: +Vertex 4768: +Vertex 4769: +Vertex 4770: +Vertex 4771: +Vertex 4772: +Vertex 4773: +Vertex 4774: +Vertex 4775: +Vertex 4776: +Vertex 4777: +Vertex 4778: +Vertex 4779: +Vertex 4780: +Vertex 4781: +Vertex 4782: +Vertex 4783: +Vertex 4784: +Vertex 4785: +Vertex 4786: +Vertex 4787: +Vertex 4788: +Vertex 4789: +Vertex 4790: +Vertex 4791: +Vertex 4792: +Vertex 4793: +Vertex 4794: +Vertex 4795: +Vertex 4796: +Vertex 4797: +Vertex 4798: +Vertex 4799: +Vertex 4800: +Vertex 4801: +Vertex 4802: +Vertex 4803: +Vertex 4804: +Vertex 4805: +Vertex 4806: +Vertex 4807: +Vertex 4808: +Vertex 4809: +Vertex 4810: +Vertex 4811: +Vertex 4812: +Vertex 4813: +Vertex 4814: +Vertex 4815: +Vertex 4816: +Vertex 4817: +Vertex 4818: +Vertex 4819: +Vertex 4820: +Vertex 4821: +Vertex 4822: +Vertex 4823: +Vertex 4824: +Vertex 4825: +Vertex 4826: +Vertex 4827: +Vertex 4828: +Vertex 4829: +Vertex 4830: +Vertex 4831: +Vertex 4832: +Vertex 4833: +Vertex 4834: +Vertex 4835: +Vertex 4836: +Vertex 4837: +Vertex 4838: +Vertex 4839: +Vertex 4840: +Vertex 4841: +Vertex 4842: +Vertex 4843: +Vertex 4844: +Vertex 4845: +Vertex 4846: +Vertex 4847: +Vertex 4848: +Vertex 4849: +Vertex 4850: +Vertex 4851: +Vertex 4852: +Vertex 4853: +Vertex 4854: +Vertex 4855: +Vertex 4856: +Vertex 4857: +Vertex 4858: +Vertex 4859: +Vertex 4860: +Vertex 4861: +Vertex 4862: +Vertex 4863: +Vertex 4864: +Vertex 4865: +Vertex 4866: +Vertex 4867: +Vertex 4868: +Vertex 4869: +Vertex 4870: +Vertex 4871: +Vertex 4872: +Vertex 4873: +Vertex 4874: +Vertex 4875: +Vertex 4876: +Vertex 4877: +Vertex 4878: +Vertex 4879: +Vertex 4880: +Vertex 4881: +Vertex 4882: +Vertex 4883: +Vertex 4884: +Vertex 4885: +Vertex 4886: +Vertex 4887: +Vertex 4888: +Vertex 4889: +Vertex 4890: +Vertex 4891: +Vertex 4892: +Vertex 4893: +Vertex 4894: +Vertex 4895: +Vertex 4896: +Vertex 4897: +Vertex 4898: +Vertex 4899: +Vertex 4900: +Vertex 4901: +Vertex 4902: +Vertex 4903: +Vertex 4904: +Vertex 4905: +Vertex 4906: +Vertex 4907: +Vertex 4908: +Vertex 4909: +Vertex 4910: +Vertex 4911: +Vertex 4912: +Vertex 4913: +Vertex 4914: +Vertex 4915: +Vertex 4916: +Vertex 4917: +Vertex 4918: +Vertex 4919: +Vertex 4920: +Vertex 4921: +Vertex 4922: +Vertex 4923: +Vertex 4924: +Vertex 4925: +Vertex 4926: +Vertex 4927: +Vertex 4928: +Vertex 4929: +Vertex 4930: +Vertex 4931: +Vertex 4932: +Vertex 4933: +Vertex 4934: +Vertex 4935: +Vertex 4936: +Vertex 4937: +Vertex 4938: +Vertex 4939: +Vertex 4940: +Vertex 4941: +Vertex 4942: +Vertex 4943: +Vertex 4944: +Vertex 4945: +Vertex 4946: +Vertex 4947: +Vertex 4948: +Vertex 4949: +Vertex 4950: +Vertex 4951: +Vertex 4952: +Vertex 4953: +Vertex 4954: +Vertex 4955: +Vertex 4956: +Vertex 4957: +Vertex 4958: +Vertex 4959: +Vertex 4960: +Vertex 4961: +Vertex 4962: +Vertex 4963: +Vertex 4964: +Vertex 4965: +Vertex 4966: +Vertex 4967: +Vertex 4968: +Vertex 4969: +Vertex 4970: +Vertex 4971: +Vertex 4972: +Vertex 4973: +Vertex 4974: +Vertex 4975: +Vertex 4976: +Vertex 4977: +Vertex 4978: +Vertex 4979: +Vertex 4980: +Vertex 4981: +Vertex 4982: +Vertex 4983: +Vertex 4984: +Vertex 4985: +Vertex 4986: +Vertex 4987: +Vertex 4988: +Vertex 4989: +Vertex 4990: +Vertex 4991: +Vertex 4992: +Vertex 4993: +Vertex 4994: +Vertex 4995: +Vertex 4996: +Vertex 4997: +Vertex 4998: +Vertex 4999: +Vertex 5000: +Vertex 5001: +Vertex 5002: +Vertex 5003: +Vertex 5004: +Vertex 5005: +Vertex 5006: +Vertex 5007: +Vertex 5008: +Vertex 5009: +Vertex 5010: +Vertex 5011: +Vertex 5012: +Vertex 5013: +Vertex 5014: +Vertex 5015: +Vertex 5016: +Vertex 5017: +Vertex 5018: +Vertex 5019: +Vertex 5020: +Vertex 5021: +Vertex 5022: +Vertex 5023: +Vertex 5024: +Vertex 5025: +Vertex 5026: +Vertex 5027: +Vertex 5028: +Vertex 5029: +Vertex 5030: +Vertex 5031: +Vertex 5032: +Vertex 5033: +Vertex 5034: +Vertex 5035: +Vertex 5036: +Vertex 5037: +Vertex 5038: +Vertex 5039: +Vertex 5040: +Vertex 5041: +Vertex 5042: +Vertex 5043: +Vertex 5044: +Vertex 5045: +Vertex 5046: +Vertex 5047: +Vertex 5048: +Vertex 5049: +Vertex 5050: +Vertex 5051: +Vertex 5052: +Vertex 5053: +Vertex 5054: +Vertex 5055: +Vertex 5056: +Vertex 5057: +Vertex 5058: +Vertex 5059: +Vertex 5060: +Vertex 5061: +Vertex 5062: +Vertex 5063: +Vertex 5064: +Vertex 5065: +Vertex 5066: +Vertex 5067: +Vertex 5068: +Vertex 5069: +Vertex 5070: +Vertex 5071: +Vertex 5072: +Vertex 5073: +Vertex 5074: +Vertex 5075: +Vertex 5076: +Vertex 5077: +Vertex 5078: +Vertex 5079: +Vertex 5080: +Vertex 5081: +Vertex 5082: +Vertex 5083: +Vertex 5084: +Vertex 5085: +Vertex 5086: +Vertex 5087: +Vertex 5088: +Vertex 5089: +Vertex 5090: +Vertex 5091: +Vertex 5092: +Vertex 5093: +Vertex 5094: +Vertex 5095: +Vertex 5096: +Vertex 5097: +Vertex 5098: +Vertex 5099: +Vertex 5100: +Vertex 5101: +Vertex 5102: +Vertex 5103: +Vertex 5104: +Vertex 5105: +Vertex 5106: +Vertex 5107: +Vertex 5108: +Vertex 5109: +Vertex 5110: +Vertex 5111: +Vertex 5112: +Vertex 5113: +Vertex 5114: +Vertex 5115: +Vertex 5116: +Vertex 5117: +Vertex 5118: +Vertex 5119: +Vertex 5120: +Vertex 5121: +Vertex 5122: +Vertex 5123: +Vertex 5124: +Vertex 5125: +Vertex 5126: +Vertex 5127: +Vertex 5128: +Vertex 5129: +Vertex 5130: +Vertex 5131: +Vertex 5132: +Vertex 5133: +Vertex 5134: +Vertex 5135: +Vertex 5136: +Vertex 5137: +Vertex 5138: +Vertex 5139: +Vertex 5140: +Vertex 5141: +Vertex 5142: +Vertex 5143: +Vertex 5144: +Vertex 5145: +Vertex 5146: +Vertex 5147: +Vertex 5148: +Vertex 5149: +Vertex 5150: +Vertex 5151: +Vertex 5152: +Vertex 5153: +Vertex 5154: +Vertex 5155: +Vertex 5156: +Vertex 5157: +Vertex 5158: +Vertex 5159: +Vertex 5160: +Vertex 5161: +Vertex 5162: +Vertex 5163: +Vertex 5164: +Vertex 5165: +Vertex 5166: +Vertex 5167: +Vertex 5168: +Vertex 5169: +Vertex 5170: +Vertex 5171: +Vertex 5172: +Vertex 5173: +Vertex 5174: +Vertex 5175: +Vertex 5176: +Vertex 5177: +Vertex 5178: +Vertex 5179: +Vertex 5180: +Vertex 5181: +Vertex 5182: +Vertex 5183: +Vertex 5184: +Vertex 5185: +Vertex 5186: +Vertex 5187: +Vertex 5188: +Vertex 5189: +Vertex 5190: +Vertex 5191: +Vertex 5192: +Vertex 5193: +Vertex 5194: +Vertex 5195: +Vertex 5196: +Vertex 5197: +Vertex 5198: +Vertex 5199: +Vertex 5200: +Vertex 5201: +Vertex 5202: +Vertex 5203: +Vertex 5204: +Vertex 5205: +Vertex 5206: +Vertex 5207: +Vertex 5208: +Vertex 5209: +Vertex 5210: +Vertex 5211: +Vertex 5212: +Vertex 5213: +Vertex 5214: +Vertex 5215: +Vertex 5216: +Vertex 5217: +Vertex 5218: +Vertex 5219: +Vertex 5220: +Vertex 5221: +Vertex 5222: +Vertex 5223: +Vertex 5224: +Vertex 5225: +Vertex 5226: +Vertex 5227: +Vertex 5228: +Vertex 5229: +Vertex 5230: +Vertex 5231: +Vertex 5232: +Vertex 5233: +Vertex 5234: +Vertex 5235: +Vertex 5236: +Vertex 5237: +Vertex 5238: +Vertex 5239: +Vertex 5240: +Vertex 5241: +Vertex 5242: +Vertex 5243: +Vertex 5244: +Vertex 5245: +Vertex 5246: +Vertex 5247: +Vertex 5248: +Vertex 5249: +Vertex 5250: +Vertex 5251: +Vertex 5252: +Vertex 5253: +Vertex 5254: +Vertex 5255: +Vertex 5256: +Vertex 5257: +Vertex 5258: +Vertex 5259: +Vertex 5260: +Vertex 5261: +Vertex 5262: +Vertex 5263: +Vertex 5264: +Vertex 5265: +Vertex 5266: +Vertex 5267: +Vertex 5268: +Vertex 5269: +Vertex 5270: +Vertex 5271: +Vertex 5272: +Vertex 5273: +Vertex 5274: +Vertex 5275: +Vertex 5276: +Vertex 5277: +Vertex 5278: +Vertex 5279: +Vertex 5280: +Vertex 5281: +Vertex 5282: +Vertex 5283: +Vertex 5284: +Vertex 5285: +Vertex 5286: +Vertex 5287: +Vertex 5288: +Vertex 5289: +Vertex 5290: +Vertex 5291: +Vertex 5292: +Vertex 5293: +Vertex 5294: +Vertex 5295: +Vertex 5296: +Vertex 5297: +Vertex 5298: +Vertex 5299: +Vertex 5300: +Vertex 5301: +Vertex 5302: +Vertex 5303: +Vertex 5304: +Vertex 5305: +Vertex 5306: +Vertex 5307: +Vertex 5308: +Vertex 5309: +Vertex 5310: +Vertex 5311: +Vertex 5312: +Vertex 5313: +Vertex 5314: +Vertex 5315: +Vertex 5316: +Vertex 5317: +Vertex 5318: +Vertex 5319: +Vertex 5320: +Vertex 5321: +Vertex 5322: +Vertex 5323: +Vertex 5324: +Vertex 5325: +Vertex 5326: +Vertex 5327: +Vertex 5328: +Vertex 5329: +Vertex 5330: +Vertex 5331: +Vertex 5332: +Vertex 5333: +Vertex 5334: +Vertex 5335: +Vertex 5336: +Vertex 5337: +Vertex 5338: +Vertex 5339: +Vertex 5340: +Vertex 5341: +Vertex 5342: +Vertex 5343: +Vertex 5344: +Vertex 5345: +Vertex 5346: +Vertex 5347: +Vertex 5348: +Vertex 5349: +Vertex 5350: +Vertex 5351: +Vertex 5352: +Vertex 5353: +Vertex 5354: +Vertex 5355: +Vertex 5356: +Vertex 5357: +Vertex 5358: +Vertex 5359: +Vertex 5360: +Vertex 5361: +Vertex 5362: +Vertex 5363: +Vertex 5364: +Vertex 5365: +Vertex 5366: +Vertex 5367: +Vertex 5368: +Vertex 5369: +Vertex 5370: +Vertex 5371: +Vertex 5372: +Vertex 5373: +Vertex 5374: +Vertex 5375: +Vertex 5376: +Vertex 5377: +Vertex 5378: +Vertex 5379: +Vertex 5380: +Vertex 5381: +Vertex 5382: +Vertex 5383: +Vertex 5384: +Vertex 5385: +Vertex 5386: +Vertex 5387: +Vertex 5388: +Vertex 5389: +Vertex 5390: +Vertex 5391: +Vertex 5392: +Vertex 5393: +Vertex 5394: +Vertex 5395: +Vertex 5396: +Vertex 5397: +Vertex 5398: +Vertex 5399: +===UV Coordinates: +Face count: 9390 +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 +Face 4480 +UV Count: 3 + UV + UV + UV +Face 4481 +UV Count: 3 + UV + UV + UV +Face 4482 +UV Count: 3 + UV + UV + UV +Face 4483 +UV Count: 3 + UV + UV + UV +Face 4484 +UV Count: 3 + UV + UV + UV +Face 4485 +UV Count: 3 + UV + UV + UV +Face 4486 +UV Count: 3 + UV + UV + UV +Face 4487 +UV Count: 3 + UV + UV + UV +Face 4488 +UV Count: 3 + UV + UV + UV +Face 4489 +UV Count: 3 + UV + UV + UV +Face 4490 +UV Count: 3 + UV + UV + UV +Face 4491 +UV Count: 3 + UV + UV + UV +Face 4492 +UV Count: 3 + UV + UV + UV +Face 4493 +UV Count: 3 + UV + UV + UV +Face 4494 +UV Count: 3 + UV + UV + UV +Face 4495 +UV Count: 3 + UV + UV + UV +Face 4496 +UV Count: 3 + UV + UV + UV +Face 4497 +UV Count: 3 + UV + UV + UV +Face 4498 +UV Count: 3 + UV + UV + UV +Face 4499 +UV Count: 3 + UV + UV + UV +Face 4500 +UV Count: 3 + UV + UV + UV +Face 4501 +UV Count: 3 + UV + UV + UV +Face 4502 +UV Count: 3 + UV + UV + UV +Face 4503 +UV Count: 3 + UV + UV + UV +Face 4504 +UV Count: 3 + UV + UV + UV +Face 4505 +UV Count: 3 + UV + UV + UV +Face 4506 +UV Count: 3 + UV + UV + UV +Face 4507 +UV Count: 3 + UV + UV + UV +Face 4508 +UV Count: 3 + UV + UV + UV +Face 4509 +UV Count: 3 + UV + UV + UV +Face 4510 +UV Count: 3 + UV + UV + UV +Face 4511 +UV Count: 3 + UV + UV + UV +Face 4512 +UV Count: 3 + UV + UV + UV +Face 4513 +UV Count: 3 + UV + UV + UV +Face 4514 +UV Count: 3 + UV + UV + UV +Face 4515 +UV Count: 3 + UV + UV + UV +Face 4516 +UV Count: 3 + UV + UV + UV +Face 4517 +UV Count: 3 + UV + UV + UV +Face 4518 +UV Count: 3 + UV + UV + UV +Face 4519 +UV Count: 3 + UV + UV + UV +Face 4520 +UV Count: 3 + UV + UV + UV +Face 4521 +UV Count: 3 + UV + UV + UV +Face 4522 +UV Count: 3 + UV + UV + UV +Face 4523 +UV Count: 3 + UV + UV + UV +Face 4524 +UV Count: 3 + UV + UV + UV +Face 4525 +UV Count: 3 + UV + UV + UV +Face 4526 +UV Count: 3 + UV + UV + UV +Face 4527 +UV Count: 3 + UV + UV + UV +Face 4528 +UV Count: 3 + UV + UV + UV +Face 4529 +UV Count: 3 + UV + UV + UV +Face 4530 +UV Count: 3 + UV + UV + UV +Face 4531 +UV Count: 3 + UV + UV + UV +Face 4532 +UV Count: 3 + UV + UV + UV +Face 4533 +UV Count: 3 + UV + UV + UV +Face 4534 +UV Count: 3 + UV + UV + UV +Face 4535 +UV Count: 3 + UV + UV + UV +Face 4536 +UV Count: 3 + UV + UV + UV +Face 4537 +UV Count: 3 + UV + UV + UV +Face 4538 +UV Count: 3 + UV + UV + UV +Face 4539 +UV Count: 3 + UV + UV + UV +Face 4540 +UV Count: 3 + UV + UV + UV +Face 4541 +UV Count: 3 + UV + UV + UV +Face 4542 +UV Count: 3 + UV + UV + UV +Face 4543 +UV Count: 3 + UV + UV + UV +Face 4544 +UV Count: 3 + UV + UV + UV +Face 4545 +UV Count: 3 + UV + UV + UV +Face 4546 +UV Count: 3 + UV + UV + UV +Face 4547 +UV Count: 3 + UV + UV + UV +Face 4548 +UV Count: 3 + UV + UV + UV +Face 4549 +UV Count: 3 + UV + UV + UV +Face 4550 +UV Count: 3 + UV + UV + UV +Face 4551 +UV Count: 3 + UV + UV + UV +Face 4552 +UV Count: 3 + UV + UV + UV +Face 4553 +UV Count: 3 + UV + UV + UV +Face 4554 +UV Count: 3 + UV + UV + UV +Face 4555 +UV Count: 3 + UV + UV + UV +Face 4556 +UV Count: 3 + UV + UV + UV +Face 4557 +UV Count: 3 + UV + UV + UV +Face 4558 +UV Count: 3 + UV + UV + UV +Face 4559 +UV Count: 3 + UV + UV + UV +Face 4560 +UV Count: 3 + UV + UV + UV +Face 4561 +UV Count: 3 + UV + UV + UV +Face 4562 +UV Count: 3 + UV + UV + UV +Face 4563 +UV Count: 3 + UV + UV + UV +Face 4564 +UV Count: 3 + UV + UV + UV +Face 4565 +UV Count: 3 + UV + UV + UV +Face 4566 +UV Count: 3 + UV + UV + UV +Face 4567 +UV Count: 3 + UV + UV + UV +Face 4568 +UV Count: 3 + UV + UV + UV +Face 4569 +UV Count: 3 + UV + UV + UV +Face 4570 +UV Count: 3 + UV + UV + UV +Face 4571 +UV Count: 3 + UV + UV + UV +Face 4572 +UV Count: 3 + UV + UV + UV +Face 4573 +UV Count: 3 + UV + UV + UV +Face 4574 +UV Count: 3 + UV + UV + UV +Face 4575 +UV Count: 3 + UV + UV + UV +Face 4576 +UV Count: 3 + UV + UV + UV +Face 4577 +UV Count: 3 + UV + UV + UV +Face 4578 +UV Count: 3 + UV + UV + UV +Face 4579 +UV Count: 3 + UV + UV + UV +Face 4580 +UV Count: 3 + UV + UV + UV +Face 4581 +UV Count: 3 + UV + UV + UV +Face 4582 +UV Count: 3 + UV + UV + UV +Face 4583 +UV Count: 3 + UV + UV + UV +Face 4584 +UV Count: 3 + UV + UV + UV +Face 4585 +UV Count: 3 + UV + UV + UV +Face 4586 +UV Count: 3 + UV + UV + UV +Face 4587 +UV Count: 3 + UV + UV + UV +Face 4588 +UV Count: 3 + UV + UV + UV +Face 4589 +UV Count: 3 + UV + UV + UV +Face 4590 +UV Count: 3 + UV + UV + UV +Face 4591 +UV Count: 3 + UV + UV + UV +Face 4592 +UV Count: 3 + UV + UV + UV +Face 4593 +UV Count: 3 + UV + UV + UV +Face 4594 +UV Count: 3 + UV + UV + UV +Face 4595 +UV Count: 3 + UV + UV + UV +Face 4596 +UV Count: 3 + UV + UV + UV +Face 4597 +UV Count: 3 + UV + UV + UV +Face 4598 +UV Count: 3 + UV + UV + UV +Face 4599 +UV Count: 3 + UV + UV + UV +Face 4600 +UV Count: 3 + UV + UV + UV +Face 4601 +UV Count: 3 + UV + UV + UV +Face 4602 +UV Count: 3 + UV + UV + UV +Face 4603 +UV Count: 3 + UV + UV + UV +Face 4604 +UV Count: 3 + UV + UV + UV +Face 4605 +UV Count: 3 + UV + UV + UV +Face 4606 +UV Count: 3 + UV + UV + UV +Face 4607 +UV Count: 3 + UV + UV + UV +Face 4608 +UV Count: 3 + UV + UV + UV +Face 4609 +UV Count: 3 + UV + UV + UV +Face 4610 +UV Count: 3 + UV + UV + UV +Face 4611 +UV Count: 3 + UV + UV + UV +Face 4612 +UV Count: 3 + UV + UV + UV +Face 4613 +UV Count: 3 + UV + UV + UV +Face 4614 +UV Count: 3 + UV + UV + UV +Face 4615 +UV Count: 3 + UV + UV + UV +Face 4616 +UV Count: 3 + UV + UV + UV +Face 4617 +UV Count: 3 + UV + UV + UV +Face 4618 +UV Count: 3 + UV + UV + UV +Face 4619 +UV Count: 3 + UV + UV + UV +Face 4620 +UV Count: 3 + UV + UV + UV +Face 4621 +UV Count: 3 + UV + UV + UV +Face 4622 +UV Count: 3 + UV + UV + UV +Face 4623 +UV Count: 3 + UV + UV + UV +Face 4624 +UV Count: 3 + UV + UV + UV +Face 4625 +UV Count: 3 + UV + UV + UV +Face 4626 +UV Count: 3 + UV + UV + UV +Face 4627 +UV Count: 3 + UV + UV + UV +Face 4628 +UV Count: 3 + UV + UV + UV +Face 4629 +UV Count: 3 + UV + UV + UV +Face 4630 +UV Count: 3 + UV + UV + UV +Face 4631 +UV Count: 3 + UV + UV + UV +Face 4632 +UV Count: 3 + UV + UV + UV +Face 4633 +UV Count: 3 + UV + UV + UV +Face 4634 +UV Count: 3 + UV + UV + UV +Face 4635 +UV Count: 3 + UV + UV + UV +Face 4636 +UV Count: 3 + UV + UV + UV +Face 4637 +UV Count: 3 + UV + UV + UV +Face 4638 +UV Count: 3 + UV + UV + UV +Face 4639 +UV Count: 3 + UV + UV + UV +Face 4640 +UV Count: 3 + UV + UV + UV +Face 4641 +UV Count: 3 + UV + UV + UV +Face 4642 +UV Count: 3 + UV + UV + UV +Face 4643 +UV Count: 3 + UV + UV + UV +Face 4644 +UV Count: 3 + UV + UV + UV +Face 4645 +UV Count: 3 + UV + UV + UV +Face 4646 +UV Count: 3 + UV + UV + UV +Face 4647 +UV Count: 3 + UV + UV + UV +Face 4648 +UV Count: 3 + UV + UV + UV +Face 4649 +UV Count: 3 + UV + UV + UV +Face 4650 +UV Count: 3 + UV + UV + UV +Face 4651 +UV Count: 3 + UV + UV + UV +Face 4652 +UV Count: 3 + UV + UV + UV +Face 4653 +UV Count: 3 + UV + UV + UV +Face 4654 +UV Count: 3 + UV + UV + UV +Face 4655 +UV Count: 3 + UV + UV + UV +Face 4656 +UV Count: 3 + UV + UV + UV +Face 4657 +UV Count: 3 + UV + UV + UV +Face 4658 +UV Count: 3 + UV + UV + UV +Face 4659 +UV Count: 3 + UV + UV + UV +Face 4660 +UV Count: 3 + UV + UV + UV +Face 4661 +UV Count: 3 + UV + UV + UV +Face 4662 +UV Count: 3 + UV + UV + UV +Face 4663 +UV Count: 3 + UV + UV + UV +Face 4664 +UV Count: 3 + UV + UV + UV +Face 4665 +UV Count: 3 + UV + UV + UV +Face 4666 +UV Count: 3 + UV + UV + UV +Face 4667 +UV Count: 3 + UV + UV + UV +Face 4668 +UV Count: 3 + UV + UV + UV +Face 4669 +UV Count: 3 + UV + UV + UV +Face 4670 +UV Count: 3 + UV + UV + UV +Face 4671 +UV Count: 3 + UV + UV + UV +Face 4672 +UV Count: 3 + UV + UV + UV +Face 4673 +UV Count: 3 + UV + UV + UV +Face 4674 +UV Count: 3 + UV + UV + UV +Face 4675 +UV Count: 3 + UV + UV + UV +Face 4676 +UV Count: 3 + UV + UV + UV +Face 4677 +UV Count: 3 + UV + UV + UV +Face 4678 +UV Count: 3 + UV + UV + UV +Face 4679 +UV Count: 3 + UV + UV + UV +Face 4680 +UV Count: 3 + UV + UV + UV +Face 4681 +UV Count: 3 + UV + UV + UV +Face 4682 +UV Count: 3 + UV + UV + UV +Face 4683 +UV Count: 3 + UV + UV + UV +Face 4684 +UV Count: 3 + UV + UV + UV +Face 4685 +UV Count: 3 + UV + UV + UV +Face 4686 +UV Count: 3 + UV + UV + UV +Face 4687 +UV Count: 3 + UV + UV + UV +Face 4688 +UV Count: 3 + UV + UV + UV +Face 4689 +UV Count: 3 + UV + UV + UV +Face 4690 +UV Count: 3 + UV + UV + UV +Face 4691 +UV Count: 3 + UV + UV + UV +Face 4692 +UV Count: 3 + UV + UV + UV +Face 4693 +UV Count: 3 + UV + UV + UV +Face 4694 +UV Count: 3 + UV + UV + UV +Face 4695 +UV Count: 3 + UV + UV + UV +Face 4696 +UV Count: 3 + UV + UV + UV +Face 4697 +UV Count: 3 + UV + UV + UV +Face 4698 +UV Count: 3 + UV + UV + UV +Face 4699 +UV Count: 3 + UV + UV + UV +Face 4700 +UV Count: 3 + UV + UV + UV +Face 4701 +UV Count: 3 + UV + UV + UV +Face 4702 +UV Count: 3 + UV + UV + UV +Face 4703 +UV Count: 3 + UV + UV + UV +Face 4704 +UV Count: 3 + UV + UV + UV +Face 4705 +UV Count: 3 + UV + UV + UV +Face 4706 +UV Count: 3 + UV + UV + UV +Face 4707 +UV Count: 3 + UV + UV + UV +Face 4708 +UV Count: 3 + UV + UV + UV +Face 4709 +UV Count: 3 + UV + UV + UV +Face 4710 +UV Count: 3 + UV + UV + UV +Face 4711 +UV Count: 3 + UV + UV + UV +Face 4712 +UV Count: 3 + UV + UV + UV +Face 4713 +UV Count: 3 + UV + UV + UV +Face 4714 +UV Count: 3 + UV + UV + UV +Face 4715 +UV Count: 3 + UV + UV + UV +Face 4716 +UV Count: 3 + UV + UV + UV +Face 4717 +UV Count: 3 + UV + UV + UV +Face 4718 +UV Count: 3 + UV + UV + UV +Face 4719 +UV Count: 3 + UV + UV + UV +Face 4720 +UV Count: 3 + UV + UV + UV +Face 4721 +UV Count: 3 + UV + UV + UV +Face 4722 +UV Count: 3 + UV + UV + UV +Face 4723 +UV Count: 3 + UV + UV + UV +Face 4724 +UV Count: 3 + UV + UV + UV +Face 4725 +UV Count: 3 + UV + UV + UV +Face 4726 +UV Count: 3 + UV + UV + UV +Face 4727 +UV Count: 3 + UV + UV + UV +Face 4728 +UV Count: 3 + UV + UV + UV +Face 4729 +UV Count: 3 + UV + UV + UV +Face 4730 +UV Count: 3 + UV + UV + UV +Face 4731 +UV Count: 3 + UV + UV + UV +Face 4732 +UV Count: 3 + UV + UV + UV +Face 4733 +UV Count: 3 + UV + UV + UV +Face 4734 +UV Count: 3 + UV + UV + UV +Face 4735 +UV Count: 3 + UV + UV + UV +Face 4736 +UV Count: 3 + UV + UV + UV +Face 4737 +UV Count: 3 + UV + UV + UV +Face 4738 +UV Count: 3 + UV + UV + UV +Face 4739 +UV Count: 3 + UV + UV + UV +Face 4740 +UV Count: 3 + UV + UV + UV +Face 4741 +UV Count: 3 + UV + UV + UV +Face 4742 +UV Count: 3 + UV + UV + UV +Face 4743 +UV Count: 3 + UV + UV + UV +Face 4744 +UV Count: 3 + UV + UV + UV +Face 4745 +UV Count: 3 + UV + UV + UV +Face 4746 +UV Count: 3 + UV + UV + UV +Face 4747 +UV Count: 3 + UV + UV + UV +Face 4748 +UV Count: 3 + UV + UV + UV +Face 4749 +UV Count: 3 + UV + UV + UV +Face 4750 +UV Count: 3 + UV + UV + UV +Face 4751 +UV Count: 3 + UV + UV + UV +Face 4752 +UV Count: 3 + UV + UV + UV +Face 4753 +UV Count: 3 + UV + UV + UV +Face 4754 +UV Count: 3 + UV + UV + UV +Face 4755 +UV Count: 3 + UV + UV + UV +Face 4756 +UV Count: 3 + UV + UV + UV +Face 4757 +UV Count: 3 + UV + UV + UV +Face 4758 +UV Count: 3 + UV + UV + UV +Face 4759 +UV Count: 3 + UV + UV + UV +Face 4760 +UV Count: 3 + UV + UV + UV +Face 4761 +UV Count: 3 + UV + UV + UV +Face 4762 +UV Count: 3 + UV + UV + UV +Face 4763 +UV Count: 3 + UV + UV + UV +Face 4764 +UV Count: 3 + UV + UV + UV +Face 4765 +UV Count: 3 + UV + UV + UV +Face 4766 +UV Count: 3 + UV + UV + UV +Face 4767 +UV Count: 3 + UV + UV + UV +Face 4768 +UV Count: 3 + UV + UV + UV +Face 4769 +UV Count: 3 + UV + UV + UV +Face 4770 +UV Count: 3 + UV + UV + UV +Face 4771 +UV Count: 3 + UV + UV + UV +Face 4772 +UV Count: 3 + UV + UV + UV +Face 4773 +UV Count: 3 + UV + UV + UV +Face 4774 +UV Count: 3 + UV + UV + UV +Face 4775 +UV Count: 3 + UV + UV + UV +Face 4776 +UV Count: 3 + UV + UV + UV +Face 4777 +UV Count: 3 + UV + UV + UV +Face 4778 +UV Count: 3 + UV + UV + UV +Face 4779 +UV Count: 3 + UV + UV + UV +Face 4780 +UV Count: 3 + UV + UV + UV +Face 4781 +UV Count: 3 + UV + UV + UV +Face 4782 +UV Count: 3 + UV + UV + UV +Face 4783 +UV Count: 3 + UV + UV + UV +Face 4784 +UV Count: 3 + UV + UV + UV +Face 4785 +UV Count: 3 + UV + UV + UV +Face 4786 +UV Count: 3 + UV + UV + UV +Face 4787 +UV Count: 3 + UV + UV + UV +Face 4788 +UV Count: 3 + UV + UV + UV +Face 4789 +UV Count: 3 + UV + UV + UV +Face 4790 +UV Count: 3 + UV + UV + UV +Face 4791 +UV Count: 3 + UV + UV + UV +Face 4792 +UV Count: 3 + UV + UV + UV +Face 4793 +UV Count: 3 + UV + UV + UV +Face 4794 +UV Count: 3 + UV + UV + UV +Face 4795 +UV Count: 3 + UV + UV + UV +Face 4796 +UV Count: 3 + UV + UV + UV +Face 4797 +UV Count: 3 + UV + UV + UV +Face 4798 +UV Count: 3 + UV + UV + UV +Face 4799 +UV Count: 3 + UV + UV + UV +Face 4800 +UV Count: 3 + UV + UV + UV +Face 4801 +UV Count: 3 + UV + UV + UV +Face 4802 +UV Count: 3 + UV + UV + UV +Face 4803 +UV Count: 3 + UV + UV + UV +Face 4804 +UV Count: 3 + UV + UV + UV +Face 4805 +UV Count: 3 + UV + UV + UV +Face 4806 +UV Count: 3 + UV + UV + UV +Face 4807 +UV Count: 3 + UV + UV + UV +Face 4808 +UV Count: 3 + UV + UV + UV +Face 4809 +UV Count: 3 + UV + UV + UV +Face 4810 +UV Count: 3 + UV + UV + UV +Face 4811 +UV Count: 3 + UV + UV + UV +Face 4812 +UV Count: 3 + UV + UV + UV +Face 4813 +UV Count: 3 + UV + UV + UV +Face 4814 +UV Count: 3 + UV + UV + UV +Face 4815 +UV Count: 3 + UV + UV + UV +Face 4816 +UV Count: 3 + UV + UV + UV +Face 4817 +UV Count: 3 + UV + UV + UV +Face 4818 +UV Count: 3 + UV + UV + UV +Face 4819 +UV Count: 3 + UV + UV + UV +Face 4820 +UV Count: 3 + UV + UV + UV +Face 4821 +UV Count: 3 + UV + UV + UV +Face 4822 +UV Count: 3 + UV + UV + UV +Face 4823 +UV Count: 3 + UV + UV + UV +Face 4824 +UV Count: 3 + UV + UV + UV +Face 4825 +UV Count: 3 + UV + UV + UV +Face 4826 +UV Count: 3 + UV + UV + UV +Face 4827 +UV Count: 3 + UV + UV + UV +Face 4828 +UV Count: 3 + UV + UV + UV +Face 4829 +UV Count: 3 + UV + UV + UV +Face 4830 +UV Count: 3 + UV + UV + UV +Face 4831 +UV Count: 3 + UV + UV + UV +Face 4832 +UV Count: 3 + UV + UV + UV +Face 4833 +UV Count: 3 + UV + UV + UV +Face 4834 +UV Count: 3 + UV + UV + UV +Face 4835 +UV Count: 3 + UV + UV + UV +Face 4836 +UV Count: 3 + UV + UV + UV +Face 4837 +UV Count: 3 + UV + UV + UV +Face 4838 +UV Count: 3 + UV + UV + UV +Face 4839 +UV Count: 3 + UV + UV + UV +Face 4840 +UV Count: 3 + UV + UV + UV +Face 4841 +UV Count: 3 + UV + UV + UV +Face 4842 +UV Count: 3 + UV + UV + UV +Face 4843 +UV Count: 3 + UV + UV + UV +Face 4844 +UV Count: 3 + UV + UV + UV +Face 4845 +UV Count: 3 + UV + UV + UV +Face 4846 +UV Count: 3 + UV + UV + UV +Face 4847 +UV Count: 3 + UV + UV + UV +Face 4848 +UV Count: 3 + UV + UV + UV +Face 4849 +UV Count: 3 + UV + UV + UV +Face 4850 +UV Count: 3 + UV + UV + UV +Face 4851 +UV Count: 3 + UV + UV + UV +Face 4852 +UV Count: 3 + UV + UV + UV +Face 4853 +UV Count: 3 + UV + UV + UV +Face 4854 +UV Count: 3 + UV + UV + UV +Face 4855 +UV Count: 3 + UV + UV + UV +Face 4856 +UV Count: 3 + UV + UV + UV +Face 4857 +UV Count: 3 + UV + UV + UV +Face 4858 +UV Count: 3 + UV + UV + UV +Face 4859 +UV Count: 3 + UV + UV + UV +Face 4860 +UV Count: 3 + UV + UV + UV +Face 4861 +UV Count: 3 + UV + UV + UV +Face 4862 +UV Count: 3 + UV + UV + UV +Face 4863 +UV Count: 3 + UV + UV + UV +Face 4864 +UV Count: 3 + UV + UV + UV +Face 4865 +UV Count: 3 + UV + UV + UV +Face 4866 +UV Count: 3 + UV + UV + UV +Face 4867 +UV Count: 3 + UV + UV + UV +Face 4868 +UV Count: 3 + UV + UV + UV +Face 4869 +UV Count: 3 + UV + UV + UV +Face 4870 +UV Count: 3 + UV + UV + UV +Face 4871 +UV Count: 3 + UV + UV + UV +Face 4872 +UV Count: 3 + UV + UV + UV +Face 4873 +UV Count: 3 + UV + UV + UV +Face 4874 +UV Count: 3 + UV + UV + UV +Face 4875 +UV Count: 3 + UV + UV + UV +Face 4876 +UV Count: 3 + UV + UV + UV +Face 4877 +UV Count: 3 + UV + UV + UV +Face 4878 +UV Count: 3 + UV + UV + UV +Face 4879 +UV Count: 3 + UV + UV + UV +Face 4880 +UV Count: 3 + UV + UV + UV +Face 4881 +UV Count: 3 + UV + UV + UV +Face 4882 +UV Count: 3 + UV + UV + UV +Face 4883 +UV Count: 3 + UV + UV + UV +Face 4884 +UV Count: 3 + UV + UV + UV +Face 4885 +UV Count: 3 + UV + UV + UV +Face 4886 +UV Count: 3 + UV + UV + UV +Face 4887 +UV Count: 3 + UV + UV + UV +Face 4888 +UV Count: 3 + UV + UV + UV +Face 4889 +UV Count: 3 + UV + UV + UV +Face 4890 +UV Count: 3 + UV + UV + UV +Face 4891 +UV Count: 3 + UV + UV + UV +Face 4892 +UV Count: 3 + UV + UV + UV +Face 4893 +UV Count: 3 + UV + UV + UV +Face 4894 +UV Count: 3 + UV + UV + UV +Face 4895 +UV Count: 3 + UV + UV + UV +Face 4896 +UV Count: 3 + UV + UV + UV +Face 4897 +UV Count: 3 + UV + UV + UV +Face 4898 +UV Count: 3 + UV + UV + UV +Face 4899 +UV Count: 3 + UV + UV + UV +Face 4900 +UV Count: 3 + UV + UV + UV +Face 4901 +UV Count: 3 + UV + UV + UV +Face 4902 +UV Count: 3 + UV + UV + UV +Face 4903 +UV Count: 3 + UV + UV + UV +Face 4904 +UV Count: 3 + UV + UV + UV +Face 4905 +UV Count: 3 + UV + UV + UV +Face 4906 +UV Count: 3 + UV + UV + UV +Face 4907 +UV Count: 3 + UV + UV + UV +Face 4908 +UV Count: 3 + UV + UV + UV +Face 4909 +UV Count: 3 + UV + UV + UV +Face 4910 +UV Count: 3 + UV + UV + UV +Face 4911 +UV Count: 3 + UV + UV + UV +Face 4912 +UV Count: 3 + UV + UV + UV +Face 4913 +UV Count: 3 + UV + UV + UV +Face 4914 +UV Count: 3 + UV + UV + UV +Face 4915 +UV Count: 3 + UV + UV + UV +Face 4916 +UV Count: 3 + UV + UV + UV +Face 4917 +UV Count: 3 + UV + UV + UV +Face 4918 +UV Count: 3 + UV + UV + UV +Face 4919 +UV Count: 3 + UV + UV + UV +Face 4920 +UV Count: 3 + UV + UV + UV +Face 4921 +UV Count: 3 + UV + UV + UV +Face 4922 +UV Count: 3 + UV + UV + UV +Face 4923 +UV Count: 3 + UV + UV + UV +Face 4924 +UV Count: 3 + UV + UV + UV +Face 4925 +UV Count: 3 + UV + UV + UV +Face 4926 +UV Count: 3 + UV + UV + UV +Face 4927 +UV Count: 3 + UV + UV + UV +Face 4928 +UV Count: 3 + UV + UV + UV +Face 4929 +UV Count: 3 + UV + UV + UV +Face 4930 +UV Count: 3 + UV + UV + UV +Face 4931 +UV Count: 3 + UV + UV + UV +Face 4932 +UV Count: 3 + UV + UV + UV +Face 4933 +UV Count: 3 + UV + UV + UV +Face 4934 +UV Count: 3 + UV + UV + UV +Face 4935 +UV Count: 3 + UV + UV + UV +Face 4936 +UV Count: 3 + UV + UV + UV +Face 4937 +UV Count: 3 + UV + UV + UV +Face 4938 +UV Count: 3 + UV + UV + UV +Face 4939 +UV Count: 3 + UV + UV + UV +Face 4940 +UV Count: 3 + UV + UV + UV +Face 4941 +UV Count: 3 + UV + UV + UV +Face 4942 +UV Count: 3 + UV + UV + UV +Face 4943 +UV Count: 3 + UV + UV + UV +Face 4944 +UV Count: 3 + UV + UV + UV +Face 4945 +UV Count: 3 + UV + UV + UV +Face 4946 +UV Count: 3 + UV + UV + UV +Face 4947 +UV Count: 3 + UV + UV + UV +Face 4948 +UV Count: 3 + UV + UV + UV +Face 4949 +UV Count: 3 + UV + UV + UV +Face 4950 +UV Count: 3 + UV + UV + UV +Face 4951 +UV Count: 3 + UV + UV + UV +Face 4952 +UV Count: 3 + UV + UV + UV +Face 4953 +UV Count: 3 + UV + UV + UV +Face 4954 +UV Count: 3 + UV + UV + UV +Face 4955 +UV Count: 3 + UV + UV + UV +Face 4956 +UV Count: 3 + UV + UV + UV +Face 4957 +UV Count: 3 + UV + UV + UV +Face 4958 +UV Count: 3 + UV + UV + UV +Face 4959 +UV Count: 3 + UV + UV + UV +Face 4960 +UV Count: 3 + UV + UV + UV +Face 4961 +UV Count: 3 + UV + UV + UV +Face 4962 +UV Count: 3 + UV + UV + UV +Face 4963 +UV Count: 3 + UV + UV + UV +Face 4964 +UV Count: 3 + UV + UV + UV +Face 4965 +UV Count: 3 + UV + UV + UV +Face 4966 +UV Count: 3 + UV + UV + UV +Face 4967 +UV Count: 3 + UV + UV + UV +Face 4968 +UV Count: 3 + UV + UV + UV +Face 4969 +UV Count: 3 + UV + UV + UV +Face 4970 +UV Count: 3 + UV + UV + UV +Face 4971 +UV Count: 3 + UV + UV + UV +Face 4972 +UV Count: 3 + UV + UV + UV +Face 4973 +UV Count: 3 + UV + UV + UV +Face 4974 +UV Count: 3 + UV + UV + UV +Face 4975 +UV Count: 3 + UV + UV + UV +Face 4976 +UV Count: 3 + UV + UV + UV +Face 4977 +UV Count: 3 + UV + UV + UV +Face 4978 +UV Count: 3 + UV + UV + UV +Face 4979 +UV Count: 3 + UV + UV + UV +Face 4980 +UV Count: 3 + UV + UV + UV +Face 4981 +UV Count: 3 + UV + UV + UV +Face 4982 +UV Count: 3 + UV + UV + UV +Face 4983 +UV Count: 3 + UV + UV + UV +Face 4984 +UV Count: 3 + UV + UV + UV +Face 4985 +UV Count: 3 + UV + UV + UV +Face 4986 +UV Count: 3 + UV + UV + UV +Face 4987 +UV Count: 3 + UV + UV + UV +Face 4988 +UV Count: 3 + UV + UV + UV +Face 4989 +UV Count: 3 + UV + UV + UV +Face 4990 +UV Count: 3 + UV + UV + UV +Face 4991 +UV Count: 3 + UV + UV + UV +Face 4992 +UV Count: 3 + UV + UV + UV +Face 4993 +UV Count: 3 + UV + UV + UV +Face 4994 +UV Count: 3 + UV + UV + UV +Face 4995 +UV Count: 3 + UV + UV + UV +Face 4996 +UV Count: 3 + UV + UV + UV +Face 4997 +UV Count: 3 + UV + UV + UV +Face 4998 +UV Count: 3 + UV + UV + UV +Face 4999 +UV Count: 3 + UV + UV + UV +Face 5000 +UV Count: 3 + UV + UV + UV +Face 5001 +UV Count: 3 + UV + UV + UV +Face 5002 +UV Count: 3 + UV + UV + UV +Face 5003 +UV Count: 3 + UV + UV + UV +Face 5004 +UV Count: 3 + UV + UV + UV +Face 5005 +UV Count: 3 + UV + UV + UV +Face 5006 +UV Count: 3 + UV + UV + UV +Face 5007 +UV Count: 3 + UV + UV + UV +Face 5008 +UV Count: 3 + UV + UV + UV +Face 5009 +UV Count: 3 + UV + UV + UV +Face 5010 +UV Count: 3 + UV + UV + UV +Face 5011 +UV Count: 3 + UV + UV + UV +Face 5012 +UV Count: 3 + UV + UV + UV +Face 5013 +UV Count: 3 + UV + UV + UV +Face 5014 +UV Count: 3 + UV + UV + UV +Face 5015 +UV Count: 3 + UV + UV + UV +Face 5016 +UV Count: 3 + UV + UV + UV +Face 5017 +UV Count: 3 + UV + UV + UV +Face 5018 +UV Count: 3 + UV + UV + UV +Face 5019 +UV Count: 3 + UV + UV + UV +Face 5020 +UV Count: 3 + UV + UV + UV +Face 5021 +UV Count: 3 + UV + UV + UV +Face 5022 +UV Count: 3 + UV + UV + UV +Face 5023 +UV Count: 3 + UV + UV + UV +Face 5024 +UV Count: 3 + UV + UV + UV +Face 5025 +UV Count: 3 + UV + UV + UV +Face 5026 +UV Count: 3 + UV + UV + UV +Face 5027 +UV Count: 3 + UV + UV + UV +Face 5028 +UV Count: 3 + UV + UV + UV +Face 5029 +UV Count: 3 + UV + UV + UV +Face 5030 +UV Count: 3 + UV + UV + UV +Face 5031 +UV Count: 3 + UV + UV + UV +Face 5032 +UV Count: 3 + UV + UV + UV +Face 5033 +UV Count: 3 + UV + UV + UV +Face 5034 +UV Count: 3 + UV + UV + UV +Face 5035 +UV Count: 3 + UV + UV + UV +Face 5036 +UV Count: 3 + UV + UV + UV +Face 5037 +UV Count: 3 + UV + UV + UV +Face 5038 +UV Count: 3 + UV + UV + UV +Face 5039 +UV Count: 3 + UV + UV + UV +Face 5040 +UV Count: 3 + UV + UV + UV +Face 5041 +UV Count: 3 + UV + UV + UV +Face 5042 +UV Count: 3 + UV + UV + UV +Face 5043 +UV Count: 3 + UV + UV + UV +Face 5044 +UV Count: 3 + UV + UV + UV +Face 5045 +UV Count: 3 + UV + UV + UV +Face 5046 +UV Count: 3 + UV + UV + UV +Face 5047 +UV Count: 3 + UV + UV + UV +Face 5048 +UV Count: 3 + UV + UV + UV +Face 5049 +UV Count: 3 + UV + UV + UV +Face 5050 +UV Count: 3 + UV + UV + UV +Face 5051 +UV Count: 3 + UV + UV + UV +Face 5052 +UV Count: 3 + UV + UV + UV +Face 5053 +UV Count: 3 + UV + UV + UV +Face 5054 +UV Count: 3 + UV + UV + UV +Face 5055 +UV Count: 3 + UV + UV + UV +Face 5056 +UV Count: 3 + UV + UV + UV +Face 5057 +UV Count: 3 + UV + UV + UV +Face 5058 +UV Count: 3 + UV + UV + UV +Face 5059 +UV Count: 3 + UV + UV + UV +Face 5060 +UV Count: 3 + UV + UV + UV +Face 5061 +UV Count: 3 + UV + UV + UV +Face 5062 +UV Count: 3 + UV + UV + UV +Face 5063 +UV Count: 3 + UV + UV + UV +Face 5064 +UV Count: 3 + UV + UV + UV +Face 5065 +UV Count: 3 + UV + UV + UV +Face 5066 +UV Count: 3 + UV + UV + UV +Face 5067 +UV Count: 3 + UV + UV + UV +Face 5068 +UV Count: 3 + UV + UV + UV +Face 5069 +UV Count: 3 + UV + UV + UV +Face 5070 +UV Count: 3 + UV + UV + UV +Face 5071 +UV Count: 3 + UV + UV + UV +Face 5072 +UV Count: 3 + UV + UV + UV +Face 5073 +UV Count: 3 + UV + UV + UV +Face 5074 +UV Count: 3 + UV + UV + UV +Face 5075 +UV Count: 3 + UV + UV + UV +Face 5076 +UV Count: 3 + UV + UV + UV +Face 5077 +UV Count: 3 + UV + UV + UV +Face 5078 +UV Count: 3 + UV + UV + UV +Face 5079 +UV Count: 3 + UV + UV + UV +Face 5080 +UV Count: 3 + UV + UV + UV +Face 5081 +UV Count: 3 + UV + UV + UV +Face 5082 +UV Count: 3 + UV + UV + UV +Face 5083 +UV Count: 3 + UV + UV + UV +Face 5084 +UV Count: 3 + UV + UV + UV +Face 5085 +UV Count: 3 + UV + UV + UV +Face 5086 +UV Count: 3 + UV + UV + UV +Face 5087 +UV Count: 3 + UV + UV + UV +Face 5088 +UV Count: 3 + UV + UV + UV +Face 5089 +UV Count: 3 + UV + UV + UV +Face 5090 +UV Count: 3 + UV + UV + UV +Face 5091 +UV Count: 3 + UV + UV + UV +Face 5092 +UV Count: 3 + UV + UV + UV +Face 5093 +UV Count: 3 + UV + UV + UV +Face 5094 +UV Count: 3 + UV + UV + UV +Face 5095 +UV Count: 3 + UV + UV + UV +Face 5096 +UV Count: 3 + UV + UV + UV +Face 5097 +UV Count: 3 + UV + UV + UV +Face 5098 +UV Count: 3 + UV + UV + UV +Face 5099 +UV Count: 3 + UV + UV + UV +Face 5100 +UV Count: 3 + UV + UV + UV +Face 5101 +UV Count: 3 + UV + UV + UV +Face 5102 +UV Count: 3 + UV + UV + UV +Face 5103 +UV Count: 3 + UV + UV + UV +Face 5104 +UV Count: 3 + UV + UV + UV +Face 5105 +UV Count: 3 + UV + UV + UV +Face 5106 +UV Count: 3 + UV + UV + UV +Face 5107 +UV Count: 3 + UV + UV + UV +Face 5108 +UV Count: 3 + UV + UV + UV +Face 5109 +UV Count: 3 + UV + UV + UV +Face 5110 +UV Count: 3 + UV + UV + UV +Face 5111 +UV Count: 3 + UV + UV + UV +Face 5112 +UV Count: 3 + UV + UV + UV +Face 5113 +UV Count: 3 + UV + UV + UV +Face 5114 +UV Count: 3 + UV + UV + UV +Face 5115 +UV Count: 3 + UV + UV + UV +Face 5116 +UV Count: 3 + UV + UV + UV +Face 5117 +UV Count: 3 + UV + UV + UV +Face 5118 +UV Count: 3 + UV + UV + UV +Face 5119 +UV Count: 3 + UV + UV + UV +Face 5120 +UV Count: 3 + UV + UV + UV +Face 5121 +UV Count: 3 + UV + UV + UV +Face 5122 +UV Count: 3 + UV + UV + UV +Face 5123 +UV Count: 3 + UV + UV + UV +Face 5124 +UV Count: 3 + UV + UV + UV +Face 5125 +UV Count: 3 + UV + UV + UV +Face 5126 +UV Count: 3 + UV + UV + UV +Face 5127 +UV Count: 3 + UV + UV + UV +Face 5128 +UV Count: 3 + UV + UV + UV +Face 5129 +UV Count: 3 + UV + UV + UV +Face 5130 +UV Count: 3 + UV + UV + UV +Face 5131 +UV Count: 3 + UV + UV + UV +Face 5132 +UV Count: 3 + UV + UV + UV +Face 5133 +UV Count: 3 + UV + UV + UV +Face 5134 +UV Count: 3 + UV + UV + UV +Face 5135 +UV Count: 3 + UV + UV + UV +Face 5136 +UV Count: 3 + UV + UV + UV +Face 5137 +UV Count: 3 + UV + UV + UV +Face 5138 +UV Count: 3 + UV + UV + UV +Face 5139 +UV Count: 3 + UV + UV + UV +Face 5140 +UV Count: 3 + UV + UV + UV +Face 5141 +UV Count: 3 + UV + UV + UV +Face 5142 +UV Count: 3 + UV + UV + UV +Face 5143 +UV Count: 3 + UV + UV + UV +Face 5144 +UV Count: 3 + UV + UV + UV +Face 5145 +UV Count: 3 + UV + UV + UV +Face 5146 +UV Count: 3 + UV + UV + UV +Face 5147 +UV Count: 3 + UV + UV + UV +Face 5148 +UV Count: 3 + UV + UV + UV +Face 5149 +UV Count: 3 + UV + UV + UV +Face 5150 +UV Count: 3 + UV + UV + UV +Face 5151 +UV Count: 3 + UV + UV + UV +Face 5152 +UV Count: 3 + UV + UV + UV +Face 5153 +UV Count: 3 + UV + UV + UV +Face 5154 +UV Count: 3 + UV + UV + UV +Face 5155 +UV Count: 3 + UV + UV + UV +Face 5156 +UV Count: 3 + UV + UV + UV +Face 5157 +UV Count: 3 + UV + UV + UV +Face 5158 +UV Count: 3 + UV + UV + UV +Face 5159 +UV Count: 3 + UV + UV + UV +Face 5160 +UV Count: 3 + UV + UV + UV +Face 5161 +UV Count: 3 + UV + UV + UV +Face 5162 +UV Count: 3 + UV + UV + UV +Face 5163 +UV Count: 3 + UV + UV + UV +Face 5164 +UV Count: 3 + UV + UV + UV +Face 5165 +UV Count: 3 + UV + UV + UV +Face 5166 +UV Count: 3 + UV + UV + UV +Face 5167 +UV Count: 3 + UV + UV + UV +Face 5168 +UV Count: 3 + UV + UV + UV +Face 5169 +UV Count: 3 + UV + UV + UV +Face 5170 +UV Count: 3 + UV + UV + UV +Face 5171 +UV Count: 3 + UV + UV + UV +Face 5172 +UV Count: 3 + UV + UV + UV +Face 5173 +UV Count: 3 + UV + UV + UV +Face 5174 +UV Count: 3 + UV + UV + UV +Face 5175 +UV Count: 3 + UV + UV + UV +Face 5176 +UV Count: 3 + UV + UV + UV +Face 5177 +UV Count: 3 + UV + UV + UV +Face 5178 +UV Count: 3 + UV + UV + UV +Face 5179 +UV Count: 3 + UV + UV + UV +Face 5180 +UV Count: 3 + UV + UV + UV +Face 5181 +UV Count: 3 + UV + UV + UV +Face 5182 +UV Count: 3 + UV + UV + UV +Face 5183 +UV Count: 3 + UV + UV + UV +Face 5184 +UV Count: 3 + UV + UV + UV +Face 5185 +UV Count: 3 + UV + UV + UV +Face 5186 +UV Count: 3 + UV + UV + UV +Face 5187 +UV Count: 3 + UV + UV + UV +Face 5188 +UV Count: 3 + UV + UV + UV +Face 5189 +UV Count: 3 + UV + UV + UV +Face 5190 +UV Count: 3 + UV + UV + UV +Face 5191 +UV Count: 3 + UV + UV + UV +Face 5192 +UV Count: 3 + UV + UV + UV +Face 5193 +UV Count: 3 + UV + UV + UV +Face 5194 +UV Count: 3 + UV + UV + UV +Face 5195 +UV Count: 3 + UV + UV + UV +Face 5196 +UV Count: 3 + UV + UV + UV +Face 5197 +UV Count: 3 + UV + UV + UV +Face 5198 +UV Count: 3 + UV + UV + UV +Face 5199 +UV Count: 3 + UV + UV + UV +Face 5200 +UV Count: 3 + UV + UV + UV +Face 5201 +UV Count: 3 + UV + UV + UV +Face 5202 +UV Count: 3 + UV + UV + UV +Face 5203 +UV Count: 3 + UV + UV + UV +Face 5204 +UV Count: 3 + UV + UV + UV +Face 5205 +UV Count: 3 + UV + UV + UV +Face 5206 +UV Count: 3 + UV + UV + UV +Face 5207 +UV Count: 3 + UV + UV + UV +Face 5208 +UV Count: 3 + UV + UV + UV +Face 5209 +UV Count: 3 + UV + UV + UV +Face 5210 +UV Count: 3 + UV + UV + UV +Face 5211 +UV Count: 3 + UV + UV + UV +Face 5212 +UV Count: 3 + UV + UV + UV +Face 5213 +UV Count: 3 + UV + UV + UV +Face 5214 +UV Count: 3 + UV + UV + UV +Face 5215 +UV Count: 3 + UV + UV + UV +Face 5216 +UV Count: 3 + UV + UV + UV +Face 5217 +UV Count: 3 + UV + UV + UV +Face 5218 +UV Count: 3 + UV + UV + UV +Face 5219 +UV Count: 3 + UV + UV + UV +Face 5220 +UV Count: 3 + UV + UV + UV +Face 5221 +UV Count: 3 + UV + UV + UV +Face 5222 +UV Count: 3 + UV + UV + UV +Face 5223 +UV Count: 3 + UV + UV + UV +Face 5224 +UV Count: 3 + UV + UV + UV +Face 5225 +UV Count: 3 + UV + UV + UV +Face 5226 +UV Count: 3 + UV + UV + UV +Face 5227 +UV Count: 3 + UV + UV + UV +Face 5228 +UV Count: 3 + UV + UV + UV +Face 5229 +UV Count: 3 + UV + UV + UV +Face 5230 +UV Count: 3 + UV + UV + UV +Face 5231 +UV Count: 3 + UV + UV + UV +Face 5232 +UV Count: 3 + UV + UV + UV +Face 5233 +UV Count: 3 + UV + UV + UV +Face 5234 +UV Count: 3 + UV + UV + UV +Face 5235 +UV Count: 3 + UV + UV + UV +Face 5236 +UV Count: 3 + UV + UV + UV +Face 5237 +UV Count: 3 + UV + UV + UV +Face 5238 +UV Count: 3 + UV + UV + UV +Face 5239 +UV Count: 3 + UV + UV + UV +Face 5240 +UV Count: 3 + UV + UV + UV +Face 5241 +UV Count: 3 + UV + UV + UV +Face 5242 +UV Count: 3 + UV + UV + UV +Face 5243 +UV Count: 3 + UV + UV + UV +Face 5244 +UV Count: 3 + UV + UV + UV +Face 5245 +UV Count: 3 + UV + UV + UV +Face 5246 +UV Count: 3 + UV + UV + UV +Face 5247 +UV Count: 3 + UV + UV + UV +Face 5248 +UV Count: 3 + UV + UV + UV +Face 5249 +UV Count: 3 + UV + UV + UV +Face 5250 +UV Count: 3 + UV + UV + UV +Face 5251 +UV Count: 3 + UV + UV + UV +Face 5252 +UV Count: 3 + UV + UV + UV +Face 5253 +UV Count: 3 + UV + UV + UV +Face 5254 +UV Count: 3 + UV + UV + UV +Face 5255 +UV Count: 3 + UV + UV + UV +Face 5256 +UV Count: 3 + UV + UV + UV +Face 5257 +UV Count: 3 + UV + UV + UV +Face 5258 +UV Count: 3 + UV + UV + UV +Face 5259 +UV Count: 3 + UV + UV + UV +Face 5260 +UV Count: 3 + UV + UV + UV +Face 5261 +UV Count: 3 + UV + UV + UV +Face 5262 +UV Count: 3 + UV + UV + UV +Face 5263 +UV Count: 3 + UV + UV + UV +Face 5264 +UV Count: 3 + UV + UV + UV +Face 5265 +UV Count: 3 + UV + UV + UV +Face 5266 +UV Count: 3 + UV + UV + UV +Face 5267 +UV Count: 3 + UV + UV + UV +Face 5268 +UV Count: 3 + UV + UV + UV +Face 5269 +UV Count: 3 + UV + UV + UV +Face 5270 +UV Count: 3 + UV + UV + UV +Face 5271 +UV Count: 3 + UV + UV + UV +Face 5272 +UV Count: 3 + UV + UV + UV +Face 5273 +UV Count: 3 + UV + UV + UV +Face 5274 +UV Count: 3 + UV + UV + UV +Face 5275 +UV Count: 3 + UV + UV + UV +Face 5276 +UV Count: 3 + UV + UV + UV +Face 5277 +UV Count: 3 + UV + UV + UV +Face 5278 +UV Count: 3 + UV + UV + UV +Face 5279 +UV Count: 3 + UV + UV + UV +Face 5280 +UV Count: 3 + UV + UV + UV +Face 5281 +UV Count: 3 + UV + UV + UV +Face 5282 +UV Count: 3 + UV + UV + UV +Face 5283 +UV Count: 3 + UV + UV + UV +Face 5284 +UV Count: 3 + UV + UV + UV +Face 5285 +UV Count: 3 + UV + UV + UV +Face 5286 +UV Count: 3 + UV + UV + UV +Face 5287 +UV Count: 3 + UV + UV + UV +Face 5288 +UV Count: 3 + UV + UV + UV +Face 5289 +UV Count: 3 + UV + UV + UV +Face 5290 +UV Count: 3 + UV + UV + UV +Face 5291 +UV Count: 3 + UV + UV + UV +Face 5292 +UV Count: 3 + UV + UV + UV +Face 5293 +UV Count: 3 + UV + UV + UV +Face 5294 +UV Count: 3 + UV + UV + UV +Face 5295 +UV Count: 3 + UV + UV + UV +Face 5296 +UV Count: 3 + UV + UV + UV +Face 5297 +UV Count: 3 + UV + UV + UV +Face 5298 +UV Count: 3 + UV + UV + UV +Face 5299 +UV Count: 3 + UV + UV + UV +Face 5300 +UV Count: 3 + UV + UV + UV +Face 5301 +UV Count: 3 + UV + UV + UV +Face 5302 +UV Count: 3 + UV + UV + UV +Face 5303 +UV Count: 3 + UV + UV + UV +Face 5304 +UV Count: 3 + UV + UV + UV +Face 5305 +UV Count: 3 + UV + UV + UV +Face 5306 +UV Count: 3 + UV + UV + UV +Face 5307 +UV Count: 3 + UV + UV + UV +Face 5308 +UV Count: 3 + UV + UV + UV +Face 5309 +UV Count: 3 + UV + UV + UV +Face 5310 +UV Count: 3 + UV + UV + UV +Face 5311 +UV Count: 3 + UV + UV + UV +Face 5312 +UV Count: 3 + UV + UV + UV +Face 5313 +UV Count: 3 + UV + UV + UV +Face 5314 +UV Count: 3 + UV + UV + UV +Face 5315 +UV Count: 3 + UV + UV + UV +Face 5316 +UV Count: 3 + UV + UV + UV +Face 5317 +UV Count: 3 + UV + UV + UV +Face 5318 +UV Count: 3 + UV + UV + UV +Face 5319 +UV Count: 3 + UV + UV + UV +Face 5320 +UV Count: 3 + UV + UV + UV +Face 5321 +UV Count: 3 + UV + UV + UV +Face 5322 +UV Count: 3 + UV + UV + UV +Face 5323 +UV Count: 3 + UV + UV + UV +Face 5324 +UV Count: 3 + UV + UV + UV +Face 5325 +UV Count: 3 + UV + UV + UV +Face 5326 +UV Count: 3 + UV + UV + UV +Face 5327 +UV Count: 3 + UV + UV + UV +Face 5328 +UV Count: 3 + UV + UV + UV +Face 5329 +UV Count: 3 + UV + UV + UV +Face 5330 +UV Count: 3 + UV + UV + UV +Face 5331 +UV Count: 3 + UV + UV + UV +Face 5332 +UV Count: 3 + UV + UV + UV +Face 5333 +UV Count: 3 + UV + UV + UV +Face 5334 +UV Count: 3 + UV + UV + UV +Face 5335 +UV Count: 3 + UV + UV + UV +Face 5336 +UV Count: 3 + UV + UV + UV +Face 5337 +UV Count: 3 + UV + UV + UV +Face 5338 +UV Count: 3 + UV + UV + UV +Face 5339 +UV Count: 3 + UV + UV + UV +Face 5340 +UV Count: 3 + UV + UV + UV +Face 5341 +UV Count: 3 + UV + UV + UV +Face 5342 +UV Count: 3 + UV + UV + UV +Face 5343 +UV Count: 3 + UV + UV + UV +Face 5344 +UV Count: 3 + UV + UV + UV +Face 5345 +UV Count: 3 + UV + UV + UV +Face 5346 +UV Count: 3 + UV + UV + UV +Face 5347 +UV Count: 3 + UV + UV + UV +Face 5348 +UV Count: 3 + UV + UV + UV +Face 5349 +UV Count: 3 + UV + UV + UV +Face 5350 +UV Count: 3 + UV + UV + UV +Face 5351 +UV Count: 3 + UV + UV + UV +Face 5352 +UV Count: 3 + UV + UV + UV +Face 5353 +UV Count: 3 + UV + UV + UV +Face 5354 +UV Count: 3 + UV + UV + UV +Face 5355 +UV Count: 3 + UV + UV + UV +Face 5356 +UV Count: 3 + UV + UV + UV +Face 5357 +UV Count: 3 + UV + UV + UV +Face 5358 +UV Count: 3 + UV + UV + UV +Face 5359 +UV Count: 3 + UV + UV + UV +Face 5360 +UV Count: 3 + UV + UV + UV +Face 5361 +UV Count: 3 + UV + UV + UV +Face 5362 +UV Count: 3 + UV + UV + UV +Face 5363 +UV Count: 3 + UV + UV + UV +Face 5364 +UV Count: 3 + UV + UV + UV +Face 5365 +UV Count: 3 + UV + UV + UV +Face 5366 +UV Count: 3 + UV + UV + UV +Face 5367 +UV Count: 3 + UV + UV + UV +Face 5368 +UV Count: 3 + UV + UV + UV +Face 5369 +UV Count: 3 + UV + UV + UV +Face 5370 +UV Count: 3 + UV + UV + UV +Face 5371 +UV Count: 3 + UV + UV + UV +Face 5372 +UV Count: 3 + UV + UV + UV +Face 5373 +UV Count: 3 + UV + UV + UV +Face 5374 +UV Count: 3 + UV + UV + UV +Face 5375 +UV Count: 3 + UV + UV + UV +Face 5376 +UV Count: 3 + UV + UV + UV +Face 5377 +UV Count: 3 + UV + UV + UV +Face 5378 +UV Count: 3 + UV + UV + UV +Face 5379 +UV Count: 3 + UV + UV + UV +Face 5380 +UV Count: 3 + UV + UV + UV +Face 5381 +UV Count: 3 + UV + UV + UV +Face 5382 +UV Count: 3 + UV + UV + UV +Face 5383 +UV Count: 3 + UV + UV + UV +Face 5384 +UV Count: 3 + UV + UV + UV +Face 5385 +UV Count: 3 + UV + UV + UV +Face 5386 +UV Count: 3 + UV + UV + UV +Face 5387 +UV Count: 3 + UV + UV + UV +Face 5388 +UV Count: 3 + UV + UV + UV +Face 5389 +UV Count: 3 + UV + UV + UV +Face 5390 +UV Count: 3 + UV + UV + UV +Face 5391 +UV Count: 3 + UV + UV + UV +Face 5392 +UV Count: 3 + UV + UV + UV +Face 5393 +UV Count: 3 + UV + UV + UV +Face 5394 +UV Count: 3 + UV + UV + UV +Face 5395 +UV Count: 3 + UV + UV + UV +Face 5396 +UV Count: 3 + UV + UV + UV +Face 5397 +UV Count: 3 + UV + UV + UV +Face 5398 +UV Count: 3 + UV + UV + UV +Face 5399 +UV Count: 3 + UV + UV + UV +Face 5400 +UV Count: 3 + UV + UV + UV +Face 5401 +UV Count: 3 + UV + UV + UV +Face 5402 +UV Count: 3 + UV + UV + UV +Face 5403 +UV Count: 3 + UV + UV + UV +Face 5404 +UV Count: 3 + UV + UV + UV +Face 5405 +UV Count: 3 + UV + UV + UV +Face 5406 +UV Count: 3 + UV + UV + UV +Face 5407 +UV Count: 3 + UV + UV + UV +Face 5408 +UV Count: 3 + UV + UV + UV +Face 5409 +UV Count: 3 + UV + UV + UV +Face 5410 +UV Count: 3 + UV + UV + UV +Face 5411 +UV Count: 3 + UV + UV + UV +Face 5412 +UV Count: 3 + UV + UV + UV +Face 5413 +UV Count: 3 + UV + UV + UV +Face 5414 +UV Count: 3 + UV + UV + UV +Face 5415 +UV Count: 3 + UV + UV + UV +Face 5416 +UV Count: 3 + UV + UV + UV +Face 5417 +UV Count: 3 + UV + UV + UV +Face 5418 +UV Count: 3 + UV + UV + UV +Face 5419 +UV Count: 3 + UV + UV + UV +Face 5420 +UV Count: 3 + UV + UV + UV +Face 5421 +UV Count: 3 + UV + UV + UV +Face 5422 +UV Count: 3 + UV + UV + UV +Face 5423 +UV Count: 3 + UV + UV + UV +Face 5424 +UV Count: 3 + UV + UV + UV +Face 5425 +UV Count: 3 + UV + UV + UV +Face 5426 +UV Count: 3 + UV + UV + UV +Face 5427 +UV Count: 3 + UV + UV + UV +Face 5428 +UV Count: 3 + UV + UV + UV +Face 5429 +UV Count: 3 + UV + UV + UV +Face 5430 +UV Count: 3 + UV + UV + UV +Face 5431 +UV Count: 3 + UV + UV + UV +Face 5432 +UV Count: 3 + UV + UV + UV +Face 5433 +UV Count: 3 + UV + UV + UV +Face 5434 +UV Count: 3 + UV + UV + UV +Face 5435 +UV Count: 3 + UV + UV + UV +Face 5436 +UV Count: 3 + UV + UV + UV +Face 5437 +UV Count: 3 + UV + UV + UV +Face 5438 +UV Count: 3 + UV + UV + UV +Face 5439 +UV Count: 3 + UV + UV + UV +Face 5440 +UV Count: 3 + UV + UV + UV +Face 5441 +UV Count: 3 + UV + UV + UV +Face 5442 +UV Count: 3 + UV + UV + UV +Face 5443 +UV Count: 3 + UV + UV + UV +Face 5444 +UV Count: 3 + UV + UV + UV +Face 5445 +UV Count: 3 + UV + UV + UV +Face 5446 +UV Count: 3 + UV + UV + UV +Face 5447 +UV Count: 3 + UV + UV + UV +Face 5448 +UV Count: 3 + UV + UV + UV +Face 5449 +UV Count: 3 + UV + UV + UV +Face 5450 +UV Count: 3 + UV + UV + UV +Face 5451 +UV Count: 3 + UV + UV + UV +Face 5452 +UV Count: 3 + UV + UV + UV +Face 5453 +UV Count: 3 + UV + UV + UV +Face 5454 +UV Count: 3 + UV + UV + UV +Face 5455 +UV Count: 3 + UV + UV + UV +Face 5456 +UV Count: 3 + UV + UV + UV +Face 5457 +UV Count: 3 + UV + UV + UV +Face 5458 +UV Count: 3 + UV + UV + UV +Face 5459 +UV Count: 3 + UV + UV + UV +Face 5460 +UV Count: 3 + UV + UV + UV +Face 5461 +UV Count: 3 + UV + UV + UV +Face 5462 +UV Count: 3 + UV + UV + UV +Face 5463 +UV Count: 3 + UV + UV + UV +Face 5464 +UV Count: 3 + UV + UV + UV +Face 5465 +UV Count: 3 + UV + UV + UV +Face 5466 +UV Count: 3 + UV + UV + UV +Face 5467 +UV Count: 3 + UV + UV + UV +Face 5468 +UV Count: 3 + UV + UV + UV +Face 5469 +UV Count: 3 + UV + UV + UV +Face 5470 +UV Count: 3 + UV + UV + UV +Face 5471 +UV Count: 3 + UV + UV + UV +Face 5472 +UV Count: 3 + UV + UV + UV +Face 5473 +UV Count: 3 + UV + UV + UV +Face 5474 +UV Count: 3 + UV + UV + UV +Face 5475 +UV Count: 3 + UV + UV + UV +Face 5476 +UV Count: 3 + UV + UV + UV +Face 5477 +UV Count: 3 + UV + UV + UV +Face 5478 +UV Count: 3 + UV + UV + UV +Face 5479 +UV Count: 3 + UV + UV + UV +Face 5480 +UV Count: 3 + UV + UV + UV +Face 5481 +UV Count: 3 + UV + UV + UV +Face 5482 +UV Count: 3 + UV + UV + UV +Face 5483 +UV Count: 3 + UV + UV + UV +Face 5484 +UV Count: 3 + UV + UV + UV +Face 5485 +UV Count: 3 + UV + UV + UV +Face 5486 +UV Count: 3 + UV + UV + UV +Face 5487 +UV Count: 3 + UV + UV + UV +Face 5488 +UV Count: 3 + UV + UV + UV +Face 5489 +UV Count: 3 + UV + UV + UV +Face 5490 +UV Count: 3 + UV + UV + UV +Face 5491 +UV Count: 3 + UV + UV + UV +Face 5492 +UV Count: 3 + UV + UV + UV +Face 5493 +UV Count: 3 + UV + UV + UV +Face 5494 +UV Count: 3 + UV + UV + UV +Face 5495 +UV Count: 3 + UV + UV + UV +Face 5496 +UV Count: 3 + UV + UV + UV +Face 5497 +UV Count: 3 + UV + UV + UV +Face 5498 +UV Count: 3 + UV + UV + UV +Face 5499 +UV Count: 3 + UV + UV + UV +Face 5500 +UV Count: 3 + UV + UV + UV +Face 5501 +UV Count: 3 + UV + UV + UV +Face 5502 +UV Count: 3 + UV + UV + UV +Face 5503 +UV Count: 3 + UV + UV + UV +Face 5504 +UV Count: 3 + UV + UV + UV +Face 5505 +UV Count: 3 + UV + UV + UV +Face 5506 +UV Count: 3 + UV + UV + UV +Face 5507 +UV Count: 3 + UV + UV + UV +Face 5508 +UV Count: 3 + UV + UV + UV +Face 5509 +UV Count: 3 + UV + UV + UV +Face 5510 +UV Count: 3 + UV + UV + UV +Face 5511 +UV Count: 3 + UV + UV + UV +Face 5512 +UV Count: 3 + UV + UV + UV +Face 5513 +UV Count: 3 + UV + UV + UV +Face 5514 +UV Count: 3 + UV + UV + UV +Face 5515 +UV Count: 3 + UV + UV + UV +Face 5516 +UV Count: 3 + UV + UV + UV +Face 5517 +UV Count: 3 + UV + UV + UV +Face 5518 +UV Count: 3 + UV + UV + UV +Face 5519 +UV Count: 3 + UV + UV + UV +Face 5520 +UV Count: 3 + UV + UV + UV +Face 5521 +UV Count: 3 + UV + UV + UV +Face 5522 +UV Count: 3 + UV + UV + UV +Face 5523 +UV Count: 3 + UV + UV + UV +Face 5524 +UV Count: 3 + UV + UV + UV +Face 5525 +UV Count: 3 + UV + UV + UV +Face 5526 +UV Count: 3 + UV + UV + UV +Face 5527 +UV Count: 3 + UV + UV + UV +Face 5528 +UV Count: 3 + UV + UV + UV +Face 5529 +UV Count: 3 + UV + UV + UV +Face 5530 +UV Count: 3 + UV + UV + UV +Face 5531 +UV Count: 3 + UV + UV + UV +Face 5532 +UV Count: 3 + UV + UV + UV +Face 5533 +UV Count: 3 + UV + UV + UV +Face 5534 +UV Count: 3 + UV + UV + UV +Face 5535 +UV Count: 3 + UV + UV + UV +Face 5536 +UV Count: 3 + UV + UV + UV +Face 5537 +UV Count: 3 + UV + UV + UV +Face 5538 +UV Count: 3 + UV + UV + UV +Face 5539 +UV Count: 3 + UV + UV + UV +Face 5540 +UV Count: 3 + UV + UV + UV +Face 5541 +UV Count: 3 + UV + UV + UV +Face 5542 +UV Count: 3 + UV + UV + UV +Face 5543 +UV Count: 3 + UV + UV + UV +Face 5544 +UV Count: 3 + UV + UV + UV +Face 5545 +UV Count: 3 + UV + UV + UV +Face 5546 +UV Count: 3 + UV + UV + UV +Face 5547 +UV Count: 3 + UV + UV + UV +Face 5548 +UV Count: 3 + UV + UV + UV +Face 5549 +UV Count: 3 + UV + UV + UV +Face 5550 +UV Count: 3 + UV + UV + UV +Face 5551 +UV Count: 3 + UV + UV + UV +Face 5552 +UV Count: 3 + UV + UV + UV +Face 5553 +UV Count: 3 + UV + UV + UV +Face 5554 +UV Count: 3 + UV + UV + UV +Face 5555 +UV Count: 3 + UV + UV + UV +Face 5556 +UV Count: 3 + UV + UV + UV +Face 5557 +UV Count: 3 + UV + UV + UV +Face 5558 +UV Count: 3 + UV + UV + UV +Face 5559 +UV Count: 3 + UV + UV + UV +Face 5560 +UV Count: 3 + UV + UV + UV +Face 5561 +UV Count: 3 + UV + UV + UV +Face 5562 +UV Count: 3 + UV + UV + UV +Face 5563 +UV Count: 3 + UV + UV + UV +Face 5564 +UV Count: 3 + UV + UV + UV +Face 5565 +UV Count: 3 + UV + UV + UV +Face 5566 +UV Count: 3 + UV + UV + UV +Face 5567 +UV Count: 3 + UV + UV + UV +Face 5568 +UV Count: 3 + UV + UV + UV +Face 5569 +UV Count: 3 + UV + UV + UV +Face 5570 +UV Count: 3 + UV + UV + UV +Face 5571 +UV Count: 3 + UV + UV + UV +Face 5572 +UV Count: 3 + UV + UV + UV +Face 5573 +UV Count: 3 + UV + UV + UV +Face 5574 +UV Count: 3 + UV + UV + UV +Face 5575 +UV Count: 3 + UV + UV + UV +Face 5576 +UV Count: 3 + UV + UV + UV +Face 5577 +UV Count: 3 + UV + UV + UV +Face 5578 +UV Count: 3 + UV + UV + UV +Face 5579 +UV Count: 3 + UV + UV + UV +Face 5580 +UV Count: 3 + UV + UV + UV +Face 5581 +UV Count: 3 + UV + UV + UV +Face 5582 +UV Count: 3 + UV + UV + UV +Face 5583 +UV Count: 3 + UV + UV + UV +Face 5584 +UV Count: 3 + UV + UV + UV +Face 5585 +UV Count: 3 + UV + UV + UV +Face 5586 +UV Count: 3 + UV + UV + UV +Face 5587 +UV Count: 3 + UV + UV + UV +Face 5588 +UV Count: 3 + UV + UV + UV +Face 5589 +UV Count: 3 + UV + UV + UV +Face 5590 +UV Count: 3 + UV + UV + UV +Face 5591 +UV Count: 3 + UV + UV + UV +Face 5592 +UV Count: 3 + UV + UV + UV +Face 5593 +UV Count: 3 + UV + UV + UV +Face 5594 +UV Count: 3 + UV + UV + UV +Face 5595 +UV Count: 3 + UV + UV + UV +Face 5596 +UV Count: 3 + UV + UV + UV +Face 5597 +UV Count: 3 + UV + UV + UV +Face 5598 +UV Count: 3 + UV + UV + UV +Face 5599 +UV Count: 3 + UV + UV + UV +Face 5600 +UV Count: 3 + UV + UV + UV +Face 5601 +UV Count: 3 + UV + UV + UV +Face 5602 +UV Count: 3 + UV + UV + UV +Face 5603 +UV Count: 3 + UV + UV + UV +Face 5604 +UV Count: 3 + UV + UV + UV +Face 5605 +UV Count: 3 + UV + UV + UV +Face 5606 +UV Count: 3 + UV + UV + UV +Face 5607 +UV Count: 3 + UV + UV + UV +Face 5608 +UV Count: 3 + UV + UV + UV +Face 5609 +UV Count: 3 + UV + UV + UV +Face 5610 +UV Count: 3 + UV + UV + UV +Face 5611 +UV Count: 3 + UV + UV + UV +Face 5612 +UV Count: 3 + UV + UV + UV +Face 5613 +UV Count: 3 + UV + UV + UV +Face 5614 +UV Count: 3 + UV + UV + UV +Face 5615 +UV Count: 3 + UV + UV + UV +Face 5616 +UV Count: 3 + UV + UV + UV +Face 5617 +UV Count: 3 + UV + UV + UV +Face 5618 +UV Count: 3 + UV + UV + UV +Face 5619 +UV Count: 3 + UV + UV + UV +Face 5620 +UV Count: 3 + UV + UV + UV +Face 5621 +UV Count: 3 + UV + UV + UV +Face 5622 +UV Count: 3 + UV + UV + UV +Face 5623 +UV Count: 3 + UV + UV + UV +Face 5624 +UV Count: 3 + UV + UV + UV +Face 5625 +UV Count: 3 + UV + UV + UV +Face 5626 +UV Count: 3 + UV + UV + UV +Face 5627 +UV Count: 3 + UV + UV + UV +Face 5628 +UV Count: 3 + UV + UV + UV +Face 5629 +UV Count: 3 + UV + UV + UV +Face 5630 +UV Count: 3 + UV + UV + UV +Face 5631 +UV Count: 3 + UV + UV + UV +Face 5632 +UV Count: 3 + UV + UV + UV +Face 5633 +UV Count: 3 + UV + UV + UV +Face 5634 +UV Count: 3 + UV + UV + UV +Face 5635 +UV Count: 3 + UV + UV + UV +Face 5636 +UV Count: 3 + UV + UV + UV +Face 5637 +UV Count: 3 + UV + UV + UV +Face 5638 +UV Count: 3 + UV + UV + UV +Face 5639 +UV Count: 3 + UV + UV + UV +Face 5640 +UV Count: 3 + UV + UV + UV +Face 5641 +UV Count: 3 + UV + UV + UV +Face 5642 +UV Count: 3 + UV + UV + UV +Face 5643 +UV Count: 3 + UV + UV + UV +Face 5644 +UV Count: 3 + UV + UV + UV +Face 5645 +UV Count: 3 + UV + UV + UV +Face 5646 +UV Count: 3 + UV + UV + UV +Face 5647 +UV Count: 3 + UV + UV + UV +Face 5648 +UV Count: 3 + UV + UV + UV +Face 5649 +UV Count: 3 + UV + UV + UV +Face 5650 +UV Count: 3 + UV + UV + UV +Face 5651 +UV Count: 3 + UV + UV + UV +Face 5652 +UV Count: 3 + UV + UV + UV +Face 5653 +UV Count: 3 + UV + UV + UV +Face 5654 +UV Count: 3 + UV + UV + UV +Face 5655 +UV Count: 3 + UV + UV + UV +Face 5656 +UV Count: 3 + UV + UV + UV +Face 5657 +UV Count: 3 + UV + UV + UV +Face 5658 +UV Count: 3 + UV + UV + UV +Face 5659 +UV Count: 3 + UV + UV + UV +Face 5660 +UV Count: 3 + UV + UV + UV +Face 5661 +UV Count: 3 + UV + UV + UV +Face 5662 +UV Count: 3 + UV + UV + UV +Face 5663 +UV Count: 3 + UV + UV + UV +Face 5664 +UV Count: 3 + UV + UV + UV +Face 5665 +UV Count: 3 + UV + UV + UV +Face 5666 +UV Count: 3 + UV + UV + UV +Face 5667 +UV Count: 3 + UV + UV + UV +Face 5668 +UV Count: 3 + UV + UV + UV +Face 5669 +UV Count: 3 + UV + UV + UV +Face 5670 +UV Count: 3 + UV + UV + UV +Face 5671 +UV Count: 3 + UV + UV + UV +Face 5672 +UV Count: 3 + UV + UV + UV +Face 5673 +UV Count: 3 + UV + UV + UV +Face 5674 +UV Count: 3 + UV + UV + UV +Face 5675 +UV Count: 3 + UV + UV + UV +Face 5676 +UV Count: 3 + UV + UV + UV +Face 5677 +UV Count: 3 + UV + UV + UV +Face 5678 +UV Count: 3 + UV + UV + UV +Face 5679 +UV Count: 3 + UV + UV + UV +Face 5680 +UV Count: 3 + UV + UV + UV +Face 5681 +UV Count: 3 + UV + UV + UV +Face 5682 +UV Count: 3 + UV + UV + UV +Face 5683 +UV Count: 3 + UV + UV + UV +Face 5684 +UV Count: 3 + UV + UV + UV +Face 5685 +UV Count: 3 + UV + UV + UV +Face 5686 +UV Count: 3 + UV + UV + UV +Face 5687 +UV Count: 3 + UV + UV + UV +Face 5688 +UV Count: 3 + UV + UV + UV +Face 5689 +UV Count: 3 + UV + UV + UV +Face 5690 +UV Count: 3 + UV + UV + UV +Face 5691 +UV Count: 3 + UV + UV + UV +Face 5692 +UV Count: 3 + UV + UV + UV +Face 5693 +UV Count: 3 + UV + UV + UV +Face 5694 +UV Count: 3 + UV + UV + UV +Face 5695 +UV Count: 3 + UV + UV + UV +Face 5696 +UV Count: 3 + UV + UV + UV +Face 5697 +UV Count: 3 + UV + UV + UV +Face 5698 +UV Count: 3 + UV + UV + UV +Face 5699 +UV Count: 3 + UV + UV + UV +Face 5700 +UV Count: 3 + UV + UV + UV +Face 5701 +UV Count: 3 + UV + UV + UV +Face 5702 +UV Count: 3 + UV + UV + UV +Face 5703 +UV Count: 3 + UV + UV + UV +Face 5704 +UV Count: 3 + UV + UV + UV +Face 5705 +UV Count: 3 + UV + UV + UV +Face 5706 +UV Count: 3 + UV + UV + UV +Face 5707 +UV Count: 3 + UV + UV + UV +Face 5708 +UV Count: 3 + UV + UV + UV +Face 5709 +UV Count: 3 + UV + UV + UV +Face 5710 +UV Count: 3 + UV + UV + UV +Face 5711 +UV Count: 3 + UV + UV + UV +Face 5712 +UV Count: 3 + UV + UV + UV +Face 5713 +UV Count: 3 + UV + UV + UV +Face 5714 +UV Count: 3 + UV + UV + UV +Face 5715 +UV Count: 3 + UV + UV + UV +Face 5716 +UV Count: 3 + UV + UV + UV +Face 5717 +UV Count: 3 + UV + UV + UV +Face 5718 +UV Count: 3 + UV + UV + UV +Face 5719 +UV Count: 3 + UV + UV + UV +Face 5720 +UV Count: 3 + UV + UV + UV +Face 5721 +UV Count: 3 + UV + UV + UV +Face 5722 +UV Count: 3 + UV + UV + UV +Face 5723 +UV Count: 3 + UV + UV + UV +Face 5724 +UV Count: 3 + UV + UV + UV +Face 5725 +UV Count: 3 + UV + UV + UV +Face 5726 +UV Count: 3 + UV + UV + UV +Face 5727 +UV Count: 3 + UV + UV + UV +Face 5728 +UV Count: 3 + UV + UV + UV +Face 5729 +UV Count: 3 + UV + UV + UV +Face 5730 +UV Count: 3 + UV + UV + UV +Face 5731 +UV Count: 3 + UV + UV + UV +Face 5732 +UV Count: 3 + UV + UV + UV +Face 5733 +UV Count: 3 + UV + UV + UV +Face 5734 +UV Count: 3 + UV + UV + UV +Face 5735 +UV Count: 3 + UV + UV + UV +Face 5736 +UV Count: 3 + UV + UV + UV +Face 5737 +UV Count: 3 + UV + UV + UV +Face 5738 +UV Count: 3 + UV + UV + UV +Face 5739 +UV Count: 3 + UV + UV + UV +Face 5740 +UV Count: 3 + UV + UV + UV +Face 5741 +UV Count: 3 + UV + UV + UV +Face 5742 +UV Count: 3 + UV + UV + UV +Face 5743 +UV Count: 3 + UV + UV + UV +Face 5744 +UV Count: 3 + UV + UV + UV +Face 5745 +UV Count: 3 + UV + UV + UV +Face 5746 +UV Count: 3 + UV + UV + UV +Face 5747 +UV Count: 3 + UV + UV + UV +Face 5748 +UV Count: 3 + UV + UV + UV +Face 5749 +UV Count: 3 + UV + UV + UV +Face 5750 +UV Count: 3 + UV + UV + UV +Face 5751 +UV Count: 3 + UV + UV + UV +Face 5752 +UV Count: 3 + UV + UV + UV +Face 5753 +UV Count: 3 + UV + UV + UV +Face 5754 +UV Count: 3 + UV + UV + UV +Face 5755 +UV Count: 3 + UV + UV + UV +Face 5756 +UV Count: 3 + UV + UV + UV +Face 5757 +UV Count: 3 + UV + UV + UV +Face 5758 +UV Count: 3 + UV + UV + UV +Face 5759 +UV Count: 3 + UV + UV + UV +Face 5760 +UV Count: 3 + UV + UV + UV +Face 5761 +UV Count: 3 + UV + UV + UV +Face 5762 +UV Count: 3 + UV + UV + UV +Face 5763 +UV Count: 3 + UV + UV + UV +Face 5764 +UV Count: 3 + UV + UV + UV +Face 5765 +UV Count: 3 + UV + UV + UV +Face 5766 +UV Count: 3 + UV + UV + UV +Face 5767 +UV Count: 3 + UV + UV + UV +Face 5768 +UV Count: 3 + UV + UV + UV +Face 5769 +UV Count: 3 + UV + UV + UV +Face 5770 +UV Count: 3 + UV + UV + UV +Face 5771 +UV Count: 3 + UV + UV + UV +Face 5772 +UV Count: 3 + UV + UV + UV +Face 5773 +UV Count: 3 + UV + UV + UV +Face 5774 +UV Count: 3 + UV + UV + UV +Face 5775 +UV Count: 3 + UV + UV + UV +Face 5776 +UV Count: 3 + UV + UV + UV +Face 5777 +UV Count: 3 + UV + UV + UV +Face 5778 +UV Count: 3 + UV + UV + UV +Face 5779 +UV Count: 3 + UV + UV + UV +Face 5780 +UV Count: 3 + UV + UV + UV +Face 5781 +UV Count: 3 + UV + UV + UV +Face 5782 +UV Count: 3 + UV + UV + UV +Face 5783 +UV Count: 3 + UV + UV + UV +Face 5784 +UV Count: 3 + UV + UV + UV +Face 5785 +UV Count: 3 + UV + UV + UV +Face 5786 +UV Count: 3 + UV + UV + UV +Face 5787 +UV Count: 3 + UV + UV + UV +Face 5788 +UV Count: 3 + UV + UV + UV +Face 5789 +UV Count: 3 + UV + UV + UV +Face 5790 +UV Count: 3 + UV + UV + UV +Face 5791 +UV Count: 3 + UV + UV + UV +Face 5792 +UV Count: 3 + UV + UV + UV +Face 5793 +UV Count: 3 + UV + UV + UV +Face 5794 +UV Count: 3 + UV + UV + UV +Face 5795 +UV Count: 3 + UV + UV + UV +Face 5796 +UV Count: 3 + UV + UV + UV +Face 5797 +UV Count: 3 + UV + UV + UV +Face 5798 +UV Count: 3 + UV + UV + UV +Face 5799 +UV Count: 3 + UV + UV + UV +Face 5800 +UV Count: 3 + UV + UV + UV +Face 5801 +UV Count: 3 + UV + UV + UV +Face 5802 +UV Count: 3 + UV + UV + UV +Face 5803 +UV Count: 3 + UV + UV + UV +Face 5804 +UV Count: 3 + UV + UV + UV +Face 5805 +UV Count: 3 + UV + UV + UV +Face 5806 +UV Count: 3 + UV + UV + UV +Face 5807 +UV Count: 3 + UV + UV + UV +Face 5808 +UV Count: 3 + UV + UV + UV +Face 5809 +UV Count: 3 + UV + UV + UV +Face 5810 +UV Count: 3 + UV + UV + UV +Face 5811 +UV Count: 3 + UV + UV + UV +Face 5812 +UV Count: 3 + UV + UV + UV +Face 5813 +UV Count: 3 + UV + UV + UV +Face 5814 +UV Count: 3 + UV + UV + UV +Face 5815 +UV Count: 3 + UV + UV + UV +Face 5816 +UV Count: 3 + UV + UV + UV +Face 5817 +UV Count: 3 + UV + UV + UV +Face 5818 +UV Count: 3 + UV + UV + UV +Face 5819 +UV Count: 3 + UV + UV + UV +Face 5820 +UV Count: 3 + UV + UV + UV +Face 5821 +UV Count: 3 + UV + UV + UV +Face 5822 +UV Count: 3 + UV + UV + UV +Face 5823 +UV Count: 3 + UV + UV + UV +Face 5824 +UV Count: 3 + UV + UV + UV +Face 5825 +UV Count: 3 + UV + UV + UV +Face 5826 +UV Count: 3 + UV + UV + UV +Face 5827 +UV Count: 3 + UV + UV + UV +Face 5828 +UV Count: 3 + UV + UV + UV +Face 5829 +UV Count: 3 + UV + UV + UV +Face 5830 +UV Count: 3 + UV + UV + UV +Face 5831 +UV Count: 3 + UV + UV + UV +Face 5832 +UV Count: 3 + UV + UV + UV +Face 5833 +UV Count: 3 + UV + UV + UV +Face 5834 +UV Count: 3 + UV + UV + UV +Face 5835 +UV Count: 3 + UV + UV + UV +Face 5836 +UV Count: 3 + UV + UV + UV +Face 5837 +UV Count: 3 + UV + UV + UV +Face 5838 +UV Count: 3 + UV + UV + UV +Face 5839 +UV Count: 3 + UV + UV + UV +Face 5840 +UV Count: 3 + UV + UV + UV +Face 5841 +UV Count: 3 + UV + UV + UV +Face 5842 +UV Count: 3 + UV + UV + UV +Face 5843 +UV Count: 3 + UV + UV + UV +Face 5844 +UV Count: 3 + UV + UV + UV +Face 5845 +UV Count: 3 + UV + UV + UV +Face 5846 +UV Count: 3 + UV + UV + UV +Face 5847 +UV Count: 3 + UV + UV + UV +Face 5848 +UV Count: 3 + UV + UV + UV +Face 5849 +UV Count: 3 + UV + UV + UV +Face 5850 +UV Count: 3 + UV + UV + UV +Face 5851 +UV Count: 3 + UV + UV + UV +Face 5852 +UV Count: 3 + UV + UV + UV +Face 5853 +UV Count: 3 + UV + UV + UV +Face 5854 +UV Count: 3 + UV + UV + UV +Face 5855 +UV Count: 3 + UV + UV + UV +Face 5856 +UV Count: 3 + UV + UV + UV +Face 5857 +UV Count: 3 + UV + UV + UV +Face 5858 +UV Count: 3 + UV + UV + UV +Face 5859 +UV Count: 3 + UV + UV + UV +Face 5860 +UV Count: 3 + UV + UV + UV +Face 5861 +UV Count: 3 + UV + UV + UV +Face 5862 +UV Count: 3 + UV + UV + UV +Face 5863 +UV Count: 3 + UV + UV + UV +Face 5864 +UV Count: 3 + UV + UV + UV +Face 5865 +UV Count: 3 + UV + UV + UV +Face 5866 +UV Count: 3 + UV + UV + UV +Face 5867 +UV Count: 3 + UV + UV + UV +Face 5868 +UV Count: 3 + UV + UV + UV +Face 5869 +UV Count: 3 + UV + UV + UV +Face 5870 +UV Count: 3 + UV + UV + UV +Face 5871 +UV Count: 3 + UV + UV + UV +Face 5872 +UV Count: 3 + UV + UV + UV +Face 5873 +UV Count: 3 + UV + UV + UV +Face 5874 +UV Count: 3 + UV + UV + UV +Face 5875 +UV Count: 3 + UV + UV + UV +Face 5876 +UV Count: 3 + UV + UV + UV +Face 5877 +UV Count: 3 + UV + UV + UV +Face 5878 +UV Count: 3 + UV + UV + UV +Face 5879 +UV Count: 3 + UV + UV + UV +Face 5880 +UV Count: 3 + UV + UV + UV +Face 5881 +UV Count: 3 + UV + UV + UV +Face 5882 +UV Count: 3 + UV + UV + UV +Face 5883 +UV Count: 3 + UV + UV + UV +Face 5884 +UV Count: 3 + UV + UV + UV +Face 5885 +UV Count: 3 + UV + UV + UV +Face 5886 +UV Count: 3 + UV + UV + UV +Face 5887 +UV Count: 3 + UV + UV + UV +Face 5888 +UV Count: 3 + UV + UV + UV +Face 5889 +UV Count: 3 + UV + UV + UV +Face 5890 +UV Count: 3 + UV + UV + UV +Face 5891 +UV Count: 3 + UV + UV + UV +Face 5892 +UV Count: 3 + UV + UV + UV +Face 5893 +UV Count: 3 + UV + UV + UV +Face 5894 +UV Count: 3 + UV + UV + UV +Face 5895 +UV Count: 3 + UV + UV + UV +Face 5896 +UV Count: 3 + UV + UV + UV +Face 5897 +UV Count: 3 + UV + UV + UV +Face 5898 +UV Count: 3 + UV + UV + UV +Face 5899 +UV Count: 3 + UV + UV + UV +Face 5900 +UV Count: 3 + UV + UV + UV +Face 5901 +UV Count: 3 + UV + UV + UV +Face 5902 +UV Count: 3 + UV + UV + UV +Face 5903 +UV Count: 3 + UV + UV + UV +Face 5904 +UV Count: 3 + UV + UV + UV +Face 5905 +UV Count: 3 + UV + UV + UV +Face 5906 +UV Count: 3 + UV + UV + UV +Face 5907 +UV Count: 3 + UV + UV + UV +Face 5908 +UV Count: 3 + UV + UV + UV +Face 5909 +UV Count: 3 + UV + UV + UV +Face 5910 +UV Count: 3 + UV + UV + UV +Face 5911 +UV Count: 3 + UV + UV + UV +Face 5912 +UV Count: 3 + UV + UV + UV +Face 5913 +UV Count: 3 + UV + UV + UV +Face 5914 +UV Count: 3 + UV + UV + UV +Face 5915 +UV Count: 3 + UV + UV + UV +Face 5916 +UV Count: 3 + UV + UV + UV +Face 5917 +UV Count: 3 + UV + UV + UV +Face 5918 +UV Count: 3 + UV + UV + UV +Face 5919 +UV Count: 3 + UV + UV + UV +Face 5920 +UV Count: 3 + UV + UV + UV +Face 5921 +UV Count: 3 + UV + UV + UV +Face 5922 +UV Count: 3 + UV + UV + UV +Face 5923 +UV Count: 3 + UV + UV + UV +Face 5924 +UV Count: 3 + UV + UV + UV +Face 5925 +UV Count: 3 + UV + UV + UV +Face 5926 +UV Count: 3 + UV + UV + UV +Face 5927 +UV Count: 3 + UV + UV + UV +Face 5928 +UV Count: 3 + UV + UV + UV +Face 5929 +UV Count: 3 + UV + UV + UV +Face 5930 +UV Count: 3 + UV + UV + UV +Face 5931 +UV Count: 3 + UV + UV + UV +Face 5932 +UV Count: 3 + UV + UV + UV +Face 5933 +UV Count: 3 + UV + UV + UV +Face 5934 +UV Count: 3 + UV + UV + UV +Face 5935 +UV Count: 3 + UV + UV + UV +Face 5936 +UV Count: 3 + UV + UV + UV +Face 5937 +UV Count: 3 + UV + UV + UV +Face 5938 +UV Count: 3 + UV + UV + UV +Face 5939 +UV Count: 3 + UV + UV + UV +Face 5940 +UV Count: 3 + UV + UV + UV +Face 5941 +UV Count: 3 + UV + UV + UV +Face 5942 +UV Count: 3 + UV + UV + UV +Face 5943 +UV Count: 3 + UV + UV + UV +Face 5944 +UV Count: 3 + UV + UV + UV +Face 5945 +UV Count: 3 + UV + UV + UV +Face 5946 +UV Count: 3 + UV + UV + UV +Face 5947 +UV Count: 3 + UV + UV + UV +Face 5948 +UV Count: 3 + UV + UV + UV +Face 5949 +UV Count: 3 + UV + UV + UV +Face 5950 +UV Count: 3 + UV + UV + UV +Face 5951 +UV Count: 3 + UV + UV + UV +Face 5952 +UV Count: 3 + UV + UV + UV +Face 5953 +UV Count: 3 + UV + UV + UV +Face 5954 +UV Count: 3 + UV + UV + UV +Face 5955 +UV Count: 3 + UV + UV + UV +Face 5956 +UV Count: 3 + UV + UV + UV +Face 5957 +UV Count: 3 + UV + UV + UV +Face 5958 +UV Count: 3 + UV + UV + UV +Face 5959 +UV Count: 3 + UV + UV + UV +Face 5960 +UV Count: 3 + UV + UV + UV +Face 5961 +UV Count: 3 + UV + UV + UV +Face 5962 +UV Count: 3 + UV + UV + UV +Face 5963 +UV Count: 3 + UV + UV + UV +Face 5964 +UV Count: 3 + UV + UV + UV +Face 5965 +UV Count: 3 + UV + UV + UV +Face 5966 +UV Count: 3 + UV + UV + UV +Face 5967 +UV Count: 3 + UV + UV + UV +Face 5968 +UV Count: 3 + UV + UV + UV +Face 5969 +UV Count: 3 + UV + UV + UV +Face 5970 +UV Count: 3 + UV + UV + UV +Face 5971 +UV Count: 3 + UV + UV + UV +Face 5972 +UV Count: 3 + UV + UV + UV +Face 5973 +UV Count: 3 + UV + UV + UV +Face 5974 +UV Count: 3 + UV + UV + UV +Face 5975 +UV Count: 3 + UV + UV + UV +Face 5976 +UV Count: 3 + UV + UV + UV +Face 5977 +UV Count: 3 + UV + UV + UV +Face 5978 +UV Count: 3 + UV + UV + UV +Face 5979 +UV Count: 3 + UV + UV + UV +Face 5980 +UV Count: 3 + UV + UV + UV +Face 5981 +UV Count: 3 + UV + UV + UV +Face 5982 +UV Count: 3 + UV + UV + UV +Face 5983 +UV Count: 3 + UV + UV + UV +Face 5984 +UV Count: 3 + UV + UV + UV +Face 5985 +UV Count: 3 + UV + UV + UV +Face 5986 +UV Count: 3 + UV + UV + UV +Face 5987 +UV Count: 3 + UV + UV + UV +Face 5988 +UV Count: 3 + UV + UV + UV +Face 5989 +UV Count: 3 + UV + UV + UV +Face 5990 +UV Count: 3 + UV + UV + UV +Face 5991 +UV Count: 3 + UV + UV + UV +Face 5992 +UV Count: 3 + UV + UV + UV +Face 5993 +UV Count: 3 + UV + UV + UV +Face 5994 +UV Count: 3 + UV + UV + UV +Face 5995 +UV Count: 3 + UV + UV + UV +Face 5996 +UV Count: 3 + UV + UV + UV +Face 5997 +UV Count: 3 + UV + UV + UV +Face 5998 +UV Count: 3 + UV + UV + UV +Face 5999 +UV Count: 3 + UV + UV + UV +Face 6000 +UV Count: 3 + UV + UV + UV +Face 6001 +UV Count: 3 + UV + UV + UV +Face 6002 +UV Count: 3 + UV + UV + UV +Face 6003 +UV Count: 3 + UV + UV + UV +Face 6004 +UV Count: 3 + UV + UV + UV +Face 6005 +UV Count: 3 + UV + UV + UV +Face 6006 +UV Count: 3 + UV + UV + UV +Face 6007 +UV Count: 3 + UV + UV + UV +Face 6008 +UV Count: 3 + UV + UV + UV +Face 6009 +UV Count: 3 + UV + UV + UV +Face 6010 +UV Count: 3 + UV + UV + UV +Face 6011 +UV Count: 3 + UV + UV + UV +Face 6012 +UV Count: 3 + UV + UV + UV +Face 6013 +UV Count: 3 + UV + UV + UV +Face 6014 +UV Count: 3 + UV + UV + UV +Face 6015 +UV Count: 3 + UV + UV + UV +Face 6016 +UV Count: 3 + UV + UV + UV +Face 6017 +UV Count: 3 + UV + UV + UV +Face 6018 +UV Count: 3 + UV + UV + UV +Face 6019 +UV Count: 3 + UV + UV + UV +Face 6020 +UV Count: 3 + UV + UV + UV +Face 6021 +UV Count: 3 + UV + UV + UV +Face 6022 +UV Count: 3 + UV + UV + UV +Face 6023 +UV Count: 3 + UV + UV + UV +Face 6024 +UV Count: 3 + UV + UV + UV +Face 6025 +UV Count: 3 + UV + UV + UV +Face 6026 +UV Count: 3 + UV + UV + UV +Face 6027 +UV Count: 3 + UV + UV + UV +Face 6028 +UV Count: 3 + UV + UV + UV +Face 6029 +UV Count: 3 + UV + UV + UV +Face 6030 +UV Count: 3 + UV + UV + UV +Face 6031 +UV Count: 3 + UV + UV + UV +Face 6032 +UV Count: 3 + UV + UV + UV +Face 6033 +UV Count: 3 + UV + UV + UV +Face 6034 +UV Count: 3 + UV + UV + UV +Face 6035 +UV Count: 3 + UV + UV + UV +Face 6036 +UV Count: 3 + UV + UV + UV +Face 6037 +UV Count: 3 + UV + UV + UV +Face 6038 +UV Count: 3 + UV + UV + UV +Face 6039 +UV Count: 3 + UV + UV + UV +Face 6040 +UV Count: 3 + UV + UV + UV +Face 6041 +UV Count: 3 + UV + UV + UV +Face 6042 +UV Count: 3 + UV + UV + UV +Face 6043 +UV Count: 3 + UV + UV + UV +Face 6044 +UV Count: 3 + UV + UV + UV +Face 6045 +UV Count: 3 + UV + UV + UV +Face 6046 +UV Count: 3 + UV + UV + UV +Face 6047 +UV Count: 3 + UV + UV + UV +Face 6048 +UV Count: 3 + UV + UV + UV +Face 6049 +UV Count: 3 + UV + UV + UV +Face 6050 +UV Count: 3 + UV + UV + UV +Face 6051 +UV Count: 3 + UV + UV + UV +Face 6052 +UV Count: 3 + UV + UV + UV +Face 6053 +UV Count: 3 + UV + UV + UV +Face 6054 +UV Count: 3 + UV + UV + UV +Face 6055 +UV Count: 3 + UV + UV + UV +Face 6056 +UV Count: 3 + UV + UV + UV +Face 6057 +UV Count: 3 + UV + UV + UV +Face 6058 +UV Count: 3 + UV + UV + UV +Face 6059 +UV Count: 3 + UV + UV + UV +Face 6060 +UV Count: 3 + UV + UV + UV +Face 6061 +UV Count: 3 + UV + UV + UV +Face 6062 +UV Count: 3 + UV + UV + UV +Face 6063 +UV Count: 3 + UV + UV + UV +Face 6064 +UV Count: 3 + UV + UV + UV +Face 6065 +UV Count: 3 + UV + UV + UV +Face 6066 +UV Count: 3 + UV + UV + UV +Face 6067 +UV Count: 3 + UV + UV + UV +Face 6068 +UV Count: 3 + UV + UV + UV +Face 6069 +UV Count: 3 + UV + UV + UV +Face 6070 +UV Count: 3 + UV + UV + UV +Face 6071 +UV Count: 3 + UV + UV + UV +Face 6072 +UV Count: 3 + UV + UV + UV +Face 6073 +UV Count: 3 + UV + UV + UV +Face 6074 +UV Count: 3 + UV + UV + UV +Face 6075 +UV Count: 3 + UV + UV + UV +Face 6076 +UV Count: 3 + UV + UV + UV +Face 6077 +UV Count: 3 + UV + UV + UV +Face 6078 +UV Count: 3 + UV + UV + UV +Face 6079 +UV Count: 3 + UV + UV + UV +Face 6080 +UV Count: 3 + UV + UV + UV +Face 6081 +UV Count: 3 + UV + UV + UV +Face 6082 +UV Count: 3 + UV + UV + UV +Face 6083 +UV Count: 3 + UV + UV + UV +Face 6084 +UV Count: 3 + UV + UV + UV +Face 6085 +UV Count: 3 + UV + UV + UV +Face 6086 +UV Count: 3 + UV + UV + UV +Face 6087 +UV Count: 3 + UV + UV + UV +Face 6088 +UV Count: 3 + UV + UV + UV +Face 6089 +UV Count: 3 + UV + UV + UV +Face 6090 +UV Count: 3 + UV + UV + UV +Face 6091 +UV Count: 3 + UV + UV + UV +Face 6092 +UV Count: 3 + UV + UV + UV +Face 6093 +UV Count: 3 + UV + UV + UV +Face 6094 +UV Count: 3 + UV + UV + UV +Face 6095 +UV Count: 3 + UV + UV + UV +Face 6096 +UV Count: 3 + UV + UV + UV +Face 6097 +UV Count: 3 + UV + UV + UV +Face 6098 +UV Count: 3 + UV + UV + UV +Face 6099 +UV Count: 3 + UV + UV + UV +Face 6100 +UV Count: 3 + UV + UV + UV +Face 6101 +UV Count: 3 + UV + UV + UV +Face 6102 +UV Count: 3 + UV + UV + UV +Face 6103 +UV Count: 3 + UV + UV + UV +Face 6104 +UV Count: 3 + UV + UV + UV +Face 6105 +UV Count: 3 + UV + UV + UV +Face 6106 +UV Count: 3 + UV + UV + UV +Face 6107 +UV Count: 3 + UV + UV + UV +Face 6108 +UV Count: 3 + UV + UV + UV +Face 6109 +UV Count: 3 + UV + UV + UV +Face 6110 +UV Count: 3 + UV + UV + UV +Face 6111 +UV Count: 3 + UV + UV + UV +Face 6112 +UV Count: 3 + UV + UV + UV +Face 6113 +UV Count: 3 + UV + UV + UV +Face 6114 +UV Count: 3 + UV + UV + UV +Face 6115 +UV Count: 3 + UV + UV + UV +Face 6116 +UV Count: 3 + UV + UV + UV +Face 6117 +UV Count: 3 + UV + UV + UV +Face 6118 +UV Count: 3 + UV + UV + UV +Face 6119 +UV Count: 3 + UV + UV + UV +Face 6120 +UV Count: 3 + UV + UV + UV +Face 6121 +UV Count: 3 + UV + UV + UV +Face 6122 +UV Count: 3 + UV + UV + UV +Face 6123 +UV Count: 3 + UV + UV + UV +Face 6124 +UV Count: 3 + UV + UV + UV +Face 6125 +UV Count: 3 + UV + UV + UV +Face 6126 +UV Count: 3 + UV + UV + UV +Face 6127 +UV Count: 3 + UV + UV + UV +Face 6128 +UV Count: 3 + UV + UV + UV +Face 6129 +UV Count: 3 + UV + UV + UV +Face 6130 +UV Count: 3 + UV + UV + UV +Face 6131 +UV Count: 3 + UV + UV + UV +Face 6132 +UV Count: 3 + UV + UV + UV +Face 6133 +UV Count: 3 + UV + UV + UV +Face 6134 +UV Count: 3 + UV + UV + UV +Face 6135 +UV Count: 3 + UV + UV + UV +Face 6136 +UV Count: 3 + UV + UV + UV +Face 6137 +UV Count: 3 + UV + UV + UV +Face 6138 +UV Count: 3 + UV + UV + UV +Face 6139 +UV Count: 3 + UV + UV + UV +Face 6140 +UV Count: 3 + UV + UV + UV +Face 6141 +UV Count: 3 + UV + UV + UV +Face 6142 +UV Count: 3 + UV + UV + UV +Face 6143 +UV Count: 3 + UV + UV + UV +Face 6144 +UV Count: 3 + UV + UV + UV +Face 6145 +UV Count: 3 + UV + UV + UV +Face 6146 +UV Count: 3 + UV + UV + UV +Face 6147 +UV Count: 3 + UV + UV + UV +Face 6148 +UV Count: 3 + UV + UV + UV +Face 6149 +UV Count: 3 + UV + UV + UV +Face 6150 +UV Count: 3 + UV + UV + UV +Face 6151 +UV Count: 3 + UV + UV + UV +Face 6152 +UV Count: 3 + UV + UV + UV +Face 6153 +UV Count: 3 + UV + UV + UV +Face 6154 +UV Count: 3 + UV + UV + UV +Face 6155 +UV Count: 3 + UV + UV + UV +Face 6156 +UV Count: 3 + UV + UV + UV +Face 6157 +UV Count: 3 + UV + UV + UV +Face 6158 +UV Count: 3 + UV + UV + UV +Face 6159 +UV Count: 3 + UV + UV + UV +Face 6160 +UV Count: 3 + UV + UV + UV +Face 6161 +UV Count: 3 + UV + UV + UV +Face 6162 +UV Count: 3 + UV + UV + UV +Face 6163 +UV Count: 3 + UV + UV + UV +Face 6164 +UV Count: 3 + UV + UV + UV +Face 6165 +UV Count: 3 + UV + UV + UV +Face 6166 +UV Count: 3 + UV + UV + UV +Face 6167 +UV Count: 3 + UV + UV + UV +Face 6168 +UV Count: 3 + UV + UV + UV +Face 6169 +UV Count: 3 + UV + UV + UV +Face 6170 +UV Count: 3 + UV + UV + UV +Face 6171 +UV Count: 3 + UV + UV + UV +Face 6172 +UV Count: 3 + UV + UV + UV +Face 6173 +UV Count: 3 + UV + UV + UV +Face 6174 +UV Count: 3 + UV + UV + UV +Face 6175 +UV Count: 3 + UV + UV + UV +Face 6176 +UV Count: 3 + UV + UV + UV +Face 6177 +UV Count: 3 + UV + UV + UV +Face 6178 +UV Count: 3 + UV + UV + UV +Face 6179 +UV Count: 3 + UV + UV + UV +Face 6180 +UV Count: 3 + UV + UV + UV +Face 6181 +UV Count: 3 + UV + UV + UV +Face 6182 +UV Count: 3 + UV + UV + UV +Face 6183 +UV Count: 3 + UV + UV + UV +Face 6184 +UV Count: 3 + UV + UV + UV +Face 6185 +UV Count: 3 + UV + UV + UV +Face 6186 +UV Count: 3 + UV + UV + UV +Face 6187 +UV Count: 3 + UV + UV + UV +Face 6188 +UV Count: 3 + UV + UV + UV +Face 6189 +UV Count: 3 + UV + UV + UV +Face 6190 +UV Count: 3 + UV + UV + UV +Face 6191 +UV Count: 3 + UV + UV + UV +Face 6192 +UV Count: 3 + UV + UV + UV +Face 6193 +UV Count: 3 + UV + UV + UV +Face 6194 +UV Count: 3 + UV + UV + UV +Face 6195 +UV Count: 3 + UV + UV + UV +Face 6196 +UV Count: 3 + UV + UV + UV +Face 6197 +UV Count: 3 + UV + UV + UV +Face 6198 +UV Count: 3 + UV + UV + UV +Face 6199 +UV Count: 3 + UV + UV + UV +Face 6200 +UV Count: 3 + UV + UV + UV +Face 6201 +UV Count: 3 + UV + UV + UV +Face 6202 +UV Count: 3 + UV + UV + UV +Face 6203 +UV Count: 3 + UV + UV + UV +Face 6204 +UV Count: 3 + UV + UV + UV +Face 6205 +UV Count: 3 + UV + UV + UV +Face 6206 +UV Count: 3 + UV + UV + UV +Face 6207 +UV Count: 3 + UV + UV + UV +Face 6208 +UV Count: 3 + UV + UV + UV +Face 6209 +UV Count: 3 + UV + UV + UV +Face 6210 +UV Count: 3 + UV + UV + UV +Face 6211 +UV Count: 3 + UV + UV + UV +Face 6212 +UV Count: 3 + UV + UV + UV +Face 6213 +UV Count: 3 + UV + UV + UV +Face 6214 +UV Count: 3 + UV + UV + UV +Face 6215 +UV Count: 3 + UV + UV + UV +Face 6216 +UV Count: 3 + UV + UV + UV +Face 6217 +UV Count: 3 + UV + UV + UV +Face 6218 +UV Count: 3 + UV + UV + UV +Face 6219 +UV Count: 3 + UV + UV + UV +Face 6220 +UV Count: 3 + UV + UV + UV +Face 6221 +UV Count: 3 + UV + UV + UV +Face 6222 +UV Count: 3 + UV + UV + UV +Face 6223 +UV Count: 3 + UV + UV + UV +Face 6224 +UV Count: 3 + UV + UV + UV +Face 6225 +UV Count: 3 + UV + UV + UV +Face 6226 +UV Count: 3 + UV + UV + UV +Face 6227 +UV Count: 3 + UV + UV + UV +Face 6228 +UV Count: 3 + UV + UV + UV +Face 6229 +UV Count: 3 + UV + UV + UV +Face 6230 +UV Count: 3 + UV + UV + UV +Face 6231 +UV Count: 3 + UV + UV + UV +Face 6232 +UV Count: 3 + UV + UV + UV +Face 6233 +UV Count: 3 + UV + UV + UV +Face 6234 +UV Count: 3 + UV + UV + UV +Face 6235 +UV Count: 3 + UV + UV + UV +Face 6236 +UV Count: 3 + UV + UV + UV +Face 6237 +UV Count: 3 + UV + UV + UV +Face 6238 +UV Count: 3 + UV + UV + UV +Face 6239 +UV Count: 3 + UV + UV + UV +Face 6240 +UV Count: 3 + UV + UV + UV +Face 6241 +UV Count: 3 + UV + UV + UV +Face 6242 +UV Count: 3 + UV + UV + UV +Face 6243 +UV Count: 3 + UV + UV + UV +Face 6244 +UV Count: 3 + UV + UV + UV +Face 6245 +UV Count: 3 + UV + UV + UV +Face 6246 +UV Count: 3 + UV + UV + UV +Face 6247 +UV Count: 3 + UV + UV + UV +Face 6248 +UV Count: 3 + UV + UV + UV +Face 6249 +UV Count: 3 + UV + UV + UV +Face 6250 +UV Count: 3 + UV + UV + UV +Face 6251 +UV Count: 3 + UV + UV + UV +Face 6252 +UV Count: 3 + UV + UV + UV +Face 6253 +UV Count: 3 + UV + UV + UV +Face 6254 +UV Count: 3 + UV + UV + UV +Face 6255 +UV Count: 3 + UV + UV + UV +Face 6256 +UV Count: 3 + UV + UV + UV +Face 6257 +UV Count: 3 + UV + UV + UV +Face 6258 +UV Count: 3 + UV + UV + UV +Face 6259 +UV Count: 3 + UV + UV + UV +Face 6260 +UV Count: 3 + UV + UV + UV +Face 6261 +UV Count: 3 + UV + UV + UV +Face 6262 +UV Count: 3 + UV + UV + UV +Face 6263 +UV Count: 3 + UV + UV + UV +Face 6264 +UV Count: 3 + UV + UV + UV +Face 6265 +UV Count: 3 + UV + UV + UV +Face 6266 +UV Count: 3 + UV + UV + UV +Face 6267 +UV Count: 3 + UV + UV + UV +Face 6268 +UV Count: 3 + UV + UV + UV +Face 6269 +UV Count: 3 + UV + UV + UV +Face 6270 +UV Count: 3 + UV + UV + UV +Face 6271 +UV Count: 3 + UV + UV + UV +Face 6272 +UV Count: 3 + UV + UV + UV +Face 6273 +UV Count: 3 + UV + UV + UV +Face 6274 +UV Count: 3 + UV + UV + UV +Face 6275 +UV Count: 3 + UV + UV + UV +Face 6276 +UV Count: 3 + UV + UV + UV +Face 6277 +UV Count: 3 + UV + UV + UV +Face 6278 +UV Count: 3 + UV + UV + UV +Face 6279 +UV Count: 3 + UV + UV + UV +Face 6280 +UV Count: 3 + UV + UV + UV +Face 6281 +UV Count: 3 + UV + UV + UV +Face 6282 +UV Count: 3 + UV + UV + UV +Face 6283 +UV Count: 3 + UV + UV + UV +Face 6284 +UV Count: 3 + UV + UV + UV +Face 6285 +UV Count: 3 + UV + UV + UV +Face 6286 +UV Count: 3 + UV + UV + UV +Face 6287 +UV Count: 3 + UV + UV + UV +Face 6288 +UV Count: 3 + UV + UV + UV +Face 6289 +UV Count: 3 + UV + UV + UV +Face 6290 +UV Count: 3 + UV + UV + UV +Face 6291 +UV Count: 3 + UV + UV + UV +Face 6292 +UV Count: 3 + UV + UV + UV +Face 6293 +UV Count: 3 + UV + UV + UV +Face 6294 +UV Count: 3 + UV + UV + UV +Face 6295 +UV Count: 3 + UV + UV + UV +Face 6296 +UV Count: 3 + UV + UV + UV +Face 6297 +UV Count: 3 + UV + UV + UV +Face 6298 +UV Count: 3 + UV + UV + UV +Face 6299 +UV Count: 3 + UV + UV + UV +Face 6300 +UV Count: 3 + UV + UV + UV +Face 6301 +UV Count: 3 + UV + UV + UV +Face 6302 +UV Count: 3 + UV + UV + UV +Face 6303 +UV Count: 3 + UV + UV + UV +Face 6304 +UV Count: 3 + UV + UV + UV +Face 6305 +UV Count: 3 + UV + UV + UV +Face 6306 +UV Count: 3 + UV + UV + UV +Face 6307 +UV Count: 3 + UV + UV + UV +Face 6308 +UV Count: 3 + UV + UV + UV +Face 6309 +UV Count: 3 + UV + UV + UV +Face 6310 +UV Count: 3 + UV + UV + UV +Face 6311 +UV Count: 3 + UV + UV + UV +Face 6312 +UV Count: 3 + UV + UV + UV +Face 6313 +UV Count: 3 + UV + UV + UV +Face 6314 +UV Count: 3 + UV + UV + UV +Face 6315 +UV Count: 3 + UV + UV + UV +Face 6316 +UV Count: 3 + UV + UV + UV +Face 6317 +UV Count: 3 + UV + UV + UV +Face 6318 +UV Count: 3 + UV + UV + UV +Face 6319 +UV Count: 3 + UV + UV + UV +Face 6320 +UV Count: 3 + UV + UV + UV +Face 6321 +UV Count: 3 + UV + UV + UV +Face 6322 +UV Count: 3 + UV + UV + UV +Face 6323 +UV Count: 3 + UV + UV + UV +Face 6324 +UV Count: 3 + UV + UV + UV +Face 6325 +UV Count: 3 + UV + UV + UV +Face 6326 +UV Count: 3 + UV + UV + UV +Face 6327 +UV Count: 3 + UV + UV + UV +Face 6328 +UV Count: 3 + UV + UV + UV +Face 6329 +UV Count: 3 + UV + UV + UV +Face 6330 +UV Count: 3 + UV + UV + UV +Face 6331 +UV Count: 3 + UV + UV + UV +Face 6332 +UV Count: 3 + UV + UV + UV +Face 6333 +UV Count: 3 + UV + UV + UV +Face 6334 +UV Count: 3 + UV + UV + UV +Face 6335 +UV Count: 3 + UV + UV + UV +Face 6336 +UV Count: 3 + UV + UV + UV +Face 6337 +UV Count: 3 + UV + UV + UV +Face 6338 +UV Count: 3 + UV + UV + UV +Face 6339 +UV Count: 3 + UV + UV + UV +Face 6340 +UV Count: 3 + UV + UV + UV +Face 6341 +UV Count: 3 + UV + UV + UV +Face 6342 +UV Count: 3 + UV + UV + UV +Face 6343 +UV Count: 3 + UV + UV + UV +Face 6344 +UV Count: 3 + UV + UV + UV +Face 6345 +UV Count: 3 + UV + UV + UV +Face 6346 +UV Count: 3 + UV + UV + UV +Face 6347 +UV Count: 3 + UV + UV + UV +Face 6348 +UV Count: 3 + UV + UV + UV +Face 6349 +UV Count: 3 + UV + UV + UV +Face 6350 +UV Count: 3 + UV + UV + UV +Face 6351 +UV Count: 3 + UV + UV + UV +Face 6352 +UV Count: 3 + UV + UV + UV +Face 6353 +UV Count: 3 + UV + UV + UV +Face 6354 +UV Count: 3 + UV + UV + UV +Face 6355 +UV Count: 3 + UV + UV + UV +Face 6356 +UV Count: 3 + UV + UV + UV +Face 6357 +UV Count: 3 + UV + UV + UV +Face 6358 +UV Count: 3 + UV + UV + UV +Face 6359 +UV Count: 3 + UV + UV + UV +Face 6360 +UV Count: 3 + UV + UV + UV +Face 6361 +UV Count: 3 + UV + UV + UV +Face 6362 +UV Count: 3 + UV + UV + UV +Face 6363 +UV Count: 3 + UV + UV + UV +Face 6364 +UV Count: 3 + UV + UV + UV +Face 6365 +UV Count: 3 + UV + UV + UV +Face 6366 +UV Count: 3 + UV + UV + UV +Face 6367 +UV Count: 3 + UV + UV + UV +Face 6368 +UV Count: 3 + UV + UV + UV +Face 6369 +UV Count: 3 + UV + UV + UV +Face 6370 +UV Count: 3 + UV + UV + UV +Face 6371 +UV Count: 3 + UV + UV + UV +Face 6372 +UV Count: 3 + UV + UV + UV +Face 6373 +UV Count: 3 + UV + UV + UV +Face 6374 +UV Count: 3 + UV + UV + UV +Face 6375 +UV Count: 3 + UV + UV + UV +Face 6376 +UV Count: 3 + UV + UV + UV +Face 6377 +UV Count: 3 + UV + UV + UV +Face 6378 +UV Count: 3 + UV + UV + UV +Face 6379 +UV Count: 3 + UV + UV + UV +Face 6380 +UV Count: 3 + UV + UV + UV +Face 6381 +UV Count: 3 + UV + UV + UV +Face 6382 +UV Count: 3 + UV + UV + UV +Face 6383 +UV Count: 3 + UV + UV + UV +Face 6384 +UV Count: 3 + UV + UV + UV +Face 6385 +UV Count: 3 + UV + UV + UV +Face 6386 +UV Count: 3 + UV + UV + UV +Face 6387 +UV Count: 3 + UV + UV + UV +Face 6388 +UV Count: 3 + UV + UV + UV +Face 6389 +UV Count: 3 + UV + UV + UV +Face 6390 +UV Count: 3 + UV + UV + UV +Face 6391 +UV Count: 3 + UV + UV + UV +Face 6392 +UV Count: 3 + UV + UV + UV +Face 6393 +UV Count: 3 + UV + UV + UV +Face 6394 +UV Count: 3 + UV + UV + UV +Face 6395 +UV Count: 3 + UV + UV + UV +Face 6396 +UV Count: 3 + UV + UV + UV +Face 6397 +UV Count: 3 + UV + UV + UV +Face 6398 +UV Count: 3 + UV + UV + UV +Face 6399 +UV Count: 3 + UV + UV + UV +Face 6400 +UV Count: 3 + UV + UV + UV +Face 6401 +UV Count: 3 + UV + UV + UV +Face 6402 +UV Count: 3 + UV + UV + UV +Face 6403 +UV Count: 3 + UV + UV + UV +Face 6404 +UV Count: 3 + UV + UV + UV +Face 6405 +UV Count: 3 + UV + UV + UV +Face 6406 +UV Count: 3 + UV + UV + UV +Face 6407 +UV Count: 3 + UV + UV + UV +Face 6408 +UV Count: 3 + UV + UV + UV +Face 6409 +UV Count: 3 + UV + UV + UV +Face 6410 +UV Count: 3 + UV + UV + UV +Face 6411 +UV Count: 3 + UV + UV + UV +Face 6412 +UV Count: 3 + UV + UV + UV +Face 6413 +UV Count: 3 + UV + UV + UV +Face 6414 +UV Count: 3 + UV + UV + UV +Face 6415 +UV Count: 3 + UV + UV + UV +Face 6416 +UV Count: 3 + UV + UV + UV +Face 6417 +UV Count: 3 + UV + UV + UV +Face 6418 +UV Count: 3 + UV + UV + UV +Face 6419 +UV Count: 3 + UV + UV + UV +Face 6420 +UV Count: 3 + UV + UV + UV +Face 6421 +UV Count: 3 + UV + UV + UV +Face 6422 +UV Count: 3 + UV + UV + UV +Face 6423 +UV Count: 3 + UV + UV + UV +Face 6424 +UV Count: 3 + UV + UV + UV +Face 6425 +UV Count: 3 + UV + UV + UV +Face 6426 +UV Count: 3 + UV + UV + UV +Face 6427 +UV Count: 3 + UV + UV + UV +Face 6428 +UV Count: 3 + UV + UV + UV +Face 6429 +UV Count: 3 + UV + UV + UV +Face 6430 +UV Count: 3 + UV + UV + UV +Face 6431 +UV Count: 3 + UV + UV + UV +Face 6432 +UV Count: 3 + UV + UV + UV +Face 6433 +UV Count: 3 + UV + UV + UV +Face 6434 +UV Count: 3 + UV + UV + UV +Face 6435 +UV Count: 3 + UV + UV + UV +Face 6436 +UV Count: 3 + UV + UV + UV +Face 6437 +UV Count: 3 + UV + UV + UV +Face 6438 +UV Count: 3 + UV + UV + UV +Face 6439 +UV Count: 3 + UV + UV + UV +Face 6440 +UV Count: 3 + UV + UV + UV +Face 6441 +UV Count: 3 + UV + UV + UV +Face 6442 +UV Count: 3 + UV + UV + UV +Face 6443 +UV Count: 3 + UV + UV + UV +Face 6444 +UV Count: 3 + UV + UV + UV +Face 6445 +UV Count: 3 + UV + UV + UV +Face 6446 +UV Count: 3 + UV + UV + UV +Face 6447 +UV Count: 3 + UV + UV + UV +Face 6448 +UV Count: 3 + UV + UV + UV +Face 6449 +UV Count: 3 + UV + UV + UV +Face 6450 +UV Count: 3 + UV + UV + UV +Face 6451 +UV Count: 3 + UV + UV + UV +Face 6452 +UV Count: 3 + UV + UV + UV +Face 6453 +UV Count: 3 + UV + UV + UV +Face 6454 +UV Count: 3 + UV + UV + UV +Face 6455 +UV Count: 3 + UV + UV + UV +Face 6456 +UV Count: 3 + UV + UV + UV +Face 6457 +UV Count: 3 + UV + UV + UV +Face 6458 +UV Count: 3 + UV + UV + UV +Face 6459 +UV Count: 3 + UV + UV + UV +Face 6460 +UV Count: 3 + UV + UV + UV +Face 6461 +UV Count: 3 + UV + UV + UV +Face 6462 +UV Count: 3 + UV + UV + UV +Face 6463 +UV Count: 3 + UV + UV + UV +Face 6464 +UV Count: 3 + UV + UV + UV +Face 6465 +UV Count: 3 + UV + UV + UV +Face 6466 +UV Count: 3 + UV + UV + UV +Face 6467 +UV Count: 3 + UV + UV + UV +Face 6468 +UV Count: 3 + UV + UV + UV +Face 6469 +UV Count: 3 + UV + UV + UV +Face 6470 +UV Count: 3 + UV + UV + UV +Face 6471 +UV Count: 3 + UV + UV + UV +Face 6472 +UV Count: 3 + UV + UV + UV +Face 6473 +UV Count: 3 + UV + UV + UV +Face 6474 +UV Count: 3 + UV + UV + UV +Face 6475 +UV Count: 3 + UV + UV + UV +Face 6476 +UV Count: 3 + UV + UV + UV +Face 6477 +UV Count: 3 + UV + UV + UV +Face 6478 +UV Count: 3 + UV + UV + UV +Face 6479 +UV Count: 3 + UV + UV + UV +Face 6480 +UV Count: 3 + UV + UV + UV +Face 6481 +UV Count: 3 + UV + UV + UV +Face 6482 +UV Count: 3 + UV + UV + UV +Face 6483 +UV Count: 3 + UV + UV + UV +Face 6484 +UV Count: 3 + UV + UV + UV +Face 6485 +UV Count: 3 + UV + UV + UV +Face 6486 +UV Count: 3 + UV + UV + UV +Face 6487 +UV Count: 3 + UV + UV + UV +Face 6488 +UV Count: 3 + UV + UV + UV +Face 6489 +UV Count: 3 + UV + UV + UV +Face 6490 +UV Count: 3 + UV + UV + UV +Face 6491 +UV Count: 3 + UV + UV + UV +Face 6492 +UV Count: 3 + UV + UV + UV +Face 6493 +UV Count: 3 + UV + UV + UV +Face 6494 +UV Count: 3 + UV + UV + UV +Face 6495 +UV Count: 3 + UV + UV + UV +Face 6496 +UV Count: 3 + UV + UV + UV +Face 6497 +UV Count: 3 + UV + UV + UV +Face 6498 +UV Count: 3 + UV + UV + UV +Face 6499 +UV Count: 3 + UV + UV + UV +Face 6500 +UV Count: 3 + UV + UV + UV +Face 6501 +UV Count: 3 + UV + UV + UV +Face 6502 +UV Count: 3 + UV + UV + UV +Face 6503 +UV Count: 3 + UV + UV + UV +Face 6504 +UV Count: 3 + UV + UV + UV +Face 6505 +UV Count: 3 + UV + UV + UV +Face 6506 +UV Count: 3 + UV + UV + UV +Face 6507 +UV Count: 3 + UV + UV + UV +Face 6508 +UV Count: 3 + UV + UV + UV +Face 6509 +UV Count: 3 + UV + UV + UV +Face 6510 +UV Count: 3 + UV + UV + UV +Face 6511 +UV Count: 3 + UV + UV + UV +Face 6512 +UV Count: 3 + UV + UV + UV +Face 6513 +UV Count: 3 + UV + UV + UV +Face 6514 +UV Count: 3 + UV + UV + UV +Face 6515 +UV Count: 3 + UV + UV + UV +Face 6516 +UV Count: 3 + UV + UV + UV +Face 6517 +UV Count: 3 + UV + UV + UV +Face 6518 +UV Count: 3 + UV + UV + UV +Face 6519 +UV Count: 3 + UV + UV + UV +Face 6520 +UV Count: 3 + UV + UV + UV +Face 6521 +UV Count: 3 + UV + UV + UV +Face 6522 +UV Count: 3 + UV + UV + UV +Face 6523 +UV Count: 3 + UV + UV + UV +Face 6524 +UV Count: 3 + UV + UV + UV +Face 6525 +UV Count: 3 + UV + UV + UV +Face 6526 +UV Count: 3 + UV + UV + UV +Face 6527 +UV Count: 3 + UV + UV + UV +Face 6528 +UV Count: 3 + UV + UV + UV +Face 6529 +UV Count: 3 + UV + UV + UV +Face 6530 +UV Count: 3 + UV + UV + UV +Face 6531 +UV Count: 3 + UV + UV + UV +Face 6532 +UV Count: 3 + UV + UV + UV +Face 6533 +UV Count: 3 + UV + UV + UV +Face 6534 +UV Count: 3 + UV + UV + UV +Face 6535 +UV Count: 3 + UV + UV + UV +Face 6536 +UV Count: 3 + UV + UV + UV +Face 6537 +UV Count: 3 + UV + UV + UV +Face 6538 +UV Count: 3 + UV + UV + UV +Face 6539 +UV Count: 3 + UV + UV + UV +Face 6540 +UV Count: 3 + UV + UV + UV +Face 6541 +UV Count: 3 + UV + UV + UV +Face 6542 +UV Count: 3 + UV + UV + UV +Face 6543 +UV Count: 3 + UV + UV + UV +Face 6544 +UV Count: 3 + UV + UV + UV +Face 6545 +UV Count: 3 + UV + UV + UV +Face 6546 +UV Count: 3 + UV + UV + UV +Face 6547 +UV Count: 3 + UV + UV + UV +Face 6548 +UV Count: 3 + UV + UV + UV +Face 6549 +UV Count: 3 + UV + UV + UV +Face 6550 +UV Count: 3 + UV + UV + UV +Face 6551 +UV Count: 3 + UV + UV + UV +Face 6552 +UV Count: 3 + UV + UV + UV +Face 6553 +UV Count: 3 + UV + UV + UV +Face 6554 +UV Count: 3 + UV + UV + UV +Face 6555 +UV Count: 3 + UV + UV + UV +Face 6556 +UV Count: 3 + UV + UV + UV +Face 6557 +UV Count: 3 + UV + UV + UV +Face 6558 +UV Count: 3 + UV + UV + UV +Face 6559 +UV Count: 3 + UV + UV + UV +Face 6560 +UV Count: 3 + UV + UV + UV +Face 6561 +UV Count: 3 + UV + UV + UV +Face 6562 +UV Count: 3 + UV + UV + UV +Face 6563 +UV Count: 3 + UV + UV + UV +Face 6564 +UV Count: 3 + UV + UV + UV +Face 6565 +UV Count: 3 + UV + UV + UV +Face 6566 +UV Count: 3 + UV + UV + UV +Face 6567 +UV Count: 3 + UV + UV + UV +Face 6568 +UV Count: 3 + UV + UV + UV +Face 6569 +UV Count: 3 + UV + UV + UV +Face 6570 +UV Count: 3 + UV + UV + UV +Face 6571 +UV Count: 3 + UV + UV + UV +Face 6572 +UV Count: 3 + UV + UV + UV +Face 6573 +UV Count: 3 + UV + UV + UV +Face 6574 +UV Count: 3 + UV + UV + UV +Face 6575 +UV Count: 3 + UV + UV + UV +Face 6576 +UV Count: 3 + UV + UV + UV +Face 6577 +UV Count: 3 + UV + UV + UV +Face 6578 +UV Count: 3 + UV + UV + UV +Face 6579 +UV Count: 3 + UV + UV + UV +Face 6580 +UV Count: 3 + UV + UV + UV +Face 6581 +UV Count: 3 + UV + UV + UV +Face 6582 +UV Count: 3 + UV + UV + UV +Face 6583 +UV Count: 3 + UV + UV + UV +Face 6584 +UV Count: 3 + UV + UV + UV +Face 6585 +UV Count: 3 + UV + UV + UV +Face 6586 +UV Count: 3 + UV + UV + UV +Face 6587 +UV Count: 3 + UV + UV + UV +Face 6588 +UV Count: 3 + UV + UV + UV +Face 6589 +UV Count: 3 + UV + UV + UV +Face 6590 +UV Count: 3 + UV + UV + UV +Face 6591 +UV Count: 3 + UV + UV + UV +Face 6592 +UV Count: 3 + UV + UV + UV +Face 6593 +UV Count: 3 + UV + UV + UV +Face 6594 +UV Count: 3 + UV + UV + UV +Face 6595 +UV Count: 3 + UV + UV + UV +Face 6596 +UV Count: 3 + UV + UV + UV +Face 6597 +UV Count: 3 + UV + UV + UV +Face 6598 +UV Count: 3 + UV + UV + UV +Face 6599 +UV Count: 3 + UV + UV + UV +Face 6600 +UV Count: 3 + UV + UV + UV +Face 6601 +UV Count: 3 + UV + UV + UV +Face 6602 +UV Count: 3 + UV + UV + UV +Face 6603 +UV Count: 3 + UV + UV + UV +Face 6604 +UV Count: 3 + UV + UV + UV +Face 6605 +UV Count: 3 + UV + UV + UV +Face 6606 +UV Count: 3 + UV + UV + UV +Face 6607 +UV Count: 3 + UV + UV + UV +Face 6608 +UV Count: 3 + UV + UV + UV +Face 6609 +UV Count: 3 + UV + UV + UV +Face 6610 +UV Count: 3 + UV + UV + UV +Face 6611 +UV Count: 3 + UV + UV + UV +Face 6612 +UV Count: 3 + UV + UV + UV +Face 6613 +UV Count: 3 + UV + UV + UV +Face 6614 +UV Count: 3 + UV + UV + UV +Face 6615 +UV Count: 3 + UV + UV + UV +Face 6616 +UV Count: 3 + UV + UV + UV +Face 6617 +UV Count: 3 + UV + UV + UV +Face 6618 +UV Count: 3 + UV + UV + UV +Face 6619 +UV Count: 3 + UV + UV + UV +Face 6620 +UV Count: 3 + UV + UV + UV +Face 6621 +UV Count: 3 + UV + UV + UV +Face 6622 +UV Count: 3 + UV + UV + UV +Face 6623 +UV Count: 3 + UV + UV + UV +Face 6624 +UV Count: 3 + UV + UV + UV +Face 6625 +UV Count: 3 + UV + UV + UV +Face 6626 +UV Count: 3 + UV + UV + UV +Face 6627 +UV Count: 3 + UV + UV + UV +Face 6628 +UV Count: 3 + UV + UV + UV +Face 6629 +UV Count: 3 + UV + UV + UV +Face 6630 +UV Count: 3 + UV + UV + UV +Face 6631 +UV Count: 3 + UV + UV + UV +Face 6632 +UV Count: 3 + UV + UV + UV +Face 6633 +UV Count: 3 + UV + UV + UV +Face 6634 +UV Count: 3 + UV + UV + UV +Face 6635 +UV Count: 3 + UV + UV + UV +Face 6636 +UV Count: 3 + UV + UV + UV +Face 6637 +UV Count: 3 + UV + UV + UV +Face 6638 +UV Count: 3 + UV + UV + UV +Face 6639 +UV Count: 3 + UV + UV + UV +Face 6640 +UV Count: 3 + UV + UV + UV +Face 6641 +UV Count: 3 + UV + UV + UV +Face 6642 +UV Count: 3 + UV + UV + UV +Face 6643 +UV Count: 3 + UV + UV + UV +Face 6644 +UV Count: 3 + UV + UV + UV +Face 6645 +UV Count: 3 + UV + UV + UV +Face 6646 +UV Count: 3 + UV + UV + UV +Face 6647 +UV Count: 3 + UV + UV + UV +Face 6648 +UV Count: 3 + UV + UV + UV +Face 6649 +UV Count: 3 + UV + UV + UV +Face 6650 +UV Count: 3 + UV + UV + UV +Face 6651 +UV Count: 3 + UV + UV + UV +Face 6652 +UV Count: 3 + UV + UV + UV +Face 6653 +UV Count: 3 + UV + UV + UV +Face 6654 +UV Count: 3 + UV + UV + UV +Face 6655 +UV Count: 3 + UV + UV + UV +Face 6656 +UV Count: 3 + UV + UV + UV +Face 6657 +UV Count: 3 + UV + UV + UV +Face 6658 +UV Count: 3 + UV + UV + UV +Face 6659 +UV Count: 3 + UV + UV + UV +Face 6660 +UV Count: 3 + UV + UV + UV +Face 6661 +UV Count: 3 + UV + UV + UV +Face 6662 +UV Count: 3 + UV + UV + UV +Face 6663 +UV Count: 3 + UV + UV + UV +Face 6664 +UV Count: 3 + UV + UV + UV +Face 6665 +UV Count: 3 + UV + UV + UV +Face 6666 +UV Count: 3 + UV + UV + UV +Face 6667 +UV Count: 3 + UV + UV + UV +Face 6668 +UV Count: 3 + UV + UV + UV +Face 6669 +UV Count: 3 + UV + UV + UV +Face 6670 +UV Count: 3 + UV + UV + UV +Face 6671 +UV Count: 3 + UV + UV + UV +Face 6672 +UV Count: 3 + UV + UV + UV +Face 6673 +UV Count: 3 + UV + UV + UV +Face 6674 +UV Count: 3 + UV + UV + UV +Face 6675 +UV Count: 3 + UV + UV + UV +Face 6676 +UV Count: 3 + UV + UV + UV +Face 6677 +UV Count: 3 + UV + UV + UV +Face 6678 +UV Count: 3 + UV + UV + UV +Face 6679 +UV Count: 3 + UV + UV + UV +Face 6680 +UV Count: 3 + UV + UV + UV +Face 6681 +UV Count: 3 + UV + UV + UV +Face 6682 +UV Count: 3 + UV + UV + UV +Face 6683 +UV Count: 3 + UV + UV + UV +Face 6684 +UV Count: 3 + UV + UV + UV +Face 6685 +UV Count: 3 + UV + UV + UV +Face 6686 +UV Count: 3 + UV + UV + UV +Face 6687 +UV Count: 3 + UV + UV + UV +Face 6688 +UV Count: 3 + UV + UV + UV +Face 6689 +UV Count: 3 + UV + UV + UV +Face 6690 +UV Count: 3 + UV + UV + UV +Face 6691 +UV Count: 3 + UV + UV + UV +Face 6692 +UV Count: 3 + UV + UV + UV +Face 6693 +UV Count: 3 + UV + UV + UV +Face 6694 +UV Count: 3 + UV + UV + UV +Face 6695 +UV Count: 3 + UV + UV + UV +Face 6696 +UV Count: 3 + UV + UV + UV +Face 6697 +UV Count: 3 + UV + UV + UV +Face 6698 +UV Count: 3 + UV + UV + UV +Face 6699 +UV Count: 3 + UV + UV + UV +Face 6700 +UV Count: 3 + UV + UV + UV +Face 6701 +UV Count: 3 + UV + UV + UV +Face 6702 +UV Count: 3 + UV + UV + UV +Face 6703 +UV Count: 3 + UV + UV + UV +Face 6704 +UV Count: 3 + UV + UV + UV +Face 6705 +UV Count: 3 + UV + UV + UV +Face 6706 +UV Count: 3 + UV + UV + UV +Face 6707 +UV Count: 3 + UV + UV + UV +Face 6708 +UV Count: 3 + UV + UV + UV +Face 6709 +UV Count: 3 + UV + UV + UV +Face 6710 +UV Count: 3 + UV + UV + UV +Face 6711 +UV Count: 3 + UV + UV + UV +Face 6712 +UV Count: 3 + UV + UV + UV +Face 6713 +UV Count: 3 + UV + UV + UV +Face 6714 +UV Count: 3 + UV + UV + UV +Face 6715 +UV Count: 3 + UV + UV + UV +Face 6716 +UV Count: 3 + UV + UV + UV +Face 6717 +UV Count: 3 + UV + UV + UV +Face 6718 +UV Count: 3 + UV + UV + UV +Face 6719 +UV Count: 3 + UV + UV + UV +Face 6720 +UV Count: 3 + UV + UV + UV +Face 6721 +UV Count: 3 + UV + UV + UV +Face 6722 +UV Count: 3 + UV + UV + UV +Face 6723 +UV Count: 3 + UV + UV + UV +Face 6724 +UV Count: 3 + UV + UV + UV +Face 6725 +UV Count: 3 + UV + UV + UV +Face 6726 +UV Count: 3 + UV + UV + UV +Face 6727 +UV Count: 3 + UV + UV + UV +Face 6728 +UV Count: 3 + UV + UV + UV +Face 6729 +UV Count: 3 + UV + UV + UV +Face 6730 +UV Count: 3 + UV + UV + UV +Face 6731 +UV Count: 3 + UV + UV + UV +Face 6732 +UV Count: 3 + UV + UV + UV +Face 6733 +UV Count: 3 + UV + UV + UV +Face 6734 +UV Count: 3 + UV + UV + UV +Face 6735 +UV Count: 3 + UV + UV + UV +Face 6736 +UV Count: 3 + UV + UV + UV +Face 6737 +UV Count: 3 + UV + UV + UV +Face 6738 +UV Count: 3 + UV + UV + UV +Face 6739 +UV Count: 3 + UV + UV + UV +Face 6740 +UV Count: 3 + UV + UV + UV +Face 6741 +UV Count: 3 + UV + UV + UV +Face 6742 +UV Count: 3 + UV + UV + UV +Face 6743 +UV Count: 3 + UV + UV + UV +Face 6744 +UV Count: 3 + UV + UV + UV +Face 6745 +UV Count: 3 + UV + UV + UV +Face 6746 +UV Count: 3 + UV + UV + UV +Face 6747 +UV Count: 3 + UV + UV + UV +Face 6748 +UV Count: 3 + UV + UV + UV +Face 6749 +UV Count: 3 + UV + UV + UV +Face 6750 +UV Count: 3 + UV + UV + UV +Face 6751 +UV Count: 3 + UV + UV + UV +Face 6752 +UV Count: 3 + UV + UV + UV +Face 6753 +UV Count: 3 + UV + UV + UV +Face 6754 +UV Count: 3 + UV + UV + UV +Face 6755 +UV Count: 3 + UV + UV + UV +Face 6756 +UV Count: 3 + UV + UV + UV +Face 6757 +UV Count: 3 + UV + UV + UV +Face 6758 +UV Count: 3 + UV + UV + UV +Face 6759 +UV Count: 3 + UV + UV + UV +Face 6760 +UV Count: 3 + UV + UV + UV +Face 6761 +UV Count: 3 + UV + UV + UV +Face 6762 +UV Count: 3 + UV + UV + UV +Face 6763 +UV Count: 3 + UV + UV + UV +Face 6764 +UV Count: 3 + UV + UV + UV +Face 6765 +UV Count: 3 + UV + UV + UV +Face 6766 +UV Count: 3 + UV + UV + UV +Face 6767 +UV Count: 3 + UV + UV + UV +Face 6768 +UV Count: 3 + UV + UV + UV +Face 6769 +UV Count: 3 + UV + UV + UV +Face 6770 +UV Count: 3 + UV + UV + UV +Face 6771 +UV Count: 3 + UV + UV + UV +Face 6772 +UV Count: 3 + UV + UV + UV +Face 6773 +UV Count: 3 + UV + UV + UV +Face 6774 +UV Count: 3 + UV + UV + UV +Face 6775 +UV Count: 3 + UV + UV + UV +Face 6776 +UV Count: 3 + UV + UV + UV +Face 6777 +UV Count: 3 + UV + UV + UV +Face 6778 +UV Count: 3 + UV + UV + UV +Face 6779 +UV Count: 3 + UV + UV + UV +Face 6780 +UV Count: 3 + UV + UV + UV +Face 6781 +UV Count: 3 + UV + UV + UV +Face 6782 +UV Count: 3 + UV + UV + UV +Face 6783 +UV Count: 3 + UV + UV + UV +Face 6784 +UV Count: 3 + UV + UV + UV +Face 6785 +UV Count: 3 + UV + UV + UV +Face 6786 +UV Count: 3 + UV + UV + UV +Face 6787 +UV Count: 3 + UV + UV + UV +Face 6788 +UV Count: 3 + UV + UV + UV +Face 6789 +UV Count: 3 + UV + UV + UV +Face 6790 +UV Count: 3 + UV + UV + UV +Face 6791 +UV Count: 3 + UV + UV + UV +Face 6792 +UV Count: 3 + UV + UV + UV +Face 6793 +UV Count: 3 + UV + UV + UV +Face 6794 +UV Count: 3 + UV + UV + UV +Face 6795 +UV Count: 3 + UV + UV + UV +Face 6796 +UV Count: 3 + UV + UV + UV +Face 6797 +UV Count: 3 + UV + UV + UV +Face 6798 +UV Count: 3 + UV + UV + UV +Face 6799 +UV Count: 3 + UV + UV + UV +Face 6800 +UV Count: 3 + UV + UV + UV +Face 6801 +UV Count: 3 + UV + UV + UV +Face 6802 +UV Count: 3 + UV + UV + UV +Face 6803 +UV Count: 3 + UV + UV + UV +Face 6804 +UV Count: 3 + UV + UV + UV +Face 6805 +UV Count: 3 + UV + UV + UV +Face 6806 +UV Count: 3 + UV + UV + UV +Face 6807 +UV Count: 3 + UV + UV + UV +Face 6808 +UV Count: 3 + UV + UV + UV +Face 6809 +UV Count: 3 + UV + UV + UV +Face 6810 +UV Count: 3 + UV + UV + UV +Face 6811 +UV Count: 3 + UV + UV + UV +Face 6812 +UV Count: 3 + UV + UV + UV +Face 6813 +UV Count: 3 + UV + UV + UV +Face 6814 +UV Count: 3 + UV + UV + UV +Face 6815 +UV Count: 3 + UV + UV + UV +Face 6816 +UV Count: 3 + UV + UV + UV +Face 6817 +UV Count: 3 + UV + UV + UV +Face 6818 +UV Count: 3 + UV + UV + UV +Face 6819 +UV Count: 3 + UV + UV + UV +Face 6820 +UV Count: 3 + UV + UV + UV +Face 6821 +UV Count: 3 + UV + UV + UV +Face 6822 +UV Count: 3 + UV + UV + UV +Face 6823 +UV Count: 3 + UV + UV + UV +Face 6824 +UV Count: 3 + UV + UV + UV +Face 6825 +UV Count: 3 + UV + UV + UV +Face 6826 +UV Count: 3 + UV + UV + UV +Face 6827 +UV Count: 3 + UV + UV + UV +Face 6828 +UV Count: 3 + UV + UV + UV +Face 6829 +UV Count: 3 + UV + UV + UV +Face 6830 +UV Count: 3 + UV + UV + UV +Face 6831 +UV Count: 3 + UV + UV + UV +Face 6832 +UV Count: 3 + UV + UV + UV +Face 6833 +UV Count: 3 + UV + UV + UV +Face 6834 +UV Count: 3 + UV + UV + UV +Face 6835 +UV Count: 3 + UV + UV + UV +Face 6836 +UV Count: 3 + UV + UV + UV +Face 6837 +UV Count: 3 + UV + UV + UV +Face 6838 +UV Count: 3 + UV + UV + UV +Face 6839 +UV Count: 3 + UV + UV + UV +Face 6840 +UV Count: 3 + UV + UV + UV +Face 6841 +UV Count: 3 + UV + UV + UV +Face 6842 +UV Count: 3 + UV + UV + UV +Face 6843 +UV Count: 3 + UV + UV + UV +Face 6844 +UV Count: 3 + UV + UV + UV +Face 6845 +UV Count: 3 + UV + UV + UV +Face 6846 +UV Count: 3 + UV + UV + UV +Face 6847 +UV Count: 3 + UV + UV + UV +Face 6848 +UV Count: 3 + UV + UV + UV +Face 6849 +UV Count: 3 + UV + UV + UV +Face 6850 +UV Count: 3 + UV + UV + UV +Face 6851 +UV Count: 3 + UV + UV + UV +Face 6852 +UV Count: 3 + UV + UV + UV +Face 6853 +UV Count: 3 + UV + UV + UV +Face 6854 +UV Count: 3 + UV + UV + UV +Face 6855 +UV Count: 3 + UV + UV + UV +Face 6856 +UV Count: 3 + UV + UV + UV +Face 6857 +UV Count: 3 + UV + UV + UV +Face 6858 +UV Count: 3 + UV + UV + UV +Face 6859 +UV Count: 3 + UV + UV + UV +Face 6860 +UV Count: 3 + UV + UV + UV +Face 6861 +UV Count: 3 + UV + UV + UV +Face 6862 +UV Count: 3 + UV + UV + UV +Face 6863 +UV Count: 3 + UV + UV + UV +Face 6864 +UV Count: 3 + UV + UV + UV +Face 6865 +UV Count: 3 + UV + UV + UV +Face 6866 +UV Count: 3 + UV + UV + UV +Face 6867 +UV Count: 3 + UV + UV + UV +Face 6868 +UV Count: 3 + UV + UV + UV +Face 6869 +UV Count: 3 + UV + UV + UV +Face 6870 +UV Count: 3 + UV + UV + UV +Face 6871 +UV Count: 3 + UV + UV + UV +Face 6872 +UV Count: 3 + UV + UV + UV +Face 6873 +UV Count: 3 + UV + UV + UV +Face 6874 +UV Count: 3 + UV + UV + UV +Face 6875 +UV Count: 3 + UV + UV + UV +Face 6876 +UV Count: 3 + UV + UV + UV +Face 6877 +UV Count: 3 + UV + UV + UV +Face 6878 +UV Count: 3 + UV + UV + UV +Face 6879 +UV Count: 3 + UV + UV + UV +Face 6880 +UV Count: 3 + UV + UV + UV +Face 6881 +UV Count: 3 + UV + UV + UV +Face 6882 +UV Count: 3 + UV + UV + UV +Face 6883 +UV Count: 3 + UV + UV + UV +Face 6884 +UV Count: 3 + UV + UV + UV +Face 6885 +UV Count: 3 + UV + UV + UV +Face 6886 +UV Count: 3 + UV + UV + UV +Face 6887 +UV Count: 3 + UV + UV + UV +Face 6888 +UV Count: 3 + UV + UV + UV +Face 6889 +UV Count: 3 + UV + UV + UV +Face 6890 +UV Count: 3 + UV + UV + UV +Face 6891 +UV Count: 3 + UV + UV + UV +Face 6892 +UV Count: 3 + UV + UV + UV +Face 6893 +UV Count: 3 + UV + UV + UV +Face 6894 +UV Count: 3 + UV + UV + UV +Face 6895 +UV Count: 3 + UV + UV + UV +Face 6896 +UV Count: 3 + UV + UV + UV +Face 6897 +UV Count: 3 + UV + UV + UV +Face 6898 +UV Count: 3 + UV + UV + UV +Face 6899 +UV Count: 3 + UV + UV + UV +Face 6900 +UV Count: 3 + UV + UV + UV +Face 6901 +UV Count: 3 + UV + UV + UV +Face 6902 +UV Count: 3 + UV + UV + UV +Face 6903 +UV Count: 3 + UV + UV + UV +Face 6904 +UV Count: 3 + UV + UV + UV +Face 6905 +UV Count: 3 + UV + UV + UV +Face 6906 +UV Count: 3 + UV + UV + UV +Face 6907 +UV Count: 3 + UV + UV + UV +Face 6908 +UV Count: 3 + UV + UV + UV +Face 6909 +UV Count: 3 + UV + UV + UV +Face 6910 +UV Count: 3 + UV + UV + UV +Face 6911 +UV Count: 3 + UV + UV + UV +Face 6912 +UV Count: 3 + UV + UV + UV +Face 6913 +UV Count: 3 + UV + UV + UV +Face 6914 +UV Count: 3 + UV + UV + UV +Face 6915 +UV Count: 3 + UV + UV + UV +Face 6916 +UV Count: 3 + UV + UV + UV +Face 6917 +UV Count: 3 + UV + UV + UV +Face 6918 +UV Count: 3 + UV + UV + UV +Face 6919 +UV Count: 3 + UV + UV + UV +Face 6920 +UV Count: 3 + UV + UV + UV +Face 6921 +UV Count: 3 + UV + UV + UV +Face 6922 +UV Count: 3 + UV + UV + UV +Face 6923 +UV Count: 3 + UV + UV + UV +Face 6924 +UV Count: 3 + UV + UV + UV +Face 6925 +UV Count: 3 + UV + UV + UV +Face 6926 +UV Count: 3 + UV + UV + UV +Face 6927 +UV Count: 3 + UV + UV + UV +Face 6928 +UV Count: 3 + UV + UV + UV +Face 6929 +UV Count: 3 + UV + UV + UV +Face 6930 +UV Count: 3 + UV + UV + UV +Face 6931 +UV Count: 3 + UV + UV + UV +Face 6932 +UV Count: 3 + UV + UV + UV +Face 6933 +UV Count: 3 + UV + UV + UV +Face 6934 +UV Count: 3 + UV + UV + UV +Face 6935 +UV Count: 3 + UV + UV + UV +Face 6936 +UV Count: 3 + UV + UV + UV +Face 6937 +UV Count: 3 + UV + UV + UV +Face 6938 +UV Count: 3 + UV + UV + UV +Face 6939 +UV Count: 3 + UV + UV + UV +Face 6940 +UV Count: 3 + UV + UV + UV +Face 6941 +UV Count: 3 + UV + UV + UV +Face 6942 +UV Count: 3 + UV + UV + UV +Face 6943 +UV Count: 3 + UV + UV + UV +Face 6944 +UV Count: 3 + UV + UV + UV +Face 6945 +UV Count: 3 + UV + UV + UV +Face 6946 +UV Count: 3 + UV + UV + UV +Face 6947 +UV Count: 3 + UV + UV + UV +Face 6948 +UV Count: 3 + UV + UV + UV +Face 6949 +UV Count: 3 + UV + UV + UV +Face 6950 +UV Count: 3 + UV + UV + UV +Face 6951 +UV Count: 3 + UV + UV + UV +Face 6952 +UV Count: 3 + UV + UV + UV +Face 6953 +UV Count: 3 + UV + UV + UV +Face 6954 +UV Count: 3 + UV + UV + UV +Face 6955 +UV Count: 3 + UV + UV + UV +Face 6956 +UV Count: 3 + UV + UV + UV +Face 6957 +UV Count: 3 + UV + UV + UV +Face 6958 +UV Count: 3 + UV + UV + UV +Face 6959 +UV Count: 3 + UV + UV + UV +Face 6960 +UV Count: 3 + UV + UV + UV +Face 6961 +UV Count: 3 + UV + UV + UV +Face 6962 +UV Count: 3 + UV + UV + UV +Face 6963 +UV Count: 3 + UV + UV + UV +Face 6964 +UV Count: 3 + UV + UV + UV +Face 6965 +UV Count: 3 + UV + UV + UV +Face 6966 +UV Count: 3 + UV + UV + UV +Face 6967 +UV Count: 3 + UV + UV + UV +Face 6968 +UV Count: 3 + UV + UV + UV +Face 6969 +UV Count: 3 + UV + UV + UV +Face 6970 +UV Count: 3 + UV + UV + UV +Face 6971 +UV Count: 3 + UV + UV + UV +Face 6972 +UV Count: 3 + UV + UV + UV +Face 6973 +UV Count: 3 + UV + UV + UV +Face 6974 +UV Count: 3 + UV + UV + UV +Face 6975 +UV Count: 3 + UV + UV + UV +Face 6976 +UV Count: 3 + UV + UV + UV +Face 6977 +UV Count: 3 + UV + UV + UV +Face 6978 +UV Count: 3 + UV + UV + UV +Face 6979 +UV Count: 3 + UV + UV + UV +Face 6980 +UV Count: 3 + UV + UV + UV +Face 6981 +UV Count: 3 + UV + UV + UV +Face 6982 +UV Count: 3 + UV + UV + UV +Face 6983 +UV Count: 3 + UV + UV + UV +Face 6984 +UV Count: 3 + UV + UV + UV +Face 6985 +UV Count: 3 + UV + UV + UV +Face 6986 +UV Count: 3 + UV + UV + UV +Face 6987 +UV Count: 3 + UV + UV + UV +Face 6988 +UV Count: 3 + UV + UV + UV +Face 6989 +UV Count: 3 + UV + UV + UV +Face 6990 +UV Count: 3 + UV + UV + UV +Face 6991 +UV Count: 3 + UV + UV + UV +Face 6992 +UV Count: 3 + UV + UV + UV +Face 6993 +UV Count: 3 + UV + UV + UV +Face 6994 +UV Count: 3 + UV + UV + UV +Face 6995 +UV Count: 3 + UV + UV + UV +Face 6996 +UV Count: 3 + UV + UV + UV +Face 6997 +UV Count: 3 + UV + UV + UV +Face 6998 +UV Count: 3 + UV + UV + UV +Face 6999 +UV Count: 3 + UV + UV + UV +Face 7000 +UV Count: 3 + UV + UV + UV +Face 7001 +UV Count: 3 + UV + UV + UV +Face 7002 +UV Count: 3 + UV + UV + UV +Face 7003 +UV Count: 3 + UV + UV + UV +Face 7004 +UV Count: 3 + UV + UV + UV +Face 7005 +UV Count: 3 + UV + UV + UV +Face 7006 +UV Count: 3 + UV + UV + UV +Face 7007 +UV Count: 3 + UV + UV + UV +Face 7008 +UV Count: 3 + UV + UV + UV +Face 7009 +UV Count: 3 + UV + UV + UV +Face 7010 +UV Count: 3 + UV + UV + UV +Face 7011 +UV Count: 3 + UV + UV + UV +Face 7012 +UV Count: 3 + UV + UV + UV +Face 7013 +UV Count: 3 + UV + UV + UV +Face 7014 +UV Count: 3 + UV + UV + UV +Face 7015 +UV Count: 3 + UV + UV + UV +Face 7016 +UV Count: 3 + UV + UV + UV +Face 7017 +UV Count: 3 + UV + UV + UV +Face 7018 +UV Count: 3 + UV + UV + UV +Face 7019 +UV Count: 3 + UV + UV + UV +Face 7020 +UV Count: 3 + UV + UV + UV +Face 7021 +UV Count: 3 + UV + UV + UV +Face 7022 +UV Count: 3 + UV + UV + UV +Face 7023 +UV Count: 3 + UV + UV + UV +Face 7024 +UV Count: 3 + UV + UV + UV +Face 7025 +UV Count: 3 + UV + UV + UV +Face 7026 +UV Count: 3 + UV + UV + UV +Face 7027 +UV Count: 3 + UV + UV + UV +Face 7028 +UV Count: 3 + UV + UV + UV +Face 7029 +UV Count: 3 + UV + UV + UV +Face 7030 +UV Count: 3 + UV + UV + UV +Face 7031 +UV Count: 3 + UV + UV + UV +Face 7032 +UV Count: 3 + UV + UV + UV +Face 7033 +UV Count: 3 + UV + UV + UV +Face 7034 +UV Count: 3 + UV + UV + UV +Face 7035 +UV Count: 3 + UV + UV + UV +Face 7036 +UV Count: 3 + UV + UV + UV +Face 7037 +UV Count: 3 + UV + UV + UV +Face 7038 +UV Count: 3 + UV + UV + UV +Face 7039 +UV Count: 3 + UV + UV + UV +Face 7040 +UV Count: 3 + UV + UV + UV +Face 7041 +UV Count: 3 + UV + UV + UV +Face 7042 +UV Count: 3 + UV + UV + UV +Face 7043 +UV Count: 3 + UV + UV + UV +Face 7044 +UV Count: 3 + UV + UV + UV +Face 7045 +UV Count: 3 + UV + UV + UV +Face 7046 +UV Count: 3 + UV + UV + UV +Face 7047 +UV Count: 3 + UV + UV + UV +Face 7048 +UV Count: 3 + UV + UV + UV +Face 7049 +UV Count: 3 + UV + UV + UV +Face 7050 +UV Count: 3 + UV + UV + UV +Face 7051 +UV Count: 3 + UV + UV + UV +Face 7052 +UV Count: 3 + UV + UV + UV +Face 7053 +UV Count: 3 + UV + UV + UV +Face 7054 +UV Count: 3 + UV + UV + UV +Face 7055 +UV Count: 3 + UV + UV + UV +Face 7056 +UV Count: 3 + UV + UV + UV +Face 7057 +UV Count: 3 + UV + UV + UV +Face 7058 +UV Count: 3 + UV + UV + UV +Face 7059 +UV Count: 3 + UV + UV + UV +Face 7060 +UV Count: 3 + UV + UV + UV +Face 7061 +UV Count: 3 + UV + UV + UV +Face 7062 +UV Count: 3 + UV + UV + UV +Face 7063 +UV Count: 3 + UV + UV + UV +Face 7064 +UV Count: 3 + UV + UV + UV +Face 7065 +UV Count: 3 + UV + UV + UV +Face 7066 +UV Count: 3 + UV + UV + UV +Face 7067 +UV Count: 3 + UV + UV + UV +Face 7068 +UV Count: 3 + UV + UV + UV +Face 7069 +UV Count: 3 + UV + UV + UV +Face 7070 +UV Count: 3 + UV + UV + UV +Face 7071 +UV Count: 3 + UV + UV + UV +Face 7072 +UV Count: 3 + UV + UV + UV +Face 7073 +UV Count: 3 + UV + UV + UV +Face 7074 +UV Count: 3 + UV + UV + UV +Face 7075 +UV Count: 3 + UV + UV + UV +Face 7076 +UV Count: 3 + UV + UV + UV +Face 7077 +UV Count: 3 + UV + UV + UV +Face 7078 +UV Count: 3 + UV + UV + UV +Face 7079 +UV Count: 3 + UV + UV + UV +Face 7080 +UV Count: 3 + UV + UV + UV +Face 7081 +UV Count: 3 + UV + UV + UV +Face 7082 +UV Count: 3 + UV + UV + UV +Face 7083 +UV Count: 3 + UV + UV + UV +Face 7084 +UV Count: 3 + UV + UV + UV +Face 7085 +UV Count: 3 + UV + UV + UV +Face 7086 +UV Count: 3 + UV + UV + UV +Face 7087 +UV Count: 3 + UV + UV + UV +Face 7088 +UV Count: 3 + UV + UV + UV +Face 7089 +UV Count: 3 + UV + UV + UV +Face 7090 +UV Count: 3 + UV + UV + UV +Face 7091 +UV Count: 3 + UV + UV + UV +Face 7092 +UV Count: 3 + UV + UV + UV +Face 7093 +UV Count: 3 + UV + UV + UV +Face 7094 +UV Count: 3 + UV + UV + UV +Face 7095 +UV Count: 3 + UV + UV + UV +Face 7096 +UV Count: 3 + UV + UV + UV +Face 7097 +UV Count: 3 + UV + UV + UV +Face 7098 +UV Count: 3 + UV + UV + UV +Face 7099 +UV Count: 3 + UV + UV + UV +Face 7100 +UV Count: 3 + UV + UV + UV +Face 7101 +UV Count: 3 + UV + UV + UV +Face 7102 +UV Count: 3 + UV + UV + UV +Face 7103 +UV Count: 3 + UV + UV + UV +Face 7104 +UV Count: 3 + UV + UV + UV +Face 7105 +UV Count: 3 + UV + UV + UV +Face 7106 +UV Count: 3 + UV + UV + UV +Face 7107 +UV Count: 3 + UV + UV + UV +Face 7108 +UV Count: 3 + UV + UV + UV +Face 7109 +UV Count: 3 + UV + UV + UV +Face 7110 +UV Count: 3 + UV + UV + UV +Face 7111 +UV Count: 3 + UV + UV + UV +Face 7112 +UV Count: 3 + UV + UV + UV +Face 7113 +UV Count: 3 + UV + UV + UV +Face 7114 +UV Count: 3 + UV + UV + UV +Face 7115 +UV Count: 3 + UV + UV + UV +Face 7116 +UV Count: 3 + UV + UV + UV +Face 7117 +UV Count: 3 + UV + UV + UV +Face 7118 +UV Count: 3 + UV + UV + UV +Face 7119 +UV Count: 3 + UV + UV + UV +Face 7120 +UV Count: 3 + UV + UV + UV +Face 7121 +UV Count: 3 + UV + UV + UV +Face 7122 +UV Count: 3 + UV + UV + UV +Face 7123 +UV Count: 3 + UV + UV + UV +Face 7124 +UV Count: 3 + UV + UV + UV +Face 7125 +UV Count: 3 + UV + UV + UV +Face 7126 +UV Count: 3 + UV + UV + UV +Face 7127 +UV Count: 3 + UV + UV + UV +Face 7128 +UV Count: 3 + UV + UV + UV +Face 7129 +UV Count: 3 + UV + UV + UV +Face 7130 +UV Count: 3 + UV + UV + UV +Face 7131 +UV Count: 3 + UV + UV + UV +Face 7132 +UV Count: 3 + UV + UV + UV +Face 7133 +UV Count: 3 + UV + UV + UV +Face 7134 +UV Count: 3 + UV + UV + UV +Face 7135 +UV Count: 3 + UV + UV + UV +Face 7136 +UV Count: 3 + UV + UV + UV +Face 7137 +UV Count: 3 + UV + UV + UV +Face 7138 +UV Count: 3 + UV + UV + UV +Face 7139 +UV Count: 3 + UV + UV + UV +Face 7140 +UV Count: 3 + UV + UV + UV +Face 7141 +UV Count: 3 + UV + UV + UV +Face 7142 +UV Count: 3 + UV + UV + UV +Face 7143 +UV Count: 3 + UV + UV + UV +Face 7144 +UV Count: 3 + UV + UV + UV +Face 7145 +UV Count: 3 + UV + UV + UV +Face 7146 +UV Count: 3 + UV + UV + UV +Face 7147 +UV Count: 3 + UV + UV + UV +Face 7148 +UV Count: 3 + UV + UV + UV +Face 7149 +UV Count: 3 + UV + UV + UV +Face 7150 +UV Count: 3 + UV + UV + UV +Face 7151 +UV Count: 3 + UV + UV + UV +Face 7152 +UV Count: 3 + UV + UV + UV +Face 7153 +UV Count: 3 + UV + UV + UV +Face 7154 +UV Count: 3 + UV + UV + UV +Face 7155 +UV Count: 3 + UV + UV + UV +Face 7156 +UV Count: 3 + UV + UV + UV +Face 7157 +UV Count: 3 + UV + UV + UV +Face 7158 +UV Count: 3 + UV + UV + UV +Face 7159 +UV Count: 3 + UV + UV + UV +Face 7160 +UV Count: 3 + UV + UV + UV +Face 7161 +UV Count: 3 + UV + UV + UV +Face 7162 +UV Count: 3 + UV + UV + UV +Face 7163 +UV Count: 3 + UV + UV + UV +Face 7164 +UV Count: 3 + UV + UV + UV +Face 7165 +UV Count: 3 + UV + UV + UV +Face 7166 +UV Count: 3 + UV + UV + UV +Face 7167 +UV Count: 3 + UV + UV + UV +Face 7168 +UV Count: 3 + UV + UV + UV +Face 7169 +UV Count: 3 + UV + UV + UV +Face 7170 +UV Count: 3 + UV + UV + UV +Face 7171 +UV Count: 3 + UV + UV + UV +Face 7172 +UV Count: 3 + UV + UV + UV +Face 7173 +UV Count: 3 + UV + UV + UV +Face 7174 +UV Count: 3 + UV + UV + UV +Face 7175 +UV Count: 3 + UV + UV + UV +Face 7176 +UV Count: 3 + UV + UV + UV +Face 7177 +UV Count: 3 + UV + UV + UV +Face 7178 +UV Count: 3 + UV + UV + UV +Face 7179 +UV Count: 3 + UV + UV + UV +Face 7180 +UV Count: 3 + UV + UV + UV +Face 7181 +UV Count: 3 + UV + UV + UV +Face 7182 +UV Count: 3 + UV + UV + UV +Face 7183 +UV Count: 3 + UV + UV + UV +Face 7184 +UV Count: 3 + UV + UV + UV +Face 7185 +UV Count: 3 + UV + UV + UV +Face 7186 +UV Count: 3 + UV + UV + UV +Face 7187 +UV Count: 3 + UV + UV + UV +Face 7188 +UV Count: 3 + UV + UV + UV +Face 7189 +UV Count: 3 + UV + UV + UV +Face 7190 +UV Count: 3 + UV + UV + UV +Face 7191 +UV Count: 3 + UV + UV + UV +Face 7192 +UV Count: 3 + UV + UV + UV +Face 7193 +UV Count: 3 + UV + UV + UV +Face 7194 +UV Count: 3 + UV + UV + UV +Face 7195 +UV Count: 3 + UV + UV + UV +Face 7196 +UV Count: 3 + UV + UV + UV +Face 7197 +UV Count: 3 + UV + UV + UV +Face 7198 +UV Count: 3 + UV + UV + UV +Face 7199 +UV Count: 3 + UV + UV + UV +Face 7200 +UV Count: 3 + UV + UV + UV +Face 7201 +UV Count: 3 + UV + UV + UV +Face 7202 +UV Count: 3 + UV + UV + UV +Face 7203 +UV Count: 3 + UV + UV + UV +Face 7204 +UV Count: 3 + UV + UV + UV +Face 7205 +UV Count: 3 + UV + UV + UV +Face 7206 +UV Count: 3 + UV + UV + UV +Face 7207 +UV Count: 3 + UV + UV + UV +Face 7208 +UV Count: 3 + UV + UV + UV +Face 7209 +UV Count: 3 + UV + UV + UV +Face 7210 +UV Count: 3 + UV + UV + UV +Face 7211 +UV Count: 3 + UV + UV + UV +Face 7212 +UV Count: 3 + UV + UV + UV +Face 7213 +UV Count: 3 + UV + UV + UV +Face 7214 +UV Count: 3 + UV + UV + UV +Face 7215 +UV Count: 3 + UV + UV + UV +Face 7216 +UV Count: 3 + UV + UV + UV +Face 7217 +UV Count: 3 + UV + UV + UV +Face 7218 +UV Count: 3 + UV + UV + UV +Face 7219 +UV Count: 3 + UV + UV + UV +Face 7220 +UV Count: 3 + UV + UV + UV +Face 7221 +UV Count: 3 + UV + UV + UV +Face 7222 +UV Count: 3 + UV + UV + UV +Face 7223 +UV Count: 3 + UV + UV + UV +Face 7224 +UV Count: 3 + UV + UV + UV +Face 7225 +UV Count: 3 + UV + UV + UV +Face 7226 +UV Count: 3 + UV + UV + UV +Face 7227 +UV Count: 3 + UV + UV + UV +Face 7228 +UV Count: 3 + UV + UV + UV +Face 7229 +UV Count: 3 + UV + UV + UV +Face 7230 +UV Count: 3 + UV + UV + UV +Face 7231 +UV Count: 3 + UV + UV + UV +Face 7232 +UV Count: 3 + UV + UV + UV +Face 7233 +UV Count: 3 + UV + UV + UV +Face 7234 +UV Count: 3 + UV + UV + UV +Face 7235 +UV Count: 3 + UV + UV + UV +Face 7236 +UV Count: 3 + UV + UV + UV +Face 7237 +UV Count: 3 + UV + UV + UV +Face 7238 +UV Count: 3 + UV + UV + UV +Face 7239 +UV Count: 3 + UV + UV + UV +Face 7240 +UV Count: 3 + UV + UV + UV +Face 7241 +UV Count: 3 + UV + UV + UV +Face 7242 +UV Count: 3 + UV + UV + UV +Face 7243 +UV Count: 3 + UV + UV + UV +Face 7244 +UV Count: 3 + UV + UV + UV +Face 7245 +UV Count: 3 + UV + UV + UV +Face 7246 +UV Count: 3 + UV + UV + UV +Face 7247 +UV Count: 3 + UV + UV + UV +Face 7248 +UV Count: 3 + UV + UV + UV +Face 7249 +UV Count: 3 + UV + UV + UV +Face 7250 +UV Count: 3 + UV + UV + UV +Face 7251 +UV Count: 3 + UV + UV + UV +Face 7252 +UV Count: 3 + UV + UV + UV +Face 7253 +UV Count: 3 + UV + UV + UV +Face 7254 +UV Count: 3 + UV + UV + UV +Face 7255 +UV Count: 3 + UV + UV + UV +Face 7256 +UV Count: 3 + UV + UV + UV +Face 7257 +UV Count: 3 + UV + UV + UV +Face 7258 +UV Count: 3 + UV + UV + UV +Face 7259 +UV Count: 3 + UV + UV + UV +Face 7260 +UV Count: 3 + UV + UV + UV +Face 7261 +UV Count: 3 + UV + UV + UV +Face 7262 +UV Count: 3 + UV + UV + UV +Face 7263 +UV Count: 3 + UV + UV + UV +Face 7264 +UV Count: 3 + UV + UV + UV +Face 7265 +UV Count: 3 + UV + UV + UV +Face 7266 +UV Count: 3 + UV + UV + UV +Face 7267 +UV Count: 3 + UV + UV + UV +Face 7268 +UV Count: 3 + UV + UV + UV +Face 7269 +UV Count: 3 + UV + UV + UV +Face 7270 +UV Count: 3 + UV + UV + UV +Face 7271 +UV Count: 3 + UV + UV + UV +Face 7272 +UV Count: 3 + UV + UV + UV +Face 7273 +UV Count: 3 + UV + UV + UV +Face 7274 +UV Count: 3 + UV + UV + UV +Face 7275 +UV Count: 3 + UV + UV + UV +Face 7276 +UV Count: 3 + UV + UV + UV +Face 7277 +UV Count: 3 + UV + UV + UV +Face 7278 +UV Count: 3 + UV + UV + UV +Face 7279 +UV Count: 3 + UV + UV + UV +Face 7280 +UV Count: 3 + UV + UV + UV +Face 7281 +UV Count: 3 + UV + UV + UV +Face 7282 +UV Count: 3 + UV + UV + UV +Face 7283 +UV Count: 3 + UV + UV + UV +Face 7284 +UV Count: 3 + UV + UV + UV +Face 7285 +UV Count: 3 + UV + UV + UV +Face 7286 +UV Count: 3 + UV + UV + UV +Face 7287 +UV Count: 3 + UV + UV + UV +Face 7288 +UV Count: 3 + UV + UV + UV +Face 7289 +UV Count: 3 + UV + UV + UV +Face 7290 +UV Count: 3 + UV + UV + UV +Face 7291 +UV Count: 3 + UV + UV + UV +Face 7292 +UV Count: 3 + UV + UV + UV +Face 7293 +UV Count: 3 + UV + UV + UV +Face 7294 +UV Count: 3 + UV + UV + UV +Face 7295 +UV Count: 3 + UV + UV + UV +Face 7296 +UV Count: 3 + UV + UV + UV +Face 7297 +UV Count: 3 + UV + UV + UV +Face 7298 +UV Count: 3 + UV + UV + UV +Face 7299 +UV Count: 3 + UV + UV + UV +Face 7300 +UV Count: 3 + UV + UV + UV +Face 7301 +UV Count: 3 + UV + UV + UV +Face 7302 +UV Count: 3 + UV + UV + UV +Face 7303 +UV Count: 3 + UV + UV + UV +Face 7304 +UV Count: 3 + UV + UV + UV +Face 7305 +UV Count: 3 + UV + UV + UV +Face 7306 +UV Count: 3 + UV + UV + UV +Face 7307 +UV Count: 3 + UV + UV + UV +Face 7308 +UV Count: 3 + UV + UV + UV +Face 7309 +UV Count: 3 + UV + UV + UV +Face 7310 +UV Count: 3 + UV + UV + UV +Face 7311 +UV Count: 3 + UV + UV + UV +Face 7312 +UV Count: 3 + UV + UV + UV +Face 7313 +UV Count: 3 + UV + UV + UV +Face 7314 +UV Count: 3 + UV + UV + UV +Face 7315 +UV Count: 3 + UV + UV + UV +Face 7316 +UV Count: 3 + UV + UV + UV +Face 7317 +UV Count: 3 + UV + UV + UV +Face 7318 +UV Count: 3 + UV + UV + UV +Face 7319 +UV Count: 3 + UV + UV + UV +Face 7320 +UV Count: 3 + UV + UV + UV +Face 7321 +UV Count: 3 + UV + UV + UV +Face 7322 +UV Count: 3 + UV + UV + UV +Face 7323 +UV Count: 3 + UV + UV + UV +Face 7324 +UV Count: 3 + UV + UV + UV +Face 7325 +UV Count: 3 + UV + UV + UV +Face 7326 +UV Count: 3 + UV + UV + UV +Face 7327 +UV Count: 3 + UV + UV + UV +Face 7328 +UV Count: 3 + UV + UV + UV +Face 7329 +UV Count: 3 + UV + UV + UV +Face 7330 +UV Count: 3 + UV + UV + UV +Face 7331 +UV Count: 3 + UV + UV + UV +Face 7332 +UV Count: 3 + UV + UV + UV +Face 7333 +UV Count: 3 + UV + UV + UV +Face 7334 +UV Count: 3 + UV + UV + UV +Face 7335 +UV Count: 3 + UV + UV + UV +Face 7336 +UV Count: 3 + UV + UV + UV +Face 7337 +UV Count: 3 + UV + UV + UV +Face 7338 +UV Count: 3 + UV + UV + UV +Face 7339 +UV Count: 3 + UV + UV + UV +Face 7340 +UV Count: 3 + UV + UV + UV +Face 7341 +UV Count: 3 + UV + UV + UV +Face 7342 +UV Count: 3 + UV + UV + UV +Face 7343 +UV Count: 3 + UV + UV + UV +Face 7344 +UV Count: 3 + UV + UV + UV +Face 7345 +UV Count: 3 + UV + UV + UV +Face 7346 +UV Count: 3 + UV + UV + UV +Face 7347 +UV Count: 3 + UV + UV + UV +Face 7348 +UV Count: 3 + UV + UV + UV +Face 7349 +UV Count: 3 + UV + UV + UV +Face 7350 +UV Count: 3 + UV + UV + UV +Face 7351 +UV Count: 3 + UV + UV + UV +Face 7352 +UV Count: 3 + UV + UV + UV +Face 7353 +UV Count: 3 + UV + UV + UV +Face 7354 +UV Count: 3 + UV + UV + UV +Face 7355 +UV Count: 3 + UV + UV + UV +Face 7356 +UV Count: 3 + UV + UV + UV +Face 7357 +UV Count: 3 + UV + UV + UV +Face 7358 +UV Count: 3 + UV + UV + UV +Face 7359 +UV Count: 3 + UV + UV + UV +Face 7360 +UV Count: 3 + UV + UV + UV +Face 7361 +UV Count: 3 + UV + UV + UV +Face 7362 +UV Count: 3 + UV + UV + UV +Face 7363 +UV Count: 3 + UV + UV + UV +Face 7364 +UV Count: 3 + UV + UV + UV +Face 7365 +UV Count: 3 + UV + UV + UV +Face 7366 +UV Count: 3 + UV + UV + UV +Face 7367 +UV Count: 3 + UV + UV + UV +Face 7368 +UV Count: 3 + UV + UV + UV +Face 7369 +UV Count: 3 + UV + UV + UV +Face 7370 +UV Count: 3 + UV + UV + UV +Face 7371 +UV Count: 3 + UV + UV + UV +Face 7372 +UV Count: 3 + UV + UV + UV +Face 7373 +UV Count: 3 + UV + UV + UV +Face 7374 +UV Count: 3 + UV + UV + UV +Face 7375 +UV Count: 3 + UV + UV + UV +Face 7376 +UV Count: 3 + UV + UV + UV +Face 7377 +UV Count: 3 + UV + UV + UV +Face 7378 +UV Count: 3 + UV + UV + UV +Face 7379 +UV Count: 3 + UV + UV + UV +Face 7380 +UV Count: 3 + UV + UV + UV +Face 7381 +UV Count: 3 + UV + UV + UV +Face 7382 +UV Count: 3 + UV + UV + UV +Face 7383 +UV Count: 3 + UV + UV + UV +Face 7384 +UV Count: 3 + UV + UV + UV +Face 7385 +UV Count: 3 + UV + UV + UV +Face 7386 +UV Count: 3 + UV + UV + UV +Face 7387 +UV Count: 3 + UV + UV + UV +Face 7388 +UV Count: 3 + UV + UV + UV +Face 7389 +UV Count: 3 + UV + UV + UV +Face 7390 +UV Count: 3 + UV + UV + UV +Face 7391 +UV Count: 3 + UV + UV + UV +Face 7392 +UV Count: 3 + UV + UV + UV +Face 7393 +UV Count: 3 + UV + UV + UV +Face 7394 +UV Count: 3 + UV + UV + UV +Face 7395 +UV Count: 3 + UV + UV + UV +Face 7396 +UV Count: 3 + UV + UV + UV +Face 7397 +UV Count: 3 + UV + UV + UV +Face 7398 +UV Count: 3 + UV + UV + UV +Face 7399 +UV Count: 3 + UV + UV + UV +Face 7400 +UV Count: 3 + UV + UV + UV +Face 7401 +UV Count: 3 + UV + UV + UV +Face 7402 +UV Count: 3 + UV + UV + UV +Face 7403 +UV Count: 3 + UV + UV + UV +Face 7404 +UV Count: 3 + UV + UV + UV +Face 7405 +UV Count: 3 + UV + UV + UV +Face 7406 +UV Count: 3 + UV + UV + UV +Face 7407 +UV Count: 3 + UV + UV + UV +Face 7408 +UV Count: 3 + UV + UV + UV +Face 7409 +UV Count: 3 + UV + UV + UV +Face 7410 +UV Count: 3 + UV + UV + UV +Face 7411 +UV Count: 3 + UV + UV + UV +Face 7412 +UV Count: 3 + UV + UV + UV +Face 7413 +UV Count: 3 + UV + UV + UV +Face 7414 +UV Count: 3 + UV + UV + UV +Face 7415 +UV Count: 3 + UV + UV + UV +Face 7416 +UV Count: 3 + UV + UV + UV +Face 7417 +UV Count: 3 + UV + UV + UV +Face 7418 +UV Count: 3 + UV + UV + UV +Face 7419 +UV Count: 3 + UV + UV + UV +Face 7420 +UV Count: 3 + UV + UV + UV +Face 7421 +UV Count: 3 + UV + UV + UV +Face 7422 +UV Count: 3 + UV + UV + UV +Face 7423 +UV Count: 3 + UV + UV + UV +Face 7424 +UV Count: 3 + UV + UV + UV +Face 7425 +UV Count: 3 + UV + UV + UV +Face 7426 +UV Count: 3 + UV + UV + UV +Face 7427 +UV Count: 3 + UV + UV + UV +Face 7428 +UV Count: 3 + UV + UV + UV +Face 7429 +UV Count: 3 + UV + UV + UV +Face 7430 +UV Count: 3 + UV + UV + UV +Face 7431 +UV Count: 3 + UV + UV + UV +Face 7432 +UV Count: 3 + UV + UV + UV +Face 7433 +UV Count: 3 + UV + UV + UV +Face 7434 +UV Count: 3 + UV + UV + UV +Face 7435 +UV Count: 3 + UV + UV + UV +Face 7436 +UV Count: 3 + UV + UV + UV +Face 7437 +UV Count: 3 + UV + UV + UV +Face 7438 +UV Count: 3 + UV + UV + UV +Face 7439 +UV Count: 3 + UV + UV + UV +Face 7440 +UV Count: 3 + UV + UV + UV +Face 7441 +UV Count: 3 + UV + UV + UV +Face 7442 +UV Count: 3 + UV + UV + UV +Face 7443 +UV Count: 3 + UV + UV + UV +Face 7444 +UV Count: 3 + UV + UV + UV +Face 7445 +UV Count: 3 + UV + UV + UV +Face 7446 +UV Count: 3 + UV + UV + UV +Face 7447 +UV Count: 3 + UV + UV + UV +Face 7448 +UV Count: 3 + UV + UV + UV +Face 7449 +UV Count: 3 + UV + UV + UV +Face 7450 +UV Count: 3 + UV + UV + UV +Face 7451 +UV Count: 3 + UV + UV + UV +Face 7452 +UV Count: 3 + UV + UV + UV +Face 7453 +UV Count: 3 + UV + UV + UV +Face 7454 +UV Count: 3 + UV + UV + UV +Face 7455 +UV Count: 3 + UV + UV + UV +Face 7456 +UV Count: 3 + UV + UV + UV +Face 7457 +UV Count: 3 + UV + UV + UV +Face 7458 +UV Count: 3 + UV + UV + UV +Face 7459 +UV Count: 3 + UV + UV + UV +Face 7460 +UV Count: 3 + UV + UV + UV +Face 7461 +UV Count: 3 + UV + UV + UV +Face 7462 +UV Count: 3 + UV + UV + UV +Face 7463 +UV Count: 3 + UV + UV + UV +Face 7464 +UV Count: 3 + UV + UV + UV +Face 7465 +UV Count: 3 + UV + UV + UV +Face 7466 +UV Count: 3 + UV + UV + UV +Face 7467 +UV Count: 3 + UV + UV + UV +Face 7468 +UV Count: 3 + UV + UV + UV +Face 7469 +UV Count: 3 + UV + UV + UV +Face 7470 +UV Count: 3 + UV + UV + UV +Face 7471 +UV Count: 3 + UV + UV + UV +Face 7472 +UV Count: 3 + UV + UV + UV +Face 7473 +UV Count: 3 + UV + UV + UV +Face 7474 +UV Count: 3 + UV + UV + UV +Face 7475 +UV Count: 3 + UV + UV + UV +Face 7476 +UV Count: 3 + UV + UV + UV +Face 7477 +UV Count: 3 + UV + UV + UV +Face 7478 +UV Count: 3 + UV + UV + UV +Face 7479 +UV Count: 3 + UV + UV + UV +Face 7480 +UV Count: 3 + UV + UV + UV +Face 7481 +UV Count: 3 + UV + UV + UV +Face 7482 +UV Count: 3 + UV + UV + UV +Face 7483 +UV Count: 3 + UV + UV + UV +Face 7484 +UV Count: 3 + UV + UV + UV +Face 7485 +UV Count: 3 + UV + UV + UV +Face 7486 +UV Count: 3 + UV + UV + UV +Face 7487 +UV Count: 3 + UV + UV + UV +Face 7488 +UV Count: 3 + UV + UV + UV +Face 7489 +UV Count: 3 + UV + UV + UV +Face 7490 +UV Count: 3 + UV + UV + UV +Face 7491 +UV Count: 3 + UV + UV + UV +Face 7492 +UV Count: 3 + UV + UV + UV +Face 7493 +UV Count: 3 + UV + UV + UV +Face 7494 +UV Count: 3 + UV + UV + UV +Face 7495 +UV Count: 3 + UV + UV + UV +Face 7496 +UV Count: 3 + UV + UV + UV +Face 7497 +UV Count: 3 + UV + UV + UV +Face 7498 +UV Count: 3 + UV + UV + UV +Face 7499 +UV Count: 3 + UV + UV + UV +Face 7500 +UV Count: 3 + UV + UV + UV +Face 7501 +UV Count: 3 + UV + UV + UV +Face 7502 +UV Count: 3 + UV + UV + UV +Face 7503 +UV Count: 3 + UV + UV + UV +Face 7504 +UV Count: 3 + UV + UV + UV +Face 7505 +UV Count: 3 + UV + UV + UV +Face 7506 +UV Count: 3 + UV + UV + UV +Face 7507 +UV Count: 3 + UV + UV + UV +Face 7508 +UV Count: 3 + UV + UV + UV +Face 7509 +UV Count: 3 + UV + UV + UV +Face 7510 +UV Count: 3 + UV + UV + UV +Face 7511 +UV Count: 3 + UV + UV + UV +Face 7512 +UV Count: 3 + UV + UV + UV +Face 7513 +UV Count: 3 + UV + UV + UV +Face 7514 +UV Count: 3 + UV + UV + UV +Face 7515 +UV Count: 3 + UV + UV + UV +Face 7516 +UV Count: 3 + UV + UV + UV +Face 7517 +UV Count: 3 + UV + UV + UV +Face 7518 +UV Count: 3 + UV + UV + UV +Face 7519 +UV Count: 3 + UV + UV + UV +Face 7520 +UV Count: 3 + UV + UV + UV +Face 7521 +UV Count: 3 + UV + UV + UV +Face 7522 +UV Count: 3 + UV + UV + UV +Face 7523 +UV Count: 3 + UV + UV + UV +Face 7524 +UV Count: 3 + UV + UV + UV +Face 7525 +UV Count: 3 + UV + UV + UV +Face 7526 +UV Count: 3 + UV + UV + UV +Face 7527 +UV Count: 3 + UV + UV + UV +Face 7528 +UV Count: 3 + UV + UV + UV +Face 7529 +UV Count: 3 + UV + UV + UV +Face 7530 +UV Count: 3 + UV + UV + UV +Face 7531 +UV Count: 3 + UV + UV + UV +Face 7532 +UV Count: 3 + UV + UV + UV +Face 7533 +UV Count: 3 + UV + UV + UV +Face 7534 +UV Count: 3 + UV + UV + UV +Face 7535 +UV Count: 3 + UV + UV + UV +Face 7536 +UV Count: 3 + UV + UV + UV +Face 7537 +UV Count: 3 + UV + UV + UV +Face 7538 +UV Count: 3 + UV + UV + UV +Face 7539 +UV Count: 3 + UV + UV + UV +Face 7540 +UV Count: 3 + UV + UV + UV +Face 7541 +UV Count: 3 + UV + UV + UV +Face 7542 +UV Count: 3 + UV + UV + UV +Face 7543 +UV Count: 3 + UV + UV + UV +Face 7544 +UV Count: 3 + UV + UV + UV +Face 7545 +UV Count: 3 + UV + UV + UV +Face 7546 +UV Count: 3 + UV + UV + UV +Face 7547 +UV Count: 3 + UV + UV + UV +Face 7548 +UV Count: 3 + UV + UV + UV +Face 7549 +UV Count: 3 + UV + UV + UV +Face 7550 +UV Count: 3 + UV + UV + UV +Face 7551 +UV Count: 3 + UV + UV + UV +Face 7552 +UV Count: 3 + UV + UV + UV +Face 7553 +UV Count: 3 + UV + UV + UV +Face 7554 +UV Count: 3 + UV + UV + UV +Face 7555 +UV Count: 3 + UV + UV + UV +Face 7556 +UV Count: 3 + UV + UV + UV +Face 7557 +UV Count: 3 + UV + UV + UV +Face 7558 +UV Count: 3 + UV + UV + UV +Face 7559 +UV Count: 3 + UV + UV + UV +Face 7560 +UV Count: 3 + UV + UV + UV +Face 7561 +UV Count: 3 + UV + UV + UV +Face 7562 +UV Count: 3 + UV + UV + UV +Face 7563 +UV Count: 3 + UV + UV + UV +Face 7564 +UV Count: 3 + UV + UV + UV +Face 7565 +UV Count: 3 + UV + UV + UV +Face 7566 +UV Count: 3 + UV + UV + UV +Face 7567 +UV Count: 3 + UV + UV + UV +Face 7568 +UV Count: 3 + UV + UV + UV +Face 7569 +UV Count: 3 + UV + UV + UV +Face 7570 +UV Count: 3 + UV + UV + UV +Face 7571 +UV Count: 3 + UV + UV + UV +Face 7572 +UV Count: 3 + UV + UV + UV +Face 7573 +UV Count: 3 + UV + UV + UV +Face 7574 +UV Count: 3 + UV + UV + UV +Face 7575 +UV Count: 3 + UV + UV + UV +Face 7576 +UV Count: 3 + UV + UV + UV +Face 7577 +UV Count: 3 + UV + UV + UV +Face 7578 +UV Count: 3 + UV + UV + UV +Face 7579 +UV Count: 3 + UV + UV + UV +Face 7580 +UV Count: 3 + UV + UV + UV +Face 7581 +UV Count: 3 + UV + UV + UV +Face 7582 +UV Count: 3 + UV + UV + UV +Face 7583 +UV Count: 3 + UV + UV + UV +Face 7584 +UV Count: 3 + UV + UV + UV +Face 7585 +UV Count: 3 + UV + UV + UV +Face 7586 +UV Count: 3 + UV + UV + UV +Face 7587 +UV Count: 3 + UV + UV + UV +Face 7588 +UV Count: 3 + UV + UV + UV +Face 7589 +UV Count: 3 + UV + UV + UV +Face 7590 +UV Count: 3 + UV + UV + UV +Face 7591 +UV Count: 3 + UV + UV + UV +Face 7592 +UV Count: 3 + UV + UV + UV +Face 7593 +UV Count: 3 + UV + UV + UV +Face 7594 +UV Count: 3 + UV + UV + UV +Face 7595 +UV Count: 3 + UV + UV + UV +Face 7596 +UV Count: 3 + UV + UV + UV +Face 7597 +UV Count: 3 + UV + UV + UV +Face 7598 +UV Count: 3 + UV + UV + UV +Face 7599 +UV Count: 3 + UV + UV + UV +Face 7600 +UV Count: 3 + UV + UV + UV +Face 7601 +UV Count: 3 + UV + UV + UV +Face 7602 +UV Count: 3 + UV + UV + UV +Face 7603 +UV Count: 3 + UV + UV + UV +Face 7604 +UV Count: 3 + UV + UV + UV +Face 7605 +UV Count: 3 + UV + UV + UV +Face 7606 +UV Count: 3 + UV + UV + UV +Face 7607 +UV Count: 3 + UV + UV + UV +Face 7608 +UV Count: 3 + UV + UV + UV +Face 7609 +UV Count: 3 + UV + UV + UV +Face 7610 +UV Count: 3 + UV + UV + UV +Face 7611 +UV Count: 3 + UV + UV + UV +Face 7612 +UV Count: 3 + UV + UV + UV +Face 7613 +UV Count: 3 + UV + UV + UV +Face 7614 +UV Count: 3 + UV + UV + UV +Face 7615 +UV Count: 3 + UV + UV + UV +Face 7616 +UV Count: 3 + UV + UV + UV +Face 7617 +UV Count: 3 + UV + UV + UV +Face 7618 +UV Count: 3 + UV + UV + UV +Face 7619 +UV Count: 3 + UV + UV + UV +Face 7620 +UV Count: 3 + UV + UV + UV +Face 7621 +UV Count: 3 + UV + UV + UV +Face 7622 +UV Count: 3 + UV + UV + UV +Face 7623 +UV Count: 3 + UV + UV + UV +Face 7624 +UV Count: 3 + UV + UV + UV +Face 7625 +UV Count: 3 + UV + UV + UV +Face 7626 +UV Count: 3 + UV + UV + UV +Face 7627 +UV Count: 3 + UV + UV + UV +Face 7628 +UV Count: 3 + UV + UV + UV +Face 7629 +UV Count: 3 + UV + UV + UV +Face 7630 +UV Count: 3 + UV + UV + UV +Face 7631 +UV Count: 3 + UV + UV + UV +Face 7632 +UV Count: 3 + UV + UV + UV +Face 7633 +UV Count: 3 + UV + UV + UV +Face 7634 +UV Count: 3 + UV + UV + UV +Face 7635 +UV Count: 3 + UV + UV + UV +Face 7636 +UV Count: 3 + UV + UV + UV +Face 7637 +UV Count: 3 + UV + UV + UV +Face 7638 +UV Count: 3 + UV + UV + UV +Face 7639 +UV Count: 3 + UV + UV + UV +Face 7640 +UV Count: 3 + UV + UV + UV +Face 7641 +UV Count: 3 + UV + UV + UV +Face 7642 +UV Count: 3 + UV + UV + UV +Face 7643 +UV Count: 3 + UV + UV + UV +Face 7644 +UV Count: 3 + UV + UV + UV +Face 7645 +UV Count: 3 + UV + UV + UV +Face 7646 +UV Count: 3 + UV + UV + UV +Face 7647 +UV Count: 3 + UV + UV + UV +Face 7648 +UV Count: 3 + UV + UV + UV +Face 7649 +UV Count: 3 + UV + UV + UV +Face 7650 +UV Count: 3 + UV + UV + UV +Face 7651 +UV Count: 3 + UV + UV + UV +Face 7652 +UV Count: 3 + UV + UV + UV +Face 7653 +UV Count: 3 + UV + UV + UV +Face 7654 +UV Count: 3 + UV + UV + UV +Face 7655 +UV Count: 3 + UV + UV + UV +Face 7656 +UV Count: 3 + UV + UV + UV +Face 7657 +UV Count: 3 + UV + UV + UV +Face 7658 +UV Count: 3 + UV + UV + UV +Face 7659 +UV Count: 3 + UV + UV + UV +Face 7660 +UV Count: 3 + UV + UV + UV +Face 7661 +UV Count: 3 + UV + UV + UV +Face 7662 +UV Count: 3 + UV + UV + UV +Face 7663 +UV Count: 3 + UV + UV + UV +Face 7664 +UV Count: 3 + UV + UV + UV +Face 7665 +UV Count: 3 + UV + UV + UV +Face 7666 +UV Count: 3 + UV + UV + UV +Face 7667 +UV Count: 3 + UV + UV + UV +Face 7668 +UV Count: 3 + UV + UV + UV +Face 7669 +UV Count: 3 + UV + UV + UV +Face 7670 +UV Count: 3 + UV + UV + UV +Face 7671 +UV Count: 3 + UV + UV + UV +Face 7672 +UV Count: 3 + UV + UV + UV +Face 7673 +UV Count: 3 + UV + UV + UV +Face 7674 +UV Count: 3 + UV + UV + UV +Face 7675 +UV Count: 3 + UV + UV + UV +Face 7676 +UV Count: 3 + UV + UV + UV +Face 7677 +UV Count: 3 + UV + UV + UV +Face 7678 +UV Count: 3 + UV + UV + UV +Face 7679 +UV Count: 3 + UV + UV + UV +Face 7680 +UV Count: 3 + UV + UV + UV +Face 7681 +UV Count: 3 + UV + UV + UV +Face 7682 +UV Count: 3 + UV + UV + UV +Face 7683 +UV Count: 3 + UV + UV + UV +Face 7684 +UV Count: 3 + UV + UV + UV +Face 7685 +UV Count: 3 + UV + UV + UV +Face 7686 +UV Count: 3 + UV + UV + UV +Face 7687 +UV Count: 3 + UV + UV + UV +Face 7688 +UV Count: 3 + UV + UV + UV +Face 7689 +UV Count: 3 + UV + UV + UV +Face 7690 +UV Count: 3 + UV + UV + UV +Face 7691 +UV Count: 3 + UV + UV + UV +Face 7692 +UV Count: 3 + UV + UV + UV +Face 7693 +UV Count: 3 + UV + UV + UV +Face 7694 +UV Count: 3 + UV + UV + UV +Face 7695 +UV Count: 3 + UV + UV + UV +Face 7696 +UV Count: 3 + UV + UV + UV +Face 7697 +UV Count: 3 + UV + UV + UV +Face 7698 +UV Count: 3 + UV + UV + UV +Face 7699 +UV Count: 3 + UV + UV + UV +Face 7700 +UV Count: 3 + UV + UV + UV +Face 7701 +UV Count: 3 + UV + UV + UV +Face 7702 +UV Count: 3 + UV + UV + UV +Face 7703 +UV Count: 3 + UV + UV + UV +Face 7704 +UV Count: 3 + UV + UV + UV +Face 7705 +UV Count: 3 + UV + UV + UV +Face 7706 +UV Count: 3 + UV + UV + UV +Face 7707 +UV Count: 3 + UV + UV + UV +Face 7708 +UV Count: 3 + UV + UV + UV +Face 7709 +UV Count: 3 + UV + UV + UV +Face 7710 +UV Count: 3 + UV + UV + UV +Face 7711 +UV Count: 3 + UV + UV + UV +Face 7712 +UV Count: 3 + UV + UV + UV +Face 7713 +UV Count: 3 + UV + UV + UV +Face 7714 +UV Count: 3 + UV + UV + UV +Face 7715 +UV Count: 3 + UV + UV + UV +Face 7716 +UV Count: 3 + UV + UV + UV +Face 7717 +UV Count: 3 + UV + UV + UV +Face 7718 +UV Count: 3 + UV + UV + UV +Face 7719 +UV Count: 3 + UV + UV + UV +Face 7720 +UV Count: 3 + UV + UV + UV +Face 7721 +UV Count: 3 + UV + UV + UV +Face 7722 +UV Count: 3 + UV + UV + UV +Face 7723 +UV Count: 3 + UV + UV + UV +Face 7724 +UV Count: 3 + UV + UV + UV +Face 7725 +UV Count: 3 + UV + UV + UV +Face 7726 +UV Count: 3 + UV + UV + UV +Face 7727 +UV Count: 3 + UV + UV + UV +Face 7728 +UV Count: 3 + UV + UV + UV +Face 7729 +UV Count: 3 + UV + UV + UV +Face 7730 +UV Count: 3 + UV + UV + UV +Face 7731 +UV Count: 3 + UV + UV + UV +Face 7732 +UV Count: 3 + UV + UV + UV +Face 7733 +UV Count: 3 + UV + UV + UV +Face 7734 +UV Count: 3 + UV + UV + UV +Face 7735 +UV Count: 3 + UV + UV + UV +Face 7736 +UV Count: 3 + UV + UV + UV +Face 7737 +UV Count: 3 + UV + UV + UV +Face 7738 +UV Count: 3 + UV + UV + UV +Face 7739 +UV Count: 3 + UV + UV + UV +Face 7740 +UV Count: 3 + UV + UV + UV +Face 7741 +UV Count: 3 + UV + UV + UV +Face 7742 +UV Count: 3 + UV + UV + UV +Face 7743 +UV Count: 3 + UV + UV + UV +Face 7744 +UV Count: 3 + UV + UV + UV +Face 7745 +UV Count: 3 + UV + UV + UV +Face 7746 +UV Count: 3 + UV + UV + UV +Face 7747 +UV Count: 3 + UV + UV + UV +Face 7748 +UV Count: 3 + UV + UV + UV +Face 7749 +UV Count: 3 + UV + UV + UV +Face 7750 +UV Count: 3 + UV + UV + UV +Face 7751 +UV Count: 3 + UV + UV + UV +Face 7752 +UV Count: 3 + UV + UV + UV +Face 7753 +UV Count: 3 + UV + UV + UV +Face 7754 +UV Count: 3 + UV + UV + UV +Face 7755 +UV Count: 3 + UV + UV + UV +Face 7756 +UV Count: 3 + UV + UV + UV +Face 7757 +UV Count: 3 + UV + UV + UV +Face 7758 +UV Count: 3 + UV + UV + UV +Face 7759 +UV Count: 3 + UV + UV + UV +Face 7760 +UV Count: 3 + UV + UV + UV +Face 7761 +UV Count: 3 + UV + UV + UV +Face 7762 +UV Count: 3 + UV + UV + UV +Face 7763 +UV Count: 3 + UV + UV + UV +Face 7764 +UV Count: 3 + UV + UV + UV +Face 7765 +UV Count: 3 + UV + UV + UV +Face 7766 +UV Count: 3 + UV + UV + UV +Face 7767 +UV Count: 3 + UV + UV + UV +Face 7768 +UV Count: 3 + UV + UV + UV +Face 7769 +UV Count: 3 + UV + UV + UV +Face 7770 +UV Count: 3 + UV + UV + UV +Face 7771 +UV Count: 3 + UV + UV + UV +Face 7772 +UV Count: 3 + UV + UV + UV +Face 7773 +UV Count: 3 + UV + UV + UV +Face 7774 +UV Count: 3 + UV + UV + UV +Face 7775 +UV Count: 3 + UV + UV + UV +Face 7776 +UV Count: 3 + UV + UV + UV +Face 7777 +UV Count: 3 + UV + UV + UV +Face 7778 +UV Count: 3 + UV + UV + UV +Face 7779 +UV Count: 3 + UV + UV + UV +Face 7780 +UV Count: 3 + UV + UV + UV +Face 7781 +UV Count: 3 + UV + UV + UV +Face 7782 +UV Count: 3 + UV + UV + UV +Face 7783 +UV Count: 3 + UV + UV + UV +Face 7784 +UV Count: 3 + UV + UV + UV +Face 7785 +UV Count: 3 + UV + UV + UV +Face 7786 +UV Count: 3 + UV + UV + UV +Face 7787 +UV Count: 3 + UV + UV + UV +Face 7788 +UV Count: 3 + UV + UV + UV +Face 7789 +UV Count: 3 + UV + UV + UV +Face 7790 +UV Count: 3 + UV + UV + UV +Face 7791 +UV Count: 3 + UV + UV + UV +Face 7792 +UV Count: 3 + UV + UV + UV +Face 7793 +UV Count: 3 + UV + UV + UV +Face 7794 +UV Count: 3 + UV + UV + UV +Face 7795 +UV Count: 3 + UV + UV + UV +Face 7796 +UV Count: 3 + UV + UV + UV +Face 7797 +UV Count: 3 + UV + UV + UV +Face 7798 +UV Count: 3 + UV + UV + UV +Face 7799 +UV Count: 3 + UV + UV + UV +Face 7800 +UV Count: 3 + UV + UV + UV +Face 7801 +UV Count: 3 + UV + UV + UV +Face 7802 +UV Count: 3 + UV + UV + UV +Face 7803 +UV Count: 3 + UV + UV + UV +Face 7804 +UV Count: 3 + UV + UV + UV +Face 7805 +UV Count: 3 + UV + UV + UV +Face 7806 +UV Count: 3 + UV + UV + UV +Face 7807 +UV Count: 3 + UV + UV + UV +Face 7808 +UV Count: 3 + UV + UV + UV +Face 7809 +UV Count: 3 + UV + UV + UV +Face 7810 +UV Count: 3 + UV + UV + UV +Face 7811 +UV Count: 3 + UV + UV + UV +Face 7812 +UV Count: 3 + UV + UV + UV +Face 7813 +UV Count: 3 + UV + UV + UV +Face 7814 +UV Count: 3 + UV + UV + UV +Face 7815 +UV Count: 3 + UV + UV + UV +Face 7816 +UV Count: 3 + UV + UV + UV +Face 7817 +UV Count: 3 + UV + UV + UV +Face 7818 +UV Count: 3 + UV + UV + UV +Face 7819 +UV Count: 3 + UV + UV + UV +Face 7820 +UV Count: 3 + UV + UV + UV +Face 7821 +UV Count: 3 + UV + UV + UV +Face 7822 +UV Count: 3 + UV + UV + UV +Face 7823 +UV Count: 3 + UV + UV + UV +Face 7824 +UV Count: 3 + UV + UV + UV +Face 7825 +UV Count: 3 + UV + UV + UV +Face 7826 +UV Count: 3 + UV + UV + UV +Face 7827 +UV Count: 3 + UV + UV + UV +Face 7828 +UV Count: 3 + UV + UV + UV +Face 7829 +UV Count: 3 + UV + UV + UV +Face 7830 +UV Count: 3 + UV + UV + UV +Face 7831 +UV Count: 3 + UV + UV + UV +Face 7832 +UV Count: 3 + UV + UV + UV +Face 7833 +UV Count: 3 + UV + UV + UV +Face 7834 +UV Count: 3 + UV + UV + UV +Face 7835 +UV Count: 3 + UV + UV + UV +Face 7836 +UV Count: 3 + UV + UV + UV +Face 7837 +UV Count: 3 + UV + UV + UV +Face 7838 +UV Count: 3 + UV + UV + UV +Face 7839 +UV Count: 3 + UV + UV + UV +Face 7840 +UV Count: 3 + UV + UV + UV +Face 7841 +UV Count: 3 + UV + UV + UV +Face 7842 +UV Count: 3 + UV + UV + UV +Face 7843 +UV Count: 3 + UV + UV + UV +Face 7844 +UV Count: 3 + UV + UV + UV +Face 7845 +UV Count: 3 + UV + UV + UV +Face 7846 +UV Count: 3 + UV + UV + UV +Face 7847 +UV Count: 3 + UV + UV + UV +Face 7848 +UV Count: 3 + UV + UV + UV +Face 7849 +UV Count: 3 + UV + UV + UV +Face 7850 +UV Count: 3 + UV + UV + UV +Face 7851 +UV Count: 3 + UV + UV + UV +Face 7852 +UV Count: 3 + UV + UV + UV +Face 7853 +UV Count: 3 + UV + UV + UV +Face 7854 +UV Count: 3 + UV + UV + UV +Face 7855 +UV Count: 3 + UV + UV + UV +Face 7856 +UV Count: 3 + UV + UV + UV +Face 7857 +UV Count: 3 + UV + UV + UV +Face 7858 +UV Count: 3 + UV + UV + UV +Face 7859 +UV Count: 3 + UV + UV + UV +Face 7860 +UV Count: 3 + UV + UV + UV +Face 7861 +UV Count: 3 + UV + UV + UV +Face 7862 +UV Count: 3 + UV + UV + UV +Face 7863 +UV Count: 3 + UV + UV + UV +Face 7864 +UV Count: 3 + UV + UV + UV +Face 7865 +UV Count: 3 + UV + UV + UV +Face 7866 +UV Count: 3 + UV + UV + UV +Face 7867 +UV Count: 3 + UV + UV + UV +Face 7868 +UV Count: 3 + UV + UV + UV +Face 7869 +UV Count: 3 + UV + UV + UV +Face 7870 +UV Count: 3 + UV + UV + UV +Face 7871 +UV Count: 3 + UV + UV + UV +Face 7872 +UV Count: 3 + UV + UV + UV +Face 7873 +UV Count: 3 + UV + UV + UV +Face 7874 +UV Count: 3 + UV + UV + UV +Face 7875 +UV Count: 3 + UV + UV + UV +Face 7876 +UV Count: 3 + UV + UV + UV +Face 7877 +UV Count: 3 + UV + UV + UV +Face 7878 +UV Count: 3 + UV + UV + UV +Face 7879 +UV Count: 3 + UV + UV + UV +Face 7880 +UV Count: 3 + UV + UV + UV +Face 7881 +UV Count: 3 + UV + UV + UV +Face 7882 +UV Count: 3 + UV + UV + UV +Face 7883 +UV Count: 3 + UV + UV + UV +Face 7884 +UV Count: 3 + UV + UV + UV +Face 7885 +UV Count: 3 + UV + UV + UV +Face 7886 +UV Count: 3 + UV + UV + UV +Face 7887 +UV Count: 3 + UV + UV + UV +Face 7888 +UV Count: 3 + UV + UV + UV +Face 7889 +UV Count: 3 + UV + UV + UV +Face 7890 +UV Count: 3 + UV + UV + UV +Face 7891 +UV Count: 3 + UV + UV + UV +Face 7892 +UV Count: 3 + UV + UV + UV +Face 7893 +UV Count: 3 + UV + UV + UV +Face 7894 +UV Count: 3 + UV + UV + UV +Face 7895 +UV Count: 3 + UV + UV + UV +Face 7896 +UV Count: 3 + UV + UV + UV +Face 7897 +UV Count: 3 + UV + UV + UV +Face 7898 +UV Count: 3 + UV + UV + UV +Face 7899 +UV Count: 3 + UV + UV + UV +Face 7900 +UV Count: 3 + UV + UV + UV +Face 7901 +UV Count: 3 + UV + UV + UV +Face 7902 +UV Count: 3 + UV + UV + UV +Face 7903 +UV Count: 3 + UV + UV + UV +Face 7904 +UV Count: 3 + UV + UV + UV +Face 7905 +UV Count: 3 + UV + UV + UV +Face 7906 +UV Count: 3 + UV + UV + UV +Face 7907 +UV Count: 3 + UV + UV + UV +Face 7908 +UV Count: 3 + UV + UV + UV +Face 7909 +UV Count: 3 + UV + UV + UV +Face 7910 +UV Count: 3 + UV + UV + UV +Face 7911 +UV Count: 3 + UV + UV + UV +Face 7912 +UV Count: 3 + UV + UV + UV +Face 7913 +UV Count: 3 + UV + UV + UV +Face 7914 +UV Count: 3 + UV + UV + UV +Face 7915 +UV Count: 3 + UV + UV + UV +Face 7916 +UV Count: 3 + UV + UV + UV +Face 7917 +UV Count: 3 + UV + UV + UV +Face 7918 +UV Count: 3 + UV + UV + UV +Face 7919 +UV Count: 3 + UV + UV + UV +Face 7920 +UV Count: 3 + UV + UV + UV +Face 7921 +UV Count: 3 + UV + UV + UV +Face 7922 +UV Count: 3 + UV + UV + UV +Face 7923 +UV Count: 3 + UV + UV + UV +Face 7924 +UV Count: 3 + UV + UV + UV +Face 7925 +UV Count: 3 + UV + UV + UV +Face 7926 +UV Count: 3 + UV + UV + UV +Face 7927 +UV Count: 3 + UV + UV + UV +Face 7928 +UV Count: 3 + UV + UV + UV +Face 7929 +UV Count: 3 + UV + UV + UV +Face 7930 +UV Count: 3 + UV + UV + UV +Face 7931 +UV Count: 3 + UV + UV + UV +Face 7932 +UV Count: 3 + UV + UV + UV +Face 7933 +UV Count: 3 + UV + UV + UV +Face 7934 +UV Count: 3 + UV + UV + UV +Face 7935 +UV Count: 3 + UV + UV + UV +Face 7936 +UV Count: 3 + UV + UV + UV +Face 7937 +UV Count: 3 + UV + UV + UV +Face 7938 +UV Count: 3 + UV + UV + UV +Face 7939 +UV Count: 3 + UV + UV + UV +Face 7940 +UV Count: 3 + UV + UV + UV +Face 7941 +UV Count: 3 + UV + UV + UV +Face 7942 +UV Count: 3 + UV + UV + UV +Face 7943 +UV Count: 3 + UV + UV + UV +Face 7944 +UV Count: 3 + UV + UV + UV +Face 7945 +UV Count: 3 + UV + UV + UV +Face 7946 +UV Count: 3 + UV + UV + UV +Face 7947 +UV Count: 3 + UV + UV + UV +Face 7948 +UV Count: 3 + UV + UV + UV +Face 7949 +UV Count: 3 + UV + UV + UV +Face 7950 +UV Count: 3 + UV + UV + UV +Face 7951 +UV Count: 3 + UV + UV + UV +Face 7952 +UV Count: 3 + UV + UV + UV +Face 7953 +UV Count: 3 + UV + UV + UV +Face 7954 +UV Count: 3 + UV + UV + UV +Face 7955 +UV Count: 3 + UV + UV + UV +Face 7956 +UV Count: 3 + UV + UV + UV +Face 7957 +UV Count: 3 + UV + UV + UV +Face 7958 +UV Count: 3 + UV + UV + UV +Face 7959 +UV Count: 3 + UV + UV + UV +Face 7960 +UV Count: 3 + UV + UV + UV +Face 7961 +UV Count: 3 + UV + UV + UV +Face 7962 +UV Count: 3 + UV + UV + UV +Face 7963 +UV Count: 3 + UV + UV + UV +Face 7964 +UV Count: 3 + UV + UV + UV +Face 7965 +UV Count: 3 + UV + UV + UV +Face 7966 +UV Count: 3 + UV + UV + UV +Face 7967 +UV Count: 3 + UV + UV + UV +Face 7968 +UV Count: 3 + UV + UV + UV +Face 7969 +UV Count: 3 + UV + UV + UV +Face 7970 +UV Count: 3 + UV + UV + UV +Face 7971 +UV Count: 3 + UV + UV + UV +Face 7972 +UV Count: 3 + UV + UV + UV +Face 7973 +UV Count: 3 + UV + UV + UV +Face 7974 +UV Count: 3 + UV + UV + UV +Face 7975 +UV Count: 3 + UV + UV + UV +Face 7976 +UV Count: 3 + UV + UV + UV +Face 7977 +UV Count: 3 + UV + UV + UV +Face 7978 +UV Count: 3 + UV + UV + UV +Face 7979 +UV Count: 3 + UV + UV + UV +Face 7980 +UV Count: 3 + UV + UV + UV +Face 7981 +UV Count: 3 + UV + UV + UV +Face 7982 +UV Count: 3 + UV + UV + UV +Face 7983 +UV Count: 3 + UV + UV + UV +Face 7984 +UV Count: 3 + UV + UV + UV +Face 7985 +UV Count: 3 + UV + UV + UV +Face 7986 +UV Count: 3 + UV + UV + UV +Face 7987 +UV Count: 3 + UV + UV + UV +Face 7988 +UV Count: 3 + UV + UV + UV +Face 7989 +UV Count: 3 + UV + UV + UV +Face 7990 +UV Count: 3 + UV + UV + UV +Face 7991 +UV Count: 3 + UV + UV + UV +Face 7992 +UV Count: 3 + UV + UV + UV +Face 7993 +UV Count: 3 + UV + UV + UV +Face 7994 +UV Count: 3 + UV + UV + UV +Face 7995 +UV Count: 3 + UV + UV + UV +Face 7996 +UV Count: 3 + UV + UV + UV +Face 7997 +UV Count: 3 + UV + UV + UV +Face 7998 +UV Count: 3 + UV + UV + UV +Face 7999 +UV Count: 3 + UV + UV + UV +Face 8000 +UV Count: 3 + UV + UV + UV +Face 8001 +UV Count: 3 + UV + UV + UV +Face 8002 +UV Count: 3 + UV + UV + UV +Face 8003 +UV Count: 3 + UV + UV + UV +Face 8004 +UV Count: 3 + UV + UV + UV +Face 8005 +UV Count: 3 + UV + UV + UV +Face 8006 +UV Count: 3 + UV + UV + UV +Face 8007 +UV Count: 3 + UV + UV + UV +Face 8008 +UV Count: 3 + UV + UV + UV +Face 8009 +UV Count: 3 + UV + UV + UV +Face 8010 +UV Count: 3 + UV + UV + UV +Face 8011 +UV Count: 3 + UV + UV + UV +Face 8012 +UV Count: 3 + UV + UV + UV +Face 8013 +UV Count: 3 + UV + UV + UV +Face 8014 +UV Count: 3 + UV + UV + UV +Face 8015 +UV Count: 3 + UV + UV + UV +Face 8016 +UV Count: 3 + UV + UV + UV +Face 8017 +UV Count: 3 + UV + UV + UV +Face 8018 +UV Count: 3 + UV + UV + UV +Face 8019 +UV Count: 3 + UV + UV + UV +Face 8020 +UV Count: 3 + UV + UV + UV +Face 8021 +UV Count: 3 + UV + UV + UV +Face 8022 +UV Count: 3 + UV + UV + UV +Face 8023 +UV Count: 3 + UV + UV + UV +Face 8024 +UV Count: 3 + UV + UV + UV +Face 8025 +UV Count: 3 + UV + UV + UV +Face 8026 +UV Count: 3 + UV + UV + UV +Face 8027 +UV Count: 3 + UV + UV + UV +Face 8028 +UV Count: 3 + UV + UV + UV +Face 8029 +UV Count: 3 + UV + UV + UV +Face 8030 +UV Count: 3 + UV + UV + UV +Face 8031 +UV Count: 3 + UV + UV + UV +Face 8032 +UV Count: 3 + UV + UV + UV +Face 8033 +UV Count: 3 + UV + UV + UV +Face 8034 +UV Count: 3 + UV + UV + UV +Face 8035 +UV Count: 3 + UV + UV + UV +Face 8036 +UV Count: 3 + UV + UV + UV +Face 8037 +UV Count: 3 + UV + UV + UV +Face 8038 +UV Count: 3 + UV + UV + UV +Face 8039 +UV Count: 3 + UV + UV + UV +Face 8040 +UV Count: 3 + UV + UV + UV +Face 8041 +UV Count: 3 + UV + UV + UV +Face 8042 +UV Count: 3 + UV + UV + UV +Face 8043 +UV Count: 3 + UV + UV + UV +Face 8044 +UV Count: 3 + UV + UV + UV +Face 8045 +UV Count: 3 + UV + UV + UV +Face 8046 +UV Count: 3 + UV + UV + UV +Face 8047 +UV Count: 3 + UV + UV + UV +Face 8048 +UV Count: 3 + UV + UV + UV +Face 8049 +UV Count: 3 + UV + UV + UV +Face 8050 +UV Count: 3 + UV + UV + UV +Face 8051 +UV Count: 3 + UV + UV + UV +Face 8052 +UV Count: 3 + UV + UV + UV +Face 8053 +UV Count: 3 + UV + UV + UV +Face 8054 +UV Count: 3 + UV + UV + UV +Face 8055 +UV Count: 3 + UV + UV + UV +Face 8056 +UV Count: 3 + UV + UV + UV +Face 8057 +UV Count: 3 + UV + UV + UV +Face 8058 +UV Count: 3 + UV + UV + UV +Face 8059 +UV Count: 3 + UV + UV + UV +Face 8060 +UV Count: 3 + UV + UV + UV +Face 8061 +UV Count: 3 + UV + UV + UV +Face 8062 +UV Count: 3 + UV + UV + UV +Face 8063 +UV Count: 3 + UV + UV + UV +Face 8064 +UV Count: 3 + UV + UV + UV +Face 8065 +UV Count: 3 + UV + UV + UV +Face 8066 +UV Count: 3 + UV + UV + UV +Face 8067 +UV Count: 3 + UV + UV + UV +Face 8068 +UV Count: 3 + UV + UV + UV +Face 8069 +UV Count: 3 + UV + UV + UV +Face 8070 +UV Count: 3 + UV + UV + UV +Face 8071 +UV Count: 3 + UV + UV + UV +Face 8072 +UV Count: 3 + UV + UV + UV +Face 8073 +UV Count: 3 + UV + UV + UV +Face 8074 +UV Count: 3 + UV + UV + UV +Face 8075 +UV Count: 3 + UV + UV + UV +Face 8076 +UV Count: 3 + UV + UV + UV +Face 8077 +UV Count: 3 + UV + UV + UV +Face 8078 +UV Count: 3 + UV + UV + UV +Face 8079 +UV Count: 3 + UV + UV + UV +Face 8080 +UV Count: 3 + UV + UV + UV +Face 8081 +UV Count: 3 + UV + UV + UV +Face 8082 +UV Count: 3 + UV + UV + UV +Face 8083 +UV Count: 3 + UV + UV + UV +Face 8084 +UV Count: 3 + UV + UV + UV +Face 8085 +UV Count: 3 + UV + UV + UV +Face 8086 +UV Count: 3 + UV + UV + UV +Face 8087 +UV Count: 3 + UV + UV + UV +Face 8088 +UV Count: 3 + UV + UV + UV +Face 8089 +UV Count: 3 + UV + UV + UV +Face 8090 +UV Count: 3 + UV + UV + UV +Face 8091 +UV Count: 3 + UV + UV + UV +Face 8092 +UV Count: 3 + UV + UV + UV +Face 8093 +UV Count: 3 + UV + UV + UV +Face 8094 +UV Count: 3 + UV + UV + UV +Face 8095 +UV Count: 3 + UV + UV + UV +Face 8096 +UV Count: 3 + UV + UV + UV +Face 8097 +UV Count: 3 + UV + UV + UV +Face 8098 +UV Count: 3 + UV + UV + UV +Face 8099 +UV Count: 3 + UV + UV + UV +Face 8100 +UV Count: 3 + UV + UV + UV +Face 8101 +UV Count: 3 + UV + UV + UV +Face 8102 +UV Count: 3 + UV + UV + UV +Face 8103 +UV Count: 3 + UV + UV + UV +Face 8104 +UV Count: 3 + UV + UV + UV +Face 8105 +UV Count: 3 + UV + UV + UV +Face 8106 +UV Count: 3 + UV + UV + UV +Face 8107 +UV Count: 3 + UV + UV + UV +Face 8108 +UV Count: 3 + UV + UV + UV +Face 8109 +UV Count: 3 + UV + UV + UV +Face 8110 +UV Count: 3 + UV + UV + UV +Face 8111 +UV Count: 3 + UV + UV + UV +Face 8112 +UV Count: 3 + UV + UV + UV +Face 8113 +UV Count: 3 + UV + UV + UV +Face 8114 +UV Count: 3 + UV + UV + UV +Face 8115 +UV Count: 3 + UV + UV + UV +Face 8116 +UV Count: 3 + UV + UV + UV +Face 8117 +UV Count: 3 + UV + UV + UV +Face 8118 +UV Count: 3 + UV + UV + UV +Face 8119 +UV Count: 3 + UV + UV + UV +Face 8120 +UV Count: 3 + UV + UV + UV +Face 8121 +UV Count: 3 + UV + UV + UV +Face 8122 +UV Count: 3 + UV + UV + UV +Face 8123 +UV Count: 3 + UV + UV + UV +Face 8124 +UV Count: 3 + UV + UV + UV +Face 8125 +UV Count: 3 + UV + UV + UV +Face 8126 +UV Count: 3 + UV + UV + UV +Face 8127 +UV Count: 3 + UV + UV + UV +Face 8128 +UV Count: 3 + UV + UV + UV +Face 8129 +UV Count: 3 + UV + UV + UV +Face 8130 +UV Count: 3 + UV + UV + UV +Face 8131 +UV Count: 3 + UV + UV + UV +Face 8132 +UV Count: 3 + UV + UV + UV +Face 8133 +UV Count: 3 + UV + UV + UV +Face 8134 +UV Count: 3 + UV + UV + UV +Face 8135 +UV Count: 3 + UV + UV + UV +Face 8136 +UV Count: 3 + UV + UV + UV +Face 8137 +UV Count: 3 + UV + UV + UV +Face 8138 +UV Count: 3 + UV + UV + UV +Face 8139 +UV Count: 3 + UV + UV + UV +Face 8140 +UV Count: 3 + UV + UV + UV +Face 8141 +UV Count: 3 + UV + UV + UV +Face 8142 +UV Count: 3 + UV + UV + UV +Face 8143 +UV Count: 3 + UV + UV + UV +Face 8144 +UV Count: 3 + UV + UV + UV +Face 8145 +UV Count: 3 + UV + UV + UV +Face 8146 +UV Count: 3 + UV + UV + UV +Face 8147 +UV Count: 3 + UV + UV + UV +Face 8148 +UV Count: 3 + UV + UV + UV +Face 8149 +UV Count: 3 + UV + UV + UV +Face 8150 +UV Count: 3 + UV + UV + UV +Face 8151 +UV Count: 3 + UV + UV + UV +Face 8152 +UV Count: 3 + UV + UV + UV +Face 8153 +UV Count: 3 + UV + UV + UV +Face 8154 +UV Count: 3 + UV + UV + UV +Face 8155 +UV Count: 3 + UV + UV + UV +Face 8156 +UV Count: 3 + UV + UV + UV +Face 8157 +UV Count: 3 + UV + UV + UV +Face 8158 +UV Count: 3 + UV + UV + UV +Face 8159 +UV Count: 3 + UV + UV + UV +Face 8160 +UV Count: 3 + UV + UV + UV +Face 8161 +UV Count: 3 + UV + UV + UV +Face 8162 +UV Count: 3 + UV + UV + UV +Face 8163 +UV Count: 3 + UV + UV + UV +Face 8164 +UV Count: 3 + UV + UV + UV +Face 8165 +UV Count: 3 + UV + UV + UV +Face 8166 +UV Count: 3 + UV + UV + UV +Face 8167 +UV Count: 3 + UV + UV + UV +Face 8168 +UV Count: 3 + UV + UV + UV +Face 8169 +UV Count: 3 + UV + UV + UV +Face 8170 +UV Count: 3 + UV + UV + UV +Face 8171 +UV Count: 3 + UV + UV + UV +Face 8172 +UV Count: 3 + UV + UV + UV +Face 8173 +UV Count: 3 + UV + UV + UV +Face 8174 +UV Count: 3 + UV + UV + UV +Face 8175 +UV Count: 3 + UV + UV + UV +Face 8176 +UV Count: 3 + UV + UV + UV +Face 8177 +UV Count: 3 + UV + UV + UV +Face 8178 +UV Count: 3 + UV + UV + UV +Face 8179 +UV Count: 3 + UV + UV + UV +Face 8180 +UV Count: 3 + UV + UV + UV +Face 8181 +UV Count: 3 + UV + UV + UV +Face 8182 +UV Count: 3 + UV + UV + UV +Face 8183 +UV Count: 3 + UV + UV + UV +Face 8184 +UV Count: 3 + UV + UV + UV +Face 8185 +UV Count: 3 + UV + UV + UV +Face 8186 +UV Count: 3 + UV + UV + UV +Face 8187 +UV Count: 3 + UV + UV + UV +Face 8188 +UV Count: 3 + UV + UV + UV +Face 8189 +UV Count: 3 + UV + UV + UV +Face 8190 +UV Count: 3 + UV + UV + UV +Face 8191 +UV Count: 3 + UV + UV + UV +Face 8192 +UV Count: 3 + UV + UV + UV +Face 8193 +UV Count: 3 + UV + UV + UV +Face 8194 +UV Count: 3 + UV + UV + UV +Face 8195 +UV Count: 3 + UV + UV + UV +Face 8196 +UV Count: 3 + UV + UV + UV +Face 8197 +UV Count: 3 + UV + UV + UV +Face 8198 +UV Count: 3 + UV + UV + UV +Face 8199 +UV Count: 3 + UV + UV + UV +Face 8200 +UV Count: 3 + UV + UV + UV +Face 8201 +UV Count: 3 + UV + UV + UV +Face 8202 +UV Count: 3 + UV + UV + UV +Face 8203 +UV Count: 3 + UV + UV + UV +Face 8204 +UV Count: 3 + UV + UV + UV +Face 8205 +UV Count: 3 + UV + UV + UV +Face 8206 +UV Count: 3 + UV + UV + UV +Face 8207 +UV Count: 3 + UV + UV + UV +Face 8208 +UV Count: 3 + UV + UV + UV +Face 8209 +UV Count: 3 + UV + UV + UV +Face 8210 +UV Count: 3 + UV + UV + UV +Face 8211 +UV Count: 3 + UV + UV + UV +Face 8212 +UV Count: 3 + UV + UV + UV +Face 8213 +UV Count: 3 + UV + UV + UV +Face 8214 +UV Count: 3 + UV + UV + UV +Face 8215 +UV Count: 3 + UV + UV + UV +Face 8216 +UV Count: 3 + UV + UV + UV +Face 8217 +UV Count: 3 + UV + UV + UV +Face 8218 +UV Count: 3 + UV + UV + UV +Face 8219 +UV Count: 3 + UV + UV + UV +Face 8220 +UV Count: 3 + UV + UV + UV +Face 8221 +UV Count: 3 + UV + UV + UV +Face 8222 +UV Count: 3 + UV + UV + UV +Face 8223 +UV Count: 3 + UV + UV + UV +Face 8224 +UV Count: 3 + UV + UV + UV +Face 8225 +UV Count: 3 + UV + UV + UV +Face 8226 +UV Count: 3 + UV + UV + UV +Face 8227 +UV Count: 3 + UV + UV + UV +Face 8228 +UV Count: 3 + UV + UV + UV +Face 8229 +UV Count: 3 + UV + UV + UV +Face 8230 +UV Count: 3 + UV + UV + UV +Face 8231 +UV Count: 3 + UV + UV + UV +Face 8232 +UV Count: 3 + UV + UV + UV +Face 8233 +UV Count: 3 + UV + UV + UV +Face 8234 +UV Count: 3 + UV + UV + UV +Face 8235 +UV Count: 3 + UV + UV + UV +Face 8236 +UV Count: 3 + UV + UV + UV +Face 8237 +UV Count: 3 + UV + UV + UV +Face 8238 +UV Count: 3 + UV + UV + UV +Face 8239 +UV Count: 3 + UV + UV + UV +Face 8240 +UV Count: 3 + UV + UV + UV +Face 8241 +UV Count: 3 + UV + UV + UV +Face 8242 +UV Count: 3 + UV + UV + UV +Face 8243 +UV Count: 3 + UV + UV + UV +Face 8244 +UV Count: 3 + UV + UV + UV +Face 8245 +UV Count: 3 + UV + UV + UV +Face 8246 +UV Count: 3 + UV + UV + UV +Face 8247 +UV Count: 3 + UV + UV + UV +Face 8248 +UV Count: 3 + UV + UV + UV +Face 8249 +UV Count: 3 + UV + UV + UV +Face 8250 +UV Count: 3 + UV + UV + UV +Face 8251 +UV Count: 3 + UV + UV + UV +Face 8252 +UV Count: 3 + UV + UV + UV +Face 8253 +UV Count: 3 + UV + UV + UV +Face 8254 +UV Count: 3 + UV + UV + UV +Face 8255 +UV Count: 3 + UV + UV + UV +Face 8256 +UV Count: 3 + UV + UV + UV +Face 8257 +UV Count: 3 + UV + UV + UV +Face 8258 +UV Count: 3 + UV + UV + UV +Face 8259 +UV Count: 3 + UV + UV + UV +Face 8260 +UV Count: 3 + UV + UV + UV +Face 8261 +UV Count: 3 + UV + UV + UV +Face 8262 +UV Count: 3 + UV + UV + UV +Face 8263 +UV Count: 3 + UV + UV + UV +Face 8264 +UV Count: 3 + UV + UV + UV +Face 8265 +UV Count: 3 + UV + UV + UV +Face 8266 +UV Count: 3 + UV + UV + UV +Face 8267 +UV Count: 3 + UV + UV + UV +Face 8268 +UV Count: 3 + UV + UV + UV +Face 8269 +UV Count: 3 + UV + UV + UV +Face 8270 +UV Count: 3 + UV + UV + UV +Face 8271 +UV Count: 3 + UV + UV + UV +Face 8272 +UV Count: 3 + UV + UV + UV +Face 8273 +UV Count: 3 + UV + UV + UV +Face 8274 +UV Count: 3 + UV + UV + UV +Face 8275 +UV Count: 3 + UV + UV + UV +Face 8276 +UV Count: 3 + UV + UV + UV +Face 8277 +UV Count: 3 + UV + UV + UV +Face 8278 +UV Count: 3 + UV + UV + UV +Face 8279 +UV Count: 3 + UV + UV + UV +Face 8280 +UV Count: 3 + UV + UV + UV +Face 8281 +UV Count: 3 + UV + UV + UV +Face 8282 +UV Count: 3 + UV + UV + UV +Face 8283 +UV Count: 3 + UV + UV + UV +Face 8284 +UV Count: 3 + UV + UV + UV +Face 8285 +UV Count: 3 + UV + UV + UV +Face 8286 +UV Count: 3 + UV + UV + UV +Face 8287 +UV Count: 3 + UV + UV + UV +Face 8288 +UV Count: 3 + UV + UV + UV +Face 8289 +UV Count: 3 + UV + UV + UV +Face 8290 +UV Count: 3 + UV + UV + UV +Face 8291 +UV Count: 3 + UV + UV + UV +Face 8292 +UV Count: 3 + UV + UV + UV +Face 8293 +UV Count: 3 + UV + UV + UV +Face 8294 +UV Count: 3 + UV + UV + UV +Face 8295 +UV Count: 3 + UV + UV + UV +Face 8296 +UV Count: 3 + UV + UV + UV +Face 8297 +UV Count: 3 + UV + UV + UV +Face 8298 +UV Count: 3 + UV + UV + UV +Face 8299 +UV Count: 3 + UV + UV + UV +Face 8300 +UV Count: 3 + UV + UV + UV +Face 8301 +UV Count: 3 + UV + UV + UV +Face 8302 +UV Count: 3 + UV + UV + UV +Face 8303 +UV Count: 3 + UV + UV + UV +Face 8304 +UV Count: 3 + UV + UV + UV +Face 8305 +UV Count: 3 + UV + UV + UV +Face 8306 +UV Count: 3 + UV + UV + UV +Face 8307 +UV Count: 3 + UV + UV + UV +Face 8308 +UV Count: 3 + UV + UV + UV +Face 8309 +UV Count: 3 + UV + UV + UV +Face 8310 +UV Count: 3 + UV + UV + UV +Face 8311 +UV Count: 3 + UV + UV + UV +Face 8312 +UV Count: 3 + UV + UV + UV +Face 8313 +UV Count: 3 + UV + UV + UV +Face 8314 +UV Count: 3 + UV + UV + UV +Face 8315 +UV Count: 3 + UV + UV + UV +Face 8316 +UV Count: 3 + UV + UV + UV +Face 8317 +UV Count: 3 + UV + UV + UV +Face 8318 +UV Count: 3 + UV + UV + UV +Face 8319 +UV Count: 3 + UV + UV + UV +Face 8320 +UV Count: 3 + UV + UV + UV +Face 8321 +UV Count: 3 + UV + UV + UV +Face 8322 +UV Count: 3 + UV + UV + UV +Face 8323 +UV Count: 3 + UV + UV + UV +Face 8324 +UV Count: 3 + UV + UV + UV +Face 8325 +UV Count: 3 + UV + UV + UV +Face 8326 +UV Count: 3 + UV + UV + UV +Face 8327 +UV Count: 3 + UV + UV + UV +Face 8328 +UV Count: 3 + UV + UV + UV +Face 8329 +UV Count: 3 + UV + UV + UV +Face 8330 +UV Count: 3 + UV + UV + UV +Face 8331 +UV Count: 3 + UV + UV + UV +Face 8332 +UV Count: 3 + UV + UV + UV +Face 8333 +UV Count: 3 + UV + UV + UV +Face 8334 +UV Count: 3 + UV + UV + UV +Face 8335 +UV Count: 3 + UV + UV + UV +Face 8336 +UV Count: 3 + UV + UV + UV +Face 8337 +UV Count: 3 + UV + UV + UV +Face 8338 +UV Count: 3 + UV + UV + UV +Face 8339 +UV Count: 3 + UV + UV + UV +Face 8340 +UV Count: 3 + UV + UV + UV +Face 8341 +UV Count: 3 + UV + UV + UV +Face 8342 +UV Count: 3 + UV + UV + UV +Face 8343 +UV Count: 3 + UV + UV + UV +Face 8344 +UV Count: 3 + UV + UV + UV +Face 8345 +UV Count: 3 + UV + UV + UV +Face 8346 +UV Count: 3 + UV + UV + UV +Face 8347 +UV Count: 3 + UV + UV + UV +Face 8348 +UV Count: 3 + UV + UV + UV +Face 8349 +UV Count: 3 + UV + UV + UV +Face 8350 +UV Count: 3 + UV + UV + UV +Face 8351 +UV Count: 3 + UV + UV + UV +Face 8352 +UV Count: 3 + UV + UV + UV +Face 8353 +UV Count: 3 + UV + UV + UV +Face 8354 +UV Count: 3 + UV + UV + UV +Face 8355 +UV Count: 3 + UV + UV + UV +Face 8356 +UV Count: 3 + UV + UV + UV +Face 8357 +UV Count: 3 + UV + UV + UV +Face 8358 +UV Count: 3 + UV + UV + UV +Face 8359 +UV Count: 3 + UV + UV + UV +Face 8360 +UV Count: 3 + UV + UV + UV +Face 8361 +UV Count: 3 + UV + UV + UV +Face 8362 +UV Count: 3 + UV + UV + UV +Face 8363 +UV Count: 3 + UV + UV + UV +Face 8364 +UV Count: 3 + UV + UV + UV +Face 8365 +UV Count: 3 + UV + UV + UV +Face 8366 +UV Count: 3 + UV + UV + UV +Face 8367 +UV Count: 3 + UV + UV + UV +Face 8368 +UV Count: 3 + UV + UV + UV +Face 8369 +UV Count: 3 + UV + UV + UV +Face 8370 +UV Count: 3 + UV + UV + UV +Face 8371 +UV Count: 3 + UV + UV + UV +Face 8372 +UV Count: 3 + UV + UV + UV +Face 8373 +UV Count: 3 + UV + UV + UV +Face 8374 +UV Count: 3 + UV + UV + UV +Face 8375 +UV Count: 3 + UV + UV + UV +Face 8376 +UV Count: 3 + UV + UV + UV +Face 8377 +UV Count: 3 + UV + UV + UV +Face 8378 +UV Count: 3 + UV + UV + UV +Face 8379 +UV Count: 3 + UV + UV + UV +Face 8380 +UV Count: 3 + UV + UV + UV +Face 8381 +UV Count: 3 + UV + UV + UV +Face 8382 +UV Count: 3 + UV + UV + UV +Face 8383 +UV Count: 3 + UV + UV + UV +Face 8384 +UV Count: 3 + UV + UV + UV +Face 8385 +UV Count: 3 + UV + UV + UV +Face 8386 +UV Count: 3 + UV + UV + UV +Face 8387 +UV Count: 3 + UV + UV + UV +Face 8388 +UV Count: 3 + UV + UV + UV +Face 8389 +UV Count: 3 + UV + UV + UV +Face 8390 +UV Count: 3 + UV + UV + UV +Face 8391 +UV Count: 3 + UV + UV + UV +Face 8392 +UV Count: 3 + UV + UV + UV +Face 8393 +UV Count: 3 + UV + UV + UV +Face 8394 +UV Count: 3 + UV + UV + UV +Face 8395 +UV Count: 3 + UV + UV + UV +Face 8396 +UV Count: 3 + UV + UV + UV +Face 8397 +UV Count: 3 + UV + UV + UV +Face 8398 +UV Count: 3 + UV + UV + UV +Face 8399 +UV Count: 3 + UV + UV + UV +Face 8400 +UV Count: 3 + UV + UV + UV +Face 8401 +UV Count: 3 + UV + UV + UV +Face 8402 +UV Count: 3 + UV + UV + UV +Face 8403 +UV Count: 3 + UV + UV + UV +Face 8404 +UV Count: 3 + UV + UV + UV +Face 8405 +UV Count: 3 + UV + UV + UV +Face 8406 +UV Count: 3 + UV + UV + UV +Face 8407 +UV Count: 3 + UV + UV + UV +Face 8408 +UV Count: 3 + UV + UV + UV +Face 8409 +UV Count: 3 + UV + UV + UV +Face 8410 +UV Count: 3 + UV + UV + UV +Face 8411 +UV Count: 3 + UV + UV + UV +Face 8412 +UV Count: 3 + UV + UV + UV +Face 8413 +UV Count: 3 + UV + UV + UV +Face 8414 +UV Count: 3 + UV + UV + UV +Face 8415 +UV Count: 3 + UV + UV + UV +Face 8416 +UV Count: 3 + UV + UV + UV +Face 8417 +UV Count: 3 + UV + UV + UV +Face 8418 +UV Count: 3 + UV + UV + UV +Face 8419 +UV Count: 3 + UV + UV + UV +Face 8420 +UV Count: 3 + UV + UV + UV +Face 8421 +UV Count: 3 + UV + UV + UV +Face 8422 +UV Count: 3 + UV + UV + UV +Face 8423 +UV Count: 3 + UV + UV + UV +Face 8424 +UV Count: 3 + UV + UV + UV +Face 8425 +UV Count: 3 + UV + UV + UV +Face 8426 +UV Count: 3 + UV + UV + UV +Face 8427 +UV Count: 3 + UV + UV + UV +Face 8428 +UV Count: 3 + UV + UV + UV +Face 8429 +UV Count: 3 + UV + UV + UV +Face 8430 +UV Count: 3 + UV + UV + UV +Face 8431 +UV Count: 3 + UV + UV + UV +Face 8432 +UV Count: 3 + UV + UV + UV +Face 8433 +UV Count: 3 + UV + UV + UV +Face 8434 +UV Count: 3 + UV + UV + UV +Face 8435 +UV Count: 3 + UV + UV + UV +Face 8436 +UV Count: 3 + UV + UV + UV +Face 8437 +UV Count: 3 + UV + UV + UV +Face 8438 +UV Count: 3 + UV + UV + UV +Face 8439 +UV Count: 3 + UV + UV + UV +Face 8440 +UV Count: 3 + UV + UV + UV +Face 8441 +UV Count: 3 + UV + UV + UV +Face 8442 +UV Count: 3 + UV + UV + UV +Face 8443 +UV Count: 3 + UV + UV + UV +Face 8444 +UV Count: 3 + UV + UV + UV +Face 8445 +UV Count: 3 + UV + UV + UV +Face 8446 +UV Count: 3 + UV + UV + UV +Face 8447 +UV Count: 3 + UV + UV + UV +Face 8448 +UV Count: 3 + UV + UV + UV +Face 8449 +UV Count: 3 + UV + UV + UV +Face 8450 +UV Count: 3 + UV + UV + UV +Face 8451 +UV Count: 3 + UV + UV + UV +Face 8452 +UV Count: 3 + UV + UV + UV +Face 8453 +UV Count: 3 + UV + UV + UV +Face 8454 +UV Count: 3 + UV + UV + UV +Face 8455 +UV Count: 3 + UV + UV + UV +Face 8456 +UV Count: 3 + UV + UV + UV +Face 8457 +UV Count: 3 + UV + UV + UV +Face 8458 +UV Count: 3 + UV + UV + UV +Face 8459 +UV Count: 3 + UV + UV + UV +Face 8460 +UV Count: 3 + UV + UV + UV +Face 8461 +UV Count: 3 + UV + UV + UV +Face 8462 +UV Count: 3 + UV + UV + UV +Face 8463 +UV Count: 3 + UV + UV + UV +Face 8464 +UV Count: 3 + UV + UV + UV +Face 8465 +UV Count: 3 + UV + UV + UV +Face 8466 +UV Count: 3 + UV + UV + UV +Face 8467 +UV Count: 3 + UV + UV + UV +Face 8468 +UV Count: 3 + UV + UV + UV +Face 8469 +UV Count: 3 + UV + UV + UV +Face 8470 +UV Count: 3 + UV + UV + UV +Face 8471 +UV Count: 3 + UV + UV + UV +Face 8472 +UV Count: 3 + UV + UV + UV +Face 8473 +UV Count: 3 + UV + UV + UV +Face 8474 +UV Count: 3 + UV + UV + UV +Face 8475 +UV Count: 3 + UV + UV + UV +Face 8476 +UV Count: 3 + UV + UV + UV +Face 8477 +UV Count: 3 + UV + UV + UV +Face 8478 +UV Count: 3 + UV + UV + UV +Face 8479 +UV Count: 3 + UV + UV + UV +Face 8480 +UV Count: 3 + UV + UV + UV +Face 8481 +UV Count: 3 + UV + UV + UV +Face 8482 +UV Count: 3 + UV + UV + UV +Face 8483 +UV Count: 3 + UV + UV + UV +Face 8484 +UV Count: 3 + UV + UV + UV +Face 8485 +UV Count: 3 + UV + UV + UV +Face 8486 +UV Count: 3 + UV + UV + UV +Face 8487 +UV Count: 3 + UV + UV + UV +Face 8488 +UV Count: 3 + UV + UV + UV +Face 8489 +UV Count: 3 + UV + UV + UV +Face 8490 +UV Count: 3 + UV + UV + UV +Face 8491 +UV Count: 3 + UV + UV + UV +Face 8492 +UV Count: 3 + UV + UV + UV +Face 8493 +UV Count: 3 + UV + UV + UV +Face 8494 +UV Count: 3 + UV + UV + UV +Face 8495 +UV Count: 3 + UV + UV + UV +Face 8496 +UV Count: 3 + UV + UV + UV +Face 8497 +UV Count: 3 + UV + UV + UV +Face 8498 +UV Count: 3 + UV + UV + UV +Face 8499 +UV Count: 3 + UV + UV + UV +Face 8500 +UV Count: 3 + UV + UV + UV +Face 8501 +UV Count: 3 + UV + UV + UV +Face 8502 +UV Count: 3 + UV + UV + UV +Face 8503 +UV Count: 3 + UV + UV + UV +Face 8504 +UV Count: 3 + UV + UV + UV +Face 8505 +UV Count: 3 + UV + UV + UV +Face 8506 +UV Count: 3 + UV + UV + UV +Face 8507 +UV Count: 3 + UV + UV + UV +Face 8508 +UV Count: 3 + UV + UV + UV +Face 8509 +UV Count: 3 + UV + UV + UV +Face 8510 +UV Count: 3 + UV + UV + UV +Face 8511 +UV Count: 3 + UV + UV + UV +Face 8512 +UV Count: 3 + UV + UV + UV +Face 8513 +UV Count: 3 + UV + UV + UV +Face 8514 +UV Count: 3 + UV + UV + UV +Face 8515 +UV Count: 3 + UV + UV + UV +Face 8516 +UV Count: 3 + UV + UV + UV +Face 8517 +UV Count: 3 + UV + UV + UV +Face 8518 +UV Count: 3 + UV + UV + UV +Face 8519 +UV Count: 3 + UV + UV + UV +Face 8520 +UV Count: 3 + UV + UV + UV +Face 8521 +UV Count: 3 + UV + UV + UV +Face 8522 +UV Count: 3 + UV + UV + UV +Face 8523 +UV Count: 3 + UV + UV + UV +Face 8524 +UV Count: 3 + UV + UV + UV +Face 8525 +UV Count: 3 + UV + UV + UV +Face 8526 +UV Count: 3 + UV + UV + UV +Face 8527 +UV Count: 3 + UV + UV + UV +Face 8528 +UV Count: 3 + UV + UV + UV +Face 8529 +UV Count: 3 + UV + UV + UV +Face 8530 +UV Count: 3 + UV + UV + UV +Face 8531 +UV Count: 3 + UV + UV + UV +Face 8532 +UV Count: 3 + UV + UV + UV +Face 8533 +UV Count: 3 + UV + UV + UV +Face 8534 +UV Count: 3 + UV + UV + UV +Face 8535 +UV Count: 3 + UV + UV + UV +Face 8536 +UV Count: 3 + UV + UV + UV +Face 8537 +UV Count: 3 + UV + UV + UV +Face 8538 +UV Count: 3 + UV + UV + UV +Face 8539 +UV Count: 3 + UV + UV + UV +Face 8540 +UV Count: 3 + UV + UV + UV +Face 8541 +UV Count: 3 + UV + UV + UV +Face 8542 +UV Count: 3 + UV + UV + UV +Face 8543 +UV Count: 3 + UV + UV + UV +Face 8544 +UV Count: 3 + UV + UV + UV +Face 8545 +UV Count: 3 + UV + UV + UV +Face 8546 +UV Count: 3 + UV + UV + UV +Face 8547 +UV Count: 3 + UV + UV + UV +Face 8548 +UV Count: 3 + UV + UV + UV +Face 8549 +UV Count: 3 + UV + UV + UV +Face 8550 +UV Count: 3 + UV + UV + UV +Face 8551 +UV Count: 3 + UV + UV + UV +Face 8552 +UV Count: 3 + UV + UV + UV +Face 8553 +UV Count: 3 + UV + UV + UV +Face 8554 +UV Count: 3 + UV + UV + UV +Face 8555 +UV Count: 3 + UV + UV + UV +Face 8556 +UV Count: 3 + UV + UV + UV +Face 8557 +UV Count: 3 + UV + UV + UV +Face 8558 +UV Count: 3 + UV + UV + UV +Face 8559 +UV Count: 3 + UV + UV + UV +Face 8560 +UV Count: 3 + UV + UV + UV +Face 8561 +UV Count: 3 + UV + UV + UV +Face 8562 +UV Count: 3 + UV + UV + UV +Face 8563 +UV Count: 3 + UV + UV + UV +Face 8564 +UV Count: 3 + UV + UV + UV +Face 8565 +UV Count: 3 + UV + UV + UV +Face 8566 +UV Count: 3 + UV + UV + UV +Face 8567 +UV Count: 3 + UV + UV + UV +Face 8568 +UV Count: 3 + UV + UV + UV +Face 8569 +UV Count: 3 + UV + UV + UV +Face 8570 +UV Count: 3 + UV + UV + UV +Face 8571 +UV Count: 3 + UV + UV + UV +Face 8572 +UV Count: 3 + UV + UV + UV +Face 8573 +UV Count: 3 + UV + UV + UV +Face 8574 +UV Count: 3 + UV + UV + UV +Face 8575 +UV Count: 3 + UV + UV + UV +Face 8576 +UV Count: 3 + UV + UV + UV +Face 8577 +UV Count: 3 + UV + UV + UV +Face 8578 +UV Count: 3 + UV + UV + UV +Face 8579 +UV Count: 3 + UV + UV + UV +Face 8580 +UV Count: 3 + UV + UV + UV +Face 8581 +UV Count: 3 + UV + UV + UV +Face 8582 +UV Count: 3 + UV + UV + UV +Face 8583 +UV Count: 3 + UV + UV + UV +Face 8584 +UV Count: 3 + UV + UV + UV +Face 8585 +UV Count: 3 + UV + UV + UV +Face 8586 +UV Count: 3 + UV + UV + UV +Face 8587 +UV Count: 3 + UV + UV + UV +Face 8588 +UV Count: 3 + UV + UV + UV +Face 8589 +UV Count: 3 + UV + UV + UV +Face 8590 +UV Count: 3 + UV + UV + UV +Face 8591 +UV Count: 3 + UV + UV + UV +Face 8592 +UV Count: 3 + UV + UV + UV +Face 8593 +UV Count: 3 + UV + UV + UV +Face 8594 +UV Count: 3 + UV + UV + UV +Face 8595 +UV Count: 3 + UV + UV + UV +Face 8596 +UV Count: 3 + UV + UV + UV +Face 8597 +UV Count: 3 + UV + UV + UV +Face 8598 +UV Count: 3 + UV + UV + UV +Face 8599 +UV Count: 3 + UV + UV + UV +Face 8600 +UV Count: 3 + UV + UV + UV +Face 8601 +UV Count: 3 + UV + UV + UV +Face 8602 +UV Count: 3 + UV + UV + UV +Face 8603 +UV Count: 3 + UV + UV + UV +Face 8604 +UV Count: 3 + UV + UV + UV +Face 8605 +UV Count: 3 + UV + UV + UV +Face 8606 +UV Count: 3 + UV + UV + UV +Face 8607 +UV Count: 3 + UV + UV + UV +Face 8608 +UV Count: 3 + UV + UV + UV +Face 8609 +UV Count: 3 + UV + UV + UV +Face 8610 +UV Count: 3 + UV + UV + UV +Face 8611 +UV Count: 3 + UV + UV + UV +Face 8612 +UV Count: 3 + UV + UV + UV +Face 8613 +UV Count: 3 + UV + UV + UV +Face 8614 +UV Count: 3 + UV + UV + UV +Face 8615 +UV Count: 3 + UV + UV + UV +Face 8616 +UV Count: 3 + UV + UV + UV +Face 8617 +UV Count: 3 + UV + UV + UV +Face 8618 +UV Count: 3 + UV + UV + UV +Face 8619 +UV Count: 3 + UV + UV + UV +Face 8620 +UV Count: 3 + UV + UV + UV +Face 8621 +UV Count: 3 + UV + UV + UV +Face 8622 +UV Count: 3 + UV + UV + UV +Face 8623 +UV Count: 3 + UV + UV + UV +Face 8624 +UV Count: 3 + UV + UV + UV +Face 8625 +UV Count: 3 + UV + UV + UV +Face 8626 +UV Count: 3 + UV + UV + UV +Face 8627 +UV Count: 3 + UV + UV + UV +Face 8628 +UV Count: 3 + UV + UV + UV +Face 8629 +UV Count: 3 + UV + UV + UV +Face 8630 +UV Count: 3 + UV + UV + UV +Face 8631 +UV Count: 3 + UV + UV + UV +Face 8632 +UV Count: 3 + UV + UV + UV +Face 8633 +UV Count: 3 + UV + UV + UV +Face 8634 +UV Count: 3 + UV + UV + UV +Face 8635 +UV Count: 3 + UV + UV + UV +Face 8636 +UV Count: 3 + UV + UV + UV +Face 8637 +UV Count: 3 + UV + UV + UV +Face 8638 +UV Count: 3 + UV + UV + UV +Face 8639 +UV Count: 3 + UV + UV + UV +Face 8640 +UV Count: 3 + UV + UV + UV +Face 8641 +UV Count: 3 + UV + UV + UV +Face 8642 +UV Count: 3 + UV + UV + UV +Face 8643 +UV Count: 3 + UV + UV + UV +Face 8644 +UV Count: 3 + UV + UV + UV +Face 8645 +UV Count: 3 + UV + UV + UV +Face 8646 +UV Count: 3 + UV + UV + UV +Face 8647 +UV Count: 3 + UV + UV + UV +Face 8648 +UV Count: 3 + UV + UV + UV +Face 8649 +UV Count: 3 + UV + UV + UV +Face 8650 +UV Count: 3 + UV + UV + UV +Face 8651 +UV Count: 3 + UV + UV + UV +Face 8652 +UV Count: 3 + UV + UV + UV +Face 8653 +UV Count: 3 + UV + UV + UV +Face 8654 +UV Count: 3 + UV + UV + UV +Face 8655 +UV Count: 3 + UV + UV + UV +Face 8656 +UV Count: 3 + UV + UV + UV +Face 8657 +UV Count: 3 + UV + UV + UV +Face 8658 +UV Count: 3 + UV + UV + UV +Face 8659 +UV Count: 3 + UV + UV + UV +Face 8660 +UV Count: 3 + UV + UV + UV +Face 8661 +UV Count: 3 + UV + UV + UV +Face 8662 +UV Count: 3 + UV + UV + UV +Face 8663 +UV Count: 3 + UV + UV + UV +Face 8664 +UV Count: 3 + UV + UV + UV +Face 8665 +UV Count: 3 + UV + UV + UV +Face 8666 +UV Count: 3 + UV + UV + UV +Face 8667 +UV Count: 3 + UV + UV + UV +Face 8668 +UV Count: 3 + UV + UV + UV +Face 8669 +UV Count: 3 + UV + UV + UV +Face 8670 +UV Count: 3 + UV + UV + UV +Face 8671 +UV Count: 3 + UV + UV + UV +Face 8672 +UV Count: 3 + UV + UV + UV +Face 8673 +UV Count: 3 + UV + UV + UV +Face 8674 +UV Count: 3 + UV + UV + UV +Face 8675 +UV Count: 3 + UV + UV + UV +Face 8676 +UV Count: 3 + UV + UV + UV +Face 8677 +UV Count: 3 + UV + UV + UV +Face 8678 +UV Count: 3 + UV + UV + UV +Face 8679 +UV Count: 3 + UV + UV + UV +Face 8680 +UV Count: 3 + UV + UV + UV +Face 8681 +UV Count: 3 + UV + UV + UV +Face 8682 +UV Count: 3 + UV + UV + UV +Face 8683 +UV Count: 3 + UV + UV + UV +Face 8684 +UV Count: 3 + UV + UV + UV +Face 8685 +UV Count: 3 + UV + UV + UV +Face 8686 +UV Count: 3 + UV + UV + UV +Face 8687 +UV Count: 3 + UV + UV + UV +Face 8688 +UV Count: 3 + UV + UV + UV +Face 8689 +UV Count: 3 + UV + UV + UV +Face 8690 +UV Count: 3 + UV + UV + UV +Face 8691 +UV Count: 3 + UV + UV + UV +Face 8692 +UV Count: 3 + UV + UV + UV +Face 8693 +UV Count: 3 + UV + UV + UV +Face 8694 +UV Count: 3 + UV + UV + UV +Face 8695 +UV Count: 3 + UV + UV + UV +Face 8696 +UV Count: 3 + UV + UV + UV +Face 8697 +UV Count: 3 + UV + UV + UV +Face 8698 +UV Count: 3 + UV + UV + UV +Face 8699 +UV Count: 3 + UV + UV + UV +Face 8700 +UV Count: 3 + UV + UV + UV +Face 8701 +UV Count: 3 + UV + UV + UV +Face 8702 +UV Count: 3 + UV + UV + UV +Face 8703 +UV Count: 3 + UV + UV + UV +Face 8704 +UV Count: 3 + UV + UV + UV +Face 8705 +UV Count: 3 + UV + UV + UV +Face 8706 +UV Count: 3 + UV + UV + UV +Face 8707 +UV Count: 3 + UV + UV + UV +Face 8708 +UV Count: 3 + UV + UV + UV +Face 8709 +UV Count: 3 + UV + UV + UV +Face 8710 +UV Count: 3 + UV + UV + UV +Face 8711 +UV Count: 3 + UV + UV + UV +Face 8712 +UV Count: 3 + UV + UV + UV +Face 8713 +UV Count: 3 + UV + UV + UV +Face 8714 +UV Count: 3 + UV + UV + UV +Face 8715 +UV Count: 3 + UV + UV + UV +Face 8716 +UV Count: 3 + UV + UV + UV +Face 8717 +UV Count: 3 + UV + UV + UV +Face 8718 +UV Count: 3 + UV + UV + UV +Face 8719 +UV Count: 3 + UV + UV + UV +Face 8720 +UV Count: 3 + UV + UV + UV +Face 8721 +UV Count: 3 + UV + UV + UV +Face 8722 +UV Count: 3 + UV + UV + UV +Face 8723 +UV Count: 3 + UV + UV + UV +Face 8724 +UV Count: 3 + UV + UV + UV +Face 8725 +UV Count: 3 + UV + UV + UV +Face 8726 +UV Count: 3 + UV + UV + UV +Face 8727 +UV Count: 3 + UV + UV + UV +Face 8728 +UV Count: 3 + UV + UV + UV +Face 8729 +UV Count: 3 + UV + UV + UV +Face 8730 +UV Count: 3 + UV + UV + UV +Face 8731 +UV Count: 3 + UV + UV + UV +Face 8732 +UV Count: 3 + UV + UV + UV +Face 8733 +UV Count: 3 + UV + UV + UV +Face 8734 +UV Count: 3 + UV + UV + UV +Face 8735 +UV Count: 3 + UV + UV + UV +Face 8736 +UV Count: 3 + UV + UV + UV +Face 8737 +UV Count: 3 + UV + UV + UV +Face 8738 +UV Count: 3 + UV + UV + UV +Face 8739 +UV Count: 3 + UV + UV + UV +Face 8740 +UV Count: 3 + UV + UV + UV +Face 8741 +UV Count: 3 + UV + UV + UV +Face 8742 +UV Count: 3 + UV + UV + UV +Face 8743 +UV Count: 3 + UV + UV + UV +Face 8744 +UV Count: 3 + UV + UV + UV +Face 8745 +UV Count: 3 + UV + UV + UV +Face 8746 +UV Count: 3 + UV + UV + UV +Face 8747 +UV Count: 3 + UV + UV + UV +Face 8748 +UV Count: 3 + UV + UV + UV +Face 8749 +UV Count: 3 + UV + UV + UV +Face 8750 +UV Count: 3 + UV + UV + UV +Face 8751 +UV Count: 3 + UV + UV + UV +Face 8752 +UV Count: 3 + UV + UV + UV +Face 8753 +UV Count: 3 + UV + UV + UV +Face 8754 +UV Count: 3 + UV + UV + UV +Face 8755 +UV Count: 3 + UV + UV + UV +Face 8756 +UV Count: 3 + UV + UV + UV +Face 8757 +UV Count: 3 + UV + UV + UV +Face 8758 +UV Count: 3 + UV + UV + UV +Face 8759 +UV Count: 3 + UV + UV + UV +Face 8760 +UV Count: 3 + UV + UV + UV +Face 8761 +UV Count: 3 + UV + UV + UV +Face 8762 +UV Count: 3 + UV + UV + UV +Face 8763 +UV Count: 3 + UV + UV + UV +Face 8764 +UV Count: 3 + UV + UV + UV +Face 8765 +UV Count: 3 + UV + UV + UV +Face 8766 +UV Count: 3 + UV + UV + UV +Face 8767 +UV Count: 3 + UV + UV + UV +Face 8768 +UV Count: 3 + UV + UV + UV +Face 8769 +UV Count: 3 + UV + UV + UV +Face 8770 +UV Count: 3 + UV + UV + UV +Face 8771 +UV Count: 3 + UV + UV + UV +Face 8772 +UV Count: 3 + UV + UV + UV +Face 8773 +UV Count: 3 + UV + UV + UV +Face 8774 +UV Count: 3 + UV + UV + UV +Face 8775 +UV Count: 3 + UV + UV + UV +Face 8776 +UV Count: 3 + UV + UV + UV +Face 8777 +UV Count: 3 + UV + UV + UV +Face 8778 +UV Count: 3 + UV + UV + UV +Face 8779 +UV Count: 3 + UV + UV + UV +Face 8780 +UV Count: 3 + UV + UV + UV +Face 8781 +UV Count: 3 + UV + UV + UV +Face 8782 +UV Count: 3 + UV + UV + UV +Face 8783 +UV Count: 3 + UV + UV + UV +Face 8784 +UV Count: 3 + UV + UV + UV +Face 8785 +UV Count: 3 + UV + UV + UV +Face 8786 +UV Count: 3 + UV + UV + UV +Face 8787 +UV Count: 3 + UV + UV + UV +Face 8788 +UV Count: 3 + UV + UV + UV +Face 8789 +UV Count: 3 + UV + UV + UV +Face 8790 +UV Count: 3 + UV + UV + UV +Face 8791 +UV Count: 3 + UV + UV + UV +Face 8792 +UV Count: 3 + UV + UV + UV +Face 8793 +UV Count: 3 + UV + UV + UV +Face 8794 +UV Count: 3 + UV + UV + UV +Face 8795 +UV Count: 3 + UV + UV + UV +Face 8796 +UV Count: 3 + UV + UV + UV +Face 8797 +UV Count: 3 + UV + UV + UV +Face 8798 +UV Count: 3 + UV + UV + UV +Face 8799 +UV Count: 3 + UV + UV + UV +Face 8800 +UV Count: 3 + UV + UV + UV +Face 8801 +UV Count: 3 + UV + UV + UV +Face 8802 +UV Count: 3 + UV + UV + UV +Face 8803 +UV Count: 3 + UV + UV + UV +Face 8804 +UV Count: 3 + UV + UV + UV +Face 8805 +UV Count: 3 + UV + UV + UV +Face 8806 +UV Count: 3 + UV + UV + UV +Face 8807 +UV Count: 3 + UV + UV + UV +Face 8808 +UV Count: 3 + UV + UV + UV +Face 8809 +UV Count: 3 + UV + UV + UV +Face 8810 +UV Count: 3 + UV + UV + UV +Face 8811 +UV Count: 3 + UV + UV + UV +Face 8812 +UV Count: 3 + UV + UV + UV +Face 8813 +UV Count: 3 + UV + UV + UV +Face 8814 +UV Count: 3 + UV + UV + UV +Face 8815 +UV Count: 3 + UV + UV + UV +Face 8816 +UV Count: 3 + UV + UV + UV +Face 8817 +UV Count: 3 + UV + UV + UV +Face 8818 +UV Count: 3 + UV + UV + UV +Face 8819 +UV Count: 3 + UV + UV + UV +Face 8820 +UV Count: 3 + UV + UV + UV +Face 8821 +UV Count: 3 + UV + UV + UV +Face 8822 +UV Count: 3 + UV + UV + UV +Face 8823 +UV Count: 3 + UV + UV + UV +Face 8824 +UV Count: 3 + UV + UV + UV +Face 8825 +UV Count: 3 + UV + UV + UV +Face 8826 +UV Count: 3 + UV + UV + UV +Face 8827 +UV Count: 3 + UV + UV + UV +Face 8828 +UV Count: 3 + UV + UV + UV +Face 8829 +UV Count: 3 + UV + UV + UV +Face 8830 +UV Count: 3 + UV + UV + UV +Face 8831 +UV Count: 3 + UV + UV + UV +Face 8832 +UV Count: 3 + UV + UV + UV +Face 8833 +UV Count: 3 + UV + UV + UV +Face 8834 +UV Count: 3 + UV + UV + UV +Face 8835 +UV Count: 3 + UV + UV + UV +Face 8836 +UV Count: 3 + UV + UV + UV +Face 8837 +UV Count: 3 + UV + UV + UV +Face 8838 +UV Count: 3 + UV + UV + UV +Face 8839 +UV Count: 3 + UV + UV + UV +Face 8840 +UV Count: 3 + UV + UV + UV +Face 8841 +UV Count: 3 + UV + UV + UV +Face 8842 +UV Count: 3 + UV + UV + UV +Face 8843 +UV Count: 3 + UV + UV + UV +Face 8844 +UV Count: 3 + UV + UV + UV +Face 8845 +UV Count: 3 + UV + UV + UV +Face 8846 +UV Count: 3 + UV + UV + UV +Face 8847 +UV Count: 3 + UV + UV + UV +Face 8848 +UV Count: 3 + UV + UV + UV +Face 8849 +UV Count: 3 + UV + UV + UV +Face 8850 +UV Count: 3 + UV + UV + UV +Face 8851 +UV Count: 3 + UV + UV + UV +Face 8852 +UV Count: 3 + UV + UV + UV +Face 8853 +UV Count: 3 + UV + UV + UV +Face 8854 +UV Count: 3 + UV + UV + UV +Face 8855 +UV Count: 3 + UV + UV + UV +Face 8856 +UV Count: 3 + UV + UV + UV +Face 8857 +UV Count: 3 + UV + UV + UV +Face 8858 +UV Count: 3 + UV + UV + UV +Face 8859 +UV Count: 3 + UV + UV + UV +Face 8860 +UV Count: 3 + UV + UV + UV +Face 8861 +UV Count: 3 + UV + UV + UV +Face 8862 +UV Count: 3 + UV + UV + UV +Face 8863 +UV Count: 3 + UV + UV + UV +Face 8864 +UV Count: 3 + UV + UV + UV +Face 8865 +UV Count: 3 + UV + UV + UV +Face 8866 +UV Count: 3 + UV + UV + UV +Face 8867 +UV Count: 3 + UV + UV + UV +Face 8868 +UV Count: 3 + UV + UV + UV +Face 8869 +UV Count: 3 + UV + UV + UV +Face 8870 +UV Count: 3 + UV + UV + UV +Face 8871 +UV Count: 3 + UV + UV + UV +Face 8872 +UV Count: 3 + UV + UV + UV +Face 8873 +UV Count: 3 + UV + UV + UV +Face 8874 +UV Count: 3 + UV + UV + UV +Face 8875 +UV Count: 3 + UV + UV + UV +Face 8876 +UV Count: 3 + UV + UV + UV +Face 8877 +UV Count: 3 + UV + UV + UV +Face 8878 +UV Count: 3 + UV + UV + UV +Face 8879 +UV Count: 3 + UV + UV + UV +Face 8880 +UV Count: 3 + UV + UV + UV +Face 8881 +UV Count: 3 + UV + UV + UV +Face 8882 +UV Count: 3 + UV + UV + UV +Face 8883 +UV Count: 3 + UV + UV + UV +Face 8884 +UV Count: 3 + UV + UV + UV +Face 8885 +UV Count: 3 + UV + UV + UV +Face 8886 +UV Count: 3 + UV + UV + UV +Face 8887 +UV Count: 3 + UV + UV + UV +Face 8888 +UV Count: 3 + UV + UV + UV +Face 8889 +UV Count: 3 + UV + UV + UV +Face 8890 +UV Count: 3 + UV + UV + UV +Face 8891 +UV Count: 3 + UV + UV + UV +Face 8892 +UV Count: 3 + UV + UV + UV +Face 8893 +UV Count: 3 + UV + UV + UV +Face 8894 +UV Count: 3 + UV + UV + UV +Face 8895 +UV Count: 3 + UV + UV + UV +Face 8896 +UV Count: 3 + UV + UV + UV +Face 8897 +UV Count: 3 + UV + UV + UV +Face 8898 +UV Count: 3 + UV + UV + UV +Face 8899 +UV Count: 3 + UV + UV + UV +Face 8900 +UV Count: 3 + UV + UV + UV +Face 8901 +UV Count: 3 + UV + UV + UV +Face 8902 +UV Count: 3 + UV + UV + UV +Face 8903 +UV Count: 3 + UV + UV + UV +Face 8904 +UV Count: 3 + UV + UV + UV +Face 8905 +UV Count: 3 + UV + UV + UV +Face 8906 +UV Count: 3 + UV + UV + UV +Face 8907 +UV Count: 3 + UV + UV + UV +Face 8908 +UV Count: 3 + UV + UV + UV +Face 8909 +UV Count: 3 + UV + UV + UV +Face 8910 +UV Count: 3 + UV + UV + UV +Face 8911 +UV Count: 3 + UV + UV + UV +Face 8912 +UV Count: 3 + UV + UV + UV +Face 8913 +UV Count: 3 + UV + UV + UV +Face 8914 +UV Count: 3 + UV + UV + UV +Face 8915 +UV Count: 3 + UV + UV + UV +Face 8916 +UV Count: 3 + UV + UV + UV +Face 8917 +UV Count: 3 + UV + UV + UV +Face 8918 +UV Count: 3 + UV + UV + UV +Face 8919 +UV Count: 3 + UV + UV + UV +Face 8920 +UV Count: 3 + UV + UV + UV +Face 8921 +UV Count: 3 + UV + UV + UV +Face 8922 +UV Count: 3 + UV + UV + UV +Face 8923 +UV Count: 3 + UV + UV + UV +Face 8924 +UV Count: 3 + UV + UV + UV +Face 8925 +UV Count: 3 + UV + UV + UV +Face 8926 +UV Count: 3 + UV + UV + UV +Face 8927 +UV Count: 3 + UV + UV + UV +Face 8928 +UV Count: 3 + UV + UV + UV +Face 8929 +UV Count: 3 + UV + UV + UV +Face 8930 +UV Count: 3 + UV + UV + UV +Face 8931 +UV Count: 3 + UV + UV + UV +Face 8932 +UV Count: 3 + UV + UV + UV +Face 8933 +UV Count: 3 + UV + UV + UV +Face 8934 +UV Count: 3 + UV + UV + UV +Face 8935 +UV Count: 3 + UV + UV + UV +Face 8936 +UV Count: 3 + UV + UV + UV +Face 8937 +UV Count: 3 + UV + UV + UV +Face 8938 +UV Count: 3 + UV + UV + UV +Face 8939 +UV Count: 3 + UV + UV + UV +Face 8940 +UV Count: 3 + UV + UV + UV +Face 8941 +UV Count: 3 + UV + UV + UV +Face 8942 +UV Count: 3 + UV + UV + UV +Face 8943 +UV Count: 3 + UV + UV + UV +Face 8944 +UV Count: 3 + UV + UV + UV +Face 8945 +UV Count: 3 + UV + UV + UV +Face 8946 +UV Count: 3 + UV + UV + UV +Face 8947 +UV Count: 3 + UV + UV + UV +Face 8948 +UV Count: 3 + UV + UV + UV +Face 8949 +UV Count: 3 + UV + UV + UV +Face 8950 +UV Count: 3 + UV + UV + UV +Face 8951 +UV Count: 3 + UV + UV + UV +Face 8952 +UV Count: 3 + UV + UV + UV +Face 8953 +UV Count: 3 + UV + UV + UV +Face 8954 +UV Count: 3 + UV + UV + UV +Face 8955 +UV Count: 3 + UV + UV + UV +Face 8956 +UV Count: 3 + UV + UV + UV +Face 8957 +UV Count: 3 + UV + UV + UV +Face 8958 +UV Count: 3 + UV + UV + UV +Face 8959 +UV Count: 3 + UV + UV + UV +Face 8960 +UV Count: 3 + UV + UV + UV +Face 8961 +UV Count: 3 + UV + UV + UV +Face 8962 +UV Count: 3 + UV + UV + UV +Face 8963 +UV Count: 3 + UV + UV + UV +Face 8964 +UV Count: 3 + UV + UV + UV +Face 8965 +UV Count: 3 + UV + UV + UV +Face 8966 +UV Count: 3 + UV + UV + UV +Face 8967 +UV Count: 3 + UV + UV + UV +Face 8968 +UV Count: 3 + UV + UV + UV +Face 8969 +UV Count: 3 + UV + UV + UV +Face 8970 +UV Count: 3 + UV + UV + UV +Face 8971 +UV Count: 3 + UV + UV + UV +Face 8972 +UV Count: 3 + UV + UV + UV +Face 8973 +UV Count: 3 + UV + UV + UV +Face 8974 +UV Count: 3 + UV + UV + UV +Face 8975 +UV Count: 3 + UV + UV + UV +Face 8976 +UV Count: 3 + UV + UV + UV +Face 8977 +UV Count: 3 + UV + UV + UV +Face 8978 +UV Count: 3 + UV + UV + UV +Face 8979 +UV Count: 3 + UV + UV + UV +Face 8980 +UV Count: 3 + UV + UV + UV +Face 8981 +UV Count: 3 + UV + UV + UV +Face 8982 +UV Count: 3 + UV + UV + UV +Face 8983 +UV Count: 3 + UV + UV + UV +Face 8984 +UV Count: 3 + UV + UV + UV +Face 8985 +UV Count: 3 + UV + UV + UV +Face 8986 +UV Count: 3 + UV + UV + UV +Face 8987 +UV Count: 3 + UV + UV + UV +Face 8988 +UV Count: 3 + UV + UV + UV +Face 8989 +UV Count: 3 + UV + UV + UV +Face 8990 +UV Count: 3 + UV + UV + UV +Face 8991 +UV Count: 3 + UV + UV + UV +Face 8992 +UV Count: 3 + UV + UV + UV +Face 8993 +UV Count: 3 + UV + UV + UV +Face 8994 +UV Count: 3 + UV + UV + UV +Face 8995 +UV Count: 3 + UV + UV + UV +Face 8996 +UV Count: 3 + UV + UV + UV +Face 8997 +UV Count: 3 + UV + UV + UV +Face 8998 +UV Count: 3 + UV + UV + UV +Face 8999 +UV Count: 3 + UV + UV + UV +Face 9000 +UV Count: 3 + UV + UV + UV +Face 9001 +UV Count: 3 + UV + UV + UV +Face 9002 +UV Count: 3 + UV + UV + UV +Face 9003 +UV Count: 3 + UV + UV + UV +Face 9004 +UV Count: 3 + UV + UV + UV +Face 9005 +UV Count: 3 + UV + UV + UV +Face 9006 +UV Count: 3 + UV + UV + UV +Face 9007 +UV Count: 3 + UV + UV + UV +Face 9008 +UV Count: 3 + UV + UV + UV +Face 9009 +UV Count: 3 + UV + UV + UV +Face 9010 +UV Count: 3 + UV + UV + UV +Face 9011 +UV Count: 3 + UV + UV + UV +Face 9012 +UV Count: 3 + UV + UV + UV +Face 9013 +UV Count: 3 + UV + UV + UV +Face 9014 +UV Count: 3 + UV + UV + UV +Face 9015 +UV Count: 3 + UV + UV + UV +Face 9016 +UV Count: 3 + UV + UV + UV +Face 9017 +UV Count: 3 + UV + UV + UV +Face 9018 +UV Count: 3 + UV + UV + UV +Face 9019 +UV Count: 3 + UV + UV + UV +Face 9020 +UV Count: 3 + UV + UV + UV +Face 9021 +UV Count: 3 + UV + UV + UV +Face 9022 +UV Count: 3 + UV + UV + UV +Face 9023 +UV Count: 3 + UV + UV + UV +Face 9024 +UV Count: 3 + UV + UV + UV +Face 9025 +UV Count: 3 + UV + UV + UV +Face 9026 +UV Count: 3 + UV + UV + UV +Face 9027 +UV Count: 3 + UV + UV + UV +Face 9028 +UV Count: 3 + UV + UV + UV +Face 9029 +UV Count: 3 + UV + UV + UV +Face 9030 +UV Count: 3 + UV + UV + UV +Face 9031 +UV Count: 3 + UV + UV + UV +Face 9032 +UV Count: 3 + UV + UV + UV +Face 9033 +UV Count: 3 + UV + UV + UV +Face 9034 +UV Count: 3 + UV + UV + UV +Face 9035 +UV Count: 3 + UV + UV + UV +Face 9036 +UV Count: 3 + UV + UV + UV +Face 9037 +UV Count: 3 + UV + UV + UV +Face 9038 +UV Count: 3 + UV + UV + UV +Face 9039 +UV Count: 3 + UV + UV + UV +Face 9040 +UV Count: 3 + UV + UV + UV +Face 9041 +UV Count: 3 + UV + UV + UV +Face 9042 +UV Count: 3 + UV + UV + UV +Face 9043 +UV Count: 3 + UV + UV + UV +Face 9044 +UV Count: 3 + UV + UV + UV +Face 9045 +UV Count: 3 + UV + UV + UV +Face 9046 +UV Count: 3 + UV + UV + UV +Face 9047 +UV Count: 3 + UV + UV + UV +Face 9048 +UV Count: 3 + UV + UV + UV +Face 9049 +UV Count: 3 + UV + UV + UV +Face 9050 +UV Count: 3 + UV + UV + UV +Face 9051 +UV Count: 3 + UV + UV + UV +Face 9052 +UV Count: 3 + UV + UV + UV +Face 9053 +UV Count: 3 + UV + UV + UV +Face 9054 +UV Count: 3 + UV + UV + UV +Face 9055 +UV Count: 3 + UV + UV + UV +Face 9056 +UV Count: 3 + UV + UV + UV +Face 9057 +UV Count: 3 + UV + UV + UV +Face 9058 +UV Count: 3 + UV + UV + UV +Face 9059 +UV Count: 3 + UV + UV + UV +Face 9060 +UV Count: 3 + UV + UV + UV +Face 9061 +UV Count: 3 + UV + UV + UV +Face 9062 +UV Count: 3 + UV + UV + UV +Face 9063 +UV Count: 3 + UV + UV + UV +Face 9064 +UV Count: 3 + UV + UV + UV +Face 9065 +UV Count: 3 + UV + UV + UV +Face 9066 +UV Count: 3 + UV + UV + UV +Face 9067 +UV Count: 3 + UV + UV + UV +Face 9068 +UV Count: 3 + UV + UV + UV +Face 9069 +UV Count: 3 + UV + UV + UV +Face 9070 +UV Count: 3 + UV + UV + UV +Face 9071 +UV Count: 3 + UV + UV + UV +Face 9072 +UV Count: 3 + UV + UV + UV +Face 9073 +UV Count: 3 + UV + UV + UV +Face 9074 +UV Count: 3 + UV + UV + UV +Face 9075 +UV Count: 3 + UV + UV + UV +Face 9076 +UV Count: 3 + UV + UV + UV +Face 9077 +UV Count: 3 + UV + UV + UV +Face 9078 +UV Count: 3 + UV + UV + UV +Face 9079 +UV Count: 3 + UV + UV + UV +Face 9080 +UV Count: 3 + UV + UV + UV +Face 9081 +UV Count: 3 + UV + UV + UV +Face 9082 +UV Count: 3 + UV + UV + UV +Face 9083 +UV Count: 3 + UV + UV + UV +Face 9084 +UV Count: 3 + UV + UV + UV +Face 9085 +UV Count: 3 + UV + UV + UV +Face 9086 +UV Count: 3 + UV + UV + UV +Face 9087 +UV Count: 3 + UV + UV + UV +Face 9088 +UV Count: 3 + UV + UV + UV +Face 9089 +UV Count: 3 + UV + UV + UV +Face 9090 +UV Count: 3 + UV + UV + UV +Face 9091 +UV Count: 3 + UV + UV + UV +Face 9092 +UV Count: 3 + UV + UV + UV +Face 9093 +UV Count: 3 + UV + UV + UV +Face 9094 +UV Count: 3 + UV + UV + UV +Face 9095 +UV Count: 3 + UV + UV + UV +Face 9096 +UV Count: 3 + UV + UV + UV +Face 9097 +UV Count: 3 + UV + UV + UV +Face 9098 +UV Count: 3 + UV + UV + UV +Face 9099 +UV Count: 3 + UV + UV + UV +Face 9100 +UV Count: 3 + UV + UV + UV +Face 9101 +UV Count: 3 + UV + UV + UV +Face 9102 +UV Count: 3 + UV + UV + UV +Face 9103 +UV Count: 3 + UV + UV + UV +Face 9104 +UV Count: 3 + UV + UV + UV +Face 9105 +UV Count: 3 + UV + UV + UV +Face 9106 +UV Count: 3 + UV + UV + UV +Face 9107 +UV Count: 3 + UV + UV + UV +Face 9108 +UV Count: 3 + UV + UV + UV +Face 9109 +UV Count: 3 + UV + UV + UV +Face 9110 +UV Count: 3 + UV + UV + UV +Face 9111 +UV Count: 3 + UV + UV + UV +Face 9112 +UV Count: 3 + UV + UV + UV +Face 9113 +UV Count: 3 + UV + UV + UV +Face 9114 +UV Count: 3 + UV + UV + UV +Face 9115 +UV Count: 3 + UV + UV + UV +Face 9116 +UV Count: 3 + UV + UV + UV +Face 9117 +UV Count: 3 + UV + UV + UV +Face 9118 +UV Count: 3 + UV + UV + UV +Face 9119 +UV Count: 3 + UV + UV + UV +Face 9120 +UV Count: 3 + UV + UV + UV +Face 9121 +UV Count: 3 + UV + UV + UV +Face 9122 +UV Count: 3 + UV + UV + UV +Face 9123 +UV Count: 3 + UV + UV + UV +Face 9124 +UV Count: 3 + UV + UV + UV +Face 9125 +UV Count: 3 + UV + UV + UV +Face 9126 +UV Count: 3 + UV + UV + UV +Face 9127 +UV Count: 3 + UV + UV + UV +Face 9128 +UV Count: 3 + UV + UV + UV +Face 9129 +UV Count: 3 + UV + UV + UV +Face 9130 +UV Count: 3 + UV + UV + UV +Face 9131 +UV Count: 3 + UV + UV + UV +Face 9132 +UV Count: 3 + UV + UV + UV +Face 9133 +UV Count: 3 + UV + UV + UV +Face 9134 +UV Count: 3 + UV + UV + UV +Face 9135 +UV Count: 3 + UV + UV + UV +Face 9136 +UV Count: 3 + UV + UV + UV +Face 9137 +UV Count: 3 + UV + UV + UV +Face 9138 +UV Count: 3 + UV + UV + UV +Face 9139 +UV Count: 3 + UV + UV + UV +Face 9140 +UV Count: 3 + UV + UV + UV +Face 9141 +UV Count: 3 + UV + UV + UV +Face 9142 +UV Count: 3 + UV + UV + UV +Face 9143 +UV Count: 3 + UV + UV + UV +Face 9144 +UV Count: 3 + UV + UV + UV +Face 9145 +UV Count: 3 + UV + UV + UV +Face 9146 +UV Count: 3 + UV + UV + UV +Face 9147 +UV Count: 3 + UV + UV + UV +Face 9148 +UV Count: 3 + UV + UV + UV +Face 9149 +UV Count: 3 + UV + UV + UV +Face 9150 +UV Count: 3 + UV + UV + UV +Face 9151 +UV Count: 3 + UV + UV + UV +Face 9152 +UV Count: 3 + UV + UV + UV +Face 9153 +UV Count: 3 + UV + UV + UV +Face 9154 +UV Count: 3 + UV + UV + UV +Face 9155 +UV Count: 3 + UV + UV + UV +Face 9156 +UV Count: 3 + UV + UV + UV +Face 9157 +UV Count: 3 + UV + UV + UV +Face 9158 +UV Count: 3 + UV + UV + UV +Face 9159 +UV Count: 3 + UV + UV + UV +Face 9160 +UV Count: 3 + UV + UV + UV +Face 9161 +UV Count: 3 + UV + UV + UV +Face 9162 +UV Count: 3 + UV + UV + UV +Face 9163 +UV Count: 3 + UV + UV + UV +Face 9164 +UV Count: 3 + UV + UV + UV +Face 9165 +UV Count: 3 + UV + UV + UV +Face 9166 +UV Count: 3 + UV + UV + UV +Face 9167 +UV Count: 3 + UV + UV + UV +Face 9168 +UV Count: 3 + UV + UV + UV +Face 9169 +UV Count: 3 + UV + UV + UV +Face 9170 +UV Count: 3 + UV + UV + UV +Face 9171 +UV Count: 3 + UV + UV + UV +Face 9172 +UV Count: 3 + UV + UV + UV +Face 9173 +UV Count: 3 + UV + UV + UV +Face 9174 +UV Count: 3 + UV + UV + UV +Face 9175 +UV Count: 3 + UV + UV + UV +Face 9176 +UV Count: 3 + UV + UV + UV +Face 9177 +UV Count: 3 + UV + UV + UV +Face 9178 +UV Count: 3 + UV + UV + UV +Face 9179 +UV Count: 3 + UV + UV + UV +Face 9180 +UV Count: 3 + UV + UV + UV +Face 9181 +UV Count: 3 + UV + UV + UV +Face 9182 +UV Count: 3 + UV + UV + UV +Face 9183 +UV Count: 3 + UV + UV + UV +Face 9184 +UV Count: 3 + UV + UV + UV +Face 9185 +UV Count: 3 + UV + UV + UV +Face 9186 +UV Count: 3 + UV + UV + UV +Face 9187 +UV Count: 3 + UV + UV + UV +Face 9188 +UV Count: 3 + UV + UV + UV +Face 9189 +UV Count: 3 + UV + UV + UV +Face 9190 +UV Count: 3 + UV + UV + UV +Face 9191 +UV Count: 3 + UV + UV + UV +Face 9192 +UV Count: 3 + UV + UV + UV +Face 9193 +UV Count: 3 + UV + UV + UV +Face 9194 +UV Count: 3 + UV + UV + UV +Face 9195 +UV Count: 3 + UV + UV + UV +Face 9196 +UV Count: 3 + UV + UV + UV +Face 9197 +UV Count: 3 + UV + UV + UV +Face 9198 +UV Count: 3 + UV + UV + UV +Face 9199 +UV Count: 3 + UV + UV + UV +Face 9200 +UV Count: 3 + UV + UV + UV +Face 9201 +UV Count: 3 + UV + UV + UV +Face 9202 +UV Count: 3 + UV + UV + UV +Face 9203 +UV Count: 3 + UV + UV + UV +Face 9204 +UV Count: 3 + UV + UV + UV +Face 9205 +UV Count: 3 + UV + UV + UV +Face 9206 +UV Count: 3 + UV + UV + UV +Face 9207 +UV Count: 3 + UV + UV + UV +Face 9208 +UV Count: 3 + UV + UV + UV +Face 9209 +UV Count: 3 + UV + UV + UV +Face 9210 +UV Count: 3 + UV + UV + UV +Face 9211 +UV Count: 3 + UV + UV + UV +Face 9212 +UV Count: 3 + UV + UV + UV +Face 9213 +UV Count: 3 + UV + UV + UV +Face 9214 +UV Count: 3 + UV + UV + UV +Face 9215 +UV Count: 3 + UV + UV + UV +Face 9216 +UV Count: 3 + UV + UV + UV +Face 9217 +UV Count: 3 + UV + UV + UV +Face 9218 +UV Count: 3 + UV + UV + UV +Face 9219 +UV Count: 3 + UV + UV + UV +Face 9220 +UV Count: 3 + UV + UV + UV +Face 9221 +UV Count: 3 + UV + UV + UV +Face 9222 +UV Count: 3 + UV + UV + UV +Face 9223 +UV Count: 3 + UV + UV + UV +Face 9224 +UV Count: 3 + UV + UV + UV +Face 9225 +UV Count: 3 + UV + UV + UV +Face 9226 +UV Count: 3 + UV + UV + UV +Face 9227 +UV Count: 3 + UV + UV + UV +Face 9228 +UV Count: 3 + UV + UV + UV +Face 9229 +UV Count: 3 + UV + UV + UV +Face 9230 +UV Count: 3 + UV + UV + UV +Face 9231 +UV Count: 3 + UV + UV + UV +Face 9232 +UV Count: 3 + UV + UV + UV +Face 9233 +UV Count: 3 + UV + UV + UV +Face 9234 +UV Count: 3 + UV + UV + UV +Face 9235 +UV Count: 3 + UV + UV + UV +Face 9236 +UV Count: 3 + UV + UV + UV +Face 9237 +UV Count: 3 + UV + UV + UV +Face 9238 +UV Count: 3 + UV + UV + UV +Face 9239 +UV Count: 3 + UV + UV + UV +Face 9240 +UV Count: 3 + UV + UV + UV +Face 9241 +UV Count: 3 + UV + UV + UV +Face 9242 +UV Count: 3 + UV + UV + UV +Face 9243 +UV Count: 3 + UV + UV + UV +Face 9244 +UV Count: 3 + UV + UV + UV +Face 9245 +UV Count: 3 + UV + UV + UV +Face 9246 +UV Count: 3 + UV + UV + UV +Face 9247 +UV Count: 3 + UV + UV + UV +Face 9248 +UV Count: 3 + UV + UV + UV +Face 9249 +UV Count: 3 + UV + UV + UV +Face 9250 +UV Count: 3 + UV + UV + UV +Face 9251 +UV Count: 3 + UV + UV + UV +Face 9252 +UV Count: 3 + UV + UV + UV +Face 9253 +UV Count: 3 + UV + UV + UV +Face 9254 +UV Count: 3 + UV + UV + UV +Face 9255 +UV Count: 3 + UV + UV + UV +Face 9256 +UV Count: 3 + UV + UV + UV +Face 9257 +UV Count: 3 + UV + UV + UV +Face 9258 +UV Count: 3 + UV + UV + UV +Face 9259 +UV Count: 3 + UV + UV + UV +Face 9260 +UV Count: 3 + UV + UV + UV +Face 9261 +UV Count: 3 + UV + UV + UV +Face 9262 +UV Count: 3 + UV + UV + UV +Face 9263 +UV Count: 3 + UV + UV + UV +Face 9264 +UV Count: 3 + UV + UV + UV +Face 9265 +UV Count: 3 + UV + UV + UV +Face 9266 +UV Count: 3 + UV + UV + UV +Face 9267 +UV Count: 3 + UV + UV + UV +Face 9268 +UV Count: 3 + UV + UV + UV +Face 9269 +UV Count: 3 + UV + UV + UV +Face 9270 +UV Count: 3 + UV + UV + UV +Face 9271 +UV Count: 3 + UV + UV + UV +Face 9272 +UV Count: 3 + UV + UV + UV +Face 9273 +UV Count: 3 + UV + UV + UV +Face 9274 +UV Count: 3 + UV + UV + UV +Face 9275 +UV Count: 3 + UV + UV + UV +Face 9276 +UV Count: 3 + UV + UV + UV +Face 9277 +UV Count: 3 + UV + UV + UV +Face 9278 +UV Count: 3 + UV + UV + UV +Face 9279 +UV Count: 3 + UV + UV + UV +Face 9280 +UV Count: 3 + UV + UV + UV +Face 9281 +UV Count: 3 + UV + UV + UV +Face 9282 +UV Count: 3 + UV + UV + UV +Face 9283 +UV Count: 3 + UV + UV + UV +Face 9284 +UV Count: 3 + UV + UV + UV +Face 9285 +UV Count: 3 + UV + UV + UV +Face 9286 +UV Count: 3 + UV + UV + UV +Face 9287 +UV Count: 3 + UV + UV + UV +Face 9288 +UV Count: 3 + UV + UV + UV +Face 9289 +UV Count: 3 + UV + UV + UV +Face 9290 +UV Count: 3 + UV + UV + UV +Face 9291 +UV Count: 3 + UV + UV + UV +Face 9292 +UV Count: 3 + UV + UV + UV +Face 9293 +UV Count: 3 + UV + UV + UV +Face 9294 +UV Count: 3 + UV + UV + UV +Face 9295 +UV Count: 3 + UV + UV + UV +Face 9296 +UV Count: 3 + UV + UV + UV +Face 9297 +UV Count: 3 + UV + UV + UV +Face 9298 +UV Count: 3 + UV + UV + UV +Face 9299 +UV Count: 3 + UV + UV + UV +Face 9300 +UV Count: 3 + UV + UV + UV +Face 9301 +UV Count: 3 + UV + UV + UV +Face 9302 +UV Count: 3 + UV + UV + UV +Face 9303 +UV Count: 3 + UV + UV + UV +Face 9304 +UV Count: 3 + UV + UV + UV +Face 9305 +UV Count: 3 + UV + UV + UV +Face 9306 +UV Count: 3 + UV + UV + UV +Face 9307 +UV Count: 3 + UV + UV + UV +Face 9308 +UV Count: 3 + UV + UV + UV +Face 9309 +UV Count: 3 + UV + UV + UV +Face 9310 +UV Count: 3 + UV + UV + UV +Face 9311 +UV Count: 3 + UV + UV + UV +Face 9312 +UV Count: 3 + UV + UV + UV +Face 9313 +UV Count: 3 + UV + UV + UV +Face 9314 +UV Count: 3 + UV + UV + UV +Face 9315 +UV Count: 3 + UV + UV + UV +Face 9316 +UV Count: 3 + UV + UV + UV +Face 9317 +UV Count: 3 + UV + UV + UV +Face 9318 +UV Count: 3 + UV + UV + UV +Face 9319 +UV Count: 3 + UV + UV + UV +Face 9320 +UV Count: 3 + UV + UV + UV +Face 9321 +UV Count: 3 + UV + UV + UV +Face 9322 +UV Count: 3 + UV + UV + UV +Face 9323 +UV Count: 3 + UV + UV + UV +Face 9324 +UV Count: 3 + UV + UV + UV +Face 9325 +UV Count: 3 + UV + UV + UV +Face 9326 +UV Count: 3 + UV + UV + UV +Face 9327 +UV Count: 3 + UV + UV + UV +Face 9328 +UV Count: 3 + UV + UV + UV +Face 9329 +UV Count: 3 + UV + UV + UV +Face 9330 +UV Count: 3 + UV + UV + UV +Face 9331 +UV Count: 3 + UV + UV + UV +Face 9332 +UV Count: 3 + UV + UV + UV +Face 9333 +UV Count: 3 + UV + UV + UV +Face 9334 +UV Count: 3 + UV + UV + UV +Face 9335 +UV Count: 3 + UV + UV + UV +Face 9336 +UV Count: 3 + UV + UV + UV +Face 9337 +UV Count: 3 + UV + UV + UV +Face 9338 +UV Count: 3 + UV + UV + UV +Face 9339 +UV Count: 3 + UV + UV + UV +Face 9340 +UV Count: 3 + UV + UV + UV +Face 9341 +UV Count: 3 + UV + UV + UV +Face 9342 +UV Count: 3 + UV + UV + UV +Face 9343 +UV Count: 3 + UV + UV + UV +Face 9344 +UV Count: 3 + UV + UV + UV +Face 9345 +UV Count: 3 + UV + UV + UV +Face 9346 +UV Count: 3 + UV + UV + UV +Face 9347 +UV Count: 3 + UV + UV + UV +Face 9348 +UV Count: 3 + UV + UV + UV +Face 9349 +UV Count: 3 + UV + UV + UV +Face 9350 +UV Count: 3 + UV + UV + UV +Face 9351 +UV Count: 3 + UV + UV + UV +Face 9352 +UV Count: 3 + UV + UV + UV +Face 9353 +UV Count: 3 + UV + UV + UV +Face 9354 +UV Count: 3 + UV + UV + UV +Face 9355 +UV Count: 3 + UV + UV + UV +Face 9356 +UV Count: 3 + UV + UV + UV +Face 9357 +UV Count: 3 + UV + UV + UV +Face 9358 +UV Count: 3 + UV + UV + UV +Face 9359 +UV Count: 3 + UV + UV + UV +Face 9360 +UV Count: 3 + UV + UV + UV +Face 9361 +UV Count: 3 + UV + UV + UV +Face 9362 +UV Count: 3 + UV + UV + UV +Face 9363 +UV Count: 3 + UV + UV + UV +Face 9364 +UV Count: 3 + UV + UV + UV +Face 9365 +UV Count: 3 + UV + UV + UV +Face 9366 +UV Count: 3 + UV + UV + UV +Face 9367 +UV Count: 3 + UV + UV + UV +Face 9368 +UV Count: 3 + UV + UV + UV +Face 9369 +UV Count: 3 + UV + UV + UV +Face 9370 +UV Count: 3 + UV + UV + UV +Face 9371 +UV Count: 3 + UV + UV + UV +Face 9372 +UV Count: 3 + UV + UV + UV +Face 9373 +UV Count: 3 + UV + UV + UV +Face 9374 +UV Count: 3 + UV + UV + UV +Face 9375 +UV Count: 3 + UV + UV + UV +Face 9376 +UV Count: 3 + UV + UV + UV +Face 9377 +UV Count: 3 + UV + UV + UV +Face 9378 +UV Count: 3 + UV + UV + UV +Face 9379 +UV Count: 3 + UV + UV + UV +Face 9380 +UV Count: 3 + UV + UV + UV +Face 9381 +UV Count: 3 + UV + UV + UV +Face 9382 +UV Count: 3 + UV + UV + UV +Face 9383 +UV Count: 3 + UV + UV + UV +Face 9384 +UV Count: 3 + UV + UV + UV +Face 9385 +UV Count: 3 + UV + UV + UV +Face 9386 +UV Count: 3 + UV + UV + UV +Face 9387 +UV Count: 3 + UV + UV + UV +Face 9388 +UV Count: 3 + UV + UV + UV +Face 9389 +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 +Vertex 2660: Normal +Vertex 2661: Normal +Vertex 2662: Normal +Vertex 2663: Normal +Vertex 2664: Normal +Vertex 2665: Normal +Vertex 2666: Normal +Vertex 2667: Normal +Vertex 2668: Normal +Vertex 2669: Normal +Vertex 2670: Normal +Vertex 2671: Normal +Vertex 2672: Normal +Vertex 2673: Normal +Vertex 2674: Normal +Vertex 2675: Normal +Vertex 2676: Normal +Vertex 2677: Normal +Vertex 2678: Normal +Vertex 2679: Normal +Vertex 2680: Normal +Vertex 2681: Normal +Vertex 2682: Normal +Vertex 2683: Normal +Vertex 2684: Normal +Vertex 2685: Normal +Vertex 2686: Normal +Vertex 2687: Normal +Vertex 2688: Normal +Vertex 2689: Normal +Vertex 2690: Normal +Vertex 2691: Normal +Vertex 2692: Normal +Vertex 2693: Normal +Vertex 2694: Normal +Vertex 2695: Normal +Vertex 2696: Normal +Vertex 2697: Normal +Vertex 2698: Normal +Vertex 2699: Normal +Vertex 2700: Normal +Vertex 2701: Normal +Vertex 2702: Normal +Vertex 2703: Normal +Vertex 2704: Normal +Vertex 2705: Normal +Vertex 2706: Normal +Vertex 2707: Normal +Vertex 2708: Normal +Vertex 2709: Normal +Vertex 2710: Normal +Vertex 2711: Normal +Vertex 2712: Normal +Vertex 2713: Normal +Vertex 2714: Normal +Vertex 2715: Normal +Vertex 2716: Normal +Vertex 2717: Normal +Vertex 2718: Normal +Vertex 2719: Normal +Vertex 2720: Normal +Vertex 2721: Normal +Vertex 2722: Normal +Vertex 2723: Normal +Vertex 2724: Normal +Vertex 2725: Normal +Vertex 2726: Normal +Vertex 2727: Normal +Vertex 2728: Normal +Vertex 2729: Normal +Vertex 2730: Normal +Vertex 2731: Normal +Vertex 2732: Normal +Vertex 2733: Normal +Vertex 2734: Normal +Vertex 2735: Normal +Vertex 2736: Normal +Vertex 2737: Normal +Vertex 2738: Normal +Vertex 2739: Normal +Vertex 2740: Normal +Vertex 2741: Normal +Vertex 2742: Normal +Vertex 2743: Normal +Vertex 2744: Normal +Vertex 2745: Normal +Vertex 2746: Normal +Vertex 2747: Normal +Vertex 2748: Normal +Vertex 2749: Normal +Vertex 2750: Normal +Vertex 2751: Normal +Vertex 2752: Normal +Vertex 2753: Normal +Vertex 2754: Normal +Vertex 2755: Normal +Vertex 2756: Normal +Vertex 2757: Normal +Vertex 2758: Normal +Vertex 2759: Normal +Vertex 2760: Normal +Vertex 2761: Normal +Vertex 2762: Normal +Vertex 2763: Normal +Vertex 2764: Normal +Vertex 2765: Normal +Vertex 2766: Normal +Vertex 2767: Normal +Vertex 2768: Normal +Vertex 2769: Normal +Vertex 2770: Normal +Vertex 2771: Normal +Vertex 2772: Normal +Vertex 2773: Normal +Vertex 2774: Normal +Vertex 2775: Normal +Vertex 2776: Normal +Vertex 2777: Normal +Vertex 2778: Normal +Vertex 2779: Normal +Vertex 2780: Normal +Vertex 2781: Normal +Vertex 2782: Normal +Vertex 2783: Normal +Vertex 2784: Normal +Vertex 2785: Normal +Vertex 2786: Normal +Vertex 2787: Normal +Vertex 2788: Normal +Vertex 2789: Normal +Vertex 2790: Normal +Vertex 2791: Normal +Vertex 2792: Normal +Vertex 2793: Normal +Vertex 2794: Normal +Vertex 2795: Normal +Vertex 2796: Normal +Vertex 2797: Normal +Vertex 2798: Normal +Vertex 2799: Normal +Vertex 2800: Normal +Vertex 2801: Normal +Vertex 2802: Normal +Vertex 2803: Normal +Vertex 2804: Normal +Vertex 2805: Normal +Vertex 2806: Normal +Vertex 2807: Normal +Vertex 2808: Normal +Vertex 2809: Normal +Vertex 2810: Normal +Vertex 2811: Normal +Vertex 2812: Normal +Vertex 2813: Normal +Vertex 2814: Normal +Vertex 2815: Normal +Vertex 2816: Normal +Vertex 2817: Normal +Vertex 2818: Normal +Vertex 2819: Normal +Vertex 2820: Normal +Vertex 2821: Normal +Vertex 2822: Normal +Vertex 2823: Normal +Vertex 2824: Normal +Vertex 2825: Normal +Vertex 2826: Normal +Vertex 2827: Normal +Vertex 2828: Normal +Vertex 2829: Normal +Vertex 2830: Normal +Vertex 2831: Normal +Vertex 2832: Normal +Vertex 2833: Normal +Vertex 2834: Normal +Vertex 2835: Normal +Vertex 2836: Normal +Vertex 2837: Normal +Vertex 2838: Normal +Vertex 2839: Normal +Vertex 2840: Normal +Vertex 2841: Normal +Vertex 2842: Normal +Vertex 2843: Normal +Vertex 2844: Normal +Vertex 2845: Normal +Vertex 2846: Normal +Vertex 2847: Normal +Vertex 2848: Normal +Vertex 2849: Normal +Vertex 2850: Normal +Vertex 2851: Normal +Vertex 2852: Normal +Vertex 2853: Normal +Vertex 2854: Normal +Vertex 2855: Normal +Vertex 2856: Normal +Vertex 2857: Normal +Vertex 2858: Normal +Vertex 2859: Normal +Vertex 2860: Normal +Vertex 2861: Normal +Vertex 2862: Normal +Vertex 2863: Normal +Vertex 2864: Normal +Vertex 2865: Normal +Vertex 2866: Normal +Vertex 2867: Normal +Vertex 2868: Normal +Vertex 2869: Normal +Vertex 2870: Normal +Vertex 2871: Normal +Vertex 2872: Normal +Vertex 2873: Normal +Vertex 2874: Normal +Vertex 2875: Normal +Vertex 2876: Normal +Vertex 2877: Normal +Vertex 2878: Normal +Vertex 2879: Normal +Vertex 2880: Normal +Vertex 2881: Normal +Vertex 2882: Normal +Vertex 2883: Normal +Vertex 2884: Normal +Vertex 2885: Normal +Vertex 2886: Normal +Vertex 2887: Normal +Vertex 2888: Normal +Vertex 2889: Normal +Vertex 2890: Normal +Vertex 2891: Normal +Vertex 2892: Normal +Vertex 2893: Normal +Vertex 2894: Normal +Vertex 2895: Normal +Vertex 2896: Normal +Vertex 2897: Normal +Vertex 2898: Normal +Vertex 2899: Normal +Vertex 2900: Normal +Vertex 2901: Normal +Vertex 2902: Normal +Vertex 2903: Normal +Vertex 2904: Normal +Vertex 2905: Normal +Vertex 2906: Normal +Vertex 2907: Normal +Vertex 2908: Normal +Vertex 2909: Normal +Vertex 2910: Normal +Vertex 2911: Normal +Vertex 2912: Normal +Vertex 2913: Normal +Vertex 2914: Normal +Vertex 2915: Normal +Vertex 2916: Normal +Vertex 2917: Normal +Vertex 2918: Normal +Vertex 2919: Normal +Vertex 2920: Normal +Vertex 2921: Normal +Vertex 2922: Normal +Vertex 2923: Normal +Vertex 2924: Normal +Vertex 2925: Normal +Vertex 2926: Normal +Vertex 2927: Normal +Vertex 2928: Normal +Vertex 2929: Normal +Vertex 2930: Normal +Vertex 2931: Normal +Vertex 2932: Normal +Vertex 2933: Normal +Vertex 2934: Normal +Vertex 2935: Normal +Vertex 2936: Normal +Vertex 2937: Normal +Vertex 2938: Normal +Vertex 2939: Normal +Vertex 2940: Normal +Vertex 2941: Normal +Vertex 2942: Normal +Vertex 2943: Normal +Vertex 2944: Normal +Vertex 2945: Normal +Vertex 2946: Normal +Vertex 2947: Normal +Vertex 2948: Normal +Vertex 2949: Normal +Vertex 2950: Normal +Vertex 2951: Normal +Vertex 2952: Normal +Vertex 2953: Normal +Vertex 2954: Normal +Vertex 2955: Normal +Vertex 2956: Normal +Vertex 2957: Normal +Vertex 2958: Normal +Vertex 2959: Normal +Vertex 2960: Normal +Vertex 2961: Normal +Vertex 2962: Normal +Vertex 2963: Normal +Vertex 2964: Normal +Vertex 2965: Normal +Vertex 2966: Normal +Vertex 2967: Normal +Vertex 2968: Normal +Vertex 2969: Normal +Vertex 2970: Normal +Vertex 2971: Normal +Vertex 2972: Normal +Vertex 2973: Normal +Vertex 2974: Normal +Vertex 2975: Normal +Vertex 2976: Normal +Vertex 2977: Normal +Vertex 2978: Normal +Vertex 2979: Normal +Vertex 2980: Normal +Vertex 2981: Normal +Vertex 2982: Normal +Vertex 2983: Normal +Vertex 2984: Normal +Vertex 2985: Normal +Vertex 2986: Normal +Vertex 2987: Normal +Vertex 2988: Normal +Vertex 2989: Normal +Vertex 2990: Normal +Vertex 2991: Normal +Vertex 2992: Normal +Vertex 2993: Normal +Vertex 2994: Normal +Vertex 2995: Normal +Vertex 2996: Normal +Vertex 2997: Normal +Vertex 2998: Normal +Vertex 2999: Normal +Vertex 3000: Normal +Vertex 3001: Normal +Vertex 3002: Normal +Vertex 3003: Normal +Vertex 3004: Normal +Vertex 3005: Normal +Vertex 3006: Normal +Vertex 3007: Normal +Vertex 3008: Normal +Vertex 3009: Normal +Vertex 3010: Normal +Vertex 3011: Normal +Vertex 3012: Normal +Vertex 3013: Normal +Vertex 3014: Normal +Vertex 3015: Normal +Vertex 3016: Normal +Vertex 3017: Normal +Vertex 3018: Normal +Vertex 3019: Normal +Vertex 3020: Normal +Vertex 3021: Normal +Vertex 3022: Normal +Vertex 3023: Normal +Vertex 3024: Normal +Vertex 3025: Normal +Vertex 3026: Normal +Vertex 3027: Normal +Vertex 3028: Normal +Vertex 3029: Normal +Vertex 3030: Normal +Vertex 3031: Normal +Vertex 3032: Normal +Vertex 3033: Normal +Vertex 3034: Normal +Vertex 3035: Normal +Vertex 3036: Normal +Vertex 3037: Normal +Vertex 3038: Normal +Vertex 3039: Normal +Vertex 3040: Normal +Vertex 3041: Normal +Vertex 3042: Normal +Vertex 3043: Normal +Vertex 3044: Normal +Vertex 3045: Normal +Vertex 3046: Normal +Vertex 3047: Normal +Vertex 3048: Normal +Vertex 3049: Normal +Vertex 3050: Normal +Vertex 3051: Normal +Vertex 3052: Normal +Vertex 3053: Normal +Vertex 3054: Normal +Vertex 3055: Normal +Vertex 3056: Normal +Vertex 3057: Normal +Vertex 3058: Normal +Vertex 3059: Normal +Vertex 3060: Normal +Vertex 3061: Normal +Vertex 3062: Normal +Vertex 3063: Normal +Vertex 3064: Normal +Vertex 3065: Normal +Vertex 3066: Normal +Vertex 3067: Normal +Vertex 3068: Normal +Vertex 3069: Normal +Vertex 3070: Normal +Vertex 3071: Normal +Vertex 3072: Normal +Vertex 3073: Normal +Vertex 3074: Normal +Vertex 3075: Normal +Vertex 3076: Normal +Vertex 3077: Normal +Vertex 3078: Normal +Vertex 3079: Normal +Vertex 3080: Normal +Vertex 3081: Normal +Vertex 3082: Normal +Vertex 3083: Normal +Vertex 3084: Normal +Vertex 3085: Normal +Vertex 3086: Normal +Vertex 3087: Normal +Vertex 3088: Normal +Vertex 3089: Normal +Vertex 3090: Normal +Vertex 3091: Normal +Vertex 3092: Normal +Vertex 3093: Normal +Vertex 3094: Normal +Vertex 3095: Normal +Vertex 3096: Normal +Vertex 3097: Normal +Vertex 3098: Normal +Vertex 3099: Normal +Vertex 3100: Normal +Vertex 3101: Normal +Vertex 3102: Normal +Vertex 3103: Normal +Vertex 3104: Normal +Vertex 3105: Normal +Vertex 3106: Normal +Vertex 3107: Normal +Vertex 3108: Normal +Vertex 3109: Normal +Vertex 3110: Normal +Vertex 3111: Normal +Vertex 3112: Normal +Vertex 3113: Normal +Vertex 3114: Normal +Vertex 3115: Normal +Vertex 3116: Normal +Vertex 3117: Normal +Vertex 3118: Normal +Vertex 3119: Normal +Vertex 3120: Normal +Vertex 3121: Normal +Vertex 3122: Normal +Vertex 3123: Normal +Vertex 3124: Normal +Vertex 3125: Normal +Vertex 3126: Normal +Vertex 3127: Normal +Vertex 3128: Normal +Vertex 3129: Normal +Vertex 3130: Normal +Vertex 3131: Normal +Vertex 3132: Normal +Vertex 3133: Normal +Vertex 3134: Normal +Vertex 3135: Normal +Vertex 3136: Normal +Vertex 3137: Normal +Vertex 3138: Normal +Vertex 3139: Normal +Vertex 3140: Normal +Vertex 3141: Normal +Vertex 3142: Normal +Vertex 3143: Normal +Vertex 3144: Normal +Vertex 3145: Normal +Vertex 3146: Normal +Vertex 3147: Normal +Vertex 3148: Normal +Vertex 3149: Normal +Vertex 3150: Normal +Vertex 3151: Normal +Vertex 3152: Normal +Vertex 3153: Normal +Vertex 3154: Normal +Vertex 3155: Normal +Vertex 3156: Normal +Vertex 3157: Normal +Vertex 3158: Normal +Vertex 3159: Normal +Vertex 3160: Normal +Vertex 3161: Normal +Vertex 3162: Normal +Vertex 3163: Normal +Vertex 3164: Normal +Vertex 3165: Normal +Vertex 3166: Normal +Vertex 3167: Normal +Vertex 3168: Normal +Vertex 3169: Normal +Vertex 3170: Normal +Vertex 3171: Normal +Vertex 3172: Normal +Vertex 3173: Normal +Vertex 3174: Normal +Vertex 3175: Normal +Vertex 3176: Normal +Vertex 3177: Normal +Vertex 3178: Normal +Vertex 3179: Normal +Vertex 3180: Normal +Vertex 3181: Normal +Vertex 3182: Normal +Vertex 3183: Normal +Vertex 3184: Normal +Vertex 3185: Normal +Vertex 3186: Normal +Vertex 3187: Normal +Vertex 3188: Normal +Vertex 3189: Normal +Vertex 3190: Normal +Vertex 3191: Normal +Vertex 3192: Normal +Vertex 3193: Normal +Vertex 3194: Normal +Vertex 3195: Normal +Vertex 3196: Normal +Vertex 3197: Normal +Vertex 3198: Normal +Vertex 3199: Normal +Vertex 3200: Normal +Vertex 3201: Normal +Vertex 3202: Normal +Vertex 3203: Normal +Vertex 3204: Normal +Vertex 3205: Normal +Vertex 3206: Normal +Vertex 3207: Normal +Vertex 3208: Normal +Vertex 3209: Normal +Vertex 3210: Normal +Vertex 3211: Normal +Vertex 3212: Normal +Vertex 3213: Normal +Vertex 3214: Normal +Vertex 3215: Normal +Vertex 3216: Normal +Vertex 3217: Normal +Vertex 3218: Normal +Vertex 3219: Normal +Vertex 3220: Normal +Vertex 3221: Normal +Vertex 3222: Normal +Vertex 3223: Normal +Vertex 3224: Normal +Vertex 3225: Normal +Vertex 3226: Normal +Vertex 3227: Normal +Vertex 3228: Normal +Vertex 3229: Normal +Vertex 3230: Normal +Vertex 3231: Normal +Vertex 3232: Normal +Vertex 3233: Normal +Vertex 3234: Normal +Vertex 3235: Normal +Vertex 3236: Normal +Vertex 3237: Normal +Vertex 3238: Normal +Vertex 3239: Normal +Vertex 3240: Normal +Vertex 3241: Normal +Vertex 3242: Normal +Vertex 3243: Normal +Vertex 3244: Normal +Vertex 3245: Normal +Vertex 3246: Normal +Vertex 3247: Normal +Vertex 3248: Normal +Vertex 3249: Normal +Vertex 3250: Normal +Vertex 3251: Normal +Vertex 3252: Normal +Vertex 3253: Normal +Vertex 3254: Normal +Vertex 3255: Normal +Vertex 3256: Normal +Vertex 3257: Normal +Vertex 3258: Normal +Vertex 3259: Normal +Vertex 3260: Normal +Vertex 3261: Normal +Vertex 3262: Normal +Vertex 3263: Normal +Vertex 3264: Normal +Vertex 3265: Normal +Vertex 3266: Normal +Vertex 3267: Normal +Vertex 3268: Normal +Vertex 3269: Normal +Vertex 3270: Normal +Vertex 3271: Normal +Vertex 3272: Normal +Vertex 3273: Normal +Vertex 3274: Normal +Vertex 3275: Normal +Vertex 3276: Normal +Vertex 3277: Normal +Vertex 3278: Normal +Vertex 3279: Normal +Vertex 3280: Normal +Vertex 3281: Normal +Vertex 3282: Normal +Vertex 3283: Normal +Vertex 3284: Normal +Vertex 3285: Normal +Vertex 3286: Normal +Vertex 3287: Normal +Vertex 3288: Normal +Vertex 3289: Normal +Vertex 3290: Normal +Vertex 3291: Normal +Vertex 3292: Normal +Vertex 3293: Normal +Vertex 3294: Normal +Vertex 3295: Normal +Vertex 3296: Normal +Vertex 3297: Normal +Vertex 3298: Normal +Vertex 3299: Normal +Vertex 3300: Normal +Vertex 3301: Normal +Vertex 3302: Normal +Vertex 3303: Normal +Vertex 3304: Normal +Vertex 3305: Normal +Vertex 3306: Normal +Vertex 3307: Normal +Vertex 3308: Normal +Vertex 3309: Normal +Vertex 3310: Normal +Vertex 3311: Normal +Vertex 3312: Normal +Vertex 3313: Normal +Vertex 3314: Normal +Vertex 3315: Normal +Vertex 3316: Normal +Vertex 3317: Normal +Vertex 3318: Normal +Vertex 3319: Normal +Vertex 3320: Normal +Vertex 3321: Normal +Vertex 3322: Normal +Vertex 3323: Normal +Vertex 3324: Normal +Vertex 3325: Normal +Vertex 3326: Normal +Vertex 3327: Normal +Vertex 3328: Normal +Vertex 3329: Normal +Vertex 3330: Normal +Vertex 3331: Normal +Vertex 3332: Normal +Vertex 3333: Normal +Vertex 3334: Normal +Vertex 3335: Normal +Vertex 3336: Normal +Vertex 3337: Normal +Vertex 3338: Normal +Vertex 3339: Normal +Vertex 3340: Normal +Vertex 3341: Normal +Vertex 3342: Normal +Vertex 3343: Normal +Vertex 3344: Normal +Vertex 3345: Normal +Vertex 3346: Normal +Vertex 3347: Normal +Vertex 3348: Normal +Vertex 3349: Normal +Vertex 3350: Normal +Vertex 3351: Normal +Vertex 3352: Normal +Vertex 3353: Normal +Vertex 3354: Normal +Vertex 3355: Normal +Vertex 3356: Normal +Vertex 3357: Normal +Vertex 3358: Normal +Vertex 3359: Normal +Vertex 3360: Normal +Vertex 3361: Normal +Vertex 3362: Normal +Vertex 3363: Normal +Vertex 3364: Normal +Vertex 3365: Normal +Vertex 3366: Normal +Vertex 3367: Normal +Vertex 3368: Normal +Vertex 3369: Normal +Vertex 3370: Normal +Vertex 3371: Normal +Vertex 3372: Normal +Vertex 3373: Normal +Vertex 3374: Normal +Vertex 3375: Normal +Vertex 3376: Normal +Vertex 3377: Normal +Vertex 3378: Normal +Vertex 3379: Normal +Vertex 3380: Normal +Vertex 3381: Normal +Vertex 3382: Normal +Vertex 3383: Normal +Vertex 3384: Normal +Vertex 3385: Normal +Vertex 3386: Normal +Vertex 3387: Normal +Vertex 3388: Normal +Vertex 3389: Normal +Vertex 3390: Normal +Vertex 3391: Normal +Vertex 3392: Normal +Vertex 3393: Normal +Vertex 3394: Normal +Vertex 3395: Normal +Vertex 3396: Normal +Vertex 3397: Normal +Vertex 3398: Normal +Vertex 3399: Normal +Vertex 3400: Normal +Vertex 3401: Normal +Vertex 3402: Normal +Vertex 3403: Normal +Vertex 3404: Normal +Vertex 3405: Normal +Vertex 3406: Normal +Vertex 3407: Normal +Vertex 3408: Normal +Vertex 3409: Normal +Vertex 3410: Normal +Vertex 3411: Normal +Vertex 3412: Normal +Vertex 3413: Normal +Vertex 3414: Normal +Vertex 3415: Normal +Vertex 3416: Normal +Vertex 3417: Normal +Vertex 3418: Normal +Vertex 3419: Normal +Vertex 3420: Normal +Vertex 3421: Normal +Vertex 3422: Normal +Vertex 3423: Normal +Vertex 3424: Normal +Vertex 3425: Normal +Vertex 3426: Normal +Vertex 3427: Normal +Vertex 3428: Normal +Vertex 3429: Normal +Vertex 3430: Normal +Vertex 3431: Normal +Vertex 3432: Normal +Vertex 3433: Normal +Vertex 3434: Normal +Vertex 3435: Normal +Vertex 3436: Normal +Vertex 3437: Normal +Vertex 3438: Normal +Vertex 3439: Normal +Vertex 3440: Normal +Vertex 3441: Normal +Vertex 3442: Normal +Vertex 3443: Normal +Vertex 3444: Normal +Vertex 3445: Normal +Vertex 3446: Normal +Vertex 3447: Normal +Vertex 3448: Normal +Vertex 3449: Normal +Vertex 3450: Normal +Vertex 3451: Normal +Vertex 3452: Normal +Vertex 3453: Normal +Vertex 3454: Normal +Vertex 3455: Normal +Vertex 3456: Normal +Vertex 3457: Normal +Vertex 3458: Normal +Vertex 3459: Normal +Vertex 3460: Normal +Vertex 3461: Normal +Vertex 3462: Normal +Vertex 3463: Normal +Vertex 3464: Normal +Vertex 3465: Normal +Vertex 3466: Normal +Vertex 3467: Normal +Vertex 3468: Normal +Vertex 3469: Normal +Vertex 3470: Normal +Vertex 3471: Normal +Vertex 3472: Normal +Vertex 3473: Normal +Vertex 3474: Normal +Vertex 3475: Normal +Vertex 3476: Normal +Vertex 3477: Normal +Vertex 3478: Normal +Vertex 3479: Normal +Vertex 3480: Normal +Vertex 3481: Normal +Vertex 3482: Normal +Vertex 3483: Normal +Vertex 3484: Normal +Vertex 3485: Normal +Vertex 3486: Normal +Vertex 3487: Normal +Vertex 3488: Normal +Vertex 3489: Normal +Vertex 3490: Normal +Vertex 3491: Normal +Vertex 3492: Normal +Vertex 3493: Normal +Vertex 3494: Normal +Vertex 3495: Normal +Vertex 3496: Normal +Vertex 3497: Normal +Vertex 3498: Normal +Vertex 3499: Normal +Vertex 3500: Normal +Vertex 3501: Normal +Vertex 3502: Normal +Vertex 3503: Normal +Vertex 3504: Normal +Vertex 3505: Normal +Vertex 3506: Normal +Vertex 3507: Normal +Vertex 3508: Normal +Vertex 3509: Normal +Vertex 3510: Normal +Vertex 3511: Normal +Vertex 3512: Normal +Vertex 3513: Normal +Vertex 3514: Normal +Vertex 3515: Normal +Vertex 3516: Normal +Vertex 3517: Normal +Vertex 3518: Normal +Vertex 3519: Normal +Vertex 3520: Normal +Vertex 3521: Normal +Vertex 3522: Normal +Vertex 3523: Normal +Vertex 3524: Normal +Vertex 3525: Normal +Vertex 3526: Normal +Vertex 3527: Normal +Vertex 3528: Normal +Vertex 3529: Normal +Vertex 3530: Normal +Vertex 3531: Normal +Vertex 3532: Normal +Vertex 3533: Normal +Vertex 3534: Normal +Vertex 3535: Normal +Vertex 3536: Normal +Vertex 3537: Normal +Vertex 3538: Normal +Vertex 3539: Normal +Vertex 3540: Normal +Vertex 3541: Normal +Vertex 3542: Normal +Vertex 3543: Normal +Vertex 3544: Normal +Vertex 3545: Normal +Vertex 3546: Normal +Vertex 3547: Normal +Vertex 3548: Normal +Vertex 3549: Normal +Vertex 3550: Normal +Vertex 3551: Normal +Vertex 3552: Normal +Vertex 3553: Normal +Vertex 3554: Normal +Vertex 3555: Normal +Vertex 3556: Normal +Vertex 3557: Normal +Vertex 3558: Normal +Vertex 3559: Normal +Vertex 3560: Normal +Vertex 3561: Normal +Vertex 3562: Normal +Vertex 3563: Normal +Vertex 3564: Normal +Vertex 3565: Normal +Vertex 3566: Normal +Vertex 3567: Normal +Vertex 3568: Normal +Vertex 3569: Normal +Vertex 3570: Normal +Vertex 3571: Normal +Vertex 3572: Normal +Vertex 3573: Normal +Vertex 3574: Normal +Vertex 3575: Normal +Vertex 3576: Normal +Vertex 3577: Normal +Vertex 3578: Normal +Vertex 3579: Normal +Vertex 3580: Normal +Vertex 3581: Normal +Vertex 3582: Normal +Vertex 3583: Normal +Vertex 3584: Normal +Vertex 3585: Normal +Vertex 3586: Normal +Vertex 3587: Normal +Vertex 3588: Normal +Vertex 3589: Normal +Vertex 3590: Normal +Vertex 3591: Normal +Vertex 3592: Normal +Vertex 3593: Normal +Vertex 3594: Normal +Vertex 3595: Normal +Vertex 3596: Normal +Vertex 3597: Normal +Vertex 3598: Normal +Vertex 3599: Normal +Vertex 3600: Normal +Vertex 3601: Normal +Vertex 3602: Normal +Vertex 3603: Normal +Vertex 3604: Normal +Vertex 3605: Normal +Vertex 3606: Normal +Vertex 3607: Normal +Vertex 3608: Normal +Vertex 3609: Normal +Vertex 3610: Normal +Vertex 3611: Normal +Vertex 3612: Normal +Vertex 3613: Normal +Vertex 3614: Normal +Vertex 3615: Normal +Vertex 3616: Normal +Vertex 3617: Normal +Vertex 3618: Normal +Vertex 3619: Normal +Vertex 3620: Normal +Vertex 3621: Normal +Vertex 3622: Normal +Vertex 3623: Normal +Vertex 3624: Normal +Vertex 3625: Normal +Vertex 3626: Normal +Vertex 3627: Normal +Vertex 3628: Normal +Vertex 3629: Normal +Vertex 3630: Normal +Vertex 3631: Normal +Vertex 3632: Normal +Vertex 3633: Normal +Vertex 3634: Normal +Vertex 3635: Normal +Vertex 3636: Normal +Vertex 3637: Normal +Vertex 3638: Normal +Vertex 3639: Normal +Vertex 3640: Normal +Vertex 3641: Normal +Vertex 3642: Normal +Vertex 3643: Normal +Vertex 3644: Normal +Vertex 3645: Normal +Vertex 3646: Normal +Vertex 3647: Normal +Vertex 3648: Normal +Vertex 3649: Normal +Vertex 3650: Normal +Vertex 3651: Normal +Vertex 3652: Normal +Vertex 3653: Normal +Vertex 3654: Normal +Vertex 3655: Normal +Vertex 3656: Normal +Vertex 3657: Normal +Vertex 3658: Normal +Vertex 3659: Normal +Vertex 3660: Normal +Vertex 3661: Normal +Vertex 3662: Normal +Vertex 3663: Normal +Vertex 3664: Normal +Vertex 3665: Normal +Vertex 3666: Normal +Vertex 3667: Normal +Vertex 3668: Normal +Vertex 3669: Normal +Vertex 3670: Normal +Vertex 3671: Normal +Vertex 3672: Normal +Vertex 3673: Normal +Vertex 3674: Normal +Vertex 3675: Normal +Vertex 3676: Normal +Vertex 3677: Normal +Vertex 3678: Normal +Vertex 3679: Normal +Vertex 3680: Normal +Vertex 3681: Normal +Vertex 3682: Normal +Vertex 3683: Normal +Vertex 3684: Normal +Vertex 3685: Normal +Vertex 3686: Normal +Vertex 3687: Normal +Vertex 3688: Normal +Vertex 3689: Normal +Vertex 3690: Normal +Vertex 3691: Normal +Vertex 3692: Normal +Vertex 3693: Normal +Vertex 3694: Normal +Vertex 3695: Normal +Vertex 3696: Normal +Vertex 3697: Normal +Vertex 3698: Normal +Vertex 3699: Normal +Vertex 3700: Normal +Vertex 3701: Normal +Vertex 3702: Normal +Vertex 3703: Normal +Vertex 3704: Normal +Vertex 3705: Normal +Vertex 3706: Normal +Vertex 3707: Normal +Vertex 3708: Normal +Vertex 3709: Normal +Vertex 3710: Normal +Vertex 3711: Normal +Vertex 3712: Normal +Vertex 3713: Normal +Vertex 3714: Normal +Vertex 3715: Normal +Vertex 3716: Normal +Vertex 3717: Normal +Vertex 3718: Normal +Vertex 3719: Normal +Vertex 3720: Normal +Vertex 3721: Normal +Vertex 3722: Normal +Vertex 3723: Normal +Vertex 3724: Normal +Vertex 3725: Normal +Vertex 3726: Normal +Vertex 3727: Normal +Vertex 3728: Normal +Vertex 3729: Normal +Vertex 3730: Normal +Vertex 3731: Normal +Vertex 3732: Normal +Vertex 3733: Normal +Vertex 3734: Normal +Vertex 3735: Normal +Vertex 3736: Normal +Vertex 3737: Normal +Vertex 3738: Normal +Vertex 3739: Normal +Vertex 3740: Normal +Vertex 3741: Normal +Vertex 3742: Normal +Vertex 3743: Normal +Vertex 3744: Normal +Vertex 3745: Normal +Vertex 3746: Normal +Vertex 3747: Normal +Vertex 3748: Normal +Vertex 3749: Normal +Vertex 3750: Normal +Vertex 3751: Normal +Vertex 3752: Normal +Vertex 3753: Normal +Vertex 3754: Normal +Vertex 3755: Normal +Vertex 3756: Normal +Vertex 3757: Normal +Vertex 3758: Normal +Vertex 3759: Normal +Vertex 3760: Normal +Vertex 3761: Normal +Vertex 3762: Normal +Vertex 3763: Normal +Vertex 3764: Normal +Vertex 3765: Normal +Vertex 3766: Normal +Vertex 3767: Normal +Vertex 3768: Normal +Vertex 3769: Normal +Vertex 3770: Normal +Vertex 3771: Normal +Vertex 3772: Normal +Vertex 3773: Normal +Vertex 3774: Normal +Vertex 3775: Normal +Vertex 3776: Normal +Vertex 3777: Normal +Vertex 3778: Normal +Vertex 3779: Normal +Vertex 3780: Normal +Vertex 3781: Normal +Vertex 3782: Normal +Vertex 3783: Normal +Vertex 3784: Normal +Vertex 3785: Normal +Vertex 3786: Normal +Vertex 3787: Normal +Vertex 3788: Normal +Vertex 3789: Normal +Vertex 3790: Normal +Vertex 3791: Normal +Vertex 3792: Normal +Vertex 3793: Normal +Vertex 3794: Normal +Vertex 3795: Normal +Vertex 3796: Normal +Vertex 3797: Normal +Vertex 3798: Normal +Vertex 3799: Normal +Vertex 3800: Normal +Vertex 3801: Normal +Vertex 3802: Normal +Vertex 3803: Normal +Vertex 3804: Normal +Vertex 3805: Normal +Vertex 3806: Normal +Vertex 3807: Normal +Vertex 3808: Normal +Vertex 3809: Normal +Vertex 3810: Normal +Vertex 3811: Normal +Vertex 3812: Normal +Vertex 3813: Normal +Vertex 3814: Normal +Vertex 3815: Normal +Vertex 3816: Normal +Vertex 3817: Normal +Vertex 3818: Normal +Vertex 3819: Normal +Vertex 3820: Normal +Vertex 3821: Normal +Vertex 3822: Normal +Vertex 3823: Normal +Vertex 3824: Normal +Vertex 3825: Normal +Vertex 3826: Normal +Vertex 3827: Normal +Vertex 3828: Normal +Vertex 3829: Normal +Vertex 3830: Normal +Vertex 3831: Normal +Vertex 3832: Normal +Vertex 3833: Normal +Vertex 3834: Normal +Vertex 3835: Normal +Vertex 3836: Normal +Vertex 3837: Normal +Vertex 3838: Normal +Vertex 3839: Normal +Vertex 3840: Normal +Vertex 3841: Normal +Vertex 3842: Normal +Vertex 3843: Normal +Vertex 3844: Normal +Vertex 3845: Normal +Vertex 3846: Normal +Vertex 3847: Normal +Vertex 3848: Normal +Vertex 3849: Normal +Vertex 3850: Normal +Vertex 3851: Normal +Vertex 3852: Normal +Vertex 3853: Normal +Vertex 3854: Normal +Vertex 3855: Normal +Vertex 3856: Normal +Vertex 3857: Normal +Vertex 3858: Normal +Vertex 3859: Normal +Vertex 3860: Normal +Vertex 3861: Normal +Vertex 3862: Normal +Vertex 3863: Normal +Vertex 3864: Normal +Vertex 3865: Normal +Vertex 3866: Normal +Vertex 3867: Normal +Vertex 3868: Normal +Vertex 3869: Normal +Vertex 3870: Normal +Vertex 3871: Normal +Vertex 3872: Normal +Vertex 3873: Normal +Vertex 3874: Normal +Vertex 3875: Normal +Vertex 3876: Normal +Vertex 3877: Normal +Vertex 3878: Normal +Vertex 3879: Normal +Vertex 3880: Normal +Vertex 3881: Normal +Vertex 3882: Normal +Vertex 3883: Normal +Vertex 3884: Normal +Vertex 3885: Normal +Vertex 3886: Normal +Vertex 3887: Normal +Vertex 3888: Normal +Vertex 3889: Normal +Vertex 3890: Normal +Vertex 3891: Normal +Vertex 3892: Normal +Vertex 3893: Normal +Vertex 3894: Normal +Vertex 3895: Normal +Vertex 3896: Normal +Vertex 3897: Normal +Vertex 3898: Normal +Vertex 3899: Normal +Vertex 3900: Normal +Vertex 3901: Normal +Vertex 3902: Normal +Vertex 3903: Normal +Vertex 3904: Normal +Vertex 3905: Normal +Vertex 3906: Normal +Vertex 3907: Normal +Vertex 3908: Normal +Vertex 3909: Normal +Vertex 3910: Normal +Vertex 3911: Normal +Vertex 3912: Normal +Vertex 3913: Normal +Vertex 3914: Normal +Vertex 3915: Normal +Vertex 3916: Normal +Vertex 3917: Normal +Vertex 3918: Normal +Vertex 3919: Normal +Vertex 3920: Normal +Vertex 3921: Normal +Vertex 3922: Normal +Vertex 3923: Normal +Vertex 3924: Normal +Vertex 3925: Normal +Vertex 3926: Normal +Vertex 3927: Normal +Vertex 3928: Normal +Vertex 3929: Normal +Vertex 3930: Normal +Vertex 3931: Normal +Vertex 3932: Normal +Vertex 3933: Normal +Vertex 3934: Normal +Vertex 3935: Normal +Vertex 3936: Normal +Vertex 3937: Normal +Vertex 3938: Normal +Vertex 3939: Normal +Vertex 3940: Normal +Vertex 3941: Normal +Vertex 3942: Normal +Vertex 3943: Normal +Vertex 3944: Normal +Vertex 3945: Normal +Vertex 3946: Normal +Vertex 3947: Normal +Vertex 3948: Normal +Vertex 3949: Normal +Vertex 3950: Normal +Vertex 3951: Normal +Vertex 3952: Normal +Vertex 3953: Normal +Vertex 3954: Normal +Vertex 3955: Normal +Vertex 3956: Normal +Vertex 3957: Normal +Vertex 3958: Normal +Vertex 3959: Normal +Vertex 3960: Normal +Vertex 3961: Normal +Vertex 3962: Normal +Vertex 3963: Normal +Vertex 3964: Normal +Vertex 3965: Normal +Vertex 3966: Normal +Vertex 3967: Normal +Vertex 3968: Normal +Vertex 3969: Normal +Vertex 3970: Normal +Vertex 3971: Normal +Vertex 3972: Normal +Vertex 3973: Normal +Vertex 3974: Normal +Vertex 3975: Normal +Vertex 3976: Normal +Vertex 3977: Normal +Vertex 3978: Normal +Vertex 3979: Normal +Vertex 3980: Normal +Vertex 3981: Normal +Vertex 3982: Normal +Vertex 3983: Normal +Vertex 3984: Normal +Vertex 3985: Normal +Vertex 3986: Normal +Vertex 3987: Normal +Vertex 3988: Normal +Vertex 3989: Normal +Vertex 3990: Normal +Vertex 3991: Normal +Vertex 3992: Normal +Vertex 3993: Normal +Vertex 3994: Normal +Vertex 3995: Normal +Vertex 3996: Normal +Vertex 3997: Normal +Vertex 3998: Normal +Vertex 3999: Normal +Vertex 4000: Normal +Vertex 4001: Normal +Vertex 4002: Normal +Vertex 4003: Normal +Vertex 4004: Normal +Vertex 4005: Normal +Vertex 4006: Normal +Vertex 4007: Normal +Vertex 4008: Normal +Vertex 4009: Normal +Vertex 4010: Normal +Vertex 4011: Normal +Vertex 4012: Normal +Vertex 4013: Normal +Vertex 4014: Normal +Vertex 4015: Normal +Vertex 4016: Normal +Vertex 4017: Normal +Vertex 4018: Normal +Vertex 4019: Normal +Vertex 4020: Normal +Vertex 4021: Normal +Vertex 4022: Normal +Vertex 4023: Normal +Vertex 4024: Normal +Vertex 4025: Normal +Vertex 4026: Normal +Vertex 4027: Normal +Vertex 4028: Normal +Vertex 4029: Normal +Vertex 4030: Normal +Vertex 4031: Normal +Vertex 4032: Normal +Vertex 4033: Normal +Vertex 4034: Normal +Vertex 4035: Normal +Vertex 4036: Normal +Vertex 4037: Normal +Vertex 4038: Normal +Vertex 4039: Normal +Vertex 4040: Normal +Vertex 4041: Normal +Vertex 4042: Normal +Vertex 4043: Normal +Vertex 4044: Normal +Vertex 4045: Normal +Vertex 4046: Normal +Vertex 4047: Normal +Vertex 4048: Normal +Vertex 4049: Normal +Vertex 4050: Normal +Vertex 4051: Normal +Vertex 4052: Normal +Vertex 4053: Normal +Vertex 4054: Normal +Vertex 4055: Normal +Vertex 4056: Normal +Vertex 4057: Normal +Vertex 4058: Normal +Vertex 4059: Normal +Vertex 4060: Normal +Vertex 4061: Normal +Vertex 4062: Normal +Vertex 4063: Normal +Vertex 4064: Normal +Vertex 4065: Normal +Vertex 4066: Normal +Vertex 4067: Normal +Vertex 4068: Normal +Vertex 4069: Normal +Vertex 4070: Normal +Vertex 4071: Normal +Vertex 4072: Normal +Vertex 4073: Normal +Vertex 4074: Normal +Vertex 4075: Normal +Vertex 4076: Normal +Vertex 4077: Normal +Vertex 4078: Normal +Vertex 4079: Normal +Vertex 4080: Normal +Vertex 4081: Normal +Vertex 4082: Normal +Vertex 4083: Normal +Vertex 4084: Normal +Vertex 4085: Normal +Vertex 4086: Normal +Vertex 4087: Normal +Vertex 4088: Normal +Vertex 4089: Normal +Vertex 4090: Normal +Vertex 4091: Normal +Vertex 4092: Normal +Vertex 4093: Normal +Vertex 4094: Normal +Vertex 4095: Normal +Vertex 4096: Normal +Vertex 4097: Normal +Vertex 4098: Normal +Vertex 4099: Normal +Vertex 4100: Normal +Vertex 4101: Normal +Vertex 4102: Normal +Vertex 4103: Normal +Vertex 4104: Normal +Vertex 4105: Normal +Vertex 4106: Normal +Vertex 4107: Normal +Vertex 4108: Normal +Vertex 4109: Normal +Vertex 4110: Normal +Vertex 4111: Normal +Vertex 4112: Normal +Vertex 4113: Normal +Vertex 4114: Normal +Vertex 4115: Normal +Vertex 4116: Normal +Vertex 4117: Normal +Vertex 4118: Normal +Vertex 4119: Normal +Vertex 4120: Normal +Vertex 4121: Normal +Vertex 4122: Normal +Vertex 4123: Normal +Vertex 4124: Normal +Vertex 4125: Normal +Vertex 4126: Normal +Vertex 4127: Normal +Vertex 4128: Normal +Vertex 4129: Normal +Vertex 4130: Normal +Vertex 4131: Normal +Vertex 4132: Normal +Vertex 4133: Normal +Vertex 4134: Normal +Vertex 4135: Normal +Vertex 4136: Normal +Vertex 4137: Normal +Vertex 4138: Normal +Vertex 4139: Normal +Vertex 4140: Normal +Vertex 4141: Normal +Vertex 4142: Normal +Vertex 4143: Normal +Vertex 4144: Normal +Vertex 4145: Normal +Vertex 4146: Normal +Vertex 4147: Normal +Vertex 4148: Normal +Vertex 4149: Normal +Vertex 4150: Normal +Vertex 4151: Normal +Vertex 4152: Normal +Vertex 4153: Normal +Vertex 4154: Normal +Vertex 4155: Normal +Vertex 4156: Normal +Vertex 4157: Normal +Vertex 4158: Normal +Vertex 4159: Normal +Vertex 4160: Normal +Vertex 4161: Normal +Vertex 4162: Normal +Vertex 4163: Normal +Vertex 4164: Normal +Vertex 4165: Normal +Vertex 4166: Normal +Vertex 4167: Normal +Vertex 4168: Normal +Vertex 4169: Normal +Vertex 4170: Normal +Vertex 4171: Normal +Vertex 4172: Normal +Vertex 4173: Normal +Vertex 4174: Normal +Vertex 4175: Normal +Vertex 4176: Normal +Vertex 4177: Normal +Vertex 4178: Normal +Vertex 4179: Normal +Vertex 4180: Normal +Vertex 4181: Normal +Vertex 4182: Normal +Vertex 4183: Normal +Vertex 4184: Normal +Vertex 4185: Normal +Vertex 4186: Normal +Vertex 4187: Normal +Vertex 4188: Normal +Vertex 4189: Normal +Vertex 4190: Normal +Vertex 4191: Normal +Vertex 4192: Normal +Vertex 4193: Normal +Vertex 4194: Normal +Vertex 4195: Normal +Vertex 4196: Normal +Vertex 4197: Normal +Vertex 4198: Normal +Vertex 4199: Normal +Vertex 4200: Normal +Vertex 4201: Normal +Vertex 4202: Normal +Vertex 4203: Normal +Vertex 4204: Normal +Vertex 4205: Normal +Vertex 4206: Normal +Vertex 4207: Normal +Vertex 4208: Normal +Vertex 4209: Normal +Vertex 4210: Normal +Vertex 4211: Normal +Vertex 4212: Normal +Vertex 4213: Normal +Vertex 4214: Normal +Vertex 4215: Normal +Vertex 4216: Normal +Vertex 4217: Normal +Vertex 4218: Normal +Vertex 4219: Normal +Vertex 4220: Normal +Vertex 4221: Normal +Vertex 4222: Normal +Vertex 4223: Normal +Vertex 4224: Normal +Vertex 4225: Normal +Vertex 4226: Normal +Vertex 4227: Normal +Vertex 4228: Normal +Vertex 4229: Normal +Vertex 4230: Normal +Vertex 4231: Normal +Vertex 4232: Normal +Vertex 4233: Normal +Vertex 4234: Normal +Vertex 4235: Normal +Vertex 4236: Normal +Vertex 4237: Normal +Vertex 4238: Normal +Vertex 4239: Normal +Vertex 4240: Normal +Vertex 4241: Normal +Vertex 4242: Normal +Vertex 4243: Normal +Vertex 4244: Normal +Vertex 4245: Normal +Vertex 4246: Normal +Vertex 4247: Normal +Vertex 4248: Normal +Vertex 4249: Normal +Vertex 4250: Normal +Vertex 4251: Normal +Vertex 4252: Normal +Vertex 4253: Normal +Vertex 4254: Normal +Vertex 4255: Normal +Vertex 4256: Normal +Vertex 4257: Normal +Vertex 4258: Normal +Vertex 4259: Normal +Vertex 4260: Normal +Vertex 4261: Normal +Vertex 4262: Normal +Vertex 4263: Normal +Vertex 4264: Normal +Vertex 4265: Normal +Vertex 4266: Normal +Vertex 4267: Normal +Vertex 4268: Normal +Vertex 4269: Normal +Vertex 4270: Normal +Vertex 4271: Normal +Vertex 4272: Normal +Vertex 4273: Normal +Vertex 4274: Normal +Vertex 4275: Normal +Vertex 4276: Normal +Vertex 4277: Normal +Vertex 4278: Normal +Vertex 4279: Normal +Vertex 4280: Normal +Vertex 4281: Normal +Vertex 4282: Normal +Vertex 4283: Normal +Vertex 4284: Normal +Vertex 4285: Normal +Vertex 4286: Normal +Vertex 4287: Normal +Vertex 4288: Normal +Vertex 4289: Normal +Vertex 4290: Normal +Vertex 4291: Normal +Vertex 4292: Normal +Vertex 4293: Normal +Vertex 4294: Normal +Vertex 4295: Normal +Vertex 4296: Normal +Vertex 4297: Normal +Vertex 4298: Normal +Vertex 4299: Normal +Vertex 4300: Normal +Vertex 4301: Normal +Vertex 4302: Normal +Vertex 4303: Normal +Vertex 4304: Normal +Vertex 4305: Normal +Vertex 4306: Normal +Vertex 4307: Normal +Vertex 4308: Normal +Vertex 4309: Normal +Vertex 4310: Normal +Vertex 4311: Normal +Vertex 4312: Normal +Vertex 4313: Normal +Vertex 4314: Normal +Vertex 4315: Normal +Vertex 4316: Normal +Vertex 4317: Normal +Vertex 4318: Normal +Vertex 4319: Normal +Vertex 4320: Normal +Vertex 4321: Normal +Vertex 4322: Normal +Vertex 4323: Normal +Vertex 4324: Normal +Vertex 4325: Normal +Vertex 4326: Normal +Vertex 4327: Normal +Vertex 4328: Normal +Vertex 4329: Normal +Vertex 4330: Normal +Vertex 4331: Normal +Vertex 4332: Normal +Vertex 4333: Normal +Vertex 4334: Normal +Vertex 4335: Normal +Vertex 4336: Normal +Vertex 4337: Normal +Vertex 4338: Normal +Vertex 4339: Normal +Vertex 4340: Normal +Vertex 4341: Normal +Vertex 4342: Normal +Vertex 4343: Normal +Vertex 4344: Normal +Vertex 4345: Normal +Vertex 4346: Normal +Vertex 4347: Normal +Vertex 4348: Normal +Vertex 4349: Normal +Vertex 4350: Normal +Vertex 4351: Normal +Vertex 4352: Normal +Vertex 4353: Normal +Vertex 4354: Normal +Vertex 4355: Normal +Vertex 4356: Normal +Vertex 4357: Normal +Vertex 4358: Normal +Vertex 4359: Normal +Vertex 4360: Normal +Vertex 4361: Normal +Vertex 4362: Normal +Vertex 4363: Normal +Vertex 4364: Normal +Vertex 4365: Normal +Vertex 4366: Normal +Vertex 4367: Normal +Vertex 4368: Normal +Vertex 4369: Normal +Vertex 4370: Normal +Vertex 4371: Normal +Vertex 4372: Normal +Vertex 4373: Normal +Vertex 4374: Normal +Vertex 4375: Normal +Vertex 4376: Normal +Vertex 4377: Normal +Vertex 4378: Normal +Vertex 4379: Normal +Vertex 4380: Normal +Vertex 4381: Normal +Vertex 4382: Normal +Vertex 4383: Normal +Vertex 4384: Normal +Vertex 4385: Normal +Vertex 4386: Normal +Vertex 4387: Normal +Vertex 4388: Normal +Vertex 4389: Normal +Vertex 4390: Normal +Vertex 4391: Normal +Vertex 4392: Normal +Vertex 4393: Normal +Vertex 4394: Normal +Vertex 4395: Normal +Vertex 4396: Normal +Vertex 4397: Normal +Vertex 4398: Normal +Vertex 4399: Normal +Vertex 4400: Normal +Vertex 4401: Normal +Vertex 4402: Normal +Vertex 4403: Normal +Vertex 4404: Normal +Vertex 4405: Normal +Vertex 4406: Normal +Vertex 4407: Normal +Vertex 4408: Normal +Vertex 4409: Normal +Vertex 4410: Normal +Vertex 4411: Normal +Vertex 4412: Normal +Vertex 4413: Normal +Vertex 4414: Normal +Vertex 4415: Normal +Vertex 4416: Normal +Vertex 4417: Normal +Vertex 4418: Normal +Vertex 4419: Normal +Vertex 4420: Normal +Vertex 4421: Normal +Vertex 4422: Normal +Vertex 4423: Normal +Vertex 4424: Normal +Vertex 4425: Normal +Vertex 4426: Normal +Vertex 4427: Normal +Vertex 4428: Normal +Vertex 4429: Normal +Vertex 4430: Normal +Vertex 4431: Normal +Vertex 4432: Normal +Vertex 4433: Normal +Vertex 4434: Normal +Vertex 4435: Normal +Vertex 4436: Normal +Vertex 4437: Normal +Vertex 4438: Normal +Vertex 4439: Normal +Vertex 4440: Normal +Vertex 4441: Normal +Vertex 4442: Normal +Vertex 4443: Normal +Vertex 4444: Normal +Vertex 4445: Normal +Vertex 4446: Normal +Vertex 4447: Normal +Vertex 4448: Normal +Vertex 4449: Normal +Vertex 4450: Normal +Vertex 4451: Normal +Vertex 4452: Normal +Vertex 4453: Normal +Vertex 4454: Normal +Vertex 4455: Normal +Vertex 4456: Normal +Vertex 4457: Normal +Vertex 4458: Normal +Vertex 4459: Normal +Vertex 4460: Normal +Vertex 4461: Normal +Vertex 4462: Normal +Vertex 4463: Normal +Vertex 4464: Normal +Vertex 4465: Normal +Vertex 4466: Normal +Vertex 4467: Normal +Vertex 4468: Normal +Vertex 4469: Normal +Vertex 4470: Normal +Vertex 4471: Normal +Vertex 4472: Normal +Vertex 4473: Normal +Vertex 4474: Normal +Vertex 4475: Normal +Vertex 4476: Normal +Vertex 4477: Normal +Vertex 4478: Normal +Vertex 4479: Normal +Vertex 4480: Normal +Vertex 4481: Normal +Vertex 4482: Normal +Vertex 4483: Normal +Vertex 4484: Normal +Vertex 4485: Normal +Vertex 4486: Normal +Vertex 4487: Normal +Vertex 4488: Normal +Vertex 4489: Normal +Vertex 4490: Normal +Vertex 4491: Normal +Vertex 4492: Normal +Vertex 4493: Normal +Vertex 4494: Normal +Vertex 4495: Normal +Vertex 4496: Normal +Vertex 4497: Normal +Vertex 4498: Normal +Vertex 4499: Normal +Vertex 4500: Normal +Vertex 4501: Normal +Vertex 4502: Normal +Vertex 4503: Normal +Vertex 4504: Normal +Vertex 4505: Normal +Vertex 4506: Normal +Vertex 4507: Normal +Vertex 4508: Normal +Vertex 4509: Normal +Vertex 4510: Normal +Vertex 4511: Normal +Vertex 4512: Normal +Vertex 4513: Normal +Vertex 4514: Normal +Vertex 4515: Normal +Vertex 4516: Normal +Vertex 4517: Normal +Vertex 4518: Normal +Vertex 4519: Normal +Vertex 4520: Normal +Vertex 4521: Normal +Vertex 4522: Normal +Vertex 4523: Normal +Vertex 4524: Normal +Vertex 4525: Normal +Vertex 4526: Normal +Vertex 4527: Normal +Vertex 4528: Normal +Vertex 4529: Normal +Vertex 4530: Normal +Vertex 4531: Normal +Vertex 4532: Normal +Vertex 4533: Normal +Vertex 4534: Normal +Vertex 4535: Normal +Vertex 4536: Normal +Vertex 4537: Normal +Vertex 4538: Normal +Vertex 4539: Normal +Vertex 4540: Normal +Vertex 4541: Normal +Vertex 4542: Normal +Vertex 4543: Normal +Vertex 4544: Normal +Vertex 4545: Normal +Vertex 4546: Normal +Vertex 4547: Normal +Vertex 4548: Normal +Vertex 4549: Normal +Vertex 4550: Normal +Vertex 4551: Normal +Vertex 4552: Normal +Vertex 4553: Normal +Vertex 4554: Normal +Vertex 4555: Normal +Vertex 4556: Normal +Vertex 4557: Normal +Vertex 4558: Normal +Vertex 4559: Normal +Vertex 4560: Normal +Vertex 4561: Normal +Vertex 4562: Normal +Vertex 4563: Normal +Vertex 4564: Normal +Vertex 4565: Normal +Vertex 4566: Normal +Vertex 4567: Normal +Vertex 4568: Normal +Vertex 4569: Normal +Vertex 4570: Normal +Vertex 4571: Normal +Vertex 4572: Normal +Vertex 4573: Normal +Vertex 4574: Normal +Vertex 4575: Normal +Vertex 4576: Normal +Vertex 4577: Normal +Vertex 4578: Normal +Vertex 4579: Normal +Vertex 4580: Normal +Vertex 4581: Normal +Vertex 4582: Normal +Vertex 4583: Normal +Vertex 4584: Normal +Vertex 4585: Normal +Vertex 4586: Normal +Vertex 4587: Normal +Vertex 4588: Normal +Vertex 4589: Normal +Vertex 4590: Normal +Vertex 4591: Normal +Vertex 4592: Normal +Vertex 4593: Normal +Vertex 4594: Normal +Vertex 4595: Normal +Vertex 4596: Normal +Vertex 4597: Normal +Vertex 4598: Normal +Vertex 4599: Normal +Vertex 4600: Normal +Vertex 4601: Normal +Vertex 4602: Normal +Vertex 4603: Normal +Vertex 4604: Normal +Vertex 4605: Normal +Vertex 4606: Normal +Vertex 4607: Normal +Vertex 4608: Normal +Vertex 4609: Normal +Vertex 4610: Normal +Vertex 4611: Normal +Vertex 4612: Normal +Vertex 4613: Normal +Vertex 4614: Normal +Vertex 4615: Normal +Vertex 4616: Normal +Vertex 4617: Normal +Vertex 4618: Normal +Vertex 4619: Normal +Vertex 4620: Normal +Vertex 4621: Normal +Vertex 4622: Normal +Vertex 4623: Normal +Vertex 4624: Normal +Vertex 4625: Normal +Vertex 4626: Normal +Vertex 4627: Normal +Vertex 4628: Normal +Vertex 4629: Normal +Vertex 4630: Normal +Vertex 4631: Normal +Vertex 4632: Normal +Vertex 4633: Normal +Vertex 4634: Normal +Vertex 4635: Normal +Vertex 4636: Normal +Vertex 4637: Normal +Vertex 4638: Normal +Vertex 4639: Normal +Vertex 4640: Normal +Vertex 4641: Normal +Vertex 4642: Normal +Vertex 4643: Normal +Vertex 4644: Normal +Vertex 4645: Normal +Vertex 4646: Normal +Vertex 4647: Normal +Vertex 4648: Normal +Vertex 4649: Normal +Vertex 4650: Normal +Vertex 4651: Normal +Vertex 4652: Normal +Vertex 4653: Normal +Vertex 4654: Normal +Vertex 4655: Normal +Vertex 4656: Normal +Vertex 4657: Normal +Vertex 4658: Normal +Vertex 4659: Normal +Vertex 4660: Normal +Vertex 4661: Normal +Vertex 4662: Normal +Vertex 4663: Normal +Vertex 4664: Normal +Vertex 4665: Normal +Vertex 4666: Normal +Vertex 4667: Normal +Vertex 4668: Normal +Vertex 4669: Normal +Vertex 4670: Normal +Vertex 4671: Normal +Vertex 4672: Normal +Vertex 4673: Normal +Vertex 4674: Normal +Vertex 4675: Normal +Vertex 4676: Normal +Vertex 4677: Normal +Vertex 4678: Normal +Vertex 4679: Normal +Vertex 4680: Normal +Vertex 4681: Normal +Vertex 4682: Normal +Vertex 4683: Normal +Vertex 4684: Normal +Vertex 4685: Normal +Vertex 4686: Normal +Vertex 4687: Normal +Vertex 4688: Normal +Vertex 4689: Normal +Vertex 4690: Normal +Vertex 4691: Normal +Vertex 4692: Normal +Vertex 4693: Normal +Vertex 4694: Normal +Vertex 4695: Normal +Vertex 4696: Normal +Vertex 4697: Normal +Vertex 4698: Normal +Vertex 4699: Normal +Vertex 4700: Normal +Vertex 4701: Normal +Vertex 4702: Normal +Vertex 4703: Normal +Vertex 4704: Normal +Vertex 4705: Normal +Vertex 4706: Normal +Vertex 4707: Normal +Vertex 4708: Normal +Vertex 4709: Normal +Vertex 4710: Normal +Vertex 4711: Normal +Vertex 4712: Normal +Vertex 4713: Normal +Vertex 4714: Normal +Vertex 4715: Normal +Vertex 4716: Normal +Vertex 4717: Normal +Vertex 4718: Normal +Vertex 4719: Normal +Vertex 4720: Normal +Vertex 4721: Normal +Vertex 4722: Normal +Vertex 4723: Normal +Vertex 4724: Normal +Vertex 4725: Normal +Vertex 4726: Normal +Vertex 4727: Normal +Vertex 4728: Normal +Vertex 4729: Normal +Vertex 4730: Normal +Vertex 4731: Normal +Vertex 4732: Normal +Vertex 4733: Normal +Vertex 4734: Normal +Vertex 4735: Normal +Vertex 4736: Normal +Vertex 4737: Normal +Vertex 4738: Normal +Vertex 4739: Normal +Vertex 4740: Normal +Vertex 4741: Normal +Vertex 4742: Normal +Vertex 4743: Normal +Vertex 4744: Normal +Vertex 4745: Normal +Vertex 4746: Normal +Vertex 4747: Normal +Vertex 4748: Normal +Vertex 4749: Normal +Vertex 4750: Normal +Vertex 4751: Normal +Vertex 4752: Normal +Vertex 4753: Normal +Vertex 4754: Normal +Vertex 4755: Normal +Vertex 4756: Normal +Vertex 4757: Normal +Vertex 4758: Normal +Vertex 4759: Normal +Vertex 4760: Normal +Vertex 4761: Normal +Vertex 4762: Normal +Vertex 4763: Normal +Vertex 4764: Normal +Vertex 4765: Normal +Vertex 4766: Normal +Vertex 4767: Normal +Vertex 4768: Normal +Vertex 4769: Normal +Vertex 4770: Normal +Vertex 4771: Normal +Vertex 4772: Normal +Vertex 4773: Normal +Vertex 4774: Normal +Vertex 4775: Normal +Vertex 4776: Normal +Vertex 4777: Normal +Vertex 4778: Normal +Vertex 4779: Normal +Vertex 4780: Normal +Vertex 4781: Normal +Vertex 4782: Normal +Vertex 4783: Normal +Vertex 4784: Normal +Vertex 4785: Normal +Vertex 4786: Normal +Vertex 4787: Normal +Vertex 4788: Normal +Vertex 4789: Normal +Vertex 4790: Normal +Vertex 4791: Normal +Vertex 4792: Normal +Vertex 4793: Normal +Vertex 4794: Normal +Vertex 4795: Normal +Vertex 4796: Normal +Vertex 4797: Normal +Vertex 4798: Normal +Vertex 4799: Normal +Vertex 4800: Normal +Vertex 4801: Normal +Vertex 4802: Normal +Vertex 4803: Normal +Vertex 4804: Normal +Vertex 4805: Normal +Vertex 4806: Normal +Vertex 4807: Normal +Vertex 4808: Normal +Vertex 4809: Normal +Vertex 4810: Normal +Vertex 4811: Normal +Vertex 4812: Normal +Vertex 4813: Normal +Vertex 4814: Normal +Vertex 4815: Normal +Vertex 4816: Normal +Vertex 4817: Normal +Vertex 4818: Normal +Vertex 4819: Normal +Vertex 4820: Normal +Vertex 4821: Normal +Vertex 4822: Normal +Vertex 4823: Normal +Vertex 4824: Normal +Vertex 4825: Normal +Vertex 4826: Normal +Vertex 4827: Normal +Vertex 4828: Normal +Vertex 4829: Normal +Vertex 4830: Normal +Vertex 4831: Normal +Vertex 4832: Normal +Vertex 4833: Normal +Vertex 4834: Normal +Vertex 4835: Normal +Vertex 4836: Normal +Vertex 4837: Normal +Vertex 4838: Normal +Vertex 4839: Normal +Vertex 4840: Normal +Vertex 4841: Normal +Vertex 4842: Normal +Vertex 4843: Normal +Vertex 4844: Normal +Vertex 4845: Normal +Vertex 4846: Normal +Vertex 4847: Normal +Vertex 4848: Normal +Vertex 4849: Normal +Vertex 4850: Normal +Vertex 4851: Normal +Vertex 4852: Normal +Vertex 4853: Normal +Vertex 4854: Normal +Vertex 4855: Normal +Vertex 4856: Normal +Vertex 4857: Normal +Vertex 4858: Normal +Vertex 4859: Normal +Vertex 4860: Normal +Vertex 4861: Normal +Vertex 4862: Normal +Vertex 4863: Normal +Vertex 4864: Normal +Vertex 4865: Normal +Vertex 4866: Normal +Vertex 4867: Normal +Vertex 4868: Normal +Vertex 4869: Normal +Vertex 4870: Normal +Vertex 4871: Normal +Vertex 4872: Normal +Vertex 4873: Normal +Vertex 4874: Normal +Vertex 4875: Normal +Vertex 4876: Normal +Vertex 4877: Normal +Vertex 4878: Normal +Vertex 4879: Normal +Vertex 4880: Normal +Vertex 4881: Normal +Vertex 4882: Normal +Vertex 4883: Normal +Vertex 4884: Normal +Vertex 4885: Normal +Vertex 4886: Normal +Vertex 4887: Normal +Vertex 4888: Normal +Vertex 4889: Normal +Vertex 4890: Normal +Vertex 4891: Normal +Vertex 4892: Normal +Vertex 4893: Normal +Vertex 4894: Normal +Vertex 4895: Normal +Vertex 4896: Normal +Vertex 4897: Normal +Vertex 4898: Normal +Vertex 4899: Normal +Vertex 4900: Normal +Vertex 4901: Normal +Vertex 4902: Normal +Vertex 4903: Normal +Vertex 4904: Normal +Vertex 4905: Normal +Vertex 4906: Normal +Vertex 4907: Normal +Vertex 4908: Normal +Vertex 4909: Normal +Vertex 4910: Normal +Vertex 4911: Normal +Vertex 4912: Normal +Vertex 4913: Normal +Vertex 4914: Normal +Vertex 4915: Normal +Vertex 4916: Normal +Vertex 4917: Normal +Vertex 4918: Normal +Vertex 4919: Normal +Vertex 4920: Normal +Vertex 4921: Normal +Vertex 4922: Normal +Vertex 4923: Normal +Vertex 4924: Normal +Vertex 4925: Normal +Vertex 4926: Normal +Vertex 4927: Normal +Vertex 4928: Normal +Vertex 4929: Normal +Vertex 4930: Normal +Vertex 4931: Normal +Vertex 4932: Normal +Vertex 4933: Normal +Vertex 4934: Normal +Vertex 4935: Normal +Vertex 4936: Normal +Vertex 4937: Normal +Vertex 4938: Normal +Vertex 4939: Normal +Vertex 4940: Normal +Vertex 4941: Normal +Vertex 4942: Normal +Vertex 4943: Normal +Vertex 4944: Normal +Vertex 4945: Normal +Vertex 4946: Normal +Vertex 4947: Normal +Vertex 4948: Normal +Vertex 4949: Normal +Vertex 4950: Normal +Vertex 4951: Normal +Vertex 4952: Normal +Vertex 4953: Normal +Vertex 4954: Normal +Vertex 4955: Normal +Vertex 4956: Normal +Vertex 4957: Normal +Vertex 4958: Normal +Vertex 4959: Normal +Vertex 4960: Normal +Vertex 4961: Normal +Vertex 4962: Normal +Vertex 4963: Normal +Vertex 4964: Normal +Vertex 4965: Normal +Vertex 4966: Normal +Vertex 4967: Normal +Vertex 4968: Normal +Vertex 4969: Normal +Vertex 4970: Normal +Vertex 4971: Normal +Vertex 4972: Normal +Vertex 4973: Normal +Vertex 4974: Normal +Vertex 4975: Normal +Vertex 4976: Normal +Vertex 4977: Normal +Vertex 4978: Normal +Vertex 4979: Normal +Vertex 4980: Normal +Vertex 4981: Normal +Vertex 4982: Normal +Vertex 4983: Normal +Vertex 4984: Normal +Vertex 4985: Normal +Vertex 4986: Normal +Vertex 4987: Normal +Vertex 4988: Normal +Vertex 4989: Normal +Vertex 4990: Normal +Vertex 4991: Normal +Vertex 4992: Normal +Vertex 4993: Normal +Vertex 4994: Normal +Vertex 4995: Normal +Vertex 4996: Normal +Vertex 4997: Normal +Vertex 4998: Normal +Vertex 4999: Normal +Vertex 5000: Normal +Vertex 5001: Normal +Vertex 5002: Normal +Vertex 5003: Normal +Vertex 5004: Normal +Vertex 5005: Normal +Vertex 5006: Normal +Vertex 5007: Normal +Vertex 5008: Normal +Vertex 5009: Normal +Vertex 5010: Normal +Vertex 5011: Normal +Vertex 5012: Normal +Vertex 5013: Normal +Vertex 5014: Normal +Vertex 5015: Normal +Vertex 5016: Normal +Vertex 5017: Normal +Vertex 5018: Normal +Vertex 5019: Normal +Vertex 5020: Normal +Vertex 5021: Normal +Vertex 5022: Normal +Vertex 5023: Normal +Vertex 5024: Normal +Vertex 5025: Normal +Vertex 5026: Normal +Vertex 5027: Normal +Vertex 5028: Normal +Vertex 5029: Normal +Vertex 5030: Normal +Vertex 5031: Normal +Vertex 5032: Normal +Vertex 5033: Normal +Vertex 5034: Normal +Vertex 5035: Normal +Vertex 5036: Normal +Vertex 5037: Normal +Vertex 5038: Normal +Vertex 5039: Normal +Vertex 5040: Normal +Vertex 5041: Normal +Vertex 5042: Normal +Vertex 5043: Normal +Vertex 5044: Normal +Vertex 5045: Normal +Vertex 5046: Normal +Vertex 5047: Normal +Vertex 5048: Normal +Vertex 5049: Normal +Vertex 5050: Normal +Vertex 5051: Normal +Vertex 5052: Normal +Vertex 5053: Normal +Vertex 5054: Normal +Vertex 5055: Normal +Vertex 5056: Normal +Vertex 5057: Normal +Vertex 5058: Normal +Vertex 5059: Normal +Vertex 5060: Normal +Vertex 5061: Normal +Vertex 5062: Normal +Vertex 5063: Normal +Vertex 5064: Normal +Vertex 5065: Normal +Vertex 5066: Normal +Vertex 5067: Normal +Vertex 5068: Normal +Vertex 5069: Normal +Vertex 5070: Normal +Vertex 5071: Normal +Vertex 5072: Normal +Vertex 5073: Normal +Vertex 5074: Normal +Vertex 5075: Normal +Vertex 5076: Normal +Vertex 5077: Normal +Vertex 5078: Normal +Vertex 5079: Normal +Vertex 5080: Normal +Vertex 5081: Normal +Vertex 5082: Normal +Vertex 5083: Normal +Vertex 5084: Normal +Vertex 5085: Normal +Vertex 5086: Normal +Vertex 5087: Normal +Vertex 5088: Normal +Vertex 5089: Normal +Vertex 5090: Normal +Vertex 5091: Normal +Vertex 5092: Normal +Vertex 5093: Normal +Vertex 5094: Normal +Vertex 5095: Normal +Vertex 5096: Normal +Vertex 5097: Normal +Vertex 5098: Normal +Vertex 5099: Normal +Vertex 5100: Normal +Vertex 5101: Normal +Vertex 5102: Normal +Vertex 5103: Normal +Vertex 5104: Normal +Vertex 5105: Normal +Vertex 5106: Normal +Vertex 5107: Normal +Vertex 5108: Normal +Vertex 5109: Normal +Vertex 5110: Normal +Vertex 5111: Normal +Vertex 5112: Normal +Vertex 5113: Normal +Vertex 5114: Normal +Vertex 5115: Normal +Vertex 5116: Normal +Vertex 5117: Normal +Vertex 5118: Normal +Vertex 5119: Normal +Vertex 5120: Normal +Vertex 5121: Normal +Vertex 5122: Normal +Vertex 5123: Normal +Vertex 5124: Normal +Vertex 5125: Normal +Vertex 5126: Normal +Vertex 5127: Normal +Vertex 5128: Normal +Vertex 5129: Normal +Vertex 5130: Normal +Vertex 5131: Normal +Vertex 5132: Normal +Vertex 5133: Normal +Vertex 5134: Normal +Vertex 5135: Normal +Vertex 5136: Normal +Vertex 5137: Normal +Vertex 5138: Normal +Vertex 5139: Normal +Vertex 5140: Normal +Vertex 5141: Normal +Vertex 5142: Normal +Vertex 5143: Normal +Vertex 5144: Normal +Vertex 5145: Normal +Vertex 5146: Normal +Vertex 5147: Normal +Vertex 5148: Normal +Vertex 5149: Normal +Vertex 5150: Normal +Vertex 5151: Normal +Vertex 5152: Normal +Vertex 5153: Normal +Vertex 5154: Normal +Vertex 5155: Normal +Vertex 5156: Normal +Vertex 5157: Normal +Vertex 5158: Normal +Vertex 5159: Normal +Vertex 5160: Normal +Vertex 5161: Normal +Vertex 5162: Normal +Vertex 5163: Normal +Vertex 5164: Normal +Vertex 5165: Normal +Vertex 5166: Normal +Vertex 5167: Normal +Vertex 5168: Normal +Vertex 5169: Normal +Vertex 5170: Normal +Vertex 5171: Normal +Vertex 5172: Normal +Vertex 5173: Normal +Vertex 5174: Normal +Vertex 5175: Normal +Vertex 5176: Normal +Vertex 5177: Normal +Vertex 5178: Normal +Vertex 5179: Normal +Vertex 5180: Normal +Vertex 5181: Normal +Vertex 5182: Normal +Vertex 5183: Normal +Vertex 5184: Normal +Vertex 5185: Normal +Vertex 5186: Normal +Vertex 5187: Normal +Vertex 5188: Normal +Vertex 5189: Normal +Vertex 5190: Normal +Vertex 5191: Normal +Vertex 5192: Normal +Vertex 5193: Normal +Vertex 5194: Normal +Vertex 5195: Normal +Vertex 5196: Normal +Vertex 5197: Normal +Vertex 5198: Normal +Vertex 5199: Normal +Vertex 5200: Normal +Vertex 5201: Normal +Vertex 5202: Normal +Vertex 5203: Normal +Vertex 5204: Normal +Vertex 5205: Normal +Vertex 5206: Normal +Vertex 5207: Normal +Vertex 5208: Normal +Vertex 5209: Normal +Vertex 5210: Normal +Vertex 5211: Normal +Vertex 5212: Normal +Vertex 5213: Normal +Vertex 5214: Normal +Vertex 5215: Normal +Vertex 5216: Normal +Vertex 5217: Normal +Vertex 5218: Normal +Vertex 5219: Normal +Vertex 5220: Normal +Vertex 5221: Normal +Vertex 5222: Normal +Vertex 5223: Normal +Vertex 5224: Normal +Vertex 5225: Normal +Vertex 5226: Normal +Vertex 5227: Normal +Vertex 5228: Normal +Vertex 5229: Normal +Vertex 5230: Normal +Vertex 5231: Normal +Vertex 5232: Normal +Vertex 5233: Normal +Vertex 5234: Normal +Vertex 5235: Normal +Vertex 5236: Normal +Vertex 5237: Normal +Vertex 5238: Normal +Vertex 5239: Normal +Vertex 5240: Normal +Vertex 5241: Normal +Vertex 5242: Normal +Vertex 5243: Normal +Vertex 5244: Normal +Vertex 5245: Normal +Vertex 5246: Normal +Vertex 5247: Normal +Vertex 5248: Normal +Vertex 5249: Normal +Vertex 5250: Normal +Vertex 5251: Normal +Vertex 5252: Normal +Vertex 5253: Normal +Vertex 5254: Normal +Vertex 5255: Normal +Vertex 5256: Normal +Vertex 5257: Normal +Vertex 5258: Normal +Vertex 5259: Normal +Vertex 5260: Normal +Vertex 5261: Normal +Vertex 5262: Normal +Vertex 5263: Normal +Vertex 5264: Normal +Vertex 5265: Normal +Vertex 5266: Normal +Vertex 5267: Normal +Vertex 5268: Normal +Vertex 5269: Normal +Vertex 5270: Normal +Vertex 5271: Normal +Vertex 5272: Normal +Vertex 5273: Normal +Vertex 5274: Normal +Vertex 5275: Normal +Vertex 5276: Normal +Vertex 5277: Normal +Vertex 5278: Normal +Vertex 5279: Normal +Vertex 5280: Normal +Vertex 5281: Normal +Vertex 5282: Normal +Vertex 5283: Normal +Vertex 5284: Normal +Vertex 5285: Normal +Vertex 5286: Normal +Vertex 5287: Normal +Vertex 5288: Normal +Vertex 5289: Normal +Vertex 5290: Normal +Vertex 5291: Normal +Vertex 5292: Normal +Vertex 5293: Normal +Vertex 5294: Normal +Vertex 5295: Normal +Vertex 5296: Normal +Vertex 5297: Normal +Vertex 5298: Normal +Vertex 5299: Normal +Vertex 5300: Normal +Vertex 5301: Normal +Vertex 5302: Normal +Vertex 5303: Normal +Vertex 5304: Normal +Vertex 5305: Normal +Vertex 5306: Normal +Vertex 5307: Normal +Vertex 5308: Normal +Vertex 5309: Normal +Vertex 5310: Normal +Vertex 5311: Normal +Vertex 5312: Normal +Vertex 5313: Normal +Vertex 5314: Normal +Vertex 5315: Normal +Vertex 5316: Normal +Vertex 5317: Normal +Vertex 5318: Normal +Vertex 5319: Normal +Vertex 5320: Normal +Vertex 5321: Normal +Vertex 5322: Normal +Vertex 5323: Normal +Vertex 5324: Normal +Vertex 5325: Normal +Vertex 5326: Normal +Vertex 5327: Normal +Vertex 5328: Normal +Vertex 5329: Normal +Vertex 5330: Normal +Vertex 5331: Normal +Vertex 5332: Normal +Vertex 5333: Normal +Vertex 5334: Normal +Vertex 5335: Normal +Vertex 5336: Normal +Vertex 5337: Normal +Vertex 5338: Normal +Vertex 5339: Normal +Vertex 5340: Normal +Vertex 5341: Normal +Vertex 5342: Normal +Vertex 5343: Normal +Vertex 5344: Normal +Vertex 5345: Normal +Vertex 5346: Normal +Vertex 5347: Normal +Vertex 5348: Normal +Vertex 5349: Normal +Vertex 5350: Normal +Vertex 5351: Normal +Vertex 5352: Normal +Vertex 5353: Normal +Vertex 5354: Normal +Vertex 5355: Normal +Vertex 5356: Normal +Vertex 5357: Normal +Vertex 5358: Normal +Vertex 5359: Normal +Vertex 5360: Normal +Vertex 5361: Normal +Vertex 5362: Normal +Vertex 5363: Normal +Vertex 5364: Normal +Vertex 5365: Normal +Vertex 5366: Normal +Vertex 5367: Normal +Vertex 5368: Normal +Vertex 5369: Normal +Vertex 5370: Normal +Vertex 5371: Normal +Vertex 5372: Normal +Vertex 5373: Normal +Vertex 5374: Normal +Vertex 5375: Normal +Vertex 5376: Normal +Vertex 5377: Normal +Vertex 5378: Normal +Vertex 5379: Normal +Vertex 5380: Normal +Vertex 5381: Normal +Vertex 5382: Normal +Vertex 5383: Normal +Vertex 5384: Normal +Vertex 5385: Normal +Vertex 5386: Normal +Vertex 5387: Normal +Vertex 5388: Normal +Vertex 5389: Normal +Vertex 5390: Normal +Vertex 5391: Normal +Vertex 5392: Normal +Vertex 5393: Normal +Vertex 5394: Normal +Vertex 5395: Normal +Vertex 5396: Normal +Vertex 5397: Normal +Vertex 5398: Normal +Vertex 5399: Normal +===Triangles: 9390 +Triangle: [1235, 33, 1236] +Triangle: [1237, 706, 705] +Triangle: [1238, 705, 704] +Triangle: [702, 27, 701] +Triangle: [1240, 35, 1235] +Triangle: [703, 26, 702] +Triangle: [1240, 704, 36] +Triangle: [1244, 707, 706] +Triangle: [1236, 32, 1242] +Triangle: [701, 38, 698] +Triangle: [1243, 32, 31] +Triangle: [1241, 31, 30] +Triangle: [1222, 48, 1228] +Triangle: [1229, 41, 50] +Triangle: [1223, 47, 41] +Triangle: [1230, 40, 39] +Triangle: [1231, 48, 49] +Triangle: [1230, 42, 1232] +Triangle: [1224, 49, 47] +Triangle: [1232, 43, 1233] +Triangle: [1234, 50, 51] +Triangle: [1279, 46, 1222] +Triangle: [1278, 51, 40] +Triangle: [1281, 45, 1279] +Triangle: [1233, 44, 1281] +Triangle: [18, 61, 64] +Triangle: [18, 63, 19] +Triangle: [25, 57, 14] +Triangle: [19, 52, 20] +Triangle: [25, 55, 62] +Triangle: [16, 61, 17] +Triangle: [23, 56, 21] +Triangle: [16, 58, 60] +Triangle: [22, 59, 23] +Triangle: [14, 58, 13] +Triangle: [15, 56, 54] +Triangle: [24, 54, 55] +Triangle: [22, 52, 53] +Triangle: [10, 1210, 1211] +Triangle: [1220, 1, 1219] +Triangle: [7, 1212, 1213] +Triangle: [1, 1218, 1219] +Triangle: [9, 1211, 1212] +Triangle: [1218, 3, 1217] +Triangle: [1209, 11, 1221] +Triangle: [5, 1214, 1215] +Triangle: [1221, 12, 1220] +Triangle: [4, 1215, 1216] +Triangle: [3, 1216, 1217] +Triangle: [6, 1213, 1214] +Triangle: [1253, 70, 1287] +Triangle: [1259, 70, 69] +Triangle: [1254, 1275, 1274] +Triangle: [1255, 1277, 65] +Triangle: [1249, 77, 1254] +Triangle: [1252, 76, 1253] +Triangle: [1257, 74, 67] +Triangle: [1250, 75, 1252] +Triangle: [1251, 71, 74] +Triangle: [1258, 73, 1250] +Triangle: [1256, 67, 66] +Triangle: [1249, 66, 72] +Triangle: [1255, 71, 1248] +Triangle: [82, 712, 713] +Triangle: [712, 80, 714] +Triangle: [80, 711, 714] +Triangle: [715, 35, 711] +Triangle: [82, 86, 81] +Triangle: [88, 94, 86] +Triangle: [130, 162, 161] +Triangle: [83, 92, 88] +Triangle: [106, 104, 100] +Triangle: [160, 92, 91] +Triangle: [86, 95, 81] +Triangle: [80, 95, 96] +Triangle: [78, 96, 97] +Triangle: [79, 97, 98] +Triangle: [99, 713, 716] +Triangle: [82, 100, 85] +Triangle: [95, 170, 96] +Triangle: [94, 171, 95] +Triangle: [85, 104, 87] +Triangle: [107, 716, 717] +Triangle: [99, 106, 100] +Triangle: [173, 94, 92] +Triangle: [83, 109, 84] +Triangle: [109, 87, 110] +Triangle: [103, 109, 111] +Triangle: [111, 110, 108] +Triangle: [112, 87, 104] +Triangle: [108, 112, 113] +Triangle: [115, 104, 105] +Triangle: [112, 114, 113] +Triangle: [98, 116, 117] +Triangle: [139, 119, 140] +Triangle: [118, 121, 119] +Triangle: [174, 123, 175] +Triangle: [174, 124, 176] +Triangle: [89, 177, 179] +Triangle: [177, 128, 178] +Triangle: [126, 137, 128] +Triangle: [124, 166, 89] +Triangle: [124, 163, 165] +Triangle: [164, 120, 118] +Triangle: [116, 140, 117] +Triangle: [139, 164, 118] +Triangle: [116, 167, 139] +Triangle: [169, 116, 97] +Triangle: [169, 96, 170] +Triangle: [86, 87, 88] +Triangle: [131, 161, 159] +Triangle: [132, 159, 158] +Triangle: [160, 132, 158] +Triangle: [89, 162, 126] +Triangle: [176, 89, 179] +Triangle: [101, 155, 102] +Triangle: [152, 144, 145] +Triangle: [134, 151, 133] +Triangle: [135, 151, 154] +Triangle: [157, 153, 156] +Triangle: [152, 146, 155] +Triangle: [150, 152, 153] +Triangle: [151, 153, 154] +Triangle: [141, 149, 150] +Triangle: [149, 142, 144] +Triangle: [136, 157, 93] +Triangle: [93, 156, 101] +Triangle: [138, 150, 151] +Triangle: [148, 154, 157] +Triangle: [153, 155, 156] +Triangle: [155, 147, 102] +Triangle: [102, 159, 101] +Triangle: [147, 158, 102] +Triangle: [136, 161, 162] +Triangle: [93, 159, 161] +Triangle: [134, 163, 164] +Triangle: [133, 165, 163] +Triangle: [136, 166, 148] +Triangle: [134, 167, 138] +Triangle: [138, 168, 141] +Triangle: [142, 169, 170] +Triangle: [143, 168, 169] +Triangle: [142, 171, 144] +Triangle: [145, 171, 172] +Triangle: [146, 172, 173] +Triangle: [147, 173, 160] +Triangle: [148, 165, 135] +Triangle: [125, 179, 90] +Triangle: [127, 178, 129] +Triangle: [90, 177, 127] +Triangle: [122, 176, 125] +Triangle: [120, 175, 121] +Triangle: [107, 180, 106] +Triangle: [180, 183, 182] +Triangle: [183, 186, 182] +Triangle: [181, 717, 718] +Triangle: [183, 718, 719] +Triangle: [720, 183, 719] +Triangle: [192, 720, 721] +Triangle: [722, 192, 721] +Triangle: [723, 191, 722] +Triangle: [715, 190, 723] +Triangle: [184, 193, 186] +Triangle: [198, 193, 199] +Triangle: [192, 187, 184] +Triangle: [191, 188, 192] +Triangle: [195, 190, 189] +Triangle: [79, 189, 190] +Triangle: [204, 196, 205] +Triangle: [201, 186, 198] +Triangle: [202, 201, 198] +Triangle: [182, 200, 180] +Triangle: [202, 199, 203] +Triangle: [180, 105, 106] +Triangle: [115, 200, 208] +Triangle: [210, 207, 208] +Triangle: [185, 203, 194] +Triangle: [197, 202, 185] +Triangle: [201, 205, 200] +Triangle: [114, 208, 207] +Triangle: [696, 196, 206] +Triangle: [696, 200, 205] +Triangle: [189, 217, 195] +Triangle: [218, 211, 212] +Triangle: [219, 212, 213] +Triangle: [220, 213, 214] +Triangle: [221, 214, 215] +Triangle: [222, 215, 216] +Triangle: [117, 189, 98] +Triangle: [140, 211, 117] +Triangle: [119, 212, 140] +Triangle: [214, 119, 121] +Triangle: [215, 121, 175] +Triangle: [216, 175, 123] +Triangle: [223, 188, 195] +Triangle: [187, 227, 193] +Triangle: [193, 226, 199] +Triangle: [203, 226, 224] +Triangle: [228, 195, 217] +Triangle: [223, 229, 227] +Triangle: [226, 229, 230] +Triangle: [250, 249, 224] +Triangle: [229, 233, 234] +Triangle: [234, 230, 229] +Triangle: [233, 217, 218] +Triangle: [233, 236, 234] +Triangle: [235, 238, 236] +Triangle: [238, 239, 240] +Triangle: [240, 241, 242] +Triangle: [231, 244, 243] +Triangle: [243, 246, 245] +Triangle: [242, 262, 248] +Triangle: [234, 244, 232] +Triangle: [238, 244, 236] +Triangle: [247, 264, 240] +Triangle: [235, 218, 219] +Triangle: [237, 219, 220] +Triangle: [221, 237, 220] +Triangle: [222, 239, 221] +Triangle: [194, 224, 249] +Triangle: [226, 250, 224] +Triangle: [225, 250, 230] +Triangle: [225, 232, 231] +Triangle: [129, 256, 127] +Triangle: [122, 267, 123] +Triangle: [90, 255, 125] +Triangle: [216, 268, 222] +Triangle: [241, 261, 242] +Triangle: [125, 265, 122] +Triangle: [90, 256, 252] +Triangle: [264, 238, 240] +Triangle: [264, 245, 246] +Triangle: [123, 266, 216] +Triangle: [242, 247, 240] +Triangle: [265, 255, 253] +Triangle: [259, 266, 258] +Triangle: [265, 254, 267] +Triangle: [267, 258, 266] +Triangle: [241, 268, 260] +Triangle: [260, 268, 259] +Triangle: [8, 1209, 1210] +Triangle: [111, 269, 103] +Triangle: [302, 272, 271] +Triangle: [277, 274, 278] +Triangle: [270, 275, 269] +Triangle: [276, 278, 275] +Triangle: [277, 280, 281] +Triangle: [273, 281, 279] +Triangle: [281, 283, 284] +Triangle: [279, 284, 282] +Triangle: [284, 286, 287] +Triangle: [282, 287, 285] +Triangle: [287, 289, 290] +Triangle: [287, 288, 285] +Triangle: [289, 293, 290] +Triangle: [290, 291, 288] +Triangle: [294, 276, 270] +Triangle: [280, 295, 283] +Triangle: [283, 694, 286] +Triangle: [286, 296, 289] +Triangle: [292, 296, 297] +Triangle: [108, 270, 111] +Triangle: [295, 108, 113] +Triangle: [694, 113, 114] +Triangle: [296, 114, 207] +Triangle: [297, 207, 209] +Triangle: [273, 302, 274] +Triangle: [303, 273, 279] +Triangle: [303, 305, 304] +Triangle: [301, 304, 272] +Triangle: [305, 282, 306] +Triangle: [285, 306, 282] +Triangle: [300, 309, 285] +Triangle: [307, 309, 308] +Triangle: [300, 288, 299] +Triangle: [299, 291, 298] +Triangle: [323, 317, 315] +Triangle: [310, 328, 329] +Triangle: [326, 329, 325] +Triangle: [312, 325, 329] +Triangle: [325, 316, 326] +Triangle: [330, 315, 316] +Triangle: [313, 330, 312] +Triangle: [323, 318, 314] +Triangle: [317, 321, 322] +Triangle: [314, 320, 321] +Triangle: [320, 313, 319] +Triangle: [319, 312, 311] +Triangle: [329, 311, 312] +Triangle: [316, 331, 332] +Triangle: [331, 317, 324] +Triangle: [333, 317, 322] +Triangle: [340, 331, 324] +Triangle: [340, 333, 339] +Triangle: [322, 339, 333] +Triangle: [342, 345, 341] +Triangle: [342, 338, 339] +Triangle: [337, 339, 338] +Triangle: [336, 340, 337] +Triangle: [346, 343, 344] +Triangle: [321, 342, 322] +Triangle: [320, 343, 321] +Triangle: [308, 328, 307] +Triangle: [319, 308, 347] +Triangle: [319, 344, 320] +Triangle: [347, 300, 348] +Triangle: [344, 348, 346] +Triangle: [350, 345, 346] +Triangle: [634, 631, 632] +Triangle: [356, 681, 679] +Triangle: [352, 346, 348] +Triangle: [352, 300, 299] +Triangle: [680, 352, 299] +Triangle: [358, 353, 354] +Triangle: [350, 682, 679] +Triangle: [587, 634, 635] +Triangle: [683, 353, 680] +Triangle: [341, 362, 338] +Triangle: [685, 359, 684] +Triangle: [361, 363, 360] +Triangle: [341, 349, 359] +Triangle: [684, 349, 681] +Triangle: [351, 360, 355] +Triangle: [366, 338, 365] +Triangle: [367, 338, 362] +Triangle: [686, 362, 685] +Triangle: [369, 363, 364] +Triangle: [327, 332, 336] +Triangle: [326, 327, 334] +Triangle: [335, 326, 334] +Triangle: [310, 371, 307] +Triangle: [371, 306, 307] +Triangle: [376, 379, 377] +Triangle: [271, 379, 378] +Triangle: [375, 379, 380] +Triangle: [272, 380, 271] +Triangle: [374, 380, 381] +Triangle: [382, 272, 304] +Triangle: [383, 304, 305] +Triangle: [305, 370, 383] +Triangle: [406, 393, 401] +Triangle: [394, 406, 402] +Triangle: [395, 402, 403] +Triangle: [404, 395, 403] +Triangle: [404, 389, 405] +Triangle: [397, 405, 396] +Triangle: [398, 403, 392] +Triangle: [403, 390, 392] +Triangle: [390, 406, 400] +Triangle: [400, 401, 391] +Triangle: [415, 405, 389] +Triangle: [415, 389, 412] +Triangle: [396, 415, 388] +Triangle: [413, 415, 412] +Triangle: [414, 412, 411] +Triangle: [398, 412, 389] +Triangle: [411, 392, 410] +Triangle: [409, 392, 390] +Triangle: [409, 400, 408] +Triangle: [400, 407, 408] +Triangle: [411, 416, 414] +Triangle: [417, 410, 409] +Triangle: [408, 417, 409] +Triangle: [419, 408, 407] +Triangle: [418, 422, 421] +Triangle: [421, 417, 418] +Triangle: [426, 416, 417] +Triangle: [428, 430, 439] +Triangle: [429, 385, 447] +Triangle: [373, 381, 382] +Triangle: [372, 382, 383] +Triangle: [424, 429, 447] +Triangle: [447, 423, 444] +Triangle: [425, 374, 373] +Triangle: [420, 422, 387] +Triangle: [413, 441, 388] +Triangle: [428, 414, 416] +Triangle: [427, 413, 414] +Triangle: [426, 420, 430] +Triangle: [387, 432, 420] +Triangle: [420, 386, 430] +Triangle: [432, 433, 434] +Triangle: [433, 436, 434] +Triangle: [435, 438, 436] +Triangle: [376, 438, 437] +Triangle: [385, 428, 439] +Triangle: [439, 386, 440] +Triangle: [386, 434, 440] +Triangle: [385, 440, 423] +Triangle: [423, 443, 442] +Triangle: [445, 384, 425] +Triangle: [444, 442, 384] +Triangle: [443, 434, 436] +Triangle: [446, 436, 438] +Triangle: [446, 377, 375] +Triangle: [446, 442, 443] +Triangle: [374, 442, 375] +Triangle: [444, 424, 447] +Triangle: [399, 461, 393] +Triangle: [461, 463, 460] +Triangle: [394, 462, 399] +Triangle: [463, 465, 464] +Triangle: [463, 466, 460] +Triangle: [448, 464, 467] +Triangle: [474, 448, 467] +Triangle: [475, 468, 459] +Triangle: [465, 476, 464] +Triangle: [477, 478, 479] +Triangle: [476, 467, 464] +Triangle: [485, 468, 469] +Triangle: [469, 449, 485] +Triangle: [470, 484, 469] +Triangle: [470, 482, 483] +Triangle: [471, 481, 482] +Triangle: [480, 472, 473] +Triangle: [498, 484, 483] +Triangle: [450, 486, 488] +Triangle: [484, 487, 449] +Triangle: [495, 488, 496] +Triangle: [458, 489, 490] +Triangle: [525, 490, 526] +Triangle: [456, 491, 492] +Triangle: [619, 492, 620] +Triangle: [452, 494, 453] +Triangle: [495, 489, 451] +Triangle: [486, 499, 488] +Triangle: [497, 488, 499] +Triangle: [489, 497, 500] +Triangle: [490, 500, 501] +Triangle: [526, 501, 527] +Triangle: [492, 502, 503] +Triangle: [480, 476, 477] +Triangle: [473, 509, 510] +Triangle: [471, 507, 508] +Triangle: [469, 505, 506] +Triangle: [473, 504, 467] +Triangle: [472, 508, 509] +Triangle: [470, 506, 507] +Triangle: [474, 505, 468] +Triangle: [474, 504, 511] +Triangle: [512, 508, 507] +Triangle: [512, 506, 505] +Triangle: [510, 512, 504] +Triangle: [511, 512, 505] +Triangle: [519, 483, 482] +Triangle: [498, 520, 499] +Triangle: [521, 499, 520] +Triangle: [481, 513, 516] +Triangle: [514, 516, 513] +Triangle: [515, 517, 514] +Triangle: [482, 516, 519] +Triangle: [517, 519, 516] +Triangle: [521, 517, 518] +Triangle: [500, 521, 522] +Triangle: [518, 522, 521] +Triangle: [524, 518, 515] +Triangle: [501, 522, 523] +Triangle: [491, 527, 502] +Triangle: [457, 526, 491] +Triangle: [527, 523, 524] +Triangle: [527, 528, 502] +Triangle: [503, 528, 529] +Triangle: [528, 530, 532] +Triangle: [531, 524, 515] +Triangle: [533, 515, 514] +Triangle: [513, 533, 514] +Triangle: [477, 513, 480] +Triangle: [479, 534, 477] +Triangle: [531, 537, 536] +Triangle: [530, 536, 532] +Triangle: [532, 539, 540] +Triangle: [542, 539, 541] +Triangle: [544, 541, 543] +Triangle: [546, 543, 545] +Triangle: [547, 546, 545] +Triangle: [549, 548, 547] +Triangle: [552, 549, 551] +Triangle: [552, 553, 554] +Triangle: [554, 555, 556] +Triangle: [560, 557, 558] +Triangle: [556, 559, 560] +Triangle: [558, 561, 562] +Triangle: [562, 563, 564] +Triangle: [564, 565, 566] +Triangle: [492, 621, 620] +Triangle: [493, 568, 494] +Triangle: [621, 565, 567] +Triangle: [563, 567, 565] +Triangle: [529, 623, 622] +Triangle: [528, 538, 529] +Triangle: [538, 540, 569] +Triangle: [538, 624, 623] +Triangle: [566, 581, 564] +Triangle: [564, 580, 562] +Triangle: [562, 579, 558] +Triangle: [558, 578, 560] +Triangle: [578, 556, 560] +Triangle: [556, 576, 554] +Triangle: [554, 575, 552] +Triangle: [575, 550, 552] +Triangle: [574, 548, 550] +Triangle: [548, 572, 546] +Triangle: [546, 571, 544] +Triangle: [571, 542, 544] +Triangle: [570, 540, 542] +Triangle: [534, 537, 533] +Triangle: [583, 536, 537] +Triangle: [541, 583, 585] +Triangle: [541, 584, 543] +Triangle: [543, 586, 545] +Triangle: [545, 587, 547] +Triangle: [549, 587, 588] +Triangle: [551, 588, 589] +Triangle: [551, 590, 553] +Triangle: [605, 597, 606] +Triangle: [607, 598, 605] +Triangle: [608, 591, 609] +Triangle: [610, 599, 607] +Triangle: [608, 593, 592] +Triangle: [612, 600, 610] +Triangle: [611, 594, 593] +Triangle: [612, 602, 601] +Triangle: [613, 595, 594] +Triangle: [614, 603, 602] +Triangle: [615, 596, 595] +Triangle: [618, 603, 616] +Triangle: [617, 597, 596] +Triangle: [609, 625, 626] +Triangle: [569, 626, 624] +Triangle: [574, 606, 617] +Triangle: [582, 616, 581] +Triangle: [573, 617, 615] +Triangle: [580, 616, 614] +Triangle: [572, 615, 613] +Triangle: [579, 614, 612] +Triangle: [571, 613, 611] +Triangle: [579, 610, 578] +Triangle: [570, 611, 608] +Triangle: [578, 607, 577] +Triangle: [570, 609, 569] +Triangle: [577, 605, 576] +Triangle: [576, 606, 575] +Triangle: [582, 626, 618] +Triangle: [618, 625, 604] +Triangle: [623, 582, 566] +Triangle: [622, 566, 565] +Triangle: [529, 621, 503] +Triangle: [620, 567, 493] +Triangle: [452, 620, 493] +Triangle: [478, 394, 395] +Triangle: [583, 535, 628] +Triangle: [479, 628, 535] +Triangle: [478, 627, 479] +Triangle: [627, 631, 628] +Triangle: [632, 629, 630] +Triangle: [397, 627, 395] +Triangle: [396, 629, 397] +Triangle: [633, 584, 585] +Triangle: [631, 633, 628] +Triangle: [588, 635, 636] +Triangle: [388, 630, 396] +Triangle: [441, 638, 388] +Triangle: [424, 637, 441] +Triangle: [630, 640, 632] +Triangle: [637, 640, 638] +Triangle: [639, 445, 425] +Triangle: [634, 640, 643] +Triangle: [640, 642, 643] +Triangle: [639, 641, 642] +Triangle: [641, 373, 372] +Triangle: [644, 383, 370] +Triangle: [641, 644, 645] +Triangle: [371, 644, 370] +Triangle: [335, 645, 371] +Triangle: [334, 646, 335] +Triangle: [642, 645, 646] +Triangle: [642, 647, 643] +Triangle: [635, 643, 647] +Triangle: [636, 647, 648] +Triangle: [648, 334, 327] +Triangle: [650, 327, 336] +Triangle: [648, 649, 636] +Triangle: [589, 636, 649] +Triangle: [652, 336, 337] +Triangle: [650, 651, 649] +Triangle: [590, 649, 651] +Triangle: [654, 337, 366] +Triangle: [653, 652, 654] +Triangle: [655, 651, 653] +Triangle: [553, 655, 555] +Triangle: [453, 659, 455] +Triangle: [568, 659, 494] +Triangle: [658, 563, 561] +Triangle: [561, 657, 658] +Triangle: [657, 559, 656] +Triangle: [555, 656, 559] +Triangle: [663, 655, 653] +Triangle: [656, 662, 657] +Triangle: [657, 661, 658] +Triangle: [661, 659, 658] +Triangle: [455, 660, 454] +Triangle: [454, 665, 664] +Triangle: [669, 366, 365] +Triangle: [654, 670, 653] +Triangle: [670, 663, 653] +Triangle: [668, 662, 663] +Triangle: [662, 666, 661] +Triangle: [661, 665, 660] +Triangle: [669, 674, 670] +Triangle: [677, 674, 671] +Triangle: [673, 675, 672] +Triangle: [672, 678, 677] +Triangle: [671, 365, 367] +Triangle: [368, 685, 363] +Triangle: [355, 684, 681] +Triangle: [363, 684, 360] +Triangle: [298, 680, 299] +Triangle: [679, 357, 356] +Triangle: [353, 682, 680] +Triangle: [679, 349, 350] +Triangle: [677, 367, 686] +Triangle: [672, 686, 368] +Triangle: [369, 672, 368] +Triangle: [668, 690, 667] +Triangle: [667, 689, 666] +Triangle: [664, 687, 688] +Triangle: [687, 666, 689] +Triangle: [670, 691, 668] +Triangle: [678, 691, 674] +Triangle: [675, 690, 678] +Triangle: [689, 692, 687] +Triangle: [687, 693, 688] +Triangle: [676, 692, 675] +Triangle: [583, 633, 585] +Triangle: [358, 356, 357] +Triangle: [355, 695, 351] +Triangle: [696, 210, 208] +Triangle: [710, 702, 709] +Triangle: [697, 38, 37] +Triangle: [699, 28, 34] +Triangle: [700, 37, 28] +Triangle: [709, 701, 708] +Triangle: [708, 698, 707] +Triangle: [36, 699, 34] +Triangle: [706, 698, 697] +Triangle: [704, 700, 699] +Triangle: [705, 697, 700] +Triangle: [1247, 709, 1246] +Triangle: [1246, 708, 1239] +Triangle: [1239, 707, 1245] +Triangle: [1241, 710, 1247] +Triangle: [30, 703, 710] +Triangle: [33, 723, 32] +Triangle: [32, 722, 31] +Triangle: [31, 721, 30] +Triangle: [721, 29, 30] +Triangle: [29, 719, 26] +Triangle: [719, 27, 26] +Triangle: [718, 38, 27] +Triangle: [717, 37, 38] +Triangle: [716, 28, 37] +Triangle: [79, 711, 78] +Triangle: [714, 35, 36] +Triangle: [712, 36, 34] +Triangle: [713, 34, 28] +Triangle: [733, 262, 261] +Triangle: [734, 261, 260] +Triangle: [260, 731, 734] +Triangle: [259, 730, 731] +Triangle: [258, 729, 730] +Triangle: [729, 253, 728] +Triangle: [728, 255, 727] +Triangle: [727, 252, 726] +Triangle: [726, 256, 725] +Triangle: [725, 257, 724] +Triangle: [732, 5216, 5217] +Triangle: [743, 5196, 5198] +Triangle: [5218, 731, 5219] +Triangle: [5219, 730, 5215] +Triangle: [730, 5214, 5215] +Triangle: [729, 5213, 5214] +Triangle: [728, 5212, 5213] +Triangle: [727, 5211, 5212] +Triangle: [5211, 725, 5210] +Triangle: [5210, 724, 5220] +Triangle: [1195, 747, 759] +Triangle: [1197, 760, 797] +Triangle: [1133, 770, 1136] +Triangle: [785, 779, 778] +Triangle: [791, 773, 790] +Triangle: [784, 780, 779] +Triangle: [1096, 751, 750] +Triangle: [1204, 762, 1200] +Triangle: [1201, 800, 1202] +Triangle: [1102, 804, 1100] +Triangle: [796, 776, 767] +Triangle: [1194, 766, 765] +Triangle: [1202, 746, 1196] +Triangle: [1093, 750, 752] +Triangle: [1006, 1008, 1007] +Triangle: [891, 786, 787] +Triangle: [786, 778, 777] +Triangle: [805, 837, 807] +Triangle: [893, 783, 784] +Triangle: [888, 788, 896] +Triangle: [887, 785, 786] +Triangle: [1147, 767, 776] +Triangle: [894, 792, 899] +Triangle: [795, 767, 768] +Triangle: [783, 781, 780] +Triangle: [896, 789, 895] +Triangle: [897, 793, 894] +Triangle: [895, 782, 886] +Triangle: [885, 794, 897] +Triangle: [788, 773, 775] +Triangle: [885, 796, 795] +Triangle: [793, 771, 792] +Triangle: [898, 790, 888] +Triangle: [782, 774, 781] +Triangle: [892, 784, 785] +Triangle: [795, 769, 794] +Triangle: [789, 775, 774] +Triangle: [787, 777, 776] +Triangle: [886, 783, 890] +Triangle: [794, 770, 793] +Triangle: [889, 787, 796] +Triangle: [1090, 802, 801] +Triangle: [1097, 758, 1101] +Triangle: [1094, 755, 1095] +Triangle: [1104, 757, 1097] +Triangle: [1095, 756, 1104] +Triangle: [1205, 798, 766] +Triangle: [1200, 761, 1206] +Triangle: [1207, 763, 1204] +Triangle: [1100, 803, 1092] +Triangle: [1091, 748, 1102] +Triangle: [1098, 803, 802] +Triangle: [1103, 752, 753] +Triangle: [1196, 747, 1199] +Triangle: [805, 808, 806] +Triangle: [806, 809, 805] +Triangle: [868, 810, 813] +Triangle: [869, 813, 816] +Triangle: [806, 813, 810] +Triangle: [812, 806, 808] +Triangle: [867, 816, 818] +Triangle: [814, 813, 811] +Triangle: [812, 814, 811] +Triangle: [817, 814, 815] +Triangle: [818, 816, 817] +Triangle: [862, 822, 821] +Triangle: [861, 822, 855] +Triangle: [864, 871, 857] +Triangle: [819, 833, 820] +Triangle: [820, 866, 819] +Triangle: [820, 835, 822] +Triangle: [824, 807, 823] +Triangle: [823, 826, 824] +Triangle: [826, 897, 828] +Triangle: [828, 894, 830] +Triangle: [824, 828, 827] +Triangle: [808, 827, 812] +Triangle: [899, 830, 894] +Triangle: [827, 830, 829] +Triangle: [812, 829, 815] +Triangle: [829, 817, 815] +Triangle: [835, 895, 834] +Triangle: [833, 896, 835] +Triangle: [807, 847, 823] +Triangle: [888, 832, 898] +Triangle: [838, 805, 809] +Triangle: [823, 848, 825] +Triangle: [838, 865, 841] +Triangle: [863, 841, 865] +Triangle: [838, 839, 836] +Triangle: [837, 839, 840] +Triangle: [839, 842, 840] +Triangle: [843, 842, 841] +Triangle: [863, 844, 843] +Triangle: [821, 835, 834] +Triangle: [843, 852, 851] +Triangle: [856, 821, 846] +Triangle: [859, 846, 845] +Triangle: [853, 844, 845] +Triangle: [844, 859, 845] +Triangle: [846, 853, 845] +Triangle: [857, 809, 864] +Triangle: [891, 825, 848] +Triangle: [887, 848, 850] +Triangle: [892, 850, 851] +Triangle: [849, 848, 847] +Triangle: [837, 849, 847] +Triangle: [842, 849, 840] +Triangle: [851, 850, 842] +Triangle: [893, 851, 852] +Triangle: [886, 834, 895] +Triangle: [890, 854, 886] +Triangle: [864, 810, 858] +Triangle: [890, 852, 853] +Triangle: [851, 842, 843] +Triangle: [1198, 797, 798] +Triangle: [1203, 759, 760] +Triangle: [862, 870, 879] +Triangle: [1101, 749, 1091] +Triangle: [866, 873, 883] +Triangle: [859, 872, 878] +Triangle: [857, 882, 865] +Triangle: [860, 880, 872] +Triangle: [868, 875, 884] +Triangle: [858, 884, 877] +Triangle: [869, 874, 875] +Triangle: [858, 881, 864] +Triangle: [856, 878, 870] +Triangle: [855, 873, 861] +Triangle: [865, 880, 863] +Triangle: [855, 879, 876] +Triangle: [909, 1018, 900] +Triangle: [1049, 1138, 1144] +Triangle: [1139, 1042, 1142] +Triangle: [1145, 1054, 1141] +Triangle: [1045, 1140, 1135] +Triangle: [1141, 1044, 1143] +Triangle: [1144, 1048, 1049] +Triangle: [1146, 1053, 1145] +Triangle: [1042, 1134, 1142] +Triangle: [1043, 1136, 1134] +Triangle: [1050, 1146, 1138] +Triangle: [1143, 1045, 1135] +Triangle: [1042, 1108, 1043] +Triangle: [1044, 1112, 1045] +Triangle: [1046, 1108, 1109] +Triangle: [818, 832, 819] +Triangle: [1050, 1118, 1117] +Triangle: [881, 1091, 871] +Triangle: [1051, 1119, 1042] +Triangle: [1045, 1107, 1052] +Triangle: [1053, 1114, 1054] +Triangle: [1044, 1114, 1113] +Triangle: [1048, 1155, 1049] +Triangle: [1055, 1115, 1053] +Triangle: [1047, 1109, 1121] +Triangle: [1055, 1117, 1116] +Triangle: [747, 917, 759] +Triangle: [916, 746, 915] +Triangle: [759, 920, 918] +Triangle: [760, 918, 919] +Triangle: [920, 919, 918] +Triangle: [1047, 1137, 1133] +Triangle: [971, 1065, 1064] +Triangle: [981, 930, 985] +Triangle: [1001, 1021, 984] +Triangle: [1067, 932, 930] +Triangle: [1068, 934, 932] +Triangle: [1070, 936, 1029] +Triangle: [1148, 989, 1061] +Triangle: [1073, 940, 938] +Triangle: [952, 1059, 1058] +Triangle: [994, 950, 995] +Triangle: [1075, 944, 942] +Triangle: [1076, 946, 944] +Triangle: [1077, 948, 946] +Triangle: [948, 1079, 950] +Triangle: [1058, 1081, 952] +Triangle: [1082, 954, 1040] +Triangle: [952, 1084, 957] +Triangle: [1083, 958, 954] +Triangle: [1085, 960, 958] +Triangle: [960, 1087, 962] +Triangle: [962, 1088, 964] +Triangle: [979, 966, 983] +Triangle: [966, 1065, 924] +Triangle: [977, 980, 928] +Triangle: [925, 1064, 1066] +Triangle: [1208, 753, 1194] +Triangle: [974, 952, 957] +Triangle: [1075, 940, 1074] +Triangle: [946, 994, 993] +Triangle: [944, 993, 992] +Triangle: [992, 942, 944] +Triangle: [991, 940, 942] +Triangle: [1151, 989, 938] +Triangle: [1041, 957, 1040] +Triangle: [1031, 934, 1029] +Triangle: [987, 932, 934] +Triangle: [932, 985, 930] +Triangle: [1001, 983, 996] +Triangle: [964, 1089, 966] +Triangle: [925, 982, 971] +Triangle: [982, 924, 971] +Triangle: [924, 983, 966] +Triangle: [984, 979, 983] +Triangle: [978, 929, 980] +Triangle: [964, 978, 962] +Triangle: [962, 977, 960] +Triangle: [960, 976, 958] +Triangle: [976, 954, 958] +Triangle: [902, 997, 998] +Triangle: [969, 1000, 968] +Triangle: [1012, 1002, 1013] +Triangle: [982, 1001, 996] +Triangle: [1032, 1004, 1005] +Triangle: [1126, 915, 746] +Triangle: [754, 1103, 753] +Triangle: [1103, 874, 883] +Triangle: [883, 867, 866] +Triangle: [1208, 764, 1207] +Triangle: [866, 818, 819] +Triangle: [898, 831, 899] +Triangle: [1099, 801, 751] +Triangle: [834, 846, 821] +Triangle: [889, 826, 825] +Triangle: [1000, 1012, 1013] +Triangle: [903, 998, 1017] +Triangle: [1005, 1034, 1032] +Triangle: [968, 1015, 1025] +Triangle: [1000, 1014, 1015] +Triangle: [1012, 1020, 1021] +Triangle: [969, 1019, 1026] +Triangle: [1033, 1111, 1035] +Triangle: [900, 997, 901] +Triangle: [1003, 1013, 1002] +Triangle: [1014, 1022, 1015] +Triangle: [1015, 1027, 1025] +Triangle: [1016, 1036, 1034] +Triangle: [981, 1002, 982] +Triangle: [1066, 930, 925] +Triangle: [929, 1021, 1020] +Triangle: [1025, 1023, 1016] +Triangle: [999, 1026, 1020] +Triangle: [968, 1016, 1005] +Triangle: [1005, 969, 968] +Triangle: [1020, 980, 929] +Triangle: [1026, 928, 980] +Triangle: [985, 1003, 981] +Triangle: [1027, 985, 986] +Triangle: [1023, 986, 987] +Triangle: [1036, 987, 1031] +Triangle: [1024, 1128, 988] +Triangle: [1129, 1024, 1017] +Triangle: [1004, 1035, 1019] +Triangle: [1130, 1017, 998] +Triangle: [998, 1127, 1130] +Triangle: [988, 1132, 936] +Triangle: [1069, 1029, 934] +Triangle: [1028, 1019, 1035] +Triangle: [976, 928, 1028] +Triangle: [1037, 1035, 1111] +Triangle: [975, 1028, 1037] +Triangle: [1056, 1110, 1051] +Triangle: [975, 1040, 954] +Triangle: [1084, 1040, 957] +Triangle: [1041, 1037, 1038] +Triangle: [1038, 974, 1041] +Triangle: [1052, 1106, 1056] +Triangle: [907, 991, 992] +Triangle: [906, 991, 908] +Triangle: [904, 1017, 1024] +Triangle: [1072, 938, 1148] +Triangle: [1152, 990, 906] +Triangle: [791, 899, 792] +Triangle: [904, 1063, 1121] +Triangle: [909, 970, 974] +Triangle: [907, 993, 914] +Triangle: [914, 994, 913] +Triangle: [950, 1080, 1058] +Triangle: [1058, 995, 950] +Triangle: [911, 970, 910] +Triangle: [912, 1059, 911] +Triangle: [913, 995, 912] +Triangle: [1071, 1148, 936] +Triangle: [936, 1061, 988] +Triangle: [949, 945, 943] +Triangle: [926, 1064, 1065] +Triangle: [931, 1066, 927] +Triangle: [933, 1067, 931] +Triangle: [935, 1068, 933] +Triangle: [937, 1070, 1030] +Triangle: [939, 1072, 1060] +Triangle: [941, 1073, 939] +Triangle: [943, 1074, 941] +Triangle: [945, 1075, 943] +Triangle: [945, 1077, 1076] +Triangle: [947, 1078, 1077] +Triangle: [951, 1078, 949] +Triangle: [953, 1080, 1057] +Triangle: [1039, 1083, 1082] +Triangle: [956, 1081, 953] +Triangle: [955, 1085, 1083] +Triangle: [959, 1086, 1085] +Triangle: [961, 1087, 1086] +Triangle: [963, 1088, 1087] +Triangle: [926, 1089, 967] +Triangle: [967, 1088, 965] +Triangle: [927, 1064, 972] +Triangle: [1030, 1069, 935] +Triangle: [956, 1082, 1084] +Triangle: [1057, 1079, 951] +Triangle: [1060, 1071, 937] +Triangle: [941, 949, 943] +Triangle: [939, 951, 941] +Triangle: [1060, 1057, 939] +Triangle: [1060, 956, 953] +Triangle: [1039, 937, 1030] +Triangle: [1030, 955, 1039] +Triangle: [959, 935, 933] +Triangle: [961, 933, 931] +Triangle: [963, 931, 927] +Triangle: [965, 927, 972] +Triangle: [972, 967, 965] +Triangle: [879, 1090, 1099] +Triangle: [900, 1106, 909] +Triangle: [883, 1093, 1103] +Triangle: [878, 1092, 1098] +Triangle: [871, 1102, 882] +Triangle: [880, 1092, 872] +Triangle: [884, 1095, 1104] +Triangle: [884, 1097, 877] +Triangle: [875, 1094, 1095] +Triangle: [877, 1101, 881] +Triangle: [870, 1098, 1090] +Triangle: [1133, 772, 771] +Triangle: [876, 1093, 873] +Triangle: [882, 1100, 880] +Triangle: [876, 1099, 1096] +Triangle: [1052, 1147, 1140] +Triangle: [1118, 1152, 906] +Triangle: [1118, 908, 1117] +Triangle: [1117, 907, 1116] +Triangle: [907, 1115, 1116] +Triangle: [914, 1114, 1115] +Triangle: [913, 1113, 1114] +Triangle: [912, 1112, 1113] +Triangle: [1112, 910, 1107] +Triangle: [1107, 909, 1106] +Triangle: [1018, 1037, 1111] +Triangle: [1110, 901, 1119] +Triangle: [1119, 902, 1108] +Triangle: [1109, 902, 903] +Triangle: [1121, 903, 904] +Triangle: [1062, 1120, 1063] +Triangle: [1007, 1123, 1124] +Triangle: [1122, 1124, 1123] +Triangle: [988, 1149, 1024] +Triangle: [1062, 1024, 1149] +Triangle: [1206, 799, 1201] +Triangle: [1029, 936, 1132] +Triangle: [1129, 1032, 1034] +Triangle: [1130, 1033, 1032] +Triangle: [1128, 1036, 1031] +Triangle: [1111, 997, 1018] +Triangle: [1132, 1031, 1029] +Triangle: [1131, 1034, 1036] +Triangle: [1140, 776, 777] +Triangle: [1154, 1048, 1047] +Triangle: [1143, 778, 779] +Triangle: [1138, 774, 775] +Triangle: [769, 1136, 770] +Triangle: [768, 1134, 769] +Triangle: [1146, 781, 774] +Triangle: [772, 1144, 773] +Triangle: [1141, 779, 780] +Triangle: [1135, 777, 778] +Triangle: [781, 1141, 780] +Triangle: [767, 1142, 768] +Triangle: [1144, 775, 773] +Triangle: [1051, 1147, 1056] +Triangle: [1046, 1133, 1136] +Triangle: [772, 792, 771] +Triangle: [1118, 1155, 1150] +Triangle: [1150, 905, 1152] +Triangle: [1153, 1063, 1120] +Triangle: [1155, 1120, 1150] +Triangle: [1152, 989, 1151] +Triangle: [1121, 1154, 1047] +Triangle: [1149, 905, 1062] +Triangle: [989, 1149, 1061] +Triangle: [1166, 1164, 1165] +Triangle: [1009, 1166, 922] +Triangle: [1191, 1163, 1164] +Triangle: [1169, 1163, 1168] +Triangle: [921, 1171, 919] +Triangle: [1170, 1166, 1171] +Triangle: [1165, 1171, 1166] +Triangle: [919, 1172, 760] +Triangle: [1173, 1165, 1164] +Triangle: [797, 1172, 1173] +Triangle: [1174, 1164, 1163] +Triangle: [1175, 1163, 1162] +Triangle: [798, 1173, 1174] +Triangle: [766, 1174, 1175] +Triangle: [1176, 1162, 1161] +Triangle: [1160, 1176, 1161] +Triangle: [1159, 1177, 1160] +Triangle: [1158, 1178, 1159] +Triangle: [1179, 1157, 1180] +Triangle: [766, 1176, 765] +Triangle: [765, 1177, 1011] +Triangle: [1011, 1178, 764] +Triangle: [764, 1179, 763] +Triangle: [763, 1180, 762] +Triangle: [1182, 1157, 1156] +Triangle: [762, 1182, 761] +Triangle: [1181, 1182, 1156] +Triangle: [1182, 1183, 761] +Triangle: [799, 1183, 1184] +Triangle: [1123, 1183, 1122] +Triangle: [1184, 1008, 1185] +Triangle: [799, 1185, 800] +Triangle: [1008, 1126, 1185] +Triangle: [800, 1126, 746] +Triangle: [1125, 1181, 973] +Triangle: [1186, 1181, 1156] +Triangle: [735, 1186, 1156] +Triangle: [736, 1156, 1157] +Triangle: [737, 1157, 1158] +Triangle: [737, 1159, 738] +Triangle: [739, 1159, 1160] +Triangle: [740, 1160, 1161] +Triangle: [740, 1187, 744] +Triangle: [1162, 1187, 1161] +Triangle: [1188, 744, 1187] +Triangle: [1189, 1187, 1169] +Triangle: [1189, 1168, 1190] +Triangle: [1191, 1167, 1192] +Triangle: [1192, 1009, 1010] +Triangle: [1192, 1168, 1191] +Triangle: [741, 1188, 1193] +Triangle: [1193, 742, 741] +Triangle: [1193, 1189, 1190] +Triangle: [1190, 923, 1193] +Triangle: [1105, 1192, 1010] +Triangle: [758, 1201, 749] +Triangle: [754, 1207, 755] +Triangle: [1011, 1194, 765] +Triangle: [801, 1195, 1203] +Triangle: [750, 1197, 1198] +Triangle: [804, 1199, 803] +Triangle: [755, 1204, 756] +Triangle: [757, 1206, 758] +Triangle: [752, 1198, 1205] +Triangle: [748, 1196, 804] +Triangle: [753, 1205, 1194] +Triangle: [749, 1202, 748] +Triangle: [756, 1200, 757] +Triangle: [751, 1203, 1197] +Triangle: [802, 1199, 1195] +Triangle: [1210, 50, 41] +Triangle: [1214, 48, 46] +Triangle: [43, 1216, 44] +Triangle: [44, 1215, 45] +Triangle: [51, 1220, 40] +Triangle: [45, 1214, 46] +Triangle: [50, 1221, 51] +Triangle: [42, 1217, 43] +Triangle: [1212, 47, 49] +Triangle: [1219, 42, 39] +Triangle: [1213, 49, 48] +Triangle: [40, 1219, 39] +Triangle: [1211, 41, 47] +Triangle: [76, 1227, 70] +Triangle: [70, 1226, 69] +Triangle: [77, 1278, 1275] +Triangle: [65, 1279, 1222] +Triangle: [72, 1234, 77] +Triangle: [75, 1280, 76] +Triangle: [67, 1231, 1224] +Triangle: [75, 1283, 1282] +Triangle: [74, 1228, 1231] +Triangle: [73, 1225, 1283] +Triangle: [66, 1224, 1223] +Triangle: [66, 1229, 72] +Triangle: [65, 1228, 71] +Triangle: [1269, 1247, 1273] +Triangle: [1264, 1245, 1271] +Triangle: [1272, 1239, 1264] +Triangle: [1273, 1246, 1272] +Triangle: [1269, 1243, 1241] +Triangle: [1266, 1242, 1243] +Triangle: [1261, 1242, 1265] +Triangle: [1270, 1245, 1244] +Triangle: [1268, 1238, 1240] +Triangle: [1268, 1235, 1267] +Triangle: [1263, 1237, 1238] +Triangle: [1262, 1244, 1237] +Triangle: [1267, 1236, 1261] +Triangle: [52, 1248, 53] +Triangle: [55, 1256, 1249] +Triangle: [54, 1257, 1256] +Triangle: [57, 1284, 58] +Triangle: [59, 1248, 1251] +Triangle: [58, 1285, 60] +Triangle: [56, 1251, 1257] +Triangle: [60, 1286, 61] +Triangle: [55, 1254, 62] +Triangle: [63, 1255, 52] +Triangle: [62, 1274, 57] +Triangle: [63, 1260, 1276] +Triangle: [64, 1286, 1260] +Triangle: [20, 1267, 1261] +Triangle: [15, 1270, 1262] +Triangle: [21, 1262, 1263] +Triangle: [23, 1267, 22] +Triangle: [21, 1268, 23] +Triangle: [24, 1271, 1270] +Triangle: [20, 1265, 19] +Triangle: [19, 1266, 18] +Triangle: [18, 1269, 17] +Triangle: [13, 1273, 1272] +Triangle: [14, 1272, 1264] +Triangle: [25, 1264, 1271] +Triangle: [17, 1273, 16] +Triangle: [1258, 1275, 68] +Triangle: [1259, 1277, 1276] +Triangle: [1225, 1275, 1278] +Triangle: [1226, 1277, 69] +Triangle: [1280, 1281, 1227] +Triangle: [1227, 1279, 1226] +Triangle: [1280, 1232, 1233] +Triangle: [1282, 1230, 1232] +Triangle: [1283, 1278, 1230] +Triangle: [1250, 1274, 1258] +Triangle: [1252, 1284, 1250] +Triangle: [1253, 1285, 1252] +Triangle: [1259, 1260, 1287] +Triangle: [1253, 1260, 1286] +Triangle: [1321, 2415, 2416] +Triangle: [2417, 1907, 2424] +Triangle: [2418, 1906, 2417] +Triangle: [1315, 1903, 1902] +Triangle: [1323, 2420, 2415] +Triangle: [1314, 1904, 1903] +Triangle: [2420, 1905, 2418] +Triangle: [2424, 1908, 2425] +Triangle: [1320, 2416, 2422] +Triangle: [1326, 1902, 1899] +Triangle: [2423, 1320, 2422] +Triangle: [2421, 1319, 2423] +Triangle: [1336, 2402, 2408] +Triangle: [2409, 1329, 2403] +Triangle: [2403, 1335, 2404] +Triangle: [2410, 1328, 2458] +Triangle: [2411, 1336, 2408] +Triangle: [1330, 2410, 2412] +Triangle: [2404, 1337, 2411] +Triangle: [1331, 2412, 2413] +Triangle: [2414, 1338, 2409] +Triangle: [1334, 2459, 2402] +Triangle: [2458, 1339, 2414] +Triangle: [1333, 2461, 2459] +Triangle: [1332, 2413, 2461] +Triangle: [1306, 1349, 1305] +Triangle: [1351, 1306, 1307] +Triangle: [1345, 1313, 1302] +Triangle: [1340, 1307, 1308] +Triangle: [1313, 1343, 1312] +Triangle: [1349, 1304, 1305] +Triangle: [1344, 1311, 1309] +Triangle: [1304, 1346, 1301] +Triangle: [1347, 1310, 1311] +Triangle: [1346, 1302, 1301] +Triangle: [1303, 1344, 1309] +Triangle: [1312, 1342, 1303] +Triangle: [1310, 1340, 1308] +Triangle: [2390, 1298, 2391] +Triangle: [2400, 1289, 1300] +Triangle: [2392, 1295, 2393] +Triangle: [2398, 1289, 2399] +Triangle: [2391, 1297, 2392] +Triangle: [2398, 1291, 1288] +Triangle: [2389, 1299, 1290] +Triangle: [2394, 1293, 2395] +Triangle: [2401, 1300, 1299] +Triangle: [2395, 1292, 2396] +Triangle: [2396, 1291, 2397] +Triangle: [2393, 1294, 2394] +Triangle: [1358, 2433, 2467] +Triangle: [2439, 1358, 2467] +Triangle: [2455, 2434, 2454] +Triangle: [2435, 2457, 2456] +Triangle: [1365, 2429, 2434] +Triangle: [1364, 2432, 2433] +Triangle: [2437, 1362, 2431] +Triangle: [1363, 2430, 2432] +Triangle: [2431, 1359, 2428] +Triangle: [1361, 2438, 2430] +Triangle: [2436, 1355, 2437] +Triangle: [2429, 1354, 2436] +Triangle: [1359, 2435, 2428] +Triangle: [1913, 1370, 1914] +Triangle: [1913, 1368, 1369] +Triangle: [1912, 1368, 1915] +Triangle: [1916, 1323, 1321] +Triangle: [1372, 1370, 1369] +Triangle: [1379, 1374, 1372] +Triangle: [130, 1440, 137] +Triangle: [1377, 83, 1374] +Triangle: [1388, 1390, 1385] +Triangle: [1438, 1377, 1451] +Triangle: [1380, 1372, 1369] +Triangle: [1368, 1380, 1369] +Triangle: [1381, 1366, 1382] +Triangle: [1367, 1382, 1366] +Triangle: [1914, 1384, 1917] +Triangle: [1385, 1370, 1371] +Triangle: [1380, 1448, 1449] +Triangle: [1379, 1449, 1450] +Triangle: [1388, 1371, 1373] +Triangle: [1917, 1391, 1918] +Triangle: [1384, 1390, 1391] +Triangle: [1451, 1379, 1450] +Triangle: [1393, 83, 84] +Triangle: [1373, 1393, 1394] +Triangle: [103, 1393, 84] +Triangle: [1394, 1395, 1392] +Triangle: [1373, 1396, 1388] +Triangle: [1392, 1396, 1394] +Triangle: [1388, 1399, 1389] +Triangle: [1398, 1396, 1397] +Triangle: [1383, 1400, 1382] +Triangle: [1403, 1417, 1418] +Triangle: [1405, 1402, 1403] +Triangle: [1407, 1452, 1453] +Triangle: [1452, 1408, 1404] +Triangle: [1455, 1375, 1456] +Triangle: [1455, 128, 1410] +Triangle: [137, 1410, 128] +Triangle: [1444, 1408, 1375] +Triangle: [1408, 1441, 1404] +Triangle: [1442, 1404, 1441] +Triangle: [1418, 1400, 1401] +Triangle: [1417, 1442, 1445] +Triangle: [1400, 1445, 1446] +Triangle: [1400, 1447, 1382] +Triangle: [1381, 1447, 1448] +Triangle: [1372, 1373, 1371] +Triangle: [131, 1439, 130] +Triangle: [1437, 132, 1436] +Triangle: [132, 1438, 1436] +Triangle: [1440, 1375, 1410] +Triangle: [1454, 1375, 1408] +Triangle: [1386, 1433, 1434] +Triangle: [1430, 1422, 1427] +Triangle: [1429, 1413, 1412] +Triangle: [1414, 1429, 1412] +Triangle: [1435, 1431, 1432] +Triangle: [1424, 1430, 1433] +Triangle: [1430, 1428, 1431] +Triangle: [1431, 1429, 1432] +Triangle: [1427, 1419, 1428] +Triangle: [1427, 1420, 1421] +Triangle: [1415, 1435, 1426] +Triangle: [1378, 1434, 1435] +Triangle: [1428, 1416, 1429] +Triangle: [1426, 1432, 1414] +Triangle: [1433, 1431, 1434] +Triangle: [1425, 1433, 1387] +Triangle: [1437, 1387, 1386] +Triangle: [1436, 1425, 1387] +Triangle: [1415, 1439, 1378] +Triangle: [1378, 1437, 1386] +Triangle: [1413, 1441, 1412] +Triangle: [1412, 1443, 1414] +Triangle: [1444, 1415, 1426] +Triangle: [1445, 1413, 1416] +Triangle: [1446, 1416, 1419] +Triangle: [1420, 1447, 1421] +Triangle: [1421, 1446, 1419] +Triangle: [1449, 1420, 1422] +Triangle: [1423, 1449, 1422] +Triangle: [1424, 1450, 1423] +Triangle: [1425, 1451, 1424] +Triangle: [1443, 1426, 1414] +Triangle: [1409, 1456, 1454] +Triangle: [1411, 178, 1455] +Triangle: [1376, 1455, 1456] +Triangle: [1406, 1454, 1452] +Triangle: [1453, 1404, 1405] +Triangle: [1457, 1391, 1390] +Triangle: [1457, 1460, 1458] +Triangle: [1462, 1460, 1459] +Triangle: [1918, 1458, 1919] +Triangle: [1919, 1460, 1920] +Triangle: [1921, 1460, 1461] +Triangle: [1921, 1468, 1922] +Triangle: [1468, 1923, 1922] +Triangle: [1467, 1924, 1923] +Triangle: [1466, 1916, 1924] +Triangle: [1469, 1461, 1462] +Triangle: [1471, 1469, 1462] +Triangle: [1463, 1468, 1461] +Triangle: [1467, 1464, 1470] +Triangle: [1470, 1466, 1467] +Triangle: [1367, 1465, 1383] +Triangle: [196, 1477, 1478] +Triangle: [1462, 1474, 1471] +Triangle: [1475, 1474, 1477] +Triangle: [1473, 1459, 1457] +Triangle: [1475, 1472, 1471] +Triangle: [1389, 1457, 1390] +Triangle: [1399, 1473, 1389] +Triangle: [1479, 210, 1480] +Triangle: [185, 1476, 1475] +Triangle: [1475, 197, 185] +Triangle: [1478, 1474, 1473] +Triangle: [1398, 1480, 1399] +Triangle: [196, 1897, 206] +Triangle: [1897, 1473, 1480] +Triangle: [1487, 1465, 1470] +Triangle: [1481, 1488, 1482] +Triangle: [1482, 1489, 1483] +Triangle: [1483, 1490, 1484] +Triangle: [1484, 1491, 1485] +Triangle: [1485, 1492, 1486] +Triangle: [1401, 1465, 1481] +Triangle: [1418, 1481, 1482] +Triangle: [1403, 1482, 1483] +Triangle: [1403, 1484, 1405] +Triangle: [1405, 1485, 1453] +Triangle: [1453, 1486, 1407] +Triangle: [1493, 1464, 1463] +Triangle: [1496, 1463, 1469] +Triangle: [1469, 1495, 1496] +Triangle: [1476, 1495, 1472] +Triangle: [1470, 1497, 1487] +Triangle: [1498, 1493, 1496] +Triangle: [1495, 1498, 1496] +Triangle: [1513, 249, 251] +Triangle: [1498, 1501, 1497] +Triangle: [1499, 1502, 1498] +Triangle: [1487, 1501, 1488] +Triangle: [1504, 1501, 1502] +Triangle: [1506, 1503, 1504] +Triangle: [1506, 1507, 1505] +Triangle: [1508, 1509, 1507] +Triangle: [231, 1511, 1500] +Triangle: [243, 1512, 1511] +Triangle: [262, 1510, 248] +Triangle: [1511, 1502, 1500] +Triangle: [1506, 1511, 1512] +Triangle: [1523, 247, 1508] +Triangle: [1488, 1503, 1489] +Triangle: [1489, 1505, 1490] +Triangle: [1491, 1505, 1507] +Triangle: [1492, 1507, 1509] +Triangle: [194, 1494, 1476] +Triangle: [1495, 1513, 1499] +Triangle: [225, 1513, 251] +Triangle: [225, 1500, 1499] +Triangle: [1518, 129, 1411] +Triangle: [1526, 1406, 1407] +Triangle: [1517, 1376, 1409] +Triangle: [1527, 1486, 1492] +Triangle: [1522, 1509, 1510] +Triangle: [1524, 1409, 1406] +Triangle: [1376, 1518, 1411] +Triangle: [1506, 1523, 1508] +Triangle: [245, 1523, 1512] +Triangle: [1525, 1407, 1486] +Triangle: [1510, 247, 248] +Triangle: [1524, 1515, 1517] +Triangle: [1520, 1525, 1527] +Triangle: [1516, 1524, 1526] +Triangle: [1519, 1526, 1525] +Triangle: [1509, 1527, 1492] +Triangle: [1521, 1520, 1527] +Triangle: [2389, 1296, 2390] +Triangle: [269, 1395, 103] +Triangle: [302, 1529, 1550] +Triangle: [274, 1532, 278] +Triangle: [275, 1528, 269] +Triangle: [278, 1531, 275] +Triangle: [1532, 1534, 1531] +Triangle: [1530, 1535, 1532] +Triangle: [1535, 1537, 1534] +Triangle: [1533, 1538, 1535] +Triangle: [1538, 1540, 1537] +Triangle: [1536, 1541, 1538] +Triangle: [1541, 1543, 1540] +Triangle: [1542, 1541, 1539] +Triangle: [293, 1543, 1544] +Triangle: [291, 1544, 1542] +Triangle: [1531, 1545, 1528] +Triangle: [1546, 1534, 1537] +Triangle: [1896, 1537, 1540] +Triangle: [1547, 1540, 1543] +Triangle: [292, 1547, 1543] +Triangle: [1392, 1528, 1545] +Triangle: [1392, 1546, 1397] +Triangle: [1397, 1896, 1398] +Triangle: [1398, 1547, 1479] +Triangle: [1479, 297, 209] +Triangle: [302, 1530, 274] +Triangle: [1530, 1551, 1533] +Triangle: [1551, 1553, 1533] +Triangle: [1552, 1550, 1529] +Triangle: [1536, 1553, 1554] +Triangle: [1539, 1554, 1557] +Triangle: [1549, 1557, 1556] +Triangle: [1555, 1557, 1554] +Triangle: [1549, 1542, 1539] +Triangle: [1548, 291, 1542] +Triangle: [1565, 1571, 1563] +Triangle: [1576, 1558, 1577] +Triangle: [1577, 1574, 1573] +Triangle: [1560, 1573, 1578] +Triangle: [1573, 1564, 1578] +Triangle: [1563, 1578, 1564] +Triangle: [1578, 1561, 1560] +Triangle: [1566, 1571, 1562] +Triangle: [1565, 1569, 1562] +Triangle: [1568, 1562, 1569] +Triangle: [1568, 1561, 1566] +Triangle: [1560, 1567, 1559] +Triangle: [1559, 1577, 1560] +Triangle: [1564, 1579, 1563] +Triangle: [1579, 1565, 1563] +Triangle: [1565, 1581, 1570] +Triangle: [1579, 1588, 1572] +Triangle: [1581, 1588, 1587] +Triangle: [1570, 1587, 1590] +Triangle: [1593, 1590, 1589] +Triangle: [1586, 1590, 1587] +Triangle: [1585, 1587, 1588] +Triangle: [1588, 1584, 1585] +Triangle: [1591, 1594, 1592] +Triangle: [1569, 1590, 1591] +Triangle: [1568, 1591, 1592] +Triangle: [1576, 1556, 1555] +Triangle: [1556, 1567, 1595] +Triangle: [1567, 1592, 1595] +Triangle: [1549, 1595, 1596] +Triangle: [1596, 1592, 1594] +Triangle: [1593, 1598, 1594] +Triangle: [1842, 1839, 1795] +Triangle: [1886, 1602, 1884] +Triangle: [1594, 1599, 1596] +Triangle: [1549, 1599, 1548] +Triangle: [1885, 1599, 1887] +Triangle: [1600, 358, 354] +Triangle: [1887, 1598, 1884] +Triangle: [1842, 1796, 1843] +Triangle: [683, 1600, 354] +Triangle: [1606, 1589, 1586] +Triangle: [1604, 1889, 1888] +Triangle: [361, 1607, 364] +Triangle: [1589, 1597, 1593] +Triangle: [1597, 1888, 1886] +Triangle: [351, 1605, 361] +Triangle: [1609, 1586, 1585] +Triangle: [1586, 1610, 1606] +Triangle: [1606, 1890, 1889] +Triangle: [1607, 369, 364] +Triangle: [1580, 1575, 1584] +Triangle: [1575, 1574, 1582] +Triangle: [1574, 1583, 1582] +Triangle: [1613, 1558, 1555] +Triangle: [1613, 1554, 1612] +Triangle: [376, 1619, 378] +Triangle: [271, 1619, 1620] +Triangle: [1617, 1619, 1618] +Triangle: [1529, 1620, 1621] +Triangle: [1616, 1620, 1617] +Triangle: [1529, 1622, 1552] +Triangle: [1552, 1623, 1553] +Triangle: [1553, 1612, 1554] +Triangle: [1642, 393, 1636] +Triangle: [1642, 1631, 1638] +Triangle: [1638, 1632, 1639] +Triangle: [1640, 1632, 1634] +Triangle: [1628, 1640, 1641] +Triangle: [1641, 1634, 1633] +Triangle: [1635, 1639, 1640] +Triangle: [1629, 1639, 1630] +Triangle: [1629, 1642, 1638] +Triangle: [1637, 401, 1642] +Triangle: [1650, 1628, 1641] +Triangle: [1650, 1647, 1628] +Triangle: [1650, 1633, 1627] +Triangle: [1650, 1648, 1647] +Triangle: [1647, 1649, 1646] +Triangle: [1635, 1647, 1646] +Triangle: [1630, 1646, 1645] +Triangle: [1644, 1630, 1645] +Triangle: [1637, 1644, 1643] +Triangle: [1637, 407, 391] +Triangle: [1651, 1646, 1649] +Triangle: [1645, 1652, 1644] +Triangle: [1643, 1652, 1653] +Triangle: [419, 1643, 1653] +Triangle: [422, 1653, 1655] +Triangle: [1652, 1655, 1653] +Triangle: [1651, 1659, 1652] +Triangle: [1661, 1663, 1659] +Triangle: [1662, 1625, 1660] +Triangle: [1615, 1621, 1616] +Triangle: [1614, 1622, 1615] +Triangle: [1657, 1662, 1670] +Triangle: [1656, 1676, 1673] +Triangle: [1616, 1658, 1615] +Triangle: [422, 1654, 387] +Triangle: [1670, 1648, 1627] +Triangle: [1661, 1649, 1660] +Triangle: [1660, 1648, 1662] +Triangle: [1659, 1654, 1655] +Triangle: [1664, 387, 1654] +Triangle: [1654, 1626, 1664] +Triangle: [1664, 433, 431] +Triangle: [1666, 433, 1665] +Triangle: [1667, 435, 1666] +Triangle: [376, 1667, 1618] +Triangle: [1661, 1625, 1668] +Triangle: [1668, 1626, 1663] +Triangle: [1626, 1665, 1664] +Triangle: [1625, 1669, 1668] +Triangle: [1656, 1672, 1669] +Triangle: [1624, 1674, 1658] +Triangle: [1673, 1671, 1656] +Triangle: [1665, 1672, 1666] +Triangle: [1675, 1666, 1672] +Triangle: [1618, 1675, 1617] +Triangle: [1671, 1675, 1672] +Triangle: [1616, 1671, 1624] +Triangle: [1657, 1673, 1676] +Triangle: [1636, 461, 1677] +Triangle: [1678, 461, 460] +Triangle: [1631, 1677, 1680] +Triangle: [1680, 1678, 1679] +Triangle: [466, 1678, 460] +Triangle: [448, 1679, 466] +Triangle: [1688, 448, 475] +Triangle: [1682, 475, 459] +Triangle: [1680, 1689, 1691] +Triangle: [1690, 1691, 1689] +Triangle: [1681, 1689, 1679] +Triangle: [1682, 485, 1683] +Triangle: [449, 1683, 485] +Triangle: [1697, 1684, 1683] +Triangle: [1684, 1695, 1685] +Triangle: [1685, 1694, 1686] +Triangle: [1693, 1686, 1694] +Triangle: [1697, 1708, 1696] +Triangle: [450, 1698, 487] +Triangle: [487, 1697, 449] +Triangle: [495, 1699, 450] +Triangle: [458, 1700, 451] +Triangle: [525, 1701, 458] +Triangle: [456, 1702, 457] +Triangle: [619, 1703, 456] +Triangle: [1705, 452, 453] +Triangle: [1700, 495, 451] +Triangle: [1709, 1698, 1699] +Triangle: [1707, 1699, 1706] +Triangle: [1700, 1707, 1706] +Triangle: [1701, 1710, 1700] +Triangle: [1735, 1711, 1701] +Triangle: [1703, 1712, 1702] +Triangle: [1689, 1693, 1690] +Triangle: [1687, 1719, 1686] +Triangle: [1685, 1717, 1684] +Triangle: [1683, 1715, 1682] +Triangle: [1714, 1687, 1681] +Triangle: [1686, 1718, 1685] +Triangle: [1684, 1716, 1683] +Triangle: [1715, 1688, 1682] +Triangle: [1688, 1714, 1681] +Triangle: [1722, 1718, 1719] +Triangle: [1716, 1722, 1715] +Triangle: [1722, 1720, 1714] +Triangle: [1721, 1722, 1714] +Triangle: [1696, 1729, 1695] +Triangle: [1730, 1708, 1709] +Triangle: [1731, 1709, 1707] +Triangle: [1694, 1723, 1693] +Triangle: [1724, 1726, 1727] +Triangle: [1725, 1727, 1728] +Triangle: [1695, 1726, 1694] +Triangle: [1727, 1729, 1730] +Triangle: [1727, 1731, 1728] +Triangle: [1710, 1731, 1707] +Triangle: [1728, 1732, 1733] +Triangle: [1734, 1728, 1733] +Triangle: [1711, 1732, 1710] +Triangle: [1702, 1736, 1735] +Triangle: [457, 1735, 525] +Triangle: [1733, 1736, 1734] +Triangle: [1737, 1736, 1712] +Triangle: [1713, 1737, 1712] +Triangle: [1737, 1739, 1734] +Triangle: [1740, 1734, 1739] +Triangle: [1725, 1742, 1724] +Triangle: [1723, 1742, 1743] +Triangle: [1690, 1723, 1743] +Triangle: [1692, 1743, 1744] +Triangle: [1740, 1746, 1742] +Triangle: [1739, 1745, 1740] +Triangle: [1741, 1748, 1745] +Triangle: [1748, 1751, 1750] +Triangle: [1750, 1753, 1752] +Triangle: [1752, 1755, 1754] +Triangle: [1756, 1755, 1757] +Triangle: [1758, 1757, 1759] +Triangle: [1758, 1761, 1760] +Triangle: [1761, 1762, 1760] +Triangle: [1763, 1764, 1762] +Triangle: [1769, 1766, 1768] +Triangle: [1765, 1768, 1764] +Triangle: [1767, 1770, 1766] +Triangle: [1771, 1772, 1770] +Triangle: [1773, 1774, 1772] +Triangle: [1829, 1703, 1828] +Triangle: [1777, 1704, 1705] +Triangle: [1829, 1774, 1830] +Triangle: [1772, 1776, 1777] +Triangle: [1831, 1738, 1830] +Triangle: [1747, 1737, 1738] +Triangle: [1747, 1749, 1741] +Triangle: [1832, 1747, 1831] +Triangle: [1775, 1790, 1791] +Triangle: [1773, 1789, 1790] +Triangle: [1771, 1788, 1789] +Triangle: [1767, 1787, 1788] +Triangle: [1765, 1787, 1769] +Triangle: [1765, 1785, 1786] +Triangle: [1763, 1784, 1785] +Triangle: [1759, 1784, 1761] +Triangle: [1757, 1783, 1759] +Triangle: [1757, 1781, 1782] +Triangle: [1755, 1780, 1781] +Triangle: [1751, 1780, 1753] +Triangle: [1749, 1779, 1751] +Triangle: [1746, 1743, 1742] +Triangle: [1745, 1792, 1746] +Triangle: [1750, 1792, 1748] +Triangle: [1793, 1750, 1752] +Triangle: [1795, 1752, 1754] +Triangle: [1796, 1754, 1756] +Triangle: [1758, 1796, 1756] +Triangle: [1760, 1797, 1758] +Triangle: [1799, 1760, 1762] +Triangle: [1806, 1814, 1815] +Triangle: [1807, 1816, 1814] +Triangle: [1800, 1817, 1818] +Triangle: [1808, 1819, 1816] +Triangle: [1817, 1802, 1820] +Triangle: [1809, 1821, 1819] +Triangle: [1820, 1803, 1822] +Triangle: [1821, 1811, 1823] +Triangle: [1822, 1804, 1824] +Triangle: [1823, 1812, 1825] +Triangle: [1824, 1805, 1826] +Triangle: [1812, 1827, 1825] +Triangle: [1826, 1806, 1815] +Triangle: [1833, 1818, 1834] +Triangle: [1834, 1778, 1832] +Triangle: [1783, 1815, 1784] +Triangle: [1825, 1791, 1790] +Triangle: [1782, 1826, 1783] +Triangle: [1789, 1825, 1790] +Triangle: [1781, 1824, 1782] +Triangle: [1788, 1823, 1789] +Triangle: [1780, 1822, 1781] +Triangle: [1819, 1788, 1787] +Triangle: [1779, 1820, 1780] +Triangle: [1816, 1787, 1786] +Triangle: [1818, 1779, 1778] +Triangle: [1814, 1786, 1785] +Triangle: [1815, 1785, 1784] +Triangle: [1791, 1834, 1832] +Triangle: [1827, 1833, 1834] +Triangle: [1791, 1831, 1775] +Triangle: [1775, 1830, 1774] +Triangle: [1829, 1738, 1713] +Triangle: [1776, 1828, 1704] +Triangle: [452, 1828, 619] +Triangle: [1631, 1691, 1632] +Triangle: [1792, 1744, 1746] +Triangle: [1836, 1692, 1744] +Triangle: [1835, 1691, 1692] +Triangle: [1839, 1835, 1836] +Triangle: [1837, 1840, 1838] +Triangle: [1634, 1835, 1837] +Triangle: [1633, 1837, 1838] +Triangle: [1793, 1841, 1794] +Triangle: [1841, 1839, 1836] +Triangle: [1797, 1843, 1796] +Triangle: [1627, 1838, 1846] +Triangle: [1846, 1670, 1627] +Triangle: [1845, 1657, 1670] +Triangle: [1848, 1838, 1840] +Triangle: [1848, 1845, 1846] +Triangle: [1674, 1847, 1658] +Triangle: [1842, 1848, 1840] +Triangle: [1848, 1850, 1847] +Triangle: [1849, 1847, 1850] +Triangle: [1615, 1849, 1614] +Triangle: [1623, 1852, 1612] +Triangle: [1849, 1852, 1614] +Triangle: [1613, 1852, 1853] +Triangle: [1583, 1853, 1854] +Triangle: [1582, 1854, 1855] +Triangle: [1850, 1853, 1849] +Triangle: [1855, 1850, 1851] +Triangle: [1843, 1851, 1842] +Triangle: [1844, 1855, 1843] +Triangle: [1582, 1856, 1575] +Triangle: [1575, 1858, 1584] +Triangle: [1856, 1857, 1858] +Triangle: [1798, 1844, 1797] +Triangle: [1584, 1860, 1585] +Triangle: [1858, 1859, 1860] +Triangle: [1799, 1857, 1798] +Triangle: [1585, 1862, 1609] +Triangle: [1860, 1861, 1862] +Triangle: [1863, 1859, 1799] +Triangle: [1863, 1762, 1764] +Triangle: [1867, 453, 455] +Triangle: [1867, 1777, 1705] +Triangle: [1772, 1866, 1770] +Triangle: [1770, 1865, 1766] +Triangle: [1865, 1768, 1766] +Triangle: [1864, 1764, 1768] +Triangle: [1863, 1871, 1861] +Triangle: [1864, 1870, 1871] +Triangle: [1865, 1869, 1870] +Triangle: [1867, 1869, 1866] +Triangle: [1868, 455, 454] +Triangle: [454, 1872, 1868] +Triangle: [1609, 1876, 1608] +Triangle: [1862, 1877, 1876] +Triangle: [1871, 1877, 1861] +Triangle: [1870, 1875, 1871] +Triangle: [1870, 1873, 1874] +Triangle: [1869, 1872, 1873] +Triangle: [1880, 1876, 1877] +Triangle: [1882, 1880, 1883] +Triangle: [673, 1881, 676] +Triangle: [1879, 1883, 1881] +Triangle: [1608, 1878, 1610] +Triangle: [1889, 1611, 1607] +Triangle: [1601, 1888, 1605] +Triangle: [1888, 1607, 1605] +Triangle: [298, 1885, 683] +Triangle: [1603, 1884, 1602] +Triangle: [1600, 1887, 1603] +Triangle: [1597, 1884, 1598] +Triangle: [1882, 1610, 1878] +Triangle: [1890, 1879, 1611] +Triangle: [369, 1879, 673] +Triangle: [1875, 1893, 1894] +Triangle: [1874, 1892, 1893] +Triangle: [1891, 664, 688] +Triangle: [1873, 1891, 1892] +Triangle: [1894, 1877, 1875] +Triangle: [1894, 1883, 1880] +Triangle: [1893, 1881, 1883] +Triangle: [1895, 1892, 1891] +Triangle: [693, 1891, 688] +Triangle: [676, 1895, 693] +Triangle: [1841, 1792, 1794] +Triangle: [358, 1602, 695] +Triangle: [695, 1601, 351] +Triangle: [210, 1897, 1480] +Triangle: [1903, 1911, 1910] +Triangle: [1898, 1326, 1899] +Triangle: [1900, 1316, 1901] +Triangle: [1901, 1325, 1898] +Triangle: [1902, 1910, 1909] +Triangle: [1899, 1909, 1908] +Triangle: [1324, 1900, 1905] +Triangle: [1907, 1899, 1908] +Triangle: [1905, 1901, 1906] +Triangle: [1906, 1898, 1907] +Triangle: [1910, 2427, 2426] +Triangle: [1909, 2426, 2419] +Triangle: [1908, 2419, 2425] +Triangle: [1911, 2421, 2427] +Triangle: [1904, 1318, 1911] +Triangle: [1924, 1321, 1320] +Triangle: [1923, 1320, 1319] +Triangle: [1922, 1319, 1318] +Triangle: [1317, 1922, 1318] +Triangle: [1317, 1920, 1921] +Triangle: [1315, 1920, 1314] +Triangle: [1326, 1919, 1315] +Triangle: [1325, 1918, 1326] +Triangle: [1316, 1917, 1325] +Triangle: [1367, 1912, 1916] +Triangle: [1323, 1915, 1324] +Triangle: [1324, 1913, 1322] +Triangle: [1322, 1914, 1316] +Triangle: [1932, 262, 732] +Triangle: [1933, 1522, 1932] +Triangle: [1931, 1521, 1933] +Triangle: [1930, 1520, 1931] +Triangle: [1929, 1519, 1930] +Triangle: [1929, 1515, 1516] +Triangle: [1928, 1517, 1515] +Triangle: [1927, 1514, 1517] +Triangle: [1926, 1518, 1514] +Triangle: [1925, 257, 1518] +Triangle: [5227, 732, 5217] +Triangle: [5207, 1941, 5208] +Triangle: [1931, 5228, 5229] +Triangle: [5229, 1930, 1931] +Triangle: [5225, 1930, 5226] +Triangle: [5224, 1929, 5225] +Triangle: [5223, 1928, 5224] +Triangle: [5222, 1927, 5223] +Triangle: [5222, 1925, 1926] +Triangle: [724, 5221, 5220] +Triangle: [2375, 1944, 2379] +Triangle: [2377, 1957, 2383] +Triangle: [1967, 2315, 2318] +Triangle: [1982, 1976, 1981] +Triangle: [1970, 1988, 1987] +Triangle: [1981, 1977, 1980] +Triangle: [2281, 1948, 2284] +Triangle: [1959, 2384, 2380] +Triangle: [1997, 2381, 2382] +Triangle: [2001, 2287, 2285] +Triangle: [1993, 1973, 1984] +Triangle: [2374, 1963, 2385] +Triangle: [1943, 2382, 2376] +Triangle: [2278, 1947, 2281] +Triangle: [2195, 1006, 1007] +Triangle: [2088, 1983, 2084] +Triangle: [1983, 1975, 1982] +Triangle: [2002, 2034, 2033] +Triangle: [2090, 1980, 2087] +Triangle: [1985, 2085, 2093] +Triangle: [2084, 1982, 2089] +Triangle: [2329, 1964, 2321] +Triangle: [1989, 2091, 2096] +Triangle: [1992, 1964, 1993] +Triangle: [1980, 1978, 1979] +Triangle: [1986, 2093, 2092] +Triangle: [1990, 2094, 2091] +Triangle: [1979, 2092, 2083] +Triangle: [1991, 2082, 2094] +Triangle: [1985, 1970, 1987] +Triangle: [2082, 1993, 2086] +Triangle: [1968, 1990, 1989] +Triangle: [1987, 2095, 2085] +Triangle: [1979, 1971, 1986] +Triangle: [2089, 1981, 2090] +Triangle: [1966, 1992, 1991] +Triangle: [1986, 1972, 1985] +Triangle: [1984, 1974, 1983] +Triangle: [1980, 2083, 2087] +Triangle: [1967, 1991, 1990] +Triangle: [2086, 1984, 2088] +Triangle: [2275, 1999, 2283] +Triangle: [1955, 2282, 2286] +Triangle: [1952, 2279, 2280] +Triangle: [1954, 2289, 2282] +Triangle: [1953, 2280, 2289] +Triangle: [2385, 1995, 2378] +Triangle: [1958, 2380, 2386] +Triangle: [1960, 2387, 2384] +Triangle: [2000, 2285, 2277] +Triangle: [1945, 2276, 2287] +Triangle: [2283, 2000, 2277] +Triangle: [2288, 1949, 2278] +Triangle: [1944, 2376, 2379] +Triangle: [2002, 2005, 2004] +Triangle: [2003, 2006, 2007] +Triangle: [2065, 2007, 2055] +Triangle: [2010, 2066, 2013] +Triangle: [2003, 2010, 2008] +Triangle: [2003, 2009, 2005] +Triangle: [2013, 2064, 2015] +Triangle: [2010, 2011, 2008] +Triangle: [2009, 2011, 2012] +Triangle: [2011, 2014, 2012] +Triangle: [2015, 2014, 2013] +Triangle: [2059, 2019, 2052] +Triangle: [2019, 2058, 2052] +Triangle: [2068, 2061, 2054] +Triangle: [2030, 2016, 2017] +Triangle: [2017, 2063, 2058] +Triangle: [2032, 2017, 2019] +Triangle: [2004, 2021, 2020] +Triangle: [2023, 2020, 2021] +Triangle: [2023, 2094, 2082] +Triangle: [2025, 2091, 2094] +Triangle: [2021, 2025, 2023] +Triangle: [2005, 2024, 2021] +Triangle: [2027, 2096, 2091] +Triangle: [2024, 2027, 2025] +Triangle: [2009, 2026, 2024] +Triangle: [2014, 2026, 2012] +Triangle: [831, 817, 830] +Triangle: [2032, 2092, 2093] +Triangle: [2030, 2093, 2085] +Triangle: [2004, 2044, 2034] +Triangle: [2029, 2085, 2095] +Triangle: [2002, 2035, 2006] +Triangle: [2020, 2045, 2044] +Triangle: [2035, 2062, 2054] +Triangle: [2038, 2060, 2062] +Triangle: [2036, 2035, 2033] +Triangle: [2034, 2036, 2033] +Triangle: [2039, 2036, 2037] +Triangle: [2040, 2038, 2039] +Triangle: [2060, 2041, 2057] +Triangle: [2018, 2032, 2019] +Triangle: [2049, 2040, 2048] +Triangle: [2018, 2053, 2043] +Triangle: [2056, 2043, 2053] +Triangle: [2041, 2050, 2042] +Triangle: [2041, 2056, 2057] +Triangle: [2043, 2050, 2051] +Triangle: [2006, 2054, 2061] +Triangle: [2022, 2088, 2045] +Triangle: [2084, 2045, 2088] +Triangle: [2047, 2089, 2048] +Triangle: [2045, 2046, 2044] +Triangle: [2034, 2046, 2037] +Triangle: [2046, 2039, 2037] +Triangle: [2048, 2039, 2047] +Triangle: [2090, 2048, 2089] +Triangle: [2031, 2083, 2092] +Triangle: [2051, 2087, 2083] +Triangle: [2007, 2061, 2055] +Triangle: [2049, 2087, 2050] +Triangle: [2048, 2040, 2039] +Triangle: [2378, 1994, 2377] +Triangle: [2383, 1956, 2375] +Triangle: [2059, 2067, 2053] +Triangle: [2286, 1946, 1955] +Triangle: [2063, 2070, 2058] +Triangle: [2056, 2069, 2057] +Triangle: [2079, 2054, 2062] +Triangle: [2057, 2077, 2060] +Triangle: [2065, 2072, 2066] +Triangle: [2055, 2081, 2065] +Triangle: [2066, 2071, 2064] +Triangle: [2078, 2055, 2061] +Triangle: [2053, 2075, 2056] +Triangle: [2070, 2052, 2058] +Triangle: [2077, 2062, 2060] +Triangle: [2052, 2076, 2059] +Triangle: [2106, 2203, 2223] +Triangle: [2320, 2234, 2326] +Triangle: [2321, 2227, 2236] +Triangle: [2327, 2239, 2238] +Triangle: [2322, 2230, 2317] +Triangle: [2323, 2229, 2239] +Triangle: [2326, 2233, 2319] +Triangle: [2328, 2238, 2240] +Triangle: [2316, 2227, 2324] +Triangle: [2318, 2228, 2316] +Triangle: [2328, 2235, 2320] +Triangle: [2325, 2230, 2229] +Triangle: [2292, 2227, 2228] +Triangle: [2296, 2229, 2230] +Triangle: [2231, 2292, 2228] +Triangle: [2029, 2015, 2016] +Triangle: [2235, 2302, 2234] +Triangle: [2276, 2078, 2068] +Triangle: [2303, 2236, 2227] +Triangle: [2291, 2230, 2237] +Triangle: [2298, 2238, 2239] +Triangle: [2229, 2298, 2239] +Triangle: [2337, 2233, 2234] +Triangle: [2299, 2240, 2238] +Triangle: [2232, 2293, 2231] +Triangle: [2240, 2301, 2235] +Triangle: [917, 1944, 1956] +Triangle: [916, 1943, 1944] +Triangle: [920, 1956, 2112] +Triangle: [2112, 1957, 2113] +Triangle: [920, 2113, 921] +Triangle: [2232, 2319, 2233] +Triangle: [2161, 2250, 2114] +Triangle: [2170, 2120, 2115] +Triangle: [2206, 2190, 2173] +Triangle: [2122, 2252, 2120] +Triangle: [2124, 2253, 2122] +Triangle: [2126, 2255, 2214] +Triangle: [2178, 2330, 2246] +Triangle: [2130, 2258, 2128] +Triangle: [2244, 2142, 2243] +Triangle: [2183, 2140, 2138] +Triangle: [2134, 2260, 2132] +Triangle: [2136, 2261, 2134] +Triangle: [2138, 2262, 2136] +Triangle: [2138, 2264, 2263] +Triangle: [2243, 2266, 2265] +Triangle: [2144, 2267, 2225] +Triangle: [2142, 2269, 2266] +Triangle: [2148, 2268, 2144] +Triangle: [2150, 2270, 2148] +Triangle: [2150, 2272, 2271] +Triangle: [2152, 2273, 2272] +Triangle: [2168, 2156, 2154] +Triangle: [2250, 2156, 2114] +Triangle: [2169, 2166, 2118] +Triangle: [2115, 2249, 2161] +Triangle: [1950, 2388, 2374] +Triangle: [2163, 2142, 2160] +Triangle: [2130, 2260, 2259] +Triangle: [2183, 2136, 2182] +Triangle: [2182, 2134, 2181] +Triangle: [2181, 2132, 2180] +Triangle: [2130, 2180, 2132] +Triangle: [2128, 2178, 2333] +Triangle: [2147, 2226, 2225] +Triangle: [2124, 2216, 2214] +Triangle: [2122, 2176, 2124] +Triangle: [2122, 2174, 2175] +Triangle: [2190, 2172, 2173] +Triangle: [2274, 2154, 2156] +Triangle: [2115, 2171, 2170] +Triangle: [2114, 2171, 2161] +Triangle: [2114, 2172, 2185] +Triangle: [2173, 2168, 2119] +Triangle: [2167, 2119, 2168] +Triangle: [2154, 2167, 2168] +Triangle: [2152, 2166, 2167] +Triangle: [2150, 2165, 2166] +Triangle: [2144, 2165, 2148] +Triangle: [2099, 2186, 2098] +Triangle: [2189, 2159, 2158] +Triangle: [2191, 2197, 2198] +Triangle: [2171, 2190, 2191] +Triangle: [2217, 2193, 2218] +Triangle: [2308, 915, 1006] +Triangle: [2288, 1951, 1950] +Triangle: [2288, 2071, 2279] +Triangle: [2080, 2064, 2071] +Triangle: [2388, 1961, 2196] +Triangle: [2063, 2015, 2064] +Triangle: [2028, 2095, 2096] +Triangle: [2284, 1998, 2275] +Triangle: [2043, 2031, 2018] +Triangle: [2086, 2023, 2082] +Triangle: [2189, 2197, 2188] +Triangle: [2100, 2187, 2099] +Triangle: [2219, 2194, 2217] +Triangle: [2158, 2200, 2189] +Triangle: [2199, 2189, 2200] +Triangle: [2197, 2205, 2188] +Triangle: [2159, 2204, 2193] +Triangle: [2218, 2295, 2309] +Triangle: [2097, 2186, 2203] +Triangle: [2192, 2198, 2199] +Triangle: [2207, 2199, 2200] +Triangle: [2212, 2200, 2210] +Triangle: [2221, 2201, 2219] +Triangle: [2170, 2191, 2192] +Triangle: [2251, 2120, 2252] +Triangle: [2206, 2119, 2205] +Triangle: [2208, 2210, 2201] +Triangle: [2188, 2211, 2159] +Triangle: [2201, 2158, 2194] +Triangle: [2194, 2159, 2193] +Triangle: [2205, 2169, 2211] +Triangle: [2118, 2211, 2169] +Triangle: [2174, 2192, 2207] +Triangle: [2174, 2212, 2175] +Triangle: [2175, 2208, 2176] +Triangle: [2176, 2221, 2216] +Triangle: [2310, 2209, 2177] +Triangle: [2209, 2311, 2202] +Triangle: [2193, 2220, 2218] +Triangle: [2202, 2312, 2187] +Triangle: [2187, 2309, 2186] +Triangle: [2314, 2177, 2126] +Triangle: [2214, 2254, 2124] +Triangle: [2213, 2204, 2118] +Triangle: [2165, 2118, 2166] +Triangle: [2222, 2220, 2213] +Triangle: [2164, 2213, 2165] +Triangle: [2241, 2294, 2290] +Triangle: [2225, 2164, 2144] +Triangle: [2225, 2269, 2147] +Triangle: [2226, 2222, 2164] +Triangle: [2223, 2163, 2106] +Triangle: [2290, 2237, 2241] +Triangle: [2104, 2180, 2105] +Triangle: [2180, 2103, 2105] +Triangle: [2101, 2202, 2100] +Triangle: [2128, 2257, 2330] +Triangle: [2179, 2334, 2103] +Triangle: [2096, 1988, 1989] +Triangle: [2248, 2101, 2305] +Triangle: [2106, 2160, 2107] +Triangle: [2182, 2104, 2111] +Triangle: [2183, 2111, 2110] +Triangle: [2140, 2265, 2264] +Triangle: [2184, 2243, 2140] +Triangle: [2108, 2160, 2244] +Triangle: [2109, 2244, 2184] +Triangle: [2184, 2110, 2109] +Triangle: [2330, 2256, 2126] +Triangle: [2246, 2126, 2177] +Triangle: [2135, 2139, 2133] +Triangle: [2116, 2249, 2162] +Triangle: [2251, 2121, 2117] +Triangle: [2252, 2123, 2121] +Triangle: [2253, 2125, 2123] +Triangle: [2255, 2127, 2215] +Triangle: [2257, 2129, 2245] +Triangle: [2258, 2131, 2129] +Triangle: [2259, 2133, 2131] +Triangle: [2260, 2135, 2133] +Triangle: [2135, 2262, 2137] +Triangle: [2137, 2263, 2139] +Triangle: [2263, 2141, 2139] +Triangle: [2265, 2143, 2242] +Triangle: [2224, 2268, 2145] +Triangle: [2266, 2146, 2143] +Triangle: [2145, 2270, 2149] +Triangle: [2149, 2271, 2151] +Triangle: [2151, 2272, 2153] +Triangle: [2153, 2273, 2155] +Triangle: [2274, 2116, 2157] +Triangle: [2273, 2157, 2155] +Triangle: [2249, 2117, 2162] +Triangle: [2254, 2215, 2125] +Triangle: [2146, 2267, 2224] +Triangle: [2264, 2242, 2141] +Triangle: [2256, 2245, 2127] +Triangle: [2131, 2139, 2141] +Triangle: [2129, 2141, 2242] +Triangle: [2245, 2242, 2143] +Triangle: [2146, 2245, 2143] +Triangle: [2127, 2224, 2215] +Triangle: [2145, 2215, 2224] +Triangle: [2125, 2149, 2123] +Triangle: [2123, 2151, 2121] +Triangle: [2121, 2153, 2117] +Triangle: [2155, 2117, 2153] +Triangle: [2162, 2157, 2116] +Triangle: [2076, 2275, 2067] +Triangle: [2290, 2097, 2106] +Triangle: [2080, 2278, 2070] +Triangle: [2075, 2277, 2069] +Triangle: [2287, 2068, 2079] +Triangle: [2277, 2077, 2069] +Triangle: [2081, 2280, 2072] +Triangle: [2282, 2081, 2074] +Triangle: [2072, 2279, 2071] +Triangle: [2286, 2074, 2078] +Triangle: [2067, 2283, 2075] +Triangle: [2315, 1969, 2319] +Triangle: [2278, 2073, 2070] +Triangle: [2285, 2079, 2077] +Triangle: [2073, 2284, 2076] +Triangle: [2329, 2237, 2322] +Triangle: [2302, 2334, 2332] +Triangle: [2105, 2302, 2301] +Triangle: [2104, 2301, 2300] +Triangle: [2299, 2104, 2300] +Triangle: [2298, 2111, 2299] +Triangle: [2297, 2110, 2298] +Triangle: [2296, 2109, 2297] +Triangle: [2296, 2107, 2108] +Triangle: [2291, 2106, 2107] +Triangle: [2203, 2222, 2223] +Triangle: [2098, 2294, 2303] +Triangle: [2099, 2303, 2292] +Triangle: [2293, 2099, 2292] +Triangle: [2305, 2100, 2293] +Triangle: [2304, 2247, 2248] +Triangle: [1007, 2307, 2195] +Triangle: [2306, 1124, 1125] +Triangle: [2331, 2177, 2209] +Triangle: [2247, 2209, 2101] +Triangle: [1996, 2386, 2381] +Triangle: [2214, 2314, 2126] +Triangle: [2311, 2217, 2312] +Triangle: [2312, 2218, 2309] +Triangle: [2310, 2221, 2313] +Triangle: [2295, 2186, 2309] +Triangle: [2216, 2314, 2214] +Triangle: [2313, 2219, 2311] +Triangle: [1973, 2322, 1974] +Triangle: [2233, 2336, 2232] +Triangle: [1975, 2325, 1976] +Triangle: [1971, 2320, 1972] +Triangle: [1966, 2318, 2316] +Triangle: [1965, 2316, 2324] +Triangle: [1978, 2328, 1971] +Triangle: [2326, 1969, 1970] +Triangle: [1976, 2323, 1977] +Triangle: [1974, 2317, 1975] +Triangle: [1978, 2323, 2327] +Triangle: [1964, 2324, 2321] +Triangle: [1972, 2326, 1970] +Triangle: [2329, 2236, 2241] +Triangle: [2231, 2315, 2232] +Triangle: [1989, 1969, 1968] +Triangle: [2302, 2337, 2234] +Triangle: [2102, 2332, 2334] +Triangle: [2335, 2248, 2336] +Triangle: [2304, 2337, 2332] +Triangle: [2178, 2334, 2333] +Triangle: [2305, 2336, 2248] +Triangle: [2102, 2331, 2247] +Triangle: [2178, 2246, 2331] +Triangle: [2348, 2346, 2349] +Triangle: [2348, 1009, 922] +Triangle: [2345, 2371, 2346] +Triangle: [2351, 2345, 2344] +Triangle: [2352, 921, 2113] +Triangle: [1170, 2348, 922] +Triangle: [2347, 2352, 2353] +Triangle: [2353, 2113, 1957] +Triangle: [2354, 2347, 2353] +Triangle: [1994, 2353, 1957] +Triangle: [2346, 2355, 2345] +Triangle: [2356, 2345, 2355] +Triangle: [1995, 2354, 1994] +Triangle: [1963, 2355, 1995] +Triangle: [2344, 2357, 2343] +Triangle: [2342, 2357, 2358] +Triangle: [2341, 2358, 2359] +Triangle: [2340, 2359, 2360] +Triangle: [2339, 2360, 2361] +Triangle: [2357, 1963, 1962] +Triangle: [2358, 1962, 2196] +Triangle: [2359, 2196, 1961] +Triangle: [2360, 1961, 1960] +Triangle: [2361, 1960, 1959] +Triangle: [2363, 2339, 2361] +Triangle: [2363, 1959, 1958] +Triangle: [2362, 2363, 2306] +Triangle: [2364, 2363, 1958] +Triangle: [1996, 2364, 1958] +Triangle: [2307, 2364, 2365] +Triangle: [2195, 2365, 2366] +Triangle: [2366, 1996, 1997] +Triangle: [2195, 2366, 2308] +Triangle: [1997, 2308, 2366] +Triangle: [2362, 1125, 973] +Triangle: [1186, 2362, 973] +Triangle: [1934, 1186, 745] +Triangle: [1935, 2338, 1934] +Triangle: [1936, 2339, 1935] +Triangle: [2341, 1936, 1937] +Triangle: [1938, 2341, 1937] +Triangle: [1939, 2342, 1938] +Triangle: [2367, 1939, 1942] +Triangle: [2367, 2344, 2343] +Triangle: [2368, 1942, 1941] +Triangle: [2369, 2367, 2368] +Triangle: [2350, 2369, 2370] +Triangle: [2349, 2371, 2372] +Triangle: [1009, 2372, 1010] +Triangle: [2350, 2372, 2371] +Triangle: [2368, 1940, 2373] +Triangle: [742, 2373, 1940] +Triangle: [2369, 2373, 2370] +Triangle: [923, 2370, 2373] +Triangle: [2372, 1105, 1010] +Triangle: [2381, 1955, 1946] +Triangle: [1951, 2387, 2388] +Triangle: [2374, 2196, 1962] +Triangle: [1998, 2375, 1999] +Triangle: [1947, 2377, 1948] +Triangle: [2379, 2001, 2000] +Triangle: [2384, 1952, 1953] +Triangle: [2386, 1954, 1955] +Triangle: [1949, 2378, 1947] +Triangle: [2376, 1945, 2001] +Triangle: [1950, 2385, 1949] +Triangle: [2382, 1946, 1945] +Triangle: [2380, 1953, 1954] +Triangle: [1948, 2383, 1998] +Triangle: [1999, 2379, 2000] +Triangle: [1338, 2390, 1329] +Triangle: [1336, 2394, 1334] +Triangle: [1331, 2396, 2397] +Triangle: [1332, 2395, 2396] +Triangle: [1339, 2400, 2401] +Triangle: [1333, 2394, 2395] +Triangle: [1338, 2401, 2389] +Triangle: [1330, 2397, 2398] +Triangle: [1335, 2392, 1337] +Triangle: [1330, 2399, 1327] +Triangle: [1337, 2393, 1336] +Triangle: [1328, 2399, 2400] +Triangle: [1329, 2391, 1335] +Triangle: [2407, 1364, 1358] +Triangle: [2406, 1358, 1357] +Triangle: [2458, 1365, 2455] +Triangle: [1353, 2459, 2457] +Triangle: [2414, 1360, 1365] +Triangle: [2460, 1363, 1364] +Triangle: [1355, 2411, 1362] +Triangle: [1363, 2463, 1361] +Triangle: [1362, 2408, 1359] +Triangle: [1361, 2405, 1356] +Triangle: [1354, 2404, 1355] +Triangle: [2409, 1354, 1360] +Triangle: [2408, 1353, 1359] +Triangle: [2427, 2449, 2453] +Triangle: [2425, 2444, 2451] +Triangle: [2419, 2452, 2444] +Triangle: [2426, 2453, 2452] +Triangle: [2449, 2423, 2446] +Triangle: [2446, 2422, 2445] +Triangle: [2422, 2441, 2445] +Triangle: [2450, 2425, 2451] +Triangle: [2448, 2418, 2443] +Triangle: [2415, 2448, 2447] +Triangle: [2443, 2417, 2442] +Triangle: [2442, 2424, 2450] +Triangle: [2416, 2447, 2441] +Triangle: [2428, 1340, 1341] +Triangle: [1343, 2436, 1342] +Triangle: [1342, 2437, 1344] +Triangle: [2464, 1345, 1346] +Triangle: [1347, 2428, 1341] +Triangle: [2465, 1346, 1348] +Triangle: [1344, 2431, 1347] +Triangle: [2466, 1348, 1349] +Triangle: [2434, 1343, 1350] +Triangle: [2435, 1351, 1340] +Triangle: [2454, 1350, 1345] +Triangle: [1351, 2440, 1352] +Triangle: [1352, 2466, 1349] +Triangle: [1308, 2447, 1310] +Triangle: [1303, 2450, 1312] +Triangle: [1309, 2442, 1303] +Triangle: [2447, 1311, 1310] +Triangle: [2448, 1309, 1311] +Triangle: [1312, 2451, 1313] +Triangle: [2445, 1308, 1307] +Triangle: [2446, 1307, 1306] +Triangle: [2449, 1306, 1305] +Triangle: [1301, 2453, 1304] +Triangle: [1302, 2452, 1301] +Triangle: [1313, 2444, 1302] +Triangle: [2453, 1305, 1304] +Triangle: [2455, 2438, 1356] +Triangle: [2439, 2457, 1357] +Triangle: [2405, 2455, 1356] +Triangle: [2457, 2406, 1357] +Triangle: [2461, 2460, 2407] +Triangle: [2459, 2407, 2406] +Triangle: [2460, 2412, 2462] +Triangle: [2462, 2410, 2463] +Triangle: [2463, 2458, 2405] +Triangle: [2454, 2430, 2438] +Triangle: [2464, 2432, 2430] +Triangle: [2465, 2433, 2432] +Triangle: [2440, 2439, 2467] +Triangle: [2433, 2440, 2467] +Triangle: [2515, 2514, 2513] +Triangle: [2511, 2809, 2496] +Triangle: [2559, 2538, 2564] +Triangle: [2560, 2536, 2565] +Triangle: [2566, 2541, 2561] +Triangle: [2559, 2540, 2539] +Triangle: [2566, 2536, 2535] +Triangle: [2560, 2538, 2537] +Triangle: [2563, 2540, 2562] +Triangle: [2561, 2542, 2563] +Triangle: [2543, 2538, 2539] +Triangle: [2533, 2551, 2534] +Triangle: [2534, 2550, 2532] +Triangle: [2536, 2543, 2535] +Triangle: [2542, 2539, 2540] +Triangle: [2541, 2543, 2542] +Triangle: [2530, 2546, 2529] +Triangle: [2470, 2547, 2549] +Triangle: [2532, 2544, 2531] +Triangle: [2549, 2533, 2470] +Triangle: [2528, 2546, 2547] +Triangle: [2531, 2545, 2530] +Triangle: [2521, 2529, 2528] +Triangle: [2523, 2529, 2522] +Triangle: [2524, 2530, 2523] +Triangle: [2525, 2531, 2524] +Triangle: [2525, 2534, 2532] +Triangle: [2526, 2534, 2527] +Triangle: [2526, 2470, 2533] +Triangle: [2521, 2470, 2519] +Triangle: [2522, 2552, 2553] +Triangle: [2524, 2556, 2525] +Triangle: [2522, 2554, 2523] +Triangle: [2527, 2556, 2558] +Triangle: [2527, 2557, 2526] +Triangle: [2524, 2554, 2555] +Triangle: [2519, 2557, 2517] +Triangle: [2552, 2519, 2517] +Triangle: [2548, 2563, 2551] +Triangle: [2551, 2562, 2550] +Triangle: [2546, 2564, 2560] +Triangle: [2549, 2565, 2566] +Triangle: [2544, 2562, 2559] +Triangle: [2549, 2561, 2548] +Triangle: [2547, 2560, 2565] +Triangle: [2545, 2559, 2564] +Triangle: [2567, 2517, 2557] +Triangle: [2569, 2517, 2520] +Triangle: [2552, 2571, 2553] +Triangle: [2553, 2572, 2554] +Triangle: [2554, 2574, 2555] +Triangle: [2555, 2575, 2556] +Triangle: [2558, 2575, 2576] +Triangle: [2567, 2558, 2576] +Triangle: [2520, 2585, 2569] +Triangle: [2494, 2520, 2567] +Triangle: [2567, 2590, 2494] +Triangle: [2576, 2589, 2590] +Triangle: [2574, 2589, 2575] +Triangle: [2572, 2588, 2574] +Triangle: [2586, 2572, 2571] +Triangle: [2569, 2586, 2571] +Triangle: [2568, 2586, 2585] +Triangle: [2480, 2570, 2568] +Triangle: [2586, 2573, 2587] +Triangle: [2516, 2570, 2514] +Triangle: [2581, 2598, 2582] +Triangle: [2597, 2600, 2598] +Triangle: [2646, 2625, 2651] +Triangle: [2647, 2623, 2652] +Triangle: [2653, 2628, 2648] +Triangle: [2646, 2627, 2626] +Triangle: [2653, 2623, 2622] +Triangle: [2647, 2625, 2624] +Triangle: [2650, 2627, 2649] +Triangle: [2648, 2629, 2650] +Triangle: [2630, 2625, 2626] +Triangle: [2620, 2638, 2621] +Triangle: [2621, 2637, 2619] +Triangle: [2623, 2630, 2622] +Triangle: [2629, 2626, 2627] +Triangle: [2628, 2630, 2629] +Triangle: [2617, 2633, 2616] +Triangle: [2604, 2634, 2636] +Triangle: [2618, 2637, 2631] +Triangle: [2604, 2635, 2620] +Triangle: [2615, 2633, 2634] +Triangle: [2618, 2632, 2617] +Triangle: [2609, 2615, 2608] +Triangle: [2610, 2616, 2609] +Triangle: [2611, 2617, 2610] +Triangle: [2612, 2618, 2611] +Triangle: [2612, 2621, 2619] +Triangle: [2614, 2620, 2621] +Triangle: [2613, 2604, 2620] +Triangle: [2608, 2604, 2606] +Triangle: [2608, 2640, 2609] +Triangle: [2612, 2642, 2643] +Triangle: [2609, 2641, 2610] +Triangle: [2614, 2643, 2645] +Triangle: [2613, 2645, 2644] +Triangle: [2611, 2641, 2642] +Triangle: [2606, 2644, 2605] +Triangle: [2639, 2606, 2605] +Triangle: [2635, 2650, 2638] +Triangle: [2638, 2649, 2637] +Triangle: [2633, 2651, 2647] +Triangle: [2636, 2652, 2653] +Triangle: [2631, 2649, 2646] +Triangle: [2636, 2648, 2635] +Triangle: [2634, 2647, 2652] +Triangle: [2632, 2646, 2651] +Triangle: [2708, 2806, 2714] +Triangle: [2793, 2605, 2791] +Triangle: [2655, 2791, 2607] +Triangle: [2798, 2655, 2583] +Triangle: [2794, 2583, 2657] +Triangle: [2794, 2658, 2795] +Triangle: [2796, 2658, 2659] +Triangle: [2792, 2645, 2797] +Triangle: [2700, 2679, 2705] +Triangle: [2701, 2677, 2706] +Triangle: [2707, 2682, 2702] +Triangle: [2700, 2681, 2680] +Triangle: [2707, 2677, 2676] +Triangle: [2701, 2679, 2678] +Triangle: [2704, 2681, 2703] +Triangle: [2702, 2683, 2704] +Triangle: [2684, 2679, 2680] +Triangle: [2675, 2689, 2692] +Triangle: [2675, 2691, 2673] +Triangle: [2676, 2678, 2684] +Triangle: [2683, 2680, 2681] +Triangle: [2682, 2684, 2683] +Triangle: [2671, 2687, 2670] +Triangle: [2473, 2688, 2690] +Triangle: [2673, 2685, 2672] +Triangle: [2690, 2674, 2473] +Triangle: [2670, 2688, 2669] +Triangle: [2672, 2686, 2671] +Triangle: [2663, 2669, 2662] +Triangle: [2664, 2670, 2663] +Triangle: [2665, 2671, 2664] +Triangle: [2665, 2673, 2672] +Triangle: [2666, 2675, 2673] +Triangle: [2668, 2674, 2675] +Triangle: [2667, 2473, 2674] +Triangle: [2662, 2473, 2468] +Triangle: [2662, 2694, 2663] +Triangle: [2666, 2696, 2697] +Triangle: [2663, 2695, 2664] +Triangle: [2668, 2697, 2699] +Triangle: [2667, 2699, 2698] +Triangle: [2665, 2695, 2696] +Triangle: [2468, 2698, 2471] +Triangle: [2693, 2468, 2471] +Triangle: [2689, 2704, 2692] +Triangle: [2692, 2703, 2691] +Triangle: [2686, 2701, 2687] +Triangle: [2690, 2706, 2707] +Triangle: [2685, 2703, 2700] +Triangle: [2690, 2702, 2689] +Triangle: [2688, 2701, 2706] +Triangle: [2685, 2705, 2686] +Triangle: [2768, 2602, 2603] +Triangle: [2801, 2471, 2799] +Triangle: [2709, 2799, 2661] +Triangle: [2801, 2710, 2802] +Triangle: [2802, 2711, 2803] +Triangle: [2803, 2712, 2804] +Triangle: [2805, 2712, 2713] +Triangle: [2800, 2699, 2806] +Triangle: [2756, 2735, 2761] +Triangle: [2757, 2733, 2762] +Triangle: [2763, 2738, 2758] +Triangle: [2756, 2737, 2736] +Triangle: [2763, 2733, 2732] +Triangle: [2757, 2735, 2734] +Triangle: [2760, 2737, 2759] +Triangle: [2758, 2739, 2760] +Triangle: [2734, 2736, 2740] +Triangle: [2730, 2748, 2731] +Triangle: [2729, 2748, 2747] +Triangle: [2733, 2740, 2732] +Triangle: [2739, 2736, 2737] +Triangle: [2739, 2732, 2740] +Triangle: [2727, 2743, 2726] +Triangle: [2725, 2746, 2717] +Triangle: [2729, 2741, 2728] +Triangle: [2717, 2745, 2730] +Triangle: [2726, 2744, 2725] +Triangle: [2728, 2742, 2727] +Triangle: [2719, 2725, 2718] +Triangle: [2720, 2726, 2719] +Triangle: [2721, 2727, 2720] +Triangle: [2721, 2729, 2728] +Triangle: [2722, 2731, 2729] +Triangle: [2724, 2730, 2731] +Triangle: [2723, 2717, 2730] +Triangle: [2718, 2717, 2715] +Triangle: [2718, 2750, 2719] +Triangle: [2722, 2752, 2753] +Triangle: [2719, 2751, 2720] +Triangle: [2724, 2753, 2755] +Triangle: [2723, 2755, 2754] +Triangle: [2720, 2752, 2721] +Triangle: [2715, 2754, 2716] +Triangle: [2749, 2715, 2716] +Triangle: [2745, 2760, 2748] +Triangle: [2747, 2760, 2759] +Triangle: [2743, 2761, 2757] +Triangle: [2746, 2762, 2763] +Triangle: [2741, 2759, 2756] +Triangle: [2746, 2758, 2745] +Triangle: [2743, 2762, 2744] +Triangle: [2742, 2756, 2761] +Triangle: [2809, 2716, 2807] +Triangle: [2495, 2807, 2808] +Triangle: [2496, 2807, 2497] +Triangle: [2810, 2511, 2782] +Triangle: [2812, 2817, 2813] +Triangle: [2817, 2814, 2813] +Triangle: [2754, 2814, 2808] +Triangle: [2582, 2580, 2579] +Triangle: [2582, 2583, 2655] +Triangle: [2657, 2598, 2600] +Triangle: [2494, 2597, 2581] +Triangle: [2578, 2582, 2579] +Triangle: [2581, 2577, 2494] +Triangle: [2577, 2518, 2494] +Triangle: [2518, 2568, 2585] +Triangle: [2580, 2607, 2764] +Triangle: [2656, 2607, 2654] +Triangle: [2481, 2568, 2584] +Triangle: [2584, 2479, 2481] +Triangle: [2472, 2483, 2484] +Triangle: [2480, 2477, 2478] +Triangle: [2504, 2578, 2579] +Triangle: [2475, 2505, 2506] +Triangle: [2502, 2577, 2578] +Triangle: [2503, 2483, 2469] +Triangle: [2504, 2580, 2483] +Triangle: [2503, 2502, 2504] +Triangle: [2483, 2764, 2484] +Triangle: [2488, 2486, 2490] +Triangle: [2477, 2479, 2476] +Triangle: [2484, 2656, 2482] +Triangle: [2601, 2597, 2590] +Triangle: [2589, 2601, 2590] +Triangle: [2588, 2594, 2589] +Triangle: [2591, 2587, 2573] +Triangle: [2599, 2772, 2600] +Triangle: [2772, 2657, 2600] +Triangle: [2601, 2771, 2599] +Triangle: [2771, 2767, 2772] +Triangle: [2776, 2777, 2775] +Triangle: [2773, 2780, 2774] +Triangle: [2774, 2777, 2711] +Triangle: [2659, 2779, 2773] +Triangle: [2779, 2777, 2780] +Triangle: [2784, 2785, 2783] +Triangle: [2785, 2782, 2781] +Triangle: [2815, 2785, 2781] +Triangle: [2496, 2512, 2511] +Triangle: [2485, 2507, 2489] +Triangle: [2482, 2765, 2505] +Triangle: [2505, 2766, 2507] +Triangle: [2796, 2660, 2797] +Triangle: [2792, 2607, 2791] +Triangle: [2806, 2713, 2714] +Triangle: [2708, 2799, 2800] +Triangle: [2816, 2808, 2814] +Triangle: [2811, 2820, 2812] +Triangle: [2513, 2480, 2478] +Triangle: [2509, 2487, 2488] +Triangle: [2479, 2501, 2476] +Triangle: [2485, 2490, 2486] +Triangle: [2511, 2510, 2509] +Triangle: [2506, 2507, 2508] +Triangle: [2497, 2491, 2496] +Triangle: [2492, 2495, 2493] +Triangle: [2816, 2493, 2495] +Triangle: [2788, 2490, 2489] +Triangle: [2507, 2788, 2489] +Triangle: [2661, 2788, 2709] +Triangle: [2766, 2709, 2788] +Triangle: [2789, 2490, 2787] +Triangle: [2708, 2787, 2661] +Triangle: [2488, 2790, 2509] +Triangle: [2714, 2789, 2708] +Triangle: [2644, 2791, 2605] +Triangle: [2640, 2793, 2798] +Triangle: [2641, 2798, 2794] +Triangle: [2641, 2795, 2642] +Triangle: [2643, 2795, 2796] +Triangle: [2645, 2796, 2797] +Triangle: [2698, 2799, 2471] +Triangle: [2694, 2801, 2802] +Triangle: [2694, 2803, 2695] +Triangle: [2696, 2803, 2804] +Triangle: [2697, 2804, 2805] +Triangle: [2697, 2806, 2699] +Triangle: [2808, 2716, 2754] +Triangle: [2749, 2810, 2750] +Triangle: [2750, 2811, 2751] +Triangle: [2751, 2812, 2752] +Triangle: [2753, 2812, 2813] +Triangle: [2755, 2813, 2814] +Triangle: [2781, 2790, 2815] +Triangle: [2815, 2714, 2713] +Triangle: [2781, 2511, 2509] +Triangle: [2817, 2818, 2816] +Triangle: [2819, 2820, 2821] +Triangle: [2770, 2775, 2769] +Triangle: [2654, 2797, 2660] +Triangle: [2769, 2659, 2658] +Triangle: [2657, 2769, 2658] +Triangle: [2770, 2767, 2768] +Triangle: [2826, 2778, 2827] +Triangle: [2822, 2766, 2765] +Triangle: [2825, 2822, 2824] +Triangle: [2656, 2822, 2765] +Triangle: [2774, 2824, 2773] +Triangle: [2654, 2824, 2822] +Triangle: [2773, 2660, 2659] +Triangle: [2710, 2774, 2711] +Triangle: [2823, 2710, 2709] +Triangle: [2712, 2777, 2826] +Triangle: [2783, 2826, 2827] +Triangle: [2713, 2826, 2785] +Triangle: [2593, 2516, 2515] +Triangle: [2810, 2786, 2811] +Triangle: [2836, 2472, 2498] +Triangle: [2830, 2476, 2501] +Triangle: [2831, 2469, 2836] +Triangle: [2498, 2475, 2837] +Triangle: [2831, 2501, 2503] +Triangle: [2477, 2829, 2474] +Triangle: [2508, 2832, 2506] +Triangle: [2838, 2486, 2499] +Triangle: [2485, 2833, 2508] +Triangle: [2832, 2475, 2506] +Triangle: [2512, 2834, 2510] +Triangle: [2840, 2492, 2500] +Triangle: [2491, 2835, 2512] +Triangle: [2834, 2487, 2510] +Triangle: [2499, 2487, 2839] +Triangle: [2500, 2493, 2844] +Triangle: [2818, 2844, 2493] +Triangle: [2828, 2513, 2478] +Triangle: [2835, 2839, 2834] +Triangle: [2838, 2832, 2833] +Triangle: [2836, 2830, 2831] +Triangle: [2513, 2842, 2515] +Triangle: [2819, 2845, 2818] +Triangle: [2592, 2573, 2516] +Triangle: [2596, 2592, 2593] +Triangle: [2595, 2591, 2592] +Triangle: [2603, 2595, 2596] +Triangle: [2602, 2594, 2595] +Triangle: [2811, 2784, 2843] +Triangle: [2482, 2472, 2484] +Triangle: [2821, 2846, 2819] +Triangle: [2868, 2596, 2593] +Triangle: [2852, 2853, 2854] +Triangle: [2, 2850, 2849] +Triangle: [10, 2850, 8] +Triangle: [9, 2851, 10] +Triangle: [2829, 2856, 2855] +Triangle: [2853, 7, 2857] +Triangle: [2858, 2853, 2857] +Triangle: [2859, 2857, 2860] +Triangle: [2862, 2860, 2861] +Triangle: [2863, 2861, 2864] +Triangle: [2863, 3018, 3019] +Triangle: [2865, 2868, 2867] +Triangle: [2868, 2515, 2842] +Triangle: [2867, 2842, 2869] +Triangle: [2870, 2842, 2841] +Triangle: [2841, 2874, 2875] +Triangle: [2875, 2870, 2841] +Triangle: [2891, 2872, 2890] +Triangle: [2872, 2877, 2873] +Triangle: [2854, 2878, 2852] +Triangle: [2894, 2879, 2895] +Triangle: [2474, 2874, 2828] +Triangle: [2829, 2881, 2474] +Triangle: [2882, 2836, 2498] +Triangle: [2837, 2882, 2498] +Triangle: [2838, 2883, 2837] +Triangle: [2499, 2886, 2885] +Triangle: [2885, 2838, 2499] +Triangle: [2840, 2886, 2839] +Triangle: [2500, 2887, 2840] +Triangle: [2478, 2474, 2828] +Triangle: [2871, 2891, 2890] +Triangle: [2875, 2848, 2891] +Triangle: [2889, 2891, 2848] +Triangle: [2877, 2894, 2895] +Triangle: [2889, 2894, 2876] +Triangle: [2881, 2848, 2874] +Triangle: [2889, 2892, 2893] +Triangle: [2855, 2892, 2881] +Triangle: [2892, 2898, 2893] +Triangle: [2878, 2893, 2898] +Triangle: [2852, 2898, 2899] +Triangle: [2899, 2851, 2852] +Triangle: [2897, 2898, 2896] +Triangle: [2899, 2849, 2850] +Triangle: [2856, 2883, 2884] +Triangle: [2884, 2900, 2856] +Triangle: [2900, 2855, 2856] +Triangle: [2849, 2903, 2902] +Triangle: [2902, 2905, 2904] +Triangle: [2897, 2900, 2903] +Triangle: [2901, 2903, 2900] +Triangle: [2902, 2, 2849] +Triangle: [11, 2904, 12] +Triangle: [2885, 2887, 2888] +Triangle: [2885, 2901, 2884] +Triangle: [2905, 2908, 2909] +Triangle: [2910, 2905, 2909] +Triangle: [2888, 2908, 2885] +Triangle: [2909, 2906, 2907] +Triangle: [2909, 2911, 2910] +Triangle: [12, 2910, 1] +Triangle: [0, 2910, 2911] +Triangle: [2844, 2888, 2500] +Triangle: [2888, 2917, 2906] +Triangle: [2906, 2918, 2907] +Triangle: [2907, 2919, 2911] +Triangle: [2911, 2920, 0] +Triangle: [3, 2920, 2921] +Triangle: [2922, 3, 2921] +Triangle: [2845, 2916, 2844] +Triangle: [2917, 2915, 2914] +Triangle: [2918, 2914, 2913] +Triangle: [2919, 2913, 2912] +Triangle: [2920, 2912, 2921] +Triangle: [2912, 2922, 2921] +Triangle: [2924, 2912, 2913] +Triangle: [2925, 2913, 2914] +Triangle: [2915, 2925, 2914] +Triangle: [2846, 2915, 2845] +Triangle: [2929, 2922, 2923] +Triangle: [2924, 2929, 2923] +Triangle: [2925, 2928, 2924] +Triangle: [2926, 2927, 2925] +Triangle: [2930, 2846, 2847] +Triangle: [4, 2931, 5] +Triangle: [5, 2932, 6] +Triangle: [6, 2857, 7] +Triangle: [2931, 2934, 2932] +Triangle: [2935, 2934, 2933] +Triangle: [2932, 2860, 2857] +Triangle: [2860, 2936, 2861] +Triangle: [2928, 2931, 2929] +Triangle: [2927, 2933, 2928] +Triangle: [2877, 2937, 2873] +Triangle: [2939, 2877, 2895] +Triangle: [2880, 2895, 2879] +Triangle: [2858, 2879, 2854] +Triangle: [2940, 2858, 2859] +Triangle: [2941, 2859, 2862] +Triangle: [2939, 2940, 2942] +Triangle: [2941, 2942, 2940] +Triangle: [2938, 2942, 2943] +Triangle: [2944, 2938, 2943] +Triangle: [2978, 2964, 2983] +Triangle: [2984, 2963, 2962] +Triangle: [2985, 2967, 2980] +Triangle: [2978, 2966, 2965] +Triangle: [2985, 2962, 2961] +Triangle: [2979, 2964, 2963] +Triangle: [2982, 2966, 2981] +Triangle: [2980, 2968, 2982] +Triangle: [2969, 2964, 2965] +Triangle: [2959, 2977, 2960] +Triangle: [2960, 2976, 2958] +Triangle: [2962, 2969, 2961] +Triangle: [2966, 2969, 2965] +Triangle: [2967, 2969, 2968] +Triangle: [2956, 2972, 2955] +Triangle: [2954, 2975, 2952] +Triangle: [2958, 2970, 2957] +Triangle: [2952, 2974, 2959] +Triangle: [2954, 2972, 2973] +Triangle: [2957, 2971, 2956] +Triangle: [2986, 2955, 2954] +Triangle: [2988, 2955, 2987] +Triangle: [2989, 2956, 2988] +Triangle: [2990, 2957, 2989] +Triangle: [2990, 2960, 2958] +Triangle: [2992, 2960, 2991] +Triangle: [2992, 2952, 2959] +Triangle: [2986, 2952, 2993] +Triangle: [2974, 2982, 2977] +Triangle: [2977, 2981, 2976] +Triangle: [2972, 2983, 2979] +Triangle: [2975, 2984, 2985] +Triangle: [2970, 2981, 2978] +Triangle: [2975, 2980, 2974] +Triangle: [2973, 2979, 2984] +Triangle: [2971, 2978, 2983] +Triangle: [2950, 2993, 2951] +Triangle: [2945, 2993, 2992] +Triangle: [2945, 2991, 2953] +Triangle: [2946, 2991, 2990] +Triangle: [2946, 2989, 2947] +Triangle: [2947, 2988, 2948] +Triangle: [2948, 2987, 2949] +Triangle: [2950, 2987, 2986] +Triangle: [2946, 3001, 2953] +Triangle: [2951, 2994, 3000] +Triangle: [2948, 2998, 2997] +Triangle: [2947, 2995, 2946] +Triangle: [2953, 2994, 2945] +Triangle: [2951, 2999, 2950] +Triangle: [2949, 2999, 2998] +Triangle: [2947, 2997, 2996] +Triangle: [2869, 3003, 2867] +Triangle: [3010, 2869, 2870] +Triangle: [2871, 3010, 2870] +Triangle: [3002, 3010, 3011] +Triangle: [2890, 3011, 2871] +Triangle: [3008, 3011, 3012] +Triangle: [2872, 3012, 2890] +Triangle: [3013, 3008, 3012] +Triangle: [3013, 2873, 2937] +Triangle: [2867, 3017, 2865] +Triangle: [3019, 2866, 2865] +Triangle: [3004, 3017, 3003] +Triangle: [3004, 3015, 3016] +Triangle: [3005, 3014, 3015] +Triangle: [3006, 3013, 3014] +Triangle: [3014, 2937, 2944] +Triangle: [3015, 2944, 3020] +Triangle: [3020, 2943, 2941] +Triangle: [3009, 2995, 3003] +Triangle: [3002, 3001, 3009] +Triangle: [3008, 2994, 3002] +Triangle: [3007, 3000, 3008] +Triangle: [3007, 2998, 2999] +Triangle: [3006, 2997, 2998] +Triangle: [3004, 2997, 3005] +Triangle: [3003, 2996, 3004] +Triangle: [3017, 3019, 2865] +Triangle: [3016, 3020, 3021] +Triangle: [3020, 2941, 3021] +Triangle: [3021, 2862, 2863] +Triangle: [3019, 3021, 2863] +Triangle: [2936, 2864, 2861] +Triangle: [2596, 3023, 2603] +Triangle: [3024, 2866, 3018] +Triangle: [3018, 3022, 3024] +Triangle: [3026, 3027, 3028] +Triangle: [3025, 3024, 3022] +Triangle: [2768, 3027, 2770] +Triangle: [3023, 3026, 3028] +Triangle: [2603, 3028, 2768] +Triangle: [2776, 3027, 3029] +Triangle: [2776, 3031, 2778] +Triangle: [3031, 2827, 2778] +Triangle: [3025, 3029, 3027] +Triangle: [3034, 3025, 3022] +Triangle: [3034, 3035, 3033] +Triangle: [3035, 2936, 2935] +Triangle: [2930, 2935, 2927] +Triangle: [3036, 3035, 2930] +Triangle: [3036, 2847, 3037] +Triangle: [2784, 3040, 2843] +Triangle: [2783, 3030, 3038] +Triangle: [2783, 3039, 2784] +Triangle: [2843, 2821, 2820] +Triangle: [2821, 3037, 2847] +Triangle: [3029, 3030, 3031] +Triangle: [3041, 3034, 3033] +Triangle: [3033, 3037, 3041] +Triangle: [3032, 3038, 3029] +Triangle: [3038, 3042, 3039] +Triangle: [3042, 3040, 3039] +Triangle: [3041, 3037, 3042] +Triangle: [3089, 3090, 3088] +Triangle: [3383, 3086, 3071] +Triangle: [3113, 3134, 3139] +Triangle: [3111, 3135, 3140] +Triangle: [3141, 3116, 3110] +Triangle: [3134, 3115, 3137] +Triangle: [3141, 3111, 3140] +Triangle: [3135, 3113, 3139] +Triangle: [3115, 3138, 3137] +Triangle: [3117, 3136, 3138] +Triangle: [3118, 3113, 3112] +Triangle: [3126, 3108, 3109] +Triangle: [3125, 3109, 3107] +Triangle: [3118, 3111, 3110] +Triangle: [3114, 3117, 3115] +Triangle: [3118, 3116, 3117] +Triangle: [3121, 3105, 3104] +Triangle: [3045, 3122, 3103] +Triangle: [3119, 3107, 3106] +Triangle: [3108, 3124, 3045] +Triangle: [3103, 3121, 3104] +Triangle: [3120, 3106, 3105] +Triangle: [3096, 3104, 3097] +Triangle: [3104, 3098, 3097] +Triangle: [3105, 3099, 3098] +Triangle: [3106, 3100, 3099] +Triangle: [3100, 3109, 3102] +Triangle: [3109, 3101, 3102] +Triangle: [3101, 3045, 3094] +Triangle: [3045, 3096, 3094] +Triangle: [3097, 3127, 3096] +Triangle: [3131, 3099, 3100] +Triangle: [3129, 3097, 3098] +Triangle: [3102, 3131, 3100] +Triangle: [3132, 3102, 3101] +Triangle: [3099, 3129, 3098] +Triangle: [3094, 3132, 3101] +Triangle: [3094, 3127, 3092] +Triangle: [3138, 3123, 3126] +Triangle: [3137, 3126, 3125] +Triangle: [3121, 3139, 3120] +Triangle: [3124, 3140, 3122] +Triangle: [3119, 3137, 3125] +Triangle: [3124, 3136, 3141] +Triangle: [3122, 3135, 3121] +Triangle: [3120, 3134, 3119] +Triangle: [3092, 3142, 3132] +Triangle: [3092, 3144, 3095] +Triangle: [3146, 3127, 3128] +Triangle: [3147, 3128, 3129] +Triangle: [3149, 3129, 3130] +Triangle: [3150, 3130, 3131] +Triangle: [3133, 3150, 3131] +Triangle: [3142, 3133, 3132] +Triangle: [3095, 3160, 3093] +Triangle: [3095, 3069, 3142] +Triangle: [3165, 3142, 3069] +Triangle: [3151, 3164, 3150] +Triangle: [3164, 3149, 3150] +Triangle: [3163, 3147, 3149] +Triangle: [3161, 3147, 3162] +Triangle: [3144, 3161, 3160] +Triangle: [3161, 3143, 3160] +Triangle: [3145, 3055, 3143] +Triangle: [3148, 3161, 3162] +Triangle: [3145, 3091, 3089] +Triangle: [3156, 3173, 3172] +Triangle: [3172, 3175, 3174] +Triangle: [3200, 3221, 3226] +Triangle: [3198, 3222, 3227] +Triangle: [3228, 3203, 3197] +Triangle: [3221, 3202, 3224] +Triangle: [3228, 3198, 3227] +Triangle: [3222, 3200, 3226] +Triangle: [3202, 3225, 3224] +Triangle: [3204, 3223, 3225] +Triangle: [3205, 3200, 3199] +Triangle: [3213, 3195, 3196] +Triangle: [3212, 3196, 3194] +Triangle: [3205, 3198, 3197] +Triangle: [3201, 3204, 3202] +Triangle: [3205, 3203, 3204] +Triangle: [3208, 3192, 3191] +Triangle: [3179, 3209, 3190] +Triangle: [3193, 3212, 3194] +Triangle: [3179, 3210, 3211] +Triangle: [3190, 3208, 3191] +Triangle: [3207, 3193, 3192] +Triangle: [3190, 3184, 3183] +Triangle: [3191, 3185, 3184] +Triangle: [3192, 3186, 3185] +Triangle: [3193, 3187, 3186] +Triangle: [3187, 3196, 3189] +Triangle: [3189, 3195, 3188] +Triangle: [3188, 3179, 3181] +Triangle: [3179, 3183, 3181] +Triangle: [3215, 3183, 3184] +Triangle: [3187, 3217, 3186] +Triangle: [3216, 3184, 3185] +Triangle: [3189, 3218, 3187] +Triangle: [3188, 3220, 3189] +Triangle: [3186, 3216, 3185] +Triangle: [3181, 3219, 3188] +Triangle: [3181, 3214, 3180] +Triangle: [3225, 3210, 3213] +Triangle: [3224, 3213, 3212] +Triangle: [3208, 3226, 3207] +Triangle: [3211, 3227, 3209] +Triangle: [3206, 3224, 3212] +Triangle: [3211, 3223, 3228] +Triangle: [3209, 3222, 3208] +Triangle: [3207, 3221, 3206] +Triangle: [3283, 3380, 3374] +Triangle: [3180, 3367, 3365] +Triangle: [3230, 3365, 3367] +Triangle: [3372, 3230, 3367] +Triangle: [3368, 3158, 3372] +Triangle: [3233, 3368, 3369] +Triangle: [3370, 3233, 3369] +Triangle: [3366, 3220, 3219] +Triangle: [3254, 3275, 3280] +Triangle: [3252, 3276, 3281] +Triangle: [3282, 3257, 3251] +Triangle: [3275, 3256, 3278] +Triangle: [3282, 3252, 3281] +Triangle: [3276, 3254, 3280] +Triangle: [3256, 3279, 3278] +Triangle: [3258, 3277, 3279] +Triangle: [3259, 3254, 3253] +Triangle: [3250, 3264, 3249] +Triangle: [3266, 3250, 3248] +Triangle: [3251, 3253, 3252] +Triangle: [3255, 3258, 3256] +Triangle: [3259, 3257, 3258] +Triangle: [3262, 3246, 3245] +Triangle: [3048, 3263, 3244] +Triangle: [3260, 3248, 3247] +Triangle: [3249, 3265, 3048] +Triangle: [3263, 3245, 3244] +Triangle: [3261, 3247, 3246] +Triangle: [3244, 3238, 3237] +Triangle: [3245, 3239, 3238] +Triangle: [3246, 3240, 3239] +Triangle: [3240, 3248, 3241] +Triangle: [3241, 3250, 3243] +Triangle: [3243, 3249, 3242] +Triangle: [3242, 3048, 3043] +Triangle: [3048, 3237, 3043] +Triangle: [3269, 3237, 3238] +Triangle: [3241, 3271, 3240] +Triangle: [3270, 3238, 3239] +Triangle: [3243, 3272, 3241] +Triangle: [3242, 3274, 3243] +Triangle: [3240, 3270, 3239] +Triangle: [3043, 3273, 3242] +Triangle: [3043, 3268, 3046] +Triangle: [3279, 3264, 3267] +Triangle: [3278, 3267, 3266] +Triangle: [3276, 3261, 3262] +Triangle: [3265, 3281, 3263] +Triangle: [3260, 3278, 3266] +Triangle: [3265, 3277, 3282] +Triangle: [3263, 3276, 3262] +Triangle: [3280, 3260, 3261] +Triangle: [3177, 3343, 3178] +Triangle: [3046, 3375, 3373] +Triangle: [3284, 3373, 3375] +Triangle: [3285, 3375, 3376] +Triangle: [3286, 3376, 3377] +Triangle: [3287, 3377, 3378] +Triangle: [3379, 3287, 3378] +Triangle: [3374, 3274, 3273] +Triangle: [3310, 3331, 3336] +Triangle: [3308, 3332, 3337] +Triangle: [3338, 3313, 3307] +Triangle: [3331, 3312, 3334] +Triangle: [3338, 3308, 3337] +Triangle: [3332, 3310, 3336] +Triangle: [3312, 3335, 3334] +Triangle: [3314, 3333, 3335] +Triangle: [3311, 3309, 3315] +Triangle: [3323, 3305, 3306] +Triangle: [3304, 3323, 3306] +Triangle: [3315, 3308, 3307] +Triangle: [3311, 3314, 3312] +Triangle: [3314, 3307, 3313] +Triangle: [3318, 3302, 3301] +Triangle: [3321, 3300, 3292] +Triangle: [3316, 3304, 3303] +Triangle: [3292, 3320, 3321] +Triangle: [3319, 3301, 3300] +Triangle: [3317, 3303, 3302] +Triangle: [3300, 3294, 3293] +Triangle: [3301, 3295, 3294] +Triangle: [3302, 3296, 3295] +Triangle: [3296, 3304, 3297] +Triangle: [3297, 3306, 3299] +Triangle: [3299, 3305, 3298] +Triangle: [3298, 3292, 3290] +Triangle: [3292, 3293, 3290] +Triangle: [3325, 3293, 3294] +Triangle: [3297, 3327, 3296] +Triangle: [3326, 3294, 3295] +Triangle: [3299, 3328, 3297] +Triangle: [3298, 3330, 3299] +Triangle: [3327, 3295, 3296] +Triangle: [3290, 3329, 3298] +Triangle: [3290, 3324, 3291] +Triangle: [3335, 3320, 3323] +Triangle: [3322, 3335, 3323] +Triangle: [3318, 3336, 3317] +Triangle: [3321, 3337, 3319] +Triangle: [3316, 3334, 3322] +Triangle: [3321, 3333, 3338] +Triangle: [3337, 3318, 3319] +Triangle: [3317, 3331, 3316] +Triangle: [3291, 3383, 3381] +Triangle: [3070, 3381, 3072] +Triangle: [3381, 3071, 3072] +Triangle: [3384, 3356, 3086] +Triangle: [3386, 3391, 3394] +Triangle: [3388, 3391, 3387] +Triangle: [3388, 3329, 3382] +Triangle: [3155, 3157, 3154] +Triangle: [3157, 3158, 3173] +Triangle: [3173, 3232, 3175] +Triangle: [3172, 3069, 3156] +Triangle: [3157, 3153, 3154] +Triangle: [3152, 3156, 3069] +Triangle: [3093, 3152, 3069] +Triangle: [3093, 3143, 3159] +Triangle: [3155, 3182, 3230] +Triangle: [3182, 3231, 3229] +Triangle: [3056, 3143, 3055] +Triangle: [3054, 3159, 3056] +Triangle: [3047, 3058, 3044] +Triangle: [3055, 3052, 3056] +Triangle: [3079, 3153, 3077] +Triangle: [3050, 3080, 3057] +Triangle: [3077, 3152, 3054] +Triangle: [3058, 3078, 3044] +Triangle: [3155, 3079, 3058] +Triangle: [3078, 3077, 3076] +Triangle: [3339, 3058, 3059] +Triangle: [3063, 3061, 3062] +Triangle: [3052, 3054, 3056] +Triangle: [3231, 3059, 3057] +Triangle: [3172, 3176, 3165] +Triangle: [3176, 3164, 3165] +Triangle: [3169, 3163, 3164] +Triangle: [3162, 3166, 3148] +Triangle: [3174, 3346, 3345] +Triangle: [3232, 3346, 3175] +Triangle: [3176, 3345, 3177] +Triangle: [3345, 3342, 3177] +Triangle: [3350, 3351, 3352] +Triangle: [3347, 3354, 3353] +Triangle: [3348, 3351, 3354] +Triangle: [3234, 3353, 3349] +Triangle: [3353, 3351, 3349] +Triangle: [3359, 3358, 3357] +Triangle: [3356, 3359, 3355] +Triangle: [3359, 3389, 3355] +Triangle: [3087, 3071, 3086] +Triangle: [3082, 3060, 3064] +Triangle: [3340, 3057, 3080] +Triangle: [3080, 3341, 3340] +Triangle: [3235, 3370, 3371] +Triangle: [3366, 3182, 3229] +Triangle: [3380, 3288, 3379] +Triangle: [3373, 3283, 3374] +Triangle: [3382, 3390, 3388] +Triangle: [3385, 3394, 3416] +Triangle: [3055, 3088, 3053] +Triangle: [3062, 3084, 3063] +Triangle: [3076, 3054, 3051] +Triangle: [3065, 3060, 3061] +Triangle: [3085, 3086, 3084] +Triangle: [3081, 3082, 3080] +Triangle: [3072, 3066, 3067] +Triangle: [3070, 3067, 3068] +Triangle: [3068, 3390, 3070] +Triangle: [3362, 3065, 3361] +Triangle: [3362, 3082, 3064] +Triangle: [3362, 3236, 3284] +Triangle: [3341, 3284, 3397] +Triangle: [3363, 3065, 3063] +Triangle: [3283, 3361, 3363] +Triangle: [3364, 3063, 3084] +Triangle: [3289, 3363, 3364] +Triangle: [3219, 3365, 3366] +Triangle: [3215, 3367, 3214] +Triangle: [3216, 3372, 3215] +Triangle: [3369, 3216, 3217] +Triangle: [3218, 3369, 3217] +Triangle: [3220, 3370, 3218] +Triangle: [3273, 3373, 3374] +Triangle: [3269, 3375, 3268] +Triangle: [3377, 3269, 3270] +Triangle: [3271, 3377, 3270] +Triangle: [3272, 3378, 3271] +Triangle: [3380, 3272, 3274] +Triangle: [3291, 3382, 3329] +Triangle: [3384, 3324, 3325] +Triangle: [3385, 3325, 3326] +Triangle: [3386, 3326, 3327] +Triangle: [3328, 3386, 3327] +Triangle: [3330, 3387, 3328] +Triangle: [3364, 3355, 3389] +Triangle: [3289, 3389, 3288] +Triangle: [3086, 3355, 3084] +Triangle: [3391, 3392, 3393] +Triangle: [3393, 3394, 3391] +Triangle: [3229, 3371, 3366] +Triangle: [3344, 3234, 3349] +Triangle: [3344, 3232, 3233] +Triangle: [3396, 3341, 3397] +Triangle: [3396, 3399, 3398] +Triangle: [3231, 3396, 3229] +Triangle: [3398, 3348, 3347] +Triangle: [3229, 3398, 3235] +Triangle: [3347, 3235, 3398] +Triangle: [3285, 3348, 3399] +Triangle: [3285, 3397, 3284] +Triangle: [3287, 3351, 3286] +Triangle: [3400, 3288, 3359] +Triangle: [3091, 3168, 3090] +Triangle: [3384, 3360, 3356] +Triangle: [3047, 3409, 3073] +Triangle: [3051, 3403, 3076] +Triangle: [3404, 3044, 3078] +Triangle: [3073, 3050, 3047] +Triangle: [3076, 3404, 3078] +Triangle: [3402, 3052, 3049] +Triangle: [3083, 3405, 3406] +Triangle: [3061, 3411, 3074] +Triangle: [3060, 3406, 3411] +Triangle: [3050, 3405, 3081] +Triangle: [3087, 3407, 3408] +Triangle: [3067, 3413, 3075] +Triangle: [3066, 3408, 3413] +Triangle: [3062, 3407, 3085] +Triangle: [3074, 3062, 3061] +Triangle: [3075, 3068, 3067] +Triangle: [3392, 3417, 3418] +Triangle: [3401, 3088, 3414] +Triangle: [3408, 3412, 3413] +Triangle: [3405, 3411, 3406] +Triangle: [3403, 3409, 3404] +Triangle: [3088, 3415, 3414] +Triangle: [3393, 3418, 3419] +Triangle: [3148, 3167, 3091] +Triangle: [3167, 3171, 3168] +Triangle: [3166, 3170, 3167] +Triangle: [3170, 3178, 3171] +Triangle: [3169, 3177, 3170] +Triangle: [3358, 3385, 3416] +Triangle: [3057, 3047, 3050] +Triangle: [3395, 3419, 3420] +Triangle: [3171, 3441, 3168] +Triangle: [3425, 3426, 3424] +Triangle: [3423, 1290, 3422] +Triangle: [1298, 3423, 3424] +Triangle: [1297, 3424, 3426] +Triangle: [3402, 3429, 3409] +Triangle: [1295, 3426, 3430] +Triangle: [3431, 3426, 3427] +Triangle: [3432, 3430, 3431] +Triangle: [3435, 3433, 3432] +Triangle: [3436, 3434, 3435] +Triangle: [3591, 3436, 3592] +Triangle: [3441, 3438, 3440] +Triangle: [3090, 3441, 3415] +Triangle: [3440, 3415, 3441] +Triangle: [3443, 3415, 3442] +Triangle: [3414, 3447, 3401] +Triangle: [3443, 3448, 3414] +Triangle: [3445, 3464, 3463] +Triangle: [3450, 3445, 3446] +Triangle: [3427, 3451, 3452] +Triangle: [3452, 3467, 3468] +Triangle: [3049, 3447, 3454] +Triangle: [3454, 3402, 3049] +Triangle: [3409, 3455, 3073] +Triangle: [3410, 3455, 3456] +Triangle: [3411, 3456, 3457] +Triangle: [3074, 3459, 3412] +Triangle: [3411, 3458, 3074] +Triangle: [3413, 3459, 3460] +Triangle: [3075, 3460, 3461] +Triangle: [3049, 3053, 3401] +Triangle: [3444, 3464, 3448] +Triangle: [3448, 3421, 3447] +Triangle: [3464, 3462, 3421] +Triangle: [3450, 3467, 3449] +Triangle: [3467, 3462, 3449] +Triangle: [3454, 3421, 3465] +Triangle: [3462, 3465, 3421] +Triangle: [3428, 3465, 3469] +Triangle: [3471, 3465, 3466] +Triangle: [3451, 3466, 3467] +Triangle: [3425, 3471, 3451] +Triangle: [3424, 3472, 3425] +Triangle: [3470, 3471, 3472] +Triangle: [3422, 3472, 3423] +Triangle: [3429, 3456, 3455] +Triangle: [3473, 3457, 3429] +Triangle: [3428, 3473, 3429] +Triangle: [3422, 3476, 3470] +Triangle: [3475, 3478, 3476] +Triangle: [3470, 3473, 3469] +Triangle: [3474, 3476, 3478] +Triangle: [1290, 3475, 3422] +Triangle: [1299, 3477, 3475] +Triangle: [3458, 3460, 3459] +Triangle: [3458, 3474, 3481] +Triangle: [3478, 3481, 3474] +Triangle: [3483, 3478, 3477] +Triangle: [3481, 3461, 3458] +Triangle: [3479, 3482, 3480] +Triangle: [3484, 3482, 3483] +Triangle: [3483, 1300, 1289] +Triangle: [3483, 1288, 3484] +Triangle: [3417, 3461, 3489] +Triangle: [3490, 3461, 3479] +Triangle: [3491, 3479, 3480] +Triangle: [3492, 3480, 3484] +Triangle: [3493, 3484, 1288] +Triangle: [3493, 1291, 3494] +Triangle: [3495, 1291, 1292] +Triangle: [3489, 3418, 3417] +Triangle: [3488, 3490, 3487] +Triangle: [3487, 3491, 3486] +Triangle: [3486, 3492, 3485] +Triangle: [3493, 3485, 3492] +Triangle: [3485, 3495, 3496] +Triangle: [3485, 3497, 3486] +Triangle: [3486, 3498, 3487] +Triangle: [3488, 3498, 3499] +Triangle: [3419, 3488, 3499] +Triangle: [3502, 3495, 1292] +Triangle: [3502, 3497, 3496] +Triangle: [3501, 3498, 3497] +Triangle: [3500, 3499, 3498] +Triangle: [3419, 3503, 3420] +Triangle: [1292, 3504, 3502] +Triangle: [1293, 3505, 3504] +Triangle: [1294, 3430, 3505] +Triangle: [3504, 3507, 3506] +Triangle: [3507, 3508, 3506] +Triangle: [3433, 3505, 3430] +Triangle: [3433, 3509, 3507] +Triangle: [3504, 3501, 3502] +Triangle: [3506, 3500, 3501] +Triangle: [3510, 3450, 3446] +Triangle: [3450, 3512, 3468] +Triangle: [3468, 3453, 3452] +Triangle: [3431, 3452, 3453] +Triangle: [3431, 3513, 3432] +Triangle: [3432, 3514, 3435] +Triangle: [3512, 3513, 3453] +Triangle: [3514, 3515, 3516] +Triangle: [3511, 3515, 3512] +Triangle: [3517, 3511, 3510] +Triangle: [3537, 3551, 3556] +Triangle: [3557, 3536, 3552] +Triangle: [3558, 3540, 3534] +Triangle: [3551, 3539, 3554] +Triangle: [3558, 3535, 3557] +Triangle: [3552, 3537, 3556] +Triangle: [3539, 3555, 3554] +Triangle: [3541, 3553, 3555] +Triangle: [3542, 3537, 3536] +Triangle: [3550, 3532, 3533] +Triangle: [3549, 3533, 3531] +Triangle: [3542, 3535, 3534] +Triangle: [3539, 3542, 3541] +Triangle: [3542, 3540, 3541] +Triangle: [3545, 3529, 3528] +Triangle: [3548, 3527, 3525] +Triangle: [3543, 3531, 3530] +Triangle: [3525, 3547, 3548] +Triangle: [3527, 3545, 3528] +Triangle: [3544, 3530, 3529] +Triangle: [3559, 3528, 3560] +Triangle: [3528, 3561, 3560] +Triangle: [3529, 3562, 3561] +Triangle: [3530, 3563, 3562] +Triangle: [3563, 3533, 3564] +Triangle: [3533, 3565, 3564] +Triangle: [3565, 3525, 3566] +Triangle: [3525, 3559, 3566] +Triangle: [3555, 3547, 3550] +Triangle: [3554, 3550, 3549] +Triangle: [3545, 3556, 3544] +Triangle: [3548, 3557, 3546] +Triangle: [3543, 3554, 3549] +Triangle: [3548, 3553, 3558] +Triangle: [3546, 3552, 3545] +Triangle: [3544, 3551, 3543] +Triangle: [3566, 3523, 3524] +Triangle: [3518, 3566, 3524] +Triangle: [3564, 3518, 3526] +Triangle: [3519, 3564, 3526] +Triangle: [3562, 3519, 3520] +Triangle: [3561, 3520, 3521] +Triangle: [3560, 3521, 3522] +Triangle: [3523, 3560, 3522] +Triangle: [3574, 3519, 3526] +Triangle: [3524, 3567, 3518] +Triangle: [3521, 3571, 3522] +Triangle: [3568, 3520, 3519] +Triangle: [3567, 3526, 3518] +Triangle: [3572, 3524, 3523] +Triangle: [3522, 3572, 3523] +Triangle: [3520, 3570, 3521] +Triangle: [3576, 3442, 3440] +Triangle: [3442, 3583, 3443] +Triangle: [3444, 3583, 3584] +Triangle: [3575, 3583, 3582] +Triangle: [3463, 3584, 3585] +Triangle: [3581, 3584, 3575] +Triangle: [3585, 3445, 3463] +Triangle: [3586, 3581, 3580] +Triangle: [3446, 3586, 3510] +Triangle: [3440, 3590, 3576] +Triangle: [3439, 3592, 3438] +Triangle: [3590, 3577, 3576] +Triangle: [3577, 3588, 3578] +Triangle: [3578, 3587, 3579] +Triangle: [3579, 3586, 3580] +Triangle: [3510, 3587, 3517] +Triangle: [3588, 3517, 3587] +Triangle: [3516, 3593, 3514] +Triangle: [3568, 3582, 3576] +Triangle: [3574, 3575, 3582] +Triangle: [3567, 3581, 3575] +Triangle: [3573, 3580, 3581] +Triangle: [3580, 3571, 3579] +Triangle: [3579, 3570, 3578] +Triangle: [3570, 3577, 3578] +Triangle: [3569, 3576, 3577] +Triangle: [3592, 3590, 3438] +Triangle: [3589, 3593, 3588] +Triangle: [3593, 3594, 3514] +Triangle: [3435, 3594, 3436] +Triangle: [3594, 3592, 3436] +Triangle: [3437, 3509, 3434] +Triangle: [3596, 3171, 3178] +Triangle: [3439, 3597, 3591] +Triangle: [3591, 3595, 3437] +Triangle: [3600, 3599, 3601] +Triangle: [3598, 3597, 3599] +Triangle: [3596, 3599, 3597] +Triangle: [3601, 3178, 3343] +Triangle: [3604, 3350, 3352] +Triangle: [3598, 3602, 3605] +Triangle: [3598, 3607, 3595] +Triangle: [3608, 3607, 3606] +Triangle: [3509, 3608, 3508] +Triangle: [3508, 3503, 3500] +Triangle: [3609, 3608, 3606] +Triangle: [3420, 3609, 3610] +Triangle: [3613, 3358, 3416] +Triangle: [3612, 3357, 3358] +Triangle: [3395, 3416, 3394] +Triangle: [3395, 3610, 3613] +Triangle: [3602, 3603, 3611] +Triangle: [3607, 3614, 3606] +Triangle: [3606, 3610, 3609] +Triangle: [3605, 3611, 3614] +Triangle: [3615, 3611, 3612] +Triangle: [3613, 3615, 3612] +Triangle: [3614, 3615, 3610] +Triangle: [3648, 3618, 3649] +Triangle: [3644, 3624, 3623] +Triangle: [3640, 3625, 3622] +Triangle: [3639, 3621, 3636] +Triangle: [5333, 3627, 3620] +Triangle: [5334, 3628, 3631] +Triangle: [3651, 3629, 3630] +Triangle: [3626, 3633, 3621] +Triangle: [5355, 3632, 5354] +Triangle: [3622, 3638, 3637] +Triangle: [3637, 3639, 3636] +Triangle: [3623, 3642, 3641] +Triangle: [3641, 3643, 3640] +Triangle: [3616, 3646, 3645] +Triangle: [3645, 3647, 3644] +Triangle: [3629, 3649, 3630] +Triangle: [3631, 3650, 3651] +Triangle: [3679, 3691, 3693] +Triangle: [3687, 3660, 3671] +Triangle: [3681, 3677, 3690] +Triangle: [3689, 3662, 3675] +Triangle: [3683, 3673, 3688] +Triangle: [3684, 5380, 5381] +Triangle: [3685, 3697, 3699] +Triangle: [3686, 3653, 3678] +Triangle: [3687, 3670, 3686] +Triangle: [3688, 3662, 3682] +Triangle: [5364, 3675, 5363] +Triangle: [3680, 3677, 3660] +Triangle: [3676, 3680, 3659] +Triangle: [5362, 3689, 5364] +Triangle: [3672, 3682, 3657] +Triangle: [3668, 3686, 3669] +Triangle: [3652, 3686, 3678] +Triangle: [3666, 3699, 3698] +Triangle: [5382, 3684, 5381] +Triangle: [3656, 3688, 3672] +Triangle: [3674, 3682, 3689] +Triangle: [3676, 3681, 3690] +Triangle: [3659, 3687, 3668] +Triangle: [3654, 3693, 3692] +Triangle: [3692, 3696, 3694] +Triangle: [3693, 3695, 3696] +Triangle: [3696, 3665, 3685] +Triangle: [3694, 3685, 3666] +Triangle: [3667, 3699, 3684] +Triangle: [3699, 3664, 3684] +Triangle: [3700, 5373, 5371] +Triangle: [3702, 5372, 5373] +Triangle: [3744, 3706, 3742] +Triangle: [3731, 3722, 3738] +Triangle: [3732, 3728, 3741] +Triangle: [5385, 3713, 5383] +Triangle: [5341, 3714, 5337] +Triangle: [3753, 3715, 3752] +Triangle: [3750, 3716, 3748] +Triangle: [3737, 3704, 3729] +Triangle: [3738, 3721, 3737] +Triangle: [5347, 3724, 5345] +Triangle: [3740, 5396, 5397] +Triangle: [3741, 3711, 3731] +Triangle: [3710, 3741, 3731] +Triangle: [3725, 5397, 5395] +Triangle: [3723, 5347, 5342] +Triangle: [3719, 3737, 3720] +Triangle: [3703, 3737, 3729] +Triangle: [3749, 3736, 3750] +Triangle: [3751, 3735, 3753] +Triangle: [5338, 3734, 5341] +Triangle: [3708, 5385, 5384] +Triangle: [3709, 3741, 3727] +Triangle: [3710, 3738, 3719] +Triangle: [3705, 3744, 3743] +Triangle: [3743, 3747, 3745] +Triangle: [3747, 3742, 3746] +Triangle: [3736, 3746, 3716] +Triangle: [3717, 3747, 3736] +Triangle: [3718, 3750, 3735] +Triangle: [3735, 3748, 3715] +Triangle: [3707, 3753, 3734] +Triangle: [3734, 3752, 3714] +Triangle: [3795, 3757, 3793] +Triangle: [3782, 3773, 3789] +Triangle: [3783, 3779, 3792] +Triangle: [3791, 3764, 3777] +Triangle: [3790, 3765, 3775] +Triangle: [3786, 3803, 3804] +Triangle: [3801, 3767, 3799] +Triangle: [3788, 3755, 3780] +Triangle: [3789, 3772, 3788] +Triangle: [3784, 3775, 3764] +Triangle: [3783, 3777, 3763] +Triangle: [3792, 3762, 3782] +Triangle: [3778, 3782, 3761] +Triangle: [3776, 3783, 3760] +Triangle: [3759, 3790, 3784] +Triangle: [3770, 3788, 3771] +Triangle: [3754, 3788, 3780] +Triangle: [3800, 3787, 3801] +Triangle: [3769, 3804, 3802] +Triangle: [3774, 3785, 3790] +Triangle: [3776, 3784, 3791] +Triangle: [3760, 3792, 3778] +Triangle: [3761, 3789, 3770] +Triangle: [3794, 3781, 3795] +Triangle: [3796, 3795, 3798] +Triangle: [3798, 3793, 3797] +Triangle: [3787, 3797, 3767] +Triangle: [3768, 3798, 3787] +Triangle: [3769, 3801, 3786] +Triangle: [3786, 3799, 3766] +Triangle: [3802, 3785, 3758] +Triangle: [3804, 3765, 3785] +Triangle: [3846, 3808, 3844] +Triangle: [3840, 3813, 3824] +Triangle: [3834, 3830, 3843] +Triangle: [3842, 3815, 3828] +Triangle: [3841, 3816, 3826] +Triangle: [3855, 3817, 3854] +Triangle: [3838, 3850, 3852] +Triangle: [3839, 3806, 3831] +Triangle: [3840, 3823, 3839] +Triangle: [3835, 3826, 3815] +Triangle: [3834, 3828, 3814] +Triangle: [3833, 3830, 3813] +Triangle: [3812, 3843, 3833] +Triangle: [3811, 3842, 3834] +Triangle: [3810, 3841, 3835] +Triangle: [3822, 3840, 3839] +Triangle: [3805, 3839, 3831] +Triangle: [3851, 3838, 3852] +Triangle: [3853, 3837, 3855] +Triangle: [3809, 3841, 3825] +Triangle: [3827, 3835, 3842] +Triangle: [3829, 3834, 3843] +Triangle: [3821, 3833, 3840] +Triangle: [3845, 3832, 3846] +Triangle: [3847, 3846, 3849] +Triangle: [3849, 3844, 3848] +Triangle: [3849, 3818, 3838] +Triangle: [3819, 3849, 3838] +Triangle: [3820, 3852, 3837] +Triangle: [3837, 3850, 3817] +Triangle: [3853, 3836, 3809] +Triangle: [3836, 3854, 3816] +Triangle: [3897, 3859, 3895] +Triangle: [3891, 3864, 3875] +Triangle: [3885, 3916, 3918] +Triangle: [3930, 3866, 3928] +Triangle: [3924, 3867, 3922] +Triangle: [3888, 3905, 3906] +Triangle: [3903, 3869, 3901] +Triangle: [3890, 3911, 3912] +Triangle: [3891, 3908, 3909] +Triangle: [3927, 3877, 3926] +Triangle: [3893, 3920, 3921] +Triangle: [3915, 3881, 3914] +Triangle: [3913, 3894, 3915] +Triangle: [3919, 3893, 3921] +Triangle: [3925, 3892, 3927] +Triangle: [3907, 3891, 3909] +Triangle: [3910, 3890, 3912] +Triangle: [3902, 3889, 3903] +Triangle: [3871, 3906, 3904] +Triangle: [3860, 3924, 3923] +Triangle: [3929, 3886, 3930] +Triangle: [3917, 3885, 3918] +Triangle: [3872, 3884, 3891] +Triangle: [3896, 3883, 3897] +Triangle: [3898, 3897, 3900] +Triangle: [3900, 3895, 3899] +Triangle: [3889, 3899, 3869] +Triangle: [3870, 3900, 3889] +Triangle: [3902, 3888, 3871] +Triangle: [3903, 3868, 3888] +Triangle: [3904, 3887, 3860] +Triangle: [3887, 3905, 3867] +Triangle: [3873, 3909, 3890] +Triangle: [3909, 3874, 3890] +Triangle: [3856, 3912, 3882] +Triangle: [3912, 3857, 3882] +Triangle: [3863, 3915, 3884] +Triangle: [3884, 3914, 3864] +Triangle: [3880, 3918, 3894] +Triangle: [3894, 3916, 3881] +Triangle: [3862, 3921, 3885] +Triangle: [3921, 3865, 3885] +Triangle: [3923, 3892, 3876] +Triangle: [3892, 3922, 3877] +Triangle: [3861, 3927, 3886] +Triangle: [3886, 3926, 3866] +Triangle: [3878, 3930, 3893] +Triangle: [3893, 3928, 3879] +Triangle: [3958, 3970, 3972] +Triangle: [3959, 3950, 3966] +Triangle: [3960, 3991, 3993] +Triangle: [4005, 3941, 4003] +Triangle: [3999, 3942, 3997] +Triangle: [3963, 3980, 3981] +Triangle: [3964, 3976, 3978] +Triangle: [3965, 3986, 3987] +Triangle: [3966, 3983, 3984] +Triangle: [4002, 3952, 4001] +Triangle: [3968, 3995, 3996] +Triangle: [3969, 3989, 3990] +Triangle: [3988, 3969, 3990] +Triangle: [3953, 3996, 3994] +Triangle: [4000, 3967, 4002] +Triangle: [3982, 3966, 3984] +Triangle: [3985, 3965, 3987] +Triangle: [3945, 3978, 3977] +Triangle: [3946, 3981, 3979] +Triangle: [3998, 3962, 3999] +Triangle: [4004, 3961, 4005] +Triangle: [3937, 3993, 3992] +Triangle: [3947, 3959, 3966] +Triangle: [3971, 3958, 3972] +Triangle: [3973, 3972, 3975] +Triangle: [3975, 3970, 3974] +Triangle: [3964, 3974, 3944] +Triangle: [3945, 3975, 3964] +Triangle: [3977, 3963, 3946] +Triangle: [3978, 3943, 3963] +Triangle: [3979, 3962, 3935] +Triangle: [3962, 3980, 3942] +Triangle: [3948, 3984, 3965] +Triangle: [3984, 3949, 3965] +Triangle: [3931, 3987, 3957] +Triangle: [3987, 3932, 3957] +Triangle: [3938, 3990, 3959] +Triangle: [3990, 3939, 3959] +Triangle: [3955, 3993, 3969] +Triangle: [3993, 3956, 3969] +Triangle: [3994, 3960, 3937] +Triangle: [3996, 3940, 3960] +Triangle: [3951, 3999, 3967] +Triangle: [3967, 3997, 3952] +Triangle: [3936, 4002, 3961] +Triangle: [3961, 4001, 3941] +Triangle: [4004, 3968, 3953] +Triangle: [4005, 3954, 3968] +Triangle: [4047, 4009, 4045] +Triangle: [4034, 4025, 4041] +Triangle: [4044, 4015, 4031] +Triangle: [4036, 5392, 5394] +Triangle: [5353, 4017, 5349] +Triangle: [4056, 4018, 4055] +Triangle: [4039, 4051, 4053] +Triangle: [4040, 4007, 4032] +Triangle: [4041, 4024, 4040] +Triangle: [5388, 4027, 5387] +Triangle: [4035, 4029, 4015] +Triangle: [4034, 4031, 4014] +Triangle: [4013, 4044, 4034] +Triangle: [4028, 4035, 4012] +Triangle: [4026, 5388, 5386] +Triangle: [4023, 4041, 4040] +Triangle: [4006, 4040, 4032] +Triangle: [4052, 4039, 4053] +Triangle: [4021, 4056, 4054] +Triangle: [4010, 5353, 5350] +Triangle: [4011, 5394, 5393] +Triangle: [4030, 4035, 4044] +Triangle: [4022, 4034, 4041] +Triangle: [4046, 4033, 4047] +Triangle: [4048, 4047, 4050] +Triangle: [4050, 4045, 4049] +Triangle: [4050, 4019, 4039] +Triangle: [4020, 4050, 4039] +Triangle: [4052, 4038, 4021] +Triangle: [4038, 4051, 4018] +Triangle: [4054, 4037, 4010] +Triangle: [4037, 4055, 4017] +Triangle: [4084, 4096, 4098] +Triangle: [4092, 4065, 4076] +Triangle: [4095, 4066, 4082] +Triangle: [4094, 4067, 4080] +Triangle: [5367, 4068, 5365] +Triangle: [4089, 4106, 4107] +Triangle: [4090, 4102, 4104] +Triangle: [4091, 4058, 4083] +Triangle: [4092, 4075, 4091] +Triangle: [4087, 4078, 4067] +Triangle: [4086, 4080, 4066] +Triangle: [4085, 4082, 4065] +Triangle: [4064, 4095, 4085] +Triangle: [4063, 4094, 4086] +Triangle: [4077, 4087, 4062] +Triangle: [4073, 4091, 4074] +Triangle: [4057, 4091, 4083] +Triangle: [4071, 4104, 4103] +Triangle: [4105, 4089, 4107] +Triangle: [4061, 5367, 5366] +Triangle: [4079, 4087, 4094] +Triangle: [4081, 4086, 4095] +Triangle: [4064, 4092, 4073] +Triangle: [4059, 4098, 4097] +Triangle: [4097, 4101, 4099] +Triangle: [4098, 4100, 4101] +Triangle: [4101, 4070, 4090] +Triangle: [4099, 4090, 4071] +Triangle: [4072, 4104, 4089] +Triangle: [4104, 4069, 4089] +Triangle: [4105, 5370, 5368] +Triangle: [5370, 4106, 5369] +Triangle: [4135, 4147, 4149] +Triangle: [4136, 4127, 4143] +Triangle: [4137, 4133, 4146] +Triangle: [4138, 4131, 4145] +Triangle: [4144, 4119, 4129] +Triangle: [4158, 4120, 4157] +Triangle: [4141, 4153, 4155] +Triangle: [4142, 4109, 4134] +Triangle: [4143, 4126, 4142] +Triangle: [4138, 4129, 4118] +Triangle: [4145, 4117, 4137] +Triangle: [4146, 4116, 4136] +Triangle: [4115, 4146, 4136] +Triangle: [4114, 4145, 4137] +Triangle: [4128, 4138, 4113] +Triangle: [4124, 4142, 4125] +Triangle: [4108, 4142, 4134] +Triangle: [4154, 4141, 4155] +Triangle: [4123, 4158, 4156] +Triangle: [4128, 4139, 4144] +Triangle: [4130, 4138, 4145] +Triangle: [4132, 4137, 4146] +Triangle: [4124, 4136, 4143] +Triangle: [4110, 4149, 4148] +Triangle: [4150, 4149, 4152] +Triangle: [4152, 4147, 4151] +Triangle: [4141, 4151, 4121] +Triangle: [4122, 4152, 4141] +Triangle: [4154, 4140, 4123] +Triangle: [4140, 4153, 4120] +Triangle: [4112, 4158, 4139] +Triangle: [4139, 4157, 4119] +Triangle: [4186, 4198, 4200] +Triangle: [4187, 4178, 4194] +Triangle: [4188, 4184, 4197] +Triangle: [4189, 5356, 5358] +Triangle: [4195, 4170, 4180] +Triangle: [4209, 4171, 4208] +Triangle: [5378, 4172, 5377] +Triangle: [4193, 4160, 4185] +Triangle: [4194, 4177, 4193] +Triangle: [5391, 4180, 5390] +Triangle: [4196, 5360, 5361] +Triangle: [4197, 4167, 4187] +Triangle: [4183, 4187, 4166] +Triangle: [4181, 5361, 5359] +Triangle: [4179, 5391, 5389] +Triangle: [4175, 4193, 4176] +Triangle: [4159, 4193, 4185] +Triangle: [4173, 5378, 5379] +Triangle: [4174, 4209, 4207] +Triangle: [4179, 4190, 4195] +Triangle: [4164, 5358, 5357] +Triangle: [4165, 4197, 4183] +Triangle: [4175, 4187, 4194] +Triangle: [4161, 4200, 4199] +Triangle: [4201, 4200, 4203] +Triangle: [4200, 4202, 4203] +Triangle: [4203, 4172, 4192] +Triangle: [4173, 4203, 4192] +Triangle: [4205, 5376, 5374] +Triangle: [4206, 5375, 5376] +Triangle: [4163, 4209, 4190] +Triangle: [4190, 4208, 4170] +Triangle: [4242, 4212, 4243] +Triangle: [4241, 4217, 4238] +Triangle: [4234, 4219, 4216] +Triangle: [4230, 4220, 4215] +Triangle: [4226, 4221, 4214] +Triangle: [4214, 4222, 4225] +Triangle: [4245, 4223, 4224] +Triangle: [4215, 4228, 4227] +Triangle: [4227, 4229, 4226] +Triangle: [4216, 4232, 4231] +Triangle: [4231, 4233, 4230] +Triangle: [4218, 4235, 4217] +Triangle: [4236, 4234, 4235] +Triangle: [4210, 4240, 4239] +Triangle: [4240, 4238, 4239] +Triangle: [4223, 4243, 4224] +Triangle: [4225, 4244, 4245] +Triangle: [4259, 4273, 4279] +Triangle: [4281, 4254, 4274] +Triangle: [4284, 4255, 4275] +Triangle: [4269, 4276, 4283] +Triangle: [4282, 4257, 4277] +Triangle: [4277, 4258, 4278] +Triangle: [4278, 4259, 4279] +Triangle: [4272, 4264, 4280] +Triangle: [4264, 4281, 4280] +Triangle: [4256, 4282, 4276] +Triangle: [4255, 4283, 4275] +Triangle: [4274, 4271, 4284] +Triangle: [4253, 4284, 4270] +Triangle: [4275, 4268, 4252] +Triangle: [4276, 4266, 4251] +Triangle: [4263, 4281, 4262] +Triangle: [4272, 4263, 4246] +Triangle: [4261, 4279, 4260] +Triangle: [4250, 4278, 4261] +Triangle: [4266, 4277, 4250] +Triangle: [4283, 4251, 4268] +Triangle: [4270, 4275, 4252] +Triangle: [4262, 4274, 4253] +Triangle: [4260, 4273, 4248] +Triangle: [4326, 4288, 4312] +Triangle: [4304, 4313, 4320] +Triangle: [4350, 4294, 4314] +Triangle: [4342, 4315, 4344] +Triangle: [4336, 4316, 4338] +Triangle: [4335, 4297, 4317] +Triangle: [4330, 4318, 4332] +Triangle: [4286, 4319, 4311] +Triangle: [4354, 4320, 4355] +Triangle: [4341, 4306, 4321] +Triangle: [4346, 4322, 4347] +Triangle: [4359, 4310, 4323] +Triangle: [4359, 4309, 4357] +Triangle: [4347, 4307, 4345] +Triangle: [4339, 4321, 4305] +Triangle: [4356, 4320, 4301] +Triangle: [4285, 4319, 4302] +Triangle: [4331, 4318, 4299] +Triangle: [4333, 4317, 4300] +Triangle: [4338, 4289, 4337] +Triangle: [4343, 4315, 4290] +Triangle: [4349, 4314, 4291] +Triangle: [4320, 4292, 4301] +Triangle: [4326, 4287, 4325] +Triangle: [4327, 4326, 4325] +Triangle: [4329, 4324, 4326] +Triangle: [4318, 4328, 4329] +Triangle: [4299, 4329, 4327] +Triangle: [4317, 4331, 4300] +Triangle: [4297, 4332, 4317] +Triangle: [4289, 4335, 4333] +Triangle: [4316, 4334, 4335] +Triangle: [4321, 4337, 4305] +Triangle: [4321, 4336, 4338] +Triangle: [4290, 4341, 4339] +Triangle: [4315, 4340, 4341] +Triangle: [4322, 4343, 4307] +Triangle: [4308, 4344, 4322] +Triangle: [4314, 4345, 4291] +Triangle: [4314, 4346, 4347] +Triangle: [4309, 4350, 4349] +Triangle: [4323, 4348, 4350] +Triangle: [4319, 4351, 4302] +Triangle: [4303, 4353, 4319] +Triangle: [4351, 4355, 4356] +Triangle: [4353, 4354, 4355] +Triangle: [4313, 4357, 4292] +Triangle: [4293, 4359, 4313] +Triangle: [4399, 4387, 4401] +Triangle: [4395, 4368, 4388] +Triangle: [4425, 4369, 4389] +Triangle: [4419, 4370, 4390] +Triangle: [4413, 4371, 4391] +Triangle: [4410, 4372, 4392] +Triangle: [4407, 4373, 4393] +Triangle: [4361, 4394, 4386] +Triangle: [4430, 4379, 4395] +Triangle: [4415, 4396, 4416] +Triangle: [4422, 4383, 4397] +Triangle: [4434, 4385, 4398] +Triangle: [4432, 4398, 4384] +Triangle: [4420, 4397, 4382] +Triangle: [4416, 4380, 4414] +Triangle: [4431, 4395, 4376] +Triangle: [4360, 4394, 4377] +Triangle: [4406, 4393, 4374] +Triangle: [4408, 4392, 4375] +Triangle: [4412, 4391, 4364] +Triangle: [4418, 4390, 4365] +Triangle: [4424, 4389, 4366] +Triangle: [4376, 4388, 4367] +Triangle: [4400, 4387, 4362] +Triangle: [4404, 4400, 4402] +Triangle: [4404, 4399, 4401] +Triangle: [4393, 4403, 4404] +Triangle: [4374, 4404, 4402] +Triangle: [4375, 4407, 4406] +Triangle: [4392, 4405, 4407] +Triangle: [4364, 4410, 4408] +Triangle: [4391, 4409, 4410] +Triangle: [4396, 4412, 4380] +Triangle: [4381, 4413, 4396] +Triangle: [4365, 4416, 4414] +Triangle: [4370, 4416, 4390] +Triangle: [4382, 4419, 4418] +Triangle: [4397, 4417, 4419] +Triangle: [4366, 4422, 4420] +Triangle: [4389, 4421, 4422] +Triangle: [4384, 4425, 4424] +Triangle: [4398, 4423, 4425] +Triangle: [4394, 4426, 4377] +Triangle: [4378, 4428, 4394] +Triangle: [4428, 4431, 4426] +Triangle: [4428, 4429, 4430] +Triangle: [4367, 4434, 4432] +Triangle: [4368, 4434, 4388] +Triangle: [4468, 4438, 4437] +Triangle: [4463, 4443, 4442] +Triangle: [4462, 4441, 4459] +Triangle: [4455, 4445, 4440] +Triangle: [4451, 4446, 4439] +Triangle: [4439, 4447, 4450] +Triangle: [4470, 4448, 4449] +Triangle: [4440, 4453, 4452] +Triangle: [4452, 4454, 4451] +Triangle: [4444, 4456, 4441] +Triangle: [4456, 4458, 4455] +Triangle: [4442, 4461, 4460] +Triangle: [4461, 4459, 4460] +Triangle: [5331, 4464, 5330] +Triangle: [5328, 4466, 4463] +Triangle: [4449, 4467, 4468] +Triangle: [4450, 4469, 4470] +Triangle: [4504, 4474, 4503] +Triangle: [4499, 4479, 4502] +Triangle: [4495, 4480, 4498] +Triangle: [4476, 4494, 4491] +Triangle: [4475, 4490, 4487] +Triangle: [4486, 4482, 4475] +Triangle: [4506, 4484, 4505] +Triangle: [4488, 4481, 4476] +Triangle: [4487, 4489, 4488] +Triangle: [4492, 4480, 4477] +Triangle: [4491, 4493, 4492] +Triangle: [4478, 4497, 4479] +Triangle: [4496, 4498, 4497] +Triangle: [4471, 4501, 4472] +Triangle: [4500, 4502, 4501] +Triangle: [4485, 4503, 4484] +Triangle: [4506, 4483, 4486] +Triangle: [4539, 4760, 4775] +Triangle: [4538, 4761, 4774] +Triangle: [4772, 4516, 4762] +Triangle: [4770, 4517, 4763] +Triangle: [4526, 4764, 4768] +Triangle: [4518, 4765, 4764] +Triangle: [4541, 4766, 4776] +Triangle: [4763, 4525, 4767] +Triangle: [4767, 4526, 4768] +Triangle: [4762, 4529, 4769] +Triangle: [4769, 4530, 4770] +Triangle: [4761, 4533, 4771] +Triangle: [4771, 4534, 4772] +Triangle: [4759, 4537, 4773] +Triangle: [4773, 4538, 4774] +Triangle: [4520, 4775, 4766] +Triangle: [4519, 4776, 4765] +Triangle: [4575, 4545, 4576] +Triangle: [4574, 4550, 4571] +Triangle: [4570, 4549, 4567] +Triangle: [4563, 4553, 4548] +Triangle: [4562, 4547, 4559] +Triangle: [4554, 4558, 4547] +Triangle: [4577, 4557, 4578] +Triangle: [4548, 4561, 4560] +Triangle: [4561, 4559, 4560] +Triangle: [4552, 4564, 4549] +Triangle: [4564, 4566, 4563] +Triangle: [4551, 4568, 4550] +Triangle: [4569, 4567, 4568] +Triangle: [4543, 4573, 4572] +Triangle: [4573, 4571, 4572] +Triangle: [4556, 4576, 4557] +Triangle: [4555, 4578, 4558] +Triangle: [4611, 4581, 4612] +Triangle: [4610, 4586, 4607] +Triangle: [4603, 4588, 4585] +Triangle: [4599, 4589, 4584] +Triangle: [4598, 4583, 4595] +Triangle: [4583, 4591, 4594] +Triangle: [4614, 4592, 4593] +Triangle: [4584, 4597, 4596] +Triangle: [4596, 4598, 4595] +Triangle: [4585, 4601, 4600] +Triangle: [4600, 4602, 4599] +Triangle: [4586, 4605, 4604] +Triangle: [4604, 4606, 4603] +Triangle: [4579, 4609, 4608] +Triangle: [4609, 4607, 4608] +Triangle: [4592, 4612, 4593] +Triangle: [4594, 4613, 4614] +Triangle: [4617, 4647, 4648] +Triangle: [4622, 4646, 4643] +Triangle: [4621, 4642, 4639] +Triangle: [4620, 4638, 4635] +Triangle: [4631, 4626, 4634] +Triangle: [4630, 4626, 4619] +Triangle: [4650, 4628, 4649] +Triangle: [4632, 4625, 4620] +Triangle: [4632, 4634, 4633] +Triangle: [4636, 4624, 4621] +Triangle: [4635, 4637, 4636] +Triangle: [4640, 4623, 4622] +Triangle: [4639, 4641, 4640] +Triangle: [4615, 4645, 4616] +Triangle: [4644, 4646, 4645] +Triangle: [4648, 4628, 4629] +Triangle: [4650, 4627, 4630] +Triangle: [4684, 4654, 4683] +Triangle: [4658, 4682, 4679] +Triangle: [4657, 4678, 4675] +Triangle: [4671, 4661, 4674] +Triangle: [4655, 4670, 4667] +Triangle: [4655, 4663, 4662] +Triangle: [4686, 4664, 4685] +Triangle: [4656, 4669, 4661] +Triangle: [4667, 4669, 4668] +Triangle: [4672, 4660, 4657] +Triangle: [4672, 4674, 4673] +Triangle: [4676, 4659, 4658] +Triangle: [4675, 4677, 4676] +Triangle: [4651, 4681, 4652] +Triangle: [4680, 4682, 4681] +Triangle: [4665, 4683, 4664] +Triangle: [4686, 4663, 4666] +Triangle: [4720, 4690, 4719] +Triangle: [4694, 4718, 4715] +Triangle: [4693, 4714, 4711] +Triangle: [4707, 4697, 4710] +Triangle: [4691, 4706, 4703] +Triangle: [4702, 4698, 4691] +Triangle: [4701, 4721, 4722] +Triangle: [4692, 4705, 4697] +Triangle: [4704, 4706, 4705] +Triangle: [4708, 4696, 4693] +Triangle: [4707, 4709, 4708] +Triangle: [4712, 4695, 4694] +Triangle: [4711, 4713, 4712] +Triangle: [4687, 4717, 4688] +Triangle: [4716, 4718, 4717] +Triangle: [4720, 4700, 4701] +Triangle: [4722, 4699, 4702] +Triangle: [4756, 4726, 4755] +Triangle: [4751, 4731, 4754] +Triangle: [4747, 4732, 4750] +Triangle: [4728, 4746, 4743] +Triangle: [4739, 4734, 4742] +Triangle: [4738, 4734, 4727] +Triangle: [4737, 4757, 4758] +Triangle: [4728, 4741, 4733] +Triangle: [4739, 4741, 4740] +Triangle: [4744, 4732, 4729] +Triangle: [4743, 4745, 4744] +Triangle: [4730, 4749, 4731] +Triangle: [4748, 4750, 4749] +Triangle: [4723, 4753, 4724] +Triangle: [4752, 4754, 4753] +Triangle: [4756, 4736, 4737] +Triangle: [4738, 4757, 4735] +Triangle: [4765, 4542, 4522] +Triangle: [4766, 4540, 4521] +Triangle: [4536, 4774, 4535] +Triangle: [4507, 4773, 4536] +Triangle: [4532, 4772, 4531] +Triangle: [4514, 4771, 4532] +Triangle: [4528, 4770, 4527] +Triangle: [4513, 4769, 4528] +Triangle: [4524, 4768, 4523] +Triangle: [4512, 4767, 4524] +Triangle: [4776, 4521, 4542] +Triangle: [4511, 4765, 4522] +Triangle: [4523, 4764, 4511] +Triangle: [4527, 4763, 4512] +Triangle: [4531, 4762, 4513] +Triangle: [4535, 4761, 4514] +Triangle: [4775, 4509, 4540] +Triangle: [4577, 4784, 4556] +Triangle: [4566, 4781, 4553] +Triangle: [4561, 4786, 4562] +Triangle: [4562, 4782, 4554] +Triangle: [4555, 4794, 4577] +Triangle: [4573, 4777, 4791] +Triangle: [4574, 4791, 4792] +Triangle: [4569, 4779, 4789] +Triangle: [4570, 4789, 4790] +Triangle: [4565, 4780, 4787] +Triangle: [4551, 4792, 4779] +Triangle: [4554, 4783, 4555] +Triangle: [4565, 4788, 4566] +Triangle: [4556, 4793, 4575] +Triangle: [4552, 4790, 4780] +Triangle: [4553, 4785, 4561] +Triangle: [4546, 4793, 4778] +Triangle: [4834, 4822, 4836] +Triangle: [4814, 4823, 4830] +Triangle: [4820, 4824, 4833] +Triangle: [4818, 4825, 4832] +Triangle: [4831, 4806, 4826] +Triangle: [4845, 4807, 4827] +Triangle: [4842, 4808, 4828] +Triangle: [4796, 4829, 4821] +Triangle: [4813, 4830, 4829] +Triangle: [4805, 4831, 4825] +Triangle: [4804, 4832, 4824] +Triangle: [4803, 4833, 4823] +Triangle: [4823, 4819, 4802] +Triangle: [4801, 4832, 4817] +Triangle: [4825, 4815, 4800] +Triangle: [4829, 4811, 4812] +Triangle: [4795, 4829, 4812] +Triangle: [4841, 4828, 4809] +Triangle: [4845, 4810, 4843] +Triangle: [4815, 4826, 4799] +Triangle: [4832, 4800, 4817] +Triangle: [4819, 4824, 4801] +Triangle: [4830, 4802, 4811] +Triangle: [4835, 4822, 4797] +Triangle: [4837, 4836, 4835] +Triangle: [4838, 4836, 4839] +Triangle: [4808, 4839, 4828] +Triangle: [4828, 4837, 4809] +Triangle: [4810, 4842, 4841] +Triangle: [4827, 4840, 4842] +Triangle: [4826, 4843, 4799] +Triangle: [4826, 4844, 4845] +Triangle: [4879, 4849, 4873] +Triangle: [4865, 4874, 4881] +Triangle: [4884, 4855, 4875] +Triangle: [5180, 4856, 4876] +Triangle: [4867, 4877, 4882] +Triangle: [4857, 4878, 4877] +Triangle: [4858, 4879, 4878] +Triangle: [4847, 4880, 4872] +Triangle: [4864, 4881, 4880] +Triangle: [4876, 4867, 4882] +Triangle: [5176, 4883, 5177] +Triangle: [4874, 4871, 4884] +Triangle: [4853, 4884, 4870] +Triangle: [5177, 4868, 5175] +Triangle: [4851, 4882, 4866] +Triangle: [4880, 4862, 4863] +Triangle: [4846, 4880, 4863] +Triangle: [4878, 4860, 4861] +Triangle: [4877, 4861, 4850] +Triangle: [4882, 4850, 4866] +Triangle: [5179, 4876, 4851] +Triangle: [4884, 4852, 4870] +Triangle: [4881, 4853, 4862] +Triangle: [4879, 4848, 4860] +Triangle: [4898, 4887, 4899] +Triangle: [4904, 4892, 4901] +Triangle: [4909, 4894, 4891] +Triangle: [4908, 4890, 4907] +Triangle: [4905, 4896, 4889] +Triangle: [4889, 4897, 4900] +Triangle: [4900, 4898, 4899] +Triangle: [4885, 4903, 4902] +Triangle: [4902, 4904, 4901] +Triangle: [4895, 4905, 4890] +Triangle: [4894, 4907, 4891] +Triangle: [4893, 4909, 4892] +Triangle: [4924, 4938, 4944] +Triangle: [4930, 4939, 4946] +Triangle: [4949, 4920, 4940] +Triangle: [4934, 4941, 4948] +Triangle: [4947, 4922, 4942] +Triangle: [4942, 4923, 4943] +Triangle: [4923, 4944, 4943] +Triangle: [4937, 4929, 4945] +Triangle: [4945, 4930, 4946] +Triangle: [4921, 4947, 4941] +Triangle: [4920, 4948, 4940] +Triangle: [4919, 4949, 4939] +Triangle: [4939, 4935, 4918] +Triangle: [4940, 4933, 4917] +Triangle: [4941, 4931, 4916] +Triangle: [4928, 4946, 4927] +Triangle: [4911, 4945, 4928] +Triangle: [4943, 4925, 4926] +Triangle: [4915, 4943, 4926] +Triangle: [4931, 4942, 4915] +Triangle: [4948, 4916, 4933] +Triangle: [4935, 4940, 4917] +Triangle: [4946, 4918, 4927] +Triangle: [4944, 4913, 4925] +Triangle: [4963, 4977, 4983] +Triangle: [4969, 4978, 4985] +Triangle: [4988, 4959, 4979] +Triangle: [4973, 4980, 4987] +Triangle: [4986, 4961, 4981] +Triangle: [4961, 4982, 4981] +Triangle: [4962, 4983, 4982] +Triangle: [4976, 4968, 4984] +Triangle: [4968, 4985, 4984] +Triangle: [4980, 4971, 4986] +Triangle: [4959, 4987, 4979] +Triangle: [4978, 4975, 4988] +Triangle: [4957, 4988, 4974] +Triangle: [4979, 4972, 4956] +Triangle: [4955, 4986, 4970] +Triangle: [4984, 4966, 4967] +Triangle: [4950, 4984, 4967] +Triangle: [4982, 4964, 4965] +Triangle: [4981, 4965, 4954] +Triangle: [4970, 4981, 4954] +Triangle: [4987, 4955, 4972] +Triangle: [4988, 4956, 4974] +Triangle: [4985, 4957, 4966] +Triangle: [4983, 4952, 4964] +Triangle: [5028, 5016, 5030] +Triangle: [5008, 5017, 5024] +Triangle: [5052, 5018, 5054] +Triangle: [5046, 5019, 5048] +Triangle: [5040, 5020, 5042] +Triangle: [5038, 5021, 5039] +Triangle: [5036, 5002, 5022] +Triangle: [4990, 5023, 5015] +Triangle: [5007, 5024, 5023] +Triangle: [5045, 5010, 5025] +Triangle: [5050, 5026, 5051] +Triangle: [5017, 5014, 5027] +Triangle: [5017, 5013, 4996] +Triangle: [5051, 5011, 5049] +Triangle: [5045, 5009, 5043] +Triangle: [5023, 5005, 5006] +Triangle: [4989, 5023, 5006] +Triangle: [5035, 5022, 5003] +Triangle: [5037, 5021, 5004] +Triangle: [5042, 4993, 5041] +Triangle: [5047, 5019, 4994] +Triangle: [5054, 4995, 5053] +Triangle: [5024, 4996, 5005] +Triangle: [5029, 5016, 4991] +Triangle: [5033, 5029, 5031] +Triangle: [5032, 5030, 5033] +Triangle: [5002, 5033, 5022] +Triangle: [5022, 5031, 5003] +Triangle: [5004, 5036, 5035] +Triangle: [5021, 5034, 5036] +Triangle: [4993, 5039, 5037] +Triangle: [5000, 5039, 5020] +Triangle: [5025, 5041, 5009] +Triangle: [5010, 5042, 5025] +Triangle: [4994, 5045, 5043] +Triangle: [5019, 5044, 5045] +Triangle: [5026, 5047, 5011] +Triangle: [5012, 5048, 5026] +Triangle: [5018, 5049, 4995] +Triangle: [4998, 5051, 5018] +Triangle: [5027, 5053, 5013] +Triangle: [5014, 5054, 5027] +Triangle: [5088, 5078, 5090] +Triangle: [5076, 5080, 5087] +Triangle: [5074, 5081, 5086] +Triangle: [5085, 5066, 5082] +Triangle: [5099, 5067, 5083] +Triangle: [5096, 5068, 5084] +Triangle: [5056, 5079, 5077] +Triangle: [5081, 5072, 5085] +Triangle: [5064, 5086, 5080] +Triangle: [5063, 5087, 5079] +Triangle: [5079, 5075, 5062] +Triangle: [5080, 5073, 5061] +Triangle: [5060, 5085, 5071] +Triangle: [5055, 5079, 5062] +Triangle: [5095, 5084, 5069] +Triangle: [5099, 5070, 5097] +Triangle: [5085, 5059, 5071] +Triangle: [5086, 5060, 5073] +Triangle: [5087, 5061, 5075] +Triangle: [5089, 5078, 5057] +Triangle: [5093, 5089, 5091] +Triangle: [5092, 5090, 5093] +Triangle: [5084, 5092, 5093] +Triangle: [5069, 5093, 5091] +Triangle: [5070, 5096, 5095] +Triangle: [5083, 5094, 5096] +Triangle: [5082, 5097, 5059] +Triangle: [5066, 5099, 5082] +Triangle: [5141, 5103, 5127] +Triangle: [5119, 5128, 5135] +Triangle: [5163, 5129, 5165] +Triangle: [5157, 5130, 5159] +Triangle: [5153, 5111, 5131] +Triangle: [5150, 5112, 5132] +Triangle: [5145, 5133, 5147] +Triangle: [5101, 5134, 5126] +Triangle: [5169, 5135, 5170] +Triangle: [5156, 5121, 5136] +Triangle: [5161, 5137, 5162] +Triangle: [5173, 5138, 5174] +Triangle: [5174, 5124, 5172] +Triangle: [5162, 5122, 5160] +Triangle: [5154, 5136, 5120] +Triangle: [5170, 5116, 5171] +Triangle: [5100, 5134, 5117] +Triangle: [5147, 5114, 5146] +Triangle: [5148, 5132, 5115] +Triangle: [5153, 5104, 5152] +Triangle: [5158, 5130, 5105] +Triangle: [5165, 5106, 5164] +Triangle: [5135, 5107, 5116] +Triangle: [5141, 5102, 5140] +Triangle: [5142, 5141, 5140] +Triangle: [5143, 5141, 5144] +Triangle: [5113, 5144, 5133] +Triangle: [5114, 5144, 5142] +Triangle: [5115, 5147, 5146] +Triangle: [5132, 5145, 5147] +Triangle: [5104, 5150, 5148] +Triangle: [5131, 5149, 5150] +Triangle: [5136, 5152, 5120] +Triangle: [5121, 5153, 5136] +Triangle: [5105, 5156, 5154] +Triangle: [5130, 5155, 5156] +Triangle: [5137, 5158, 5122] +Triangle: [5123, 5159, 5137] +Triangle: [5129, 5160, 5106] +Triangle: [5109, 5162, 5129] +Triangle: [5138, 5164, 5124] +Triangle: [5125, 5165, 5138] +Triangle: [5134, 5166, 5117] +Triangle: [5118, 5168, 5134] +Triangle: [5168, 5171, 5166] +Triangle: [5167, 5170, 5168] +Triangle: [5128, 5172, 5107] +Triangle: [5108, 5174, 5128] +Triangle: [4875, 5175, 4852] +Triangle: [4855, 5177, 4875] +Triangle: [4868, 5180, 5179] +Triangle: [4869, 5180, 4883] +Triangle: [5189, 5186, 5187] +Triangle: [5184, 5189, 5183] +Triangle: [5189, 5188, 5181] +Triangle: [5182, 5189, 5181] +Triangle: [5200, 1934, 745] +Triangle: [1935, 5201, 5202] +Triangle: [1936, 5202, 5203] +Triangle: [1936, 5204, 1937] +Triangle: [1937, 5205, 1938] +Triangle: [1938, 5206, 1939] +Triangle: [1942, 5206, 5209] +Triangle: [1942, 5208, 1941] +Triangle: [5227, 5208, 5228] +Triangle: [1940, 5197, 742] +Triangle: [735, 5200, 745] +Triangle: [736, 5190, 735] +Triangle: [737, 5191, 736] +Triangle: [5193, 737, 738] +Triangle: [5194, 738, 739] +Triangle: [5195, 739, 740] +Triangle: [744, 5195, 740] +Triangle: [744, 5198, 5199] +Triangle: [5198, 5216, 5218] +Triangle: [5197, 741, 742] +Triangle: [5218, 733, 734] +Triangle: [1932, 5228, 1933] +Triangle: [5220, 5201, 5200] +Triangle: [5202, 5221, 5222] +Triangle: [5203, 5222, 5223] +Triangle: [5204, 5223, 5224] +Triangle: [5205, 5224, 5225] +Triangle: [5205, 5226, 5206] +Triangle: [5206, 5229, 5209] +Triangle: [5209, 5228, 5208] +Triangle: [5207, 5217, 5197] +Triangle: [5190, 5220, 5200] +Triangle: [5191, 5210, 5190] +Triangle: [5192, 5211, 5191] +Triangle: [5193, 5212, 5192] +Triangle: [5194, 5213, 5193] +Triangle: [5215, 5194, 5195] +Triangle: [5219, 5195, 5199] +Triangle: [5199, 5218, 5219] +Triangle: [5217, 5196, 5197] +Triangle: [5265, 5267, 5263] +Triangle: [5234, 5237, 5235] +Triangle: [5230, 5236, 5234] +Triangle: [5238, 5237, 5236] +Triangle: [5230, 5238, 5236] +Triangle: [5240, 5239, 5238] +Triangle: [5230, 5240, 5238] +Triangle: [5240, 5243, 5241] +Triangle: [5230, 5242, 5240] +Triangle: [5244, 5243, 5242] +Triangle: [5230, 5244, 5242] +Triangle: [5244, 5247, 5245] +Triangle: [5230, 5246, 5244] +Triangle: [5246, 5249, 5247] +Triangle: [5230, 5248, 5246] +Triangle: [5230, 5250, 5248] +Triangle: [5248, 5251, 5249] +Triangle: [5230, 5252, 5250] +Triangle: [5252, 5251, 5250] +Triangle: [5230, 5254, 5252] +Triangle: [5254, 5253, 5252] +Triangle: [5230, 5256, 5254] +Triangle: [5256, 5255, 5254] +Triangle: [5258, 5257, 5256] +Triangle: [5230, 5258, 5256] +Triangle: [5260, 5259, 5258] +Triangle: [5230, 5260, 5258] +Triangle: [5231, 5261, 5260] +Triangle: [5230, 5231, 5260] +Triangle: [5231, 5230, 5232] +Triangle: [5268, 5265, 5266] +Triangle: [5230, 5234, 5232] +Triangle: [5231, 5233, 5262] +Triangle: [5267, 5270, 5269] +Triangle: [5267, 5269, 5263] +Triangle: [5263, 5269, 5271] +Triangle: [5272, 5269, 5270] +Triangle: [5274, 5271, 5272] +Triangle: [5271, 5273, 5263] +Triangle: [5273, 5275, 5263] +Triangle: [5276, 5273, 5274] +Triangle: [5276, 5277, 5275] +Triangle: [5275, 5277, 5263] +Triangle: [5277, 5279, 5263] +Triangle: [5278, 5279, 5277] +Triangle: [5280, 5281, 5279] +Triangle: [5279, 5281, 5263] +Triangle: [5281, 5283, 5263] +Triangle: [5282, 5283, 5281] +Triangle: [5283, 5285, 5263] +Triangle: [5284, 5285, 5283] +Triangle: [5285, 5287, 5263] +Triangle: [5288, 5285, 5286] +Triangle: [5287, 5289, 5263] +Triangle: [5288, 5289, 5287] +Triangle: [5290, 5291, 5289] +Triangle: [5289, 5291, 5263] +Triangle: [5263, 5291, 5293] +Triangle: [5292, 5293, 5291] +Triangle: [5296, 5293, 5294] +Triangle: [5293, 5295, 5263] +Triangle: [5263, 5295, 5297] +Triangle: [5296, 5297, 5295] +Triangle: [5300, 5297, 5298] +Triangle: [5297, 5299, 5263] +Triangle: [5299, 5301, 5263] +Triangle: [5300, 5301, 5299] +Triangle: [5304, 5301, 5302] +Triangle: [5301, 5303, 5263] +Triangle: [5303, 5305, 5263] +Triangle: [5304, 5305, 5303] +Triangle: [5306, 5307, 5305] +Triangle: [5305, 5307, 5263] +Triangle: [5307, 5309, 5263] +Triangle: [5308, 5309, 5307] +Triangle: [5309, 5311, 5263] +Triangle: [5310, 5311, 5309] +Triangle: [5312, 5313, 5311] +Triangle: [5311, 5313, 5263] +Triangle: [5313, 5315, 5263] +Triangle: [5314, 5315, 5313] +Triangle: [5316, 5317, 5315] +Triangle: [5315, 5317, 5263] +Triangle: [5263, 5317, 5319] +Triangle: [5318, 5319, 5317] +Triangle: [5320, 5321, 5319] +Triangle: [5319, 5321, 5263] +Triangle: [5263, 5321, 5323] +Triangle: [5322, 5323, 5321] +Triangle: [5324, 5325, 5323] +Triangle: [5323, 5325, 5263] +Triangle: [5325, 5264, 5263] +Triangle: [5326, 5264, 5325] +Triangle: [5266, 5264, 5327] +Triangle: [5232, 5235, 5233] +Triangle: [5264, 5265, 5263] +Triangle: [4465, 5328, 4464] +Triangle: [4436, 5330, 4435] +Triangle: [2014, 2028, 2027] +Triangle: [3632, 5332, 5333] +Triangle: [3620, 5335, 5334] +Triangle: [3723, 5340, 3739] +Triangle: [5339, 5341, 5340] +Triangle: [3739, 5336, 3724] +Triangle: [5340, 5337, 5336] +Triangle: [3708, 5346, 3733] +Triangle: [5343, 5347, 5346] +Triangle: [3733, 5344, 3713] +Triangle: [5346, 5345, 5344] +Triangle: [5351, 4042, 4026] +Triangle: [5350, 5352, 5351] +Triangle: [5352, 4027, 4042] +Triangle: [5352, 5349, 5348] +Triangle: [3634, 5354, 3633] +Triangle: [5357, 4196, 4181] +Triangle: [5358, 4182, 4196] +Triangle: [5359, 4188, 4165] +Triangle: [5361, 4168, 4188] +Triangle: [3658, 5364, 3681] +Triangle: [5364, 3661, 3681] +Triangle: [5366, 4093, 4077] +Triangle: [4093, 5365, 4078] +Triangle: [4088, 5369, 4068] +Triangle: [4061, 5370, 4088] +Triangle: [5373, 3663, 3683] +Triangle: [3656, 5373, 3683] +Triangle: [4191, 5375, 4171] +Triangle: [5374, 4191, 4174] +Triangle: [4205, 5378, 4206] +Triangle: [5378, 4204, 4206] +Triangle: [3700, 5381, 3702] +Triangle: [3702, 5380, 3701] +Triangle: [3725, 5385, 3740] +Triangle: [3740, 5383, 3726] +Triangle: [4011, 5388, 4036] +Triangle: [4036, 5387, 4016] +Triangle: [5389, 4189, 4164] +Triangle: [5391, 4169, 4189] +Triangle: [5393, 4043, 4028] +Triangle: [4043, 5392, 4029] +Triangle: [3709, 5397, 3732] +Triangle: [5397, 3712, 3732] +Triangle: [3602, 5398, 3350] +Triangle: [5398, 3601, 3343] +Triangle: [5398, 3349, 3350] +Triangle: [3342, 5398, 3343] +Triangle: [3603, 3357, 3611] +Triangle: [3352, 3603, 3604] +Triangle: [3351, 5399, 3352] +Triangle: [3357, 3400, 3359] +Triangle: [1235, 35, 33] +Triangle: [1237, 1244, 706] +Triangle: [1238, 1237, 705] +Triangle: [702, 26, 27] +Triangle: [1240, 36, 35] +Triangle: [703, 29, 26] +Triangle: [1240, 1238, 704] +Triangle: [1244, 1245, 707] +Triangle: [1236, 33, 32] +Triangle: [701, 27, 38] +Triangle: [1243, 1242, 32] +Triangle: [1241, 1243, 31] +Triangle: [1222, 46, 48] +Triangle: [1229, 1223, 41] +Triangle: [1223, 1224, 47] +Triangle: [1230, 1278, 40] +Triangle: [1231, 1228, 48] +Triangle: [1230, 39, 42] +Triangle: [1224, 1231, 49] +Triangle: [1232, 42, 43] +Triangle: [1234, 1229, 50] +Triangle: [1279, 45, 46] +Triangle: [1278, 1234, 51] +Triangle: [1281, 44, 45] +Triangle: [1233, 43, 44] +Triangle: [18, 17, 61] +Triangle: [18, 64, 63] +Triangle: [25, 62, 57] +Triangle: [19, 63, 52] +Triangle: [25, 24, 55] +Triangle: [16, 60, 61] +Triangle: [23, 59, 56] +Triangle: [16, 13, 58] +Triangle: [22, 53, 59] +Triangle: [14, 57, 58] +Triangle: [15, 21, 56] +Triangle: [24, 15, 54] +Triangle: [22, 20, 52] +Triangle: [10, 8, 1210] +Triangle: [1220, 12, 1] +Triangle: [7, 9, 1212] +Triangle: [1, 0, 1218] +Triangle: [9, 10, 1211] +Triangle: [1218, 0, 3] +Triangle: [1209, 2, 11] +Triangle: [5, 6, 1214] +Triangle: [1221, 11, 12] +Triangle: [4, 5, 1215] +Triangle: [3, 4, 1216] +Triangle: [6, 7, 1213] +Triangle: [1253, 76, 70] +Triangle: [1259, 1287, 70] +Triangle: [1254, 77, 1275] +Triangle: [1255, 1276, 1277] +Triangle: [1249, 72, 77] +Triangle: [1252, 75, 76] +Triangle: [1257, 1251, 74] +Triangle: [1250, 73, 75] +Triangle: [1251, 1248, 71] +Triangle: [1258, 68, 73] +Triangle: [1256, 1257, 67] +Triangle: [1249, 1256, 66] +Triangle: [1255, 65, 71] +Triangle: [82, 81, 712] +Triangle: [712, 81, 80] +Triangle: [80, 78, 711] +Triangle: [715, 33, 35] +Triangle: [82, 85, 86] +Triangle: [88, 92, 94] +Triangle: [130, 137, 162] +Triangle: [83, 91, 92] +Triangle: [106, 105, 104] +Triangle: [160, 173, 92] +Triangle: [86, 94, 95] +Triangle: [80, 81, 95] +Triangle: [78, 80, 96] +Triangle: [79, 78, 97] +Triangle: [99, 82, 713] +Triangle: [82, 99, 100] +Triangle: [95, 171, 170] +Triangle: [94, 172, 171] +Triangle: [85, 100, 104] +Triangle: [107, 99, 716] +Triangle: [99, 107, 106] +Triangle: [173, 172, 94] +Triangle: [83, 88, 109] +Triangle: [109, 88, 87] +Triangle: [103, 84, 109] +Triangle: [111, 109, 110] +Triangle: [112, 110, 87] +Triangle: [108, 110, 112] +Triangle: [115, 112, 104] +Triangle: [112, 115, 114] +Triangle: [98, 97, 116] +Triangle: [139, 118, 119] +Triangle: [118, 120, 121] +Triangle: [174, 122, 123] +Triangle: [174, 120, 124] +Triangle: [89, 126, 177] +Triangle: [177, 126, 128] +Triangle: [126, 162, 137] +Triangle: [124, 165, 166] +Triangle: [124, 120, 163] +Triangle: [164, 163, 120] +Triangle: [116, 139, 140] +Triangle: [139, 167, 164] +Triangle: [116, 168, 167] +Triangle: [169, 168, 116] +Triangle: [169, 97, 96] +Triangle: [86, 85, 87] +Triangle: [131, 130, 161] +Triangle: [132, 131, 159] +Triangle: [160, 91, 132] +Triangle: [89, 166, 162] +Triangle: [176, 124, 89] +Triangle: [101, 156, 155] +Triangle: [152, 149, 144] +Triangle: [134, 138, 151] +Triangle: [135, 133, 151] +Triangle: [157, 154, 153] +Triangle: [152, 145, 146] +Triangle: [150, 149, 152] +Triangle: [151, 150, 153] +Triangle: [141, 143, 149] +Triangle: [149, 143, 142] +Triangle: [136, 148, 157] +Triangle: [93, 157, 156] +Triangle: [138, 141, 150] +Triangle: [148, 135, 154] +Triangle: [153, 152, 155] +Triangle: [155, 146, 147] +Triangle: [102, 158, 159] +Triangle: [147, 160, 158] +Triangle: [136, 93, 161] +Triangle: [93, 101, 159] +Triangle: [134, 133, 163] +Triangle: [133, 135, 165] +Triangle: [136, 162, 166] +Triangle: [134, 164, 167] +Triangle: [138, 167, 168] +Triangle: [142, 143, 169] +Triangle: [143, 141, 168] +Triangle: [142, 170, 171] +Triangle: [145, 144, 171] +Triangle: [146, 145, 172] +Triangle: [147, 146, 173] +Triangle: [148, 166, 165] +Triangle: [125, 176, 179] +Triangle: [127, 177, 178] +Triangle: [90, 179, 177] +Triangle: [122, 174, 176] +Triangle: [120, 174, 175] +Triangle: [107, 181, 180] +Triangle: [180, 181, 183] +Triangle: [183, 184, 186] +Triangle: [181, 107, 717] +Triangle: [183, 181, 718] +Triangle: [720, 184, 183] +Triangle: [192, 184, 720] +Triangle: [722, 191, 192] +Triangle: [723, 190, 191] +Triangle: [715, 79, 190] +Triangle: [184, 187, 193] +Triangle: [198, 186, 193] +Triangle: [192, 188, 187] +Triangle: [191, 195, 188] +Triangle: [195, 191, 190] +Triangle: [79, 98, 189] +Triangle: [204, 197, 196] +Triangle: [201, 182, 186] +Triangle: [202, 204, 201] +Triangle: [182, 201, 200] +Triangle: [202, 198, 199] +Triangle: [180, 200, 105] +Triangle: [115, 105, 200] +Triangle: [210, 209, 207] +Triangle: [185, 202, 203] +Triangle: [197, 204, 202] +Triangle: [201, 204, 205] +Triangle: [114, 115, 208] +Triangle: [696, 205, 196] +Triangle: [696, 208, 200] +Triangle: [189, 211, 217] +Triangle: [218, 217, 211] +Triangle: [219, 218, 212] +Triangle: [220, 219, 213] +Triangle: [221, 220, 214] +Triangle: [222, 221, 215] +Triangle: [117, 211, 189] +Triangle: [140, 212, 211] +Triangle: [119, 213, 212] +Triangle: [214, 213, 119] +Triangle: [215, 214, 121] +Triangle: [216, 215, 175] +Triangle: [223, 187, 188] +Triangle: [187, 223, 227] +Triangle: [193, 227, 226] +Triangle: [203, 199, 226] +Triangle: [228, 223, 195] +Triangle: [223, 228, 229] +Triangle: [226, 227, 229] +Triangle: [250, 251, 249] +Triangle: [229, 228, 233] +Triangle: [234, 232, 230] +Triangle: [233, 228, 217] +Triangle: [233, 235, 236] +Triangle: [235, 237, 238] +Triangle: [238, 237, 239] +Triangle: [240, 239, 241] +Triangle: [231, 232, 244] +Triangle: [243, 244, 246] +Triangle: [242, 261, 262] +Triangle: [234, 236, 244] +Triangle: [238, 246, 244] +Triangle: [247, 263, 264] +Triangle: [235, 233, 218] +Triangle: [237, 235, 219] +Triangle: [221, 239, 237] +Triangle: [222, 241, 239] +Triangle: [194, 203, 224] +Triangle: [226, 230, 250] +Triangle: [225, 251, 250] +Triangle: [225, 230, 232] +Triangle: [129, 257, 256] +Triangle: [122, 265, 267] +Triangle: [90, 252, 255] +Triangle: [216, 266, 268] +Triangle: [241, 260, 261] +Triangle: [125, 255, 265] +Triangle: [90, 127, 256] +Triangle: [264, 246, 238] +Triangle: [264, 263, 245] +Triangle: [123, 267, 266] +Triangle: [242, 248, 247] +Triangle: [259, 268, 266] +Triangle: [265, 253, 254] +Triangle: [267, 254, 258] +Triangle: [241, 222, 268] +Triangle: [8, 2, 1209] +Triangle: [111, 270, 269] +Triangle: [302, 301, 272] +Triangle: [277, 273, 274] +Triangle: [270, 276, 275] +Triangle: [276, 277, 278] +Triangle: [277, 276, 280] +Triangle: [273, 277, 281] +Triangle: [281, 280, 283] +Triangle: [279, 281, 284] +Triangle: [284, 283, 286] +Triangle: [282, 284, 287] +Triangle: [287, 286, 289] +Triangle: [287, 290, 288] +Triangle: [289, 292, 293] +Triangle: [290, 293, 291] +Triangle: [294, 280, 276] +Triangle: [280, 294, 295] +Triangle: [283, 295, 694] +Triangle: [286, 694, 296] +Triangle: [292, 289, 296] +Triangle: [108, 294, 270] +Triangle: [295, 294, 108] +Triangle: [694, 295, 113] +Triangle: [296, 694, 114] +Triangle: [297, 296, 207] +Triangle: [273, 301, 302] +Triangle: [303, 301, 273] +Triangle: [303, 279, 305] +Triangle: [301, 303, 304] +Triangle: [305, 279, 282] +Triangle: [285, 309, 306] +Triangle: [300, 308, 309] +Triangle: [307, 306, 309] +Triangle: [300, 285, 288] +Triangle: [299, 288, 291] +Triangle: [323, 314, 317] +Triangle: [310, 307, 328] +Triangle: [326, 310, 329] +Triangle: [312, 330, 325] +Triangle: [325, 330, 316] +Triangle: [330, 323, 315] +Triangle: [313, 323, 330] +Triangle: [323, 313, 318] +Triangle: [317, 314, 321] +Triangle: [314, 318, 320] +Triangle: [320, 318, 313] +Triangle: [319, 313, 312] +Triangle: [329, 328, 311] +Triangle: [316, 315, 331] +Triangle: [331, 315, 317] +Triangle: [333, 324, 317] +Triangle: [340, 332, 331] +Triangle: [340, 324, 333] +Triangle: [322, 342, 339] +Triangle: [342, 343, 345] +Triangle: [342, 341, 338] +Triangle: [337, 340, 339] +Triangle: [336, 332, 340] +Triangle: [346, 345, 343] +Triangle: [321, 343, 342] +Triangle: [320, 344, 343] +Triangle: [308, 311, 328] +Triangle: [319, 311, 308] +Triangle: [319, 347, 344] +Triangle: [347, 308, 300] +Triangle: [344, 347, 348] +Triangle: [350, 349, 345] +Triangle: [634, 586, 631] +Triangle: [356, 355, 681] +Triangle: [352, 350, 346] +Triangle: [352, 348, 300] +Triangle: [680, 682, 352] +Triangle: [358, 357, 353] +Triangle: [350, 352, 682] +Triangle: [587, 586, 634] +Triangle: [683, 354, 353] +Triangle: [341, 359, 362] +Triangle: [685, 362, 359] +Triangle: [361, 364, 363] +Triangle: [341, 345, 349] +Triangle: [684, 359, 349] +Triangle: [351, 361, 360] +Triangle: [366, 337, 338] +Triangle: [367, 365, 338] +Triangle: [686, 367, 362] +Triangle: [369, 368, 363] +Triangle: [327, 316, 332] +Triangle: [326, 316, 327] +Triangle: [335, 310, 326] +Triangle: [310, 335, 371] +Triangle: [371, 370, 306] +Triangle: [376, 378, 379] +Triangle: [271, 380, 379] +Triangle: [375, 377, 379] +Triangle: [272, 381, 380] +Triangle: [374, 375, 380] +Triangle: [382, 381, 272] +Triangle: [383, 382, 304] +Triangle: [305, 306, 370] +Triangle: [406, 399, 393] +Triangle: [394, 399, 406] +Triangle: [395, 394, 402] +Triangle: [404, 397, 395] +Triangle: [404, 398, 389] +Triangle: [397, 404, 405] +Triangle: [398, 404, 403] +Triangle: [403, 402, 390] +Triangle: [390, 402, 406] +Triangle: [400, 406, 401] +Triangle: [396, 405, 415] +Triangle: [413, 388, 415] +Triangle: [414, 413, 412] +Triangle: [398, 411, 412] +Triangle: [411, 398, 392] +Triangle: [409, 410, 392] +Triangle: [409, 390, 400] +Triangle: [400, 391, 407] +Triangle: [411, 410, 416] +Triangle: [417, 416, 410] +Triangle: [408, 418, 417] +Triangle: [419, 418, 408] +Triangle: [418, 419, 422] +Triangle: [421, 426, 417] +Triangle: [426, 428, 416] +Triangle: [428, 426, 430] +Triangle: [429, 427, 385] +Triangle: [373, 374, 381] +Triangle: [372, 373, 382] +Triangle: [424, 441, 429] +Triangle: [447, 385, 423] +Triangle: [425, 384, 374] +Triangle: [420, 421, 422] +Triangle: [413, 429, 441] +Triangle: [428, 427, 414] +Triangle: [427, 429, 413] +Triangle: [426, 421, 420] +Triangle: [387, 431, 432] +Triangle: [420, 432, 386] +Triangle: [432, 431, 433] +Triangle: [433, 435, 436] +Triangle: [435, 437, 438] +Triangle: [376, 377, 438] +Triangle: [385, 427, 428] +Triangle: [439, 430, 386] +Triangle: [386, 432, 434] +Triangle: [385, 439, 440] +Triangle: [423, 440, 443] +Triangle: [445, 444, 384] +Triangle: [444, 423, 442] +Triangle: [443, 440, 434] +Triangle: [446, 443, 436] +Triangle: [446, 438, 377] +Triangle: [446, 375, 442] +Triangle: [374, 384, 442] +Triangle: [444, 445, 424] +Triangle: [399, 462, 461] +Triangle: [461, 462, 463] +Triangle: [394, 465, 462] +Triangle: [463, 462, 465] +Triangle: [463, 464, 466] +Triangle: [448, 466, 464] +Triangle: [474, 475, 448] +Triangle: [475, 474, 468] +Triangle: [465, 478, 476] +Triangle: [477, 476, 478] +Triangle: [476, 473, 467] +Triangle: [485, 459, 468] +Triangle: [469, 484, 449] +Triangle: [470, 483, 484] +Triangle: [470, 471, 482] +Triangle: [471, 472, 481] +Triangle: [480, 481, 472] +Triangle: [498, 486, 484] +Triangle: [450, 487, 486] +Triangle: [484, 486, 487] +Triangle: [495, 450, 488] +Triangle: [458, 451, 489] +Triangle: [525, 458, 490] +Triangle: [456, 457, 491] +Triangle: [619, 456, 492] +Triangle: [452, 493, 494] +Triangle: [495, 496, 489] +Triangle: [486, 498, 499] +Triangle: [497, 496, 488] +Triangle: [489, 496, 497] +Triangle: [490, 489, 500] +Triangle: [526, 490, 501] +Triangle: [492, 491, 502] +Triangle: [480, 473, 476] +Triangle: [473, 472, 509] +Triangle: [471, 470, 507] +Triangle: [469, 468, 505] +Triangle: [473, 510, 504] +Triangle: [472, 471, 508] +Triangle: [470, 469, 506] +Triangle: [474, 511, 505] +Triangle: [474, 467, 504] +Triangle: [512, 509, 508] +Triangle: [512, 507, 506] +Triangle: [510, 509, 512] +Triangle: [511, 504, 512] +Triangle: [519, 498, 483] +Triangle: [498, 519, 520] +Triangle: [521, 497, 499] +Triangle: [481, 480, 513] +Triangle: [514, 517, 516] +Triangle: [515, 518, 517] +Triangle: [482, 481, 516] +Triangle: [517, 520, 519] +Triangle: [521, 520, 517] +Triangle: [500, 497, 521] +Triangle: [518, 523, 522] +Triangle: [524, 523, 518] +Triangle: [501, 500, 522] +Triangle: [491, 526, 527] +Triangle: [457, 525, 526] +Triangle: [527, 501, 523] +Triangle: [527, 524, 528] +Triangle: [503, 502, 528] +Triangle: [528, 524, 530] +Triangle: [531, 530, 524] +Triangle: [533, 531, 515] +Triangle: [513, 534, 533] +Triangle: [477, 534, 513] +Triangle: [479, 535, 534] +Triangle: [531, 533, 537] +Triangle: [530, 531, 536] +Triangle: [532, 536, 539] +Triangle: [542, 540, 539] +Triangle: [544, 542, 541] +Triangle: [546, 544, 543] +Triangle: [547, 548, 546] +Triangle: [549, 550, 548] +Triangle: [552, 550, 549] +Triangle: [552, 551, 553] +Triangle: [554, 553, 555] +Triangle: [560, 559, 557] +Triangle: [556, 555, 559] +Triangle: [558, 557, 561] +Triangle: [562, 561, 563] +Triangle: [564, 563, 565] +Triangle: [492, 503, 621] +Triangle: [493, 567, 568] +Triangle: [621, 622, 565] +Triangle: [563, 568, 567] +Triangle: [529, 538, 623] +Triangle: [528, 532, 538] +Triangle: [538, 532, 540] +Triangle: [538, 569, 624] +Triangle: [566, 582, 581] +Triangle: [564, 581, 580] +Triangle: [562, 580, 579] +Triangle: [558, 579, 578] +Triangle: [578, 577, 556] +Triangle: [556, 577, 576] +Triangle: [554, 576, 575] +Triangle: [575, 574, 550] +Triangle: [574, 573, 548] +Triangle: [548, 573, 572] +Triangle: [546, 572, 571] +Triangle: [571, 570, 542] +Triangle: [570, 569, 540] +Triangle: [534, 535, 537] +Triangle: [583, 539, 536] +Triangle: [541, 539, 583] +Triangle: [541, 585, 584] +Triangle: [543, 584, 586] +Triangle: [545, 586, 587] +Triangle: [549, 547, 587] +Triangle: [551, 549, 588] +Triangle: [551, 589, 590] +Triangle: [605, 598, 597] +Triangle: [607, 599, 598] +Triangle: [608, 592, 591] +Triangle: [610, 600, 599] +Triangle: [608, 611, 593] +Triangle: [612, 601, 600] +Triangle: [611, 613, 594] +Triangle: [612, 614, 602] +Triangle: [613, 615, 595] +Triangle: [614, 616, 603] +Triangle: [615, 617, 596] +Triangle: [618, 604, 603] +Triangle: [617, 606, 597] +Triangle: [609, 591, 625] +Triangle: [569, 609, 626] +Triangle: [574, 575, 606] +Triangle: [582, 618, 616] +Triangle: [573, 574, 617] +Triangle: [580, 581, 616] +Triangle: [572, 573, 615] +Triangle: [579, 580, 614] +Triangle: [571, 572, 613] +Triangle: [579, 612, 610] +Triangle: [570, 571, 611] +Triangle: [578, 610, 607] +Triangle: [570, 608, 609] +Triangle: [577, 607, 605] +Triangle: [576, 605, 606] +Triangle: [582, 624, 626] +Triangle: [618, 626, 625] +Triangle: [623, 624, 582] +Triangle: [622, 623, 566] +Triangle: [529, 622, 621] +Triangle: [620, 621, 567] +Triangle: [452, 619, 620] +Triangle: [478, 465, 394] +Triangle: [583, 537, 535] +Triangle: [479, 627, 628] +Triangle: [478, 395, 627] +Triangle: [627, 629, 631] +Triangle: [632, 631, 629] +Triangle: [397, 629, 627] +Triangle: [396, 630, 629] +Triangle: [633, 586, 584] +Triangle: [631, 586, 633] +Triangle: [588, 587, 635] +Triangle: [388, 638, 630] +Triangle: [441, 637, 638] +Triangle: [424, 445, 637] +Triangle: [630, 638, 640] +Triangle: [637, 639, 640] +Triangle: [639, 637, 445] +Triangle: [634, 632, 640] +Triangle: [640, 639, 642] +Triangle: [639, 425, 641] +Triangle: [641, 425, 373] +Triangle: [644, 372, 383] +Triangle: [641, 372, 644] +Triangle: [371, 645, 644] +Triangle: [335, 646, 645] +Triangle: [334, 647, 646] +Triangle: [642, 641, 645] +Triangle: [642, 646, 647] +Triangle: [635, 634, 643] +Triangle: [636, 635, 647] +Triangle: [648, 647, 334] +Triangle: [650, 648, 327] +Triangle: [648, 650, 649] +Triangle: [589, 588, 636] +Triangle: [652, 650, 336] +Triangle: [650, 652, 651] +Triangle: [590, 589, 649] +Triangle: [654, 652, 337] +Triangle: [653, 651, 652] +Triangle: [655, 590, 651] +Triangle: [553, 590, 655] +Triangle: [453, 494, 659] +Triangle: [568, 658, 659] +Triangle: [658, 568, 563] +Triangle: [561, 557, 657] +Triangle: [657, 557, 559] +Triangle: [555, 655, 656] +Triangle: [663, 656, 655] +Triangle: [656, 663, 662] +Triangle: [657, 662, 661] +Triangle: [661, 660, 659] +Triangle: [455, 659, 660] +Triangle: [454, 660, 665] +Triangle: [669, 654, 366] +Triangle: [654, 669, 670] +Triangle: [670, 668, 663] +Triangle: [668, 667, 662] +Triangle: [662, 667, 666] +Triangle: [661, 666, 665] +Triangle: [669, 671, 674] +Triangle: [677, 678, 674] +Triangle: [673, 676, 675] +Triangle: [672, 675, 678] +Triangle: [671, 669, 365] +Triangle: [368, 686, 685] +Triangle: [355, 360, 684] +Triangle: [363, 685, 684] +Triangle: [298, 683, 680] +Triangle: [679, 682, 357] +Triangle: [353, 357, 682] +Triangle: [679, 681, 349] +Triangle: [677, 671, 367] +Triangle: [672, 677, 686] +Triangle: [369, 673, 672] +Triangle: [668, 691, 690] +Triangle: [667, 690, 689] +Triangle: [664, 665, 687] +Triangle: [687, 665, 666] +Triangle: [670, 674, 691] +Triangle: [678, 690, 691] +Triangle: [675, 689, 690] +Triangle: [689, 675, 692] +Triangle: [687, 692, 693] +Triangle: [676, 693, 692] +Triangle: [583, 628, 633] +Triangle: [358, 695, 356] +Triangle: [355, 356, 695] +Triangle: [696, 206, 210] +Triangle: [710, 703, 702] +Triangle: [697, 698, 38] +Triangle: [699, 700, 28] +Triangle: [700, 697, 37] +Triangle: [709, 702, 701] +Triangle: [708, 701, 698] +Triangle: [36, 704, 699] +Triangle: [706, 707, 698] +Triangle: [704, 705, 700] +Triangle: [705, 706, 697] +Triangle: [1247, 710, 709] +Triangle: [1246, 709, 708] +Triangle: [1239, 708, 707] +Triangle: [1241, 30, 710] +Triangle: [30, 29, 703] +Triangle: [33, 715, 723] +Triangle: [32, 723, 722] +Triangle: [31, 722, 721] +Triangle: [721, 720, 29] +Triangle: [29, 720, 719] +Triangle: [719, 718, 27] +Triangle: [718, 717, 38] +Triangle: [717, 716, 37] +Triangle: [716, 713, 28] +Triangle: [79, 715, 711] +Triangle: [714, 711, 35] +Triangle: [712, 714, 36] +Triangle: [713, 712, 34] +Triangle: [733, 732, 262] +Triangle: [734, 733, 261] +Triangle: [260, 259, 731] +Triangle: [259, 258, 730] +Triangle: [258, 254, 729] +Triangle: [729, 254, 253] +Triangle: [728, 253, 255] +Triangle: [727, 255, 252] +Triangle: [726, 252, 256] +Triangle: [725, 256, 257] +Triangle: [732, 733, 5216] +Triangle: [743, 741, 5196] +Triangle: [5218, 734, 731] +Triangle: [5219, 731, 730] +Triangle: [730, 729, 5214] +Triangle: [729, 728, 5213] +Triangle: [728, 727, 5212] +Triangle: [727, 726, 5211] +Triangle: [5211, 726, 725] +Triangle: [5210, 725, 724] +Triangle: [1195, 1199, 747] +Triangle: [1197, 1203, 760] +Triangle: [1133, 771, 770] +Triangle: [785, 784, 779] +Triangle: [791, 772, 773] +Triangle: [784, 783, 780] +Triangle: [1096, 1099, 751] +Triangle: [1204, 763, 762] +Triangle: [1201, 799, 800] +Triangle: [1102, 748, 804] +Triangle: [796, 787, 776] +Triangle: [1194, 1205, 766] +Triangle: [1202, 800, 746] +Triangle: [1093, 1096, 750] +Triangle: [1006, 1126, 1008] +Triangle: [891, 887, 786] +Triangle: [786, 785, 778] +Triangle: [805, 836, 837] +Triangle: [893, 890, 783] +Triangle: [888, 790, 788] +Triangle: [887, 892, 785] +Triangle: [1147, 1139, 767] +Triangle: [894, 793, 792] +Triangle: [795, 796, 767] +Triangle: [783, 782, 781] +Triangle: [896, 788, 789] +Triangle: [897, 794, 793] +Triangle: [895, 789, 782] +Triangle: [885, 795, 794] +Triangle: [788, 790, 773] +Triangle: [885, 889, 796] +Triangle: [793, 770, 771] +Triangle: [898, 791, 790] +Triangle: [782, 789, 774] +Triangle: [892, 893, 784] +Triangle: [795, 768, 769] +Triangle: [789, 788, 775] +Triangle: [787, 786, 777] +Triangle: [886, 782, 783] +Triangle: [794, 769, 770] +Triangle: [889, 891, 787] +Triangle: [1090, 1098, 802] +Triangle: [1097, 757, 758] +Triangle: [1094, 754, 755] +Triangle: [1104, 756, 757] +Triangle: [1095, 755, 756] +Triangle: [1205, 1198, 798] +Triangle: [1200, 762, 761] +Triangle: [1207, 764, 763] +Triangle: [1100, 804, 803] +Triangle: [1091, 749, 748] +Triangle: [1098, 1092, 803] +Triangle: [1103, 1093, 752] +Triangle: [1196, 746, 747] +Triangle: [805, 807, 808] +Triangle: [806, 810, 809] +Triangle: [868, 858, 810] +Triangle: [869, 868, 813] +Triangle: [806, 811, 813] +Triangle: [812, 811, 806] +Triangle: [867, 869, 816] +Triangle: [814, 816, 813] +Triangle: [812, 815, 814] +Triangle: [817, 816, 814] +Triangle: [862, 855, 822] +Triangle: [861, 820, 822] +Triangle: [864, 881, 871] +Triangle: [819, 832, 833] +Triangle: [820, 861, 866] +Triangle: [820, 833, 835] +Triangle: [824, 808, 807] +Triangle: [823, 825, 826] +Triangle: [826, 885, 897] +Triangle: [828, 897, 894] +Triangle: [824, 826, 828] +Triangle: [808, 824, 827] +Triangle: [899, 831, 830] +Triangle: [827, 828, 830] +Triangle: [812, 827, 829] +Triangle: [829, 830, 817] +Triangle: [835, 896, 895] +Triangle: [833, 888, 896] +Triangle: [807, 837, 847] +Triangle: [888, 833, 832] +Triangle: [838, 836, 805] +Triangle: [823, 847, 848] +Triangle: [838, 857, 865] +Triangle: [863, 843, 841] +Triangle: [838, 841, 839] +Triangle: [837, 836, 839] +Triangle: [839, 841, 842] +Triangle: [863, 860, 844] +Triangle: [821, 822, 835] +Triangle: [843, 844, 852] +Triangle: [856, 862, 821] +Triangle: [859, 856, 846] +Triangle: [853, 852, 844] +Triangle: [844, 860, 859] +Triangle: [846, 854, 853] +Triangle: [857, 838, 809] +Triangle: [891, 889, 825] +Triangle: [887, 891, 848] +Triangle: [892, 887, 850] +Triangle: [849, 850, 848] +Triangle: [837, 840, 849] +Triangle: [842, 850, 849] +Triangle: [893, 892, 851] +Triangle: [886, 854, 834] +Triangle: [890, 853, 854] +Triangle: [864, 809, 810] +Triangle: [890, 893, 852] +Triangle: [1198, 1197, 797] +Triangle: [1203, 1195, 759] +Triangle: [862, 856, 870] +Triangle: [1101, 758, 749] +Triangle: [866, 861, 873] +Triangle: [859, 860, 872] +Triangle: [857, 871, 882] +Triangle: [860, 863, 880] +Triangle: [868, 869, 875] +Triangle: [858, 868, 884] +Triangle: [869, 867, 874] +Triangle: [858, 877, 881] +Triangle: [856, 859, 878] +Triangle: [855, 876, 873] +Triangle: [865, 882, 880] +Triangle: [855, 862, 879] +Triangle: [909, 1038, 1018] +Triangle: [1049, 1050, 1138] +Triangle: [1139, 1051, 1042] +Triangle: [1145, 1053, 1054] +Triangle: [1045, 1052, 1140] +Triangle: [1141, 1054, 1044] +Triangle: [1144, 1137, 1048] +Triangle: [1146, 1055, 1053] +Triangle: [1042, 1043, 1134] +Triangle: [1043, 1046, 1136] +Triangle: [1050, 1055, 1146] +Triangle: [1143, 1044, 1045] +Triangle: [1042, 1119, 1108] +Triangle: [1044, 1113, 1112] +Triangle: [1046, 1043, 1108] +Triangle: [818, 831, 832] +Triangle: [1050, 1049, 1118] +Triangle: [881, 1101, 1091] +Triangle: [1051, 1110, 1119] +Triangle: [1045, 1112, 1107] +Triangle: [1053, 1115, 1114] +Triangle: [1044, 1054, 1114] +Triangle: [1048, 1153, 1155] +Triangle: [1055, 1116, 1115] +Triangle: [1047, 1046, 1109] +Triangle: [1055, 1050, 1117] +Triangle: [747, 916, 917] +Triangle: [916, 747, 746] +Triangle: [759, 917, 920] +Triangle: [760, 759, 918] +Triangle: [920, 921, 919] +Triangle: [1047, 1048, 1137] +Triangle: [971, 924, 1065] +Triangle: [981, 925, 930] +Triangle: [1001, 1012, 1021] +Triangle: [1067, 1068, 932] +Triangle: [1068, 1069, 934] +Triangle: [1070, 1071, 936] +Triangle: [1148, 938, 989] +Triangle: [1073, 1074, 940] +Triangle: [952, 970, 1059] +Triangle: [994, 948, 950] +Triangle: [1075, 1076, 944] +Triangle: [1076, 1077, 946] +Triangle: [1077, 1078, 948] +Triangle: [948, 1078, 1079] +Triangle: [1058, 1080, 1081] +Triangle: [1082, 1083, 954] +Triangle: [952, 1081, 1084] +Triangle: [1083, 1085, 958] +Triangle: [1085, 1086, 960] +Triangle: [960, 1086, 1087] +Triangle: [962, 1087, 1088] +Triangle: [979, 964, 966] +Triangle: [966, 1089, 1065] +Triangle: [977, 978, 980] +Triangle: [925, 971, 1064] +Triangle: [1208, 754, 753] +Triangle: [974, 970, 952] +Triangle: [1075, 942, 940] +Triangle: [946, 948, 994] +Triangle: [944, 946, 993] +Triangle: [992, 991, 942] +Triangle: [991, 990, 940] +Triangle: [938, 940, 1151] +Triangle: [940, 990, 1151] +Triangle: [1041, 974, 957] +Triangle: [1031, 987, 934] +Triangle: [987, 986, 932] +Triangle: [932, 986, 985] +Triangle: [1001, 984, 983] +Triangle: [964, 1088, 1089] +Triangle: [925, 981, 982] +Triangle: [982, 996, 924] +Triangle: [924, 996, 983] +Triangle: [984, 929, 979] +Triangle: [978, 979, 929] +Triangle: [964, 979, 978] +Triangle: [962, 978, 977] +Triangle: [960, 977, 976] +Triangle: [976, 975, 954] +Triangle: [902, 901, 997] +Triangle: [969, 999, 1000] +Triangle: [1012, 1001, 1002] +Triangle: [982, 1002, 1001] +Triangle: [1032, 1033, 1004] +Triangle: [1126, 1006, 915] +Triangle: [754, 1094, 1103] +Triangle: [1103, 1094, 874] +Triangle: [883, 874, 867] +Triangle: [1208, 1011, 764] +Triangle: [866, 867, 818] +Triangle: [898, 832, 831] +Triangle: [1099, 1090, 801] +Triangle: [834, 854, 846] +Triangle: [889, 885, 826] +Triangle: [1000, 999, 1012] +Triangle: [903, 902, 998] +Triangle: [1005, 1016, 1034] +Triangle: [968, 1000, 1015] +Triangle: [1000, 1013, 1014] +Triangle: [1012, 999, 1020] +Triangle: [969, 1004, 1019] +Triangle: [1033, 1127, 1111] +Triangle: [900, 1018, 997] +Triangle: [1003, 1014, 1013] +Triangle: [1014, 1003, 1022] +Triangle: [1015, 1022, 1027] +Triangle: [1016, 1023, 1036] +Triangle: [981, 1003, 1002] +Triangle: [1066, 1067, 930] +Triangle: [929, 984, 1021] +Triangle: [1025, 1027, 1023] +Triangle: [999, 969, 1026] +Triangle: [968, 1025, 1016] +Triangle: [1005, 1004, 969] +Triangle: [1020, 1026, 980] +Triangle: [1026, 1019, 928] +Triangle: [985, 1022, 1003] +Triangle: [1027, 1022, 985] +Triangle: [1023, 1027, 986] +Triangle: [1036, 1023, 987] +Triangle: [1024, 1131, 1128] +Triangle: [1129, 1131, 1024] +Triangle: [1004, 1033, 1035] +Triangle: [1130, 1129, 1017] +Triangle: [998, 997, 1127] +Triangle: [988, 1128, 1132] +Triangle: [1069, 1070, 1029] +Triangle: [1028, 928, 1019] +Triangle: [976, 977, 928] +Triangle: [1037, 1028, 1035] +Triangle: [975, 976, 1028] +Triangle: [1056, 1106, 1110] +Triangle: [975, 1041, 1040] +Triangle: [1084, 1082, 1040] +Triangle: [1041, 975, 1037] +Triangle: [1038, 909, 974] +Triangle: [1052, 1107, 1106] +Triangle: [907, 908, 991] +Triangle: [906, 990, 991] +Triangle: [904, 903, 1017] +Triangle: [1072, 1073, 938] +Triangle: [1152, 1151, 990] +Triangle: [791, 898, 899] +Triangle: [904, 1062, 1063] +Triangle: [909, 910, 970] +Triangle: [907, 992, 993] +Triangle: [914, 993, 994] +Triangle: [950, 1079, 1080] +Triangle: [1058, 1059, 995] +Triangle: [911, 1059, 970] +Triangle: [912, 995, 1059] +Triangle: [913, 994, 995] +Triangle: [1071, 1072, 1148] +Triangle: [936, 1148, 1061] +Triangle: [949, 947, 945] +Triangle: [926, 972, 1064] +Triangle: [931, 1067, 1066] +Triangle: [933, 1068, 1067] +Triangle: [935, 1069, 1068] +Triangle: [937, 1071, 1070] +Triangle: [939, 1073, 1072] +Triangle: [941, 1074, 1073] +Triangle: [943, 1075, 1074] +Triangle: [945, 1076, 1075] +Triangle: [945, 947, 1077] +Triangle: [947, 949, 1078] +Triangle: [951, 1079, 1078] +Triangle: [953, 1081, 1080] +Triangle: [1039, 955, 1083] +Triangle: [956, 1084, 1081] +Triangle: [955, 959, 1085] +Triangle: [959, 961, 1086] +Triangle: [961, 963, 1087] +Triangle: [963, 965, 1088] +Triangle: [926, 1065, 1089] +Triangle: [967, 1089, 1088] +Triangle: [927, 1066, 1064] +Triangle: [1030, 1070, 1069] +Triangle: [956, 1039, 1082] +Triangle: [1057, 1080, 1079] +Triangle: [1060, 1072, 1071] +Triangle: [941, 951, 949] +Triangle: [939, 1057, 951] +Triangle: [1060, 953, 1057] +Triangle: [1060, 937, 956] +Triangle: [1039, 956, 937] +Triangle: [1030, 935, 955] +Triangle: [959, 955, 935] +Triangle: [961, 959, 933] +Triangle: [963, 961, 931] +Triangle: [965, 963, 927] +Triangle: [972, 926, 967] +Triangle: [879, 870, 1090] +Triangle: [900, 1110, 1106] +Triangle: [883, 873, 1093] +Triangle: [878, 872, 1092] +Triangle: [871, 1091, 1102] +Triangle: [880, 1100, 1092] +Triangle: [884, 875, 1095] +Triangle: [884, 1104, 1097] +Triangle: [875, 874, 1094] +Triangle: [877, 1097, 1101] +Triangle: [870, 878, 1098] +Triangle: [1133, 1137, 772] +Triangle: [876, 1096, 1093] +Triangle: [882, 1102, 1100] +Triangle: [876, 879, 1099] +Triangle: [1052, 1056, 1147] +Triangle: [1118, 1150, 1152] +Triangle: [1118, 906, 908] +Triangle: [1117, 908, 907] +Triangle: [907, 914, 1115] +Triangle: [914, 913, 1114] +Triangle: [913, 912, 1113] +Triangle: [912, 911, 1112] +Triangle: [1112, 911, 910] +Triangle: [1107, 910, 909] +Triangle: [1018, 1038, 1037] +Triangle: [1110, 900, 901] +Triangle: [1119, 901, 902] +Triangle: [1109, 1108, 902] +Triangle: [1121, 1109, 903] +Triangle: [1062, 905, 1120] +Triangle: [1007, 1008, 1123] +Triangle: [1122, 1125, 1124] +Triangle: [988, 1061, 1149] +Triangle: [1062, 904, 1024] +Triangle: [1206, 761, 799] +Triangle: [1129, 1130, 1032] +Triangle: [1130, 1127, 1033] +Triangle: [1128, 1131, 1036] +Triangle: [1111, 1127, 997] +Triangle: [1132, 1128, 1031] +Triangle: [1131, 1129, 1034] +Triangle: [1140, 1147, 776] +Triangle: [1154, 1153, 1048] +Triangle: [1143, 1135, 778] +Triangle: [1138, 1146, 774] +Triangle: [769, 1134, 1136] +Triangle: [768, 1142, 1134] +Triangle: [1146, 1145, 781] +Triangle: [772, 1137, 1144] +Triangle: [1141, 1143, 779] +Triangle: [1135, 1140, 777] +Triangle: [781, 1145, 1141] +Triangle: [767, 1139, 1142] +Triangle: [1144, 1138, 775] +Triangle: [1051, 1139, 1147] +Triangle: [1046, 1047, 1133] +Triangle: [772, 791, 792] +Triangle: [1118, 1049, 1155] +Triangle: [1150, 1120, 905] +Triangle: [1153, 1154, 1063] +Triangle: [1155, 1153, 1120] +Triangle: [1152, 905, 989] +Triangle: [1121, 1063, 1154] +Triangle: [1149, 989, 905] +Triangle: [1166, 1167, 1164] +Triangle: [1009, 1167, 1166] +Triangle: [1191, 1168, 1163] +Triangle: [1169, 1162, 1163] +Triangle: [921, 1170, 1171] +Triangle: [1170, 922, 1166] +Triangle: [1165, 1172, 1171] +Triangle: [919, 1171, 1172] +Triangle: [1173, 1172, 1165] +Triangle: [797, 760, 1172] +Triangle: [1174, 1173, 1164] +Triangle: [1175, 1174, 1163] +Triangle: [798, 797, 1173] +Triangle: [766, 798, 1174] +Triangle: [1176, 1175, 1162] +Triangle: [1160, 1177, 1176] +Triangle: [1159, 1178, 1177] +Triangle: [1158, 1179, 1178] +Triangle: [1179, 1158, 1157] +Triangle: [766, 1175, 1176] +Triangle: [765, 1176, 1177] +Triangle: [1011, 1177, 1178] +Triangle: [764, 1178, 1179] +Triangle: [763, 1179, 1180] +Triangle: [1182, 1180, 1157] +Triangle: [762, 1180, 1182] +Triangle: [1181, 1122, 1182] +Triangle: [1182, 1122, 1183] +Triangle: [799, 761, 1183] +Triangle: [1123, 1184, 1183] +Triangle: [1184, 1123, 1008] +Triangle: [799, 1184, 1185] +Triangle: [800, 1185, 1126] +Triangle: [1125, 1122, 1181] +Triangle: [1186, 973, 1181] +Triangle: [735, 745, 1186] +Triangle: [736, 735, 1156] +Triangle: [737, 736, 1157] +Triangle: [737, 1158, 1159] +Triangle: [739, 738, 1159] +Triangle: [740, 739, 1160] +Triangle: [740, 1161, 1187] +Triangle: [1162, 1169, 1187] +Triangle: [1188, 743, 744] +Triangle: [1189, 1188, 1187] +Triangle: [1189, 1169, 1168] +Triangle: [1191, 1164, 1167] +Triangle: [1192, 1167, 1009] +Triangle: [1192, 1190, 1168] +Triangle: [741, 743, 1188] +Triangle: [1193, 923, 742] +Triangle: [1193, 1188, 1189] +Triangle: [1190, 1105, 923] +Triangle: [1105, 1190, 1192] +Triangle: [758, 1206, 1201] +Triangle: [754, 1208, 1207] +Triangle: [1011, 1208, 1194] +Triangle: [801, 802, 1195] +Triangle: [750, 751, 1197] +Triangle: [804, 1196, 1199] +Triangle: [755, 1207, 1204] +Triangle: [757, 1200, 1206] +Triangle: [752, 750, 1198] +Triangle: [748, 1202, 1196] +Triangle: [753, 752, 1205] +Triangle: [749, 1201, 1202] +Triangle: [756, 1204, 1200] +Triangle: [751, 801, 1203] +Triangle: [802, 803, 1199] +Triangle: [1210, 1209, 50] +Triangle: [1214, 1213, 48] +Triangle: [43, 1217, 1216] +Triangle: [44, 1216, 1215] +Triangle: [51, 1221, 1220] +Triangle: [45, 1215, 1214] +Triangle: [50, 1209, 1221] +Triangle: [42, 1218, 1217] +Triangle: [1212, 1211, 47] +Triangle: [1219, 1218, 42] +Triangle: [1213, 1212, 49] +Triangle: [40, 1220, 1219] +Triangle: [1211, 1210, 41] +Triangle: [76, 1280, 1227] +Triangle: [70, 1227, 1226] +Triangle: [77, 1234, 1278] +Triangle: [65, 1277, 1279] +Triangle: [72, 1229, 1234] +Triangle: [75, 1282, 1280] +Triangle: [67, 74, 1231] +Triangle: [75, 73, 1283] +Triangle: [74, 71, 1228] +Triangle: [73, 68, 1225] +Triangle: [66, 67, 1224] +Triangle: [66, 1223, 1229] +Triangle: [65, 1222, 1228] +Triangle: [1269, 1241, 1247] +Triangle: [1264, 1239, 1245] +Triangle: [1272, 1246, 1239] +Triangle: [1273, 1247, 1246] +Triangle: [1269, 1266, 1243] +Triangle: [1266, 1265, 1242] +Triangle: [1261, 1236, 1242] +Triangle: [1270, 1271, 1245] +Triangle: [1268, 1263, 1238] +Triangle: [1268, 1240, 1235] +Triangle: [1263, 1262, 1237] +Triangle: [1262, 1270, 1244] +Triangle: [1267, 1235, 1236] +Triangle: [52, 1255, 1248] +Triangle: [55, 54, 1256] +Triangle: [54, 56, 1257] +Triangle: [57, 1274, 1284] +Triangle: [59, 53, 1248] +Triangle: [58, 1284, 1285] +Triangle: [56, 59, 1251] +Triangle: [60, 1285, 1286] +Triangle: [55, 1249, 1254] +Triangle: [63, 1276, 1255] +Triangle: [62, 1254, 1274] +Triangle: [63, 64, 1260] +Triangle: [64, 61, 1286] +Triangle: [20, 22, 1267] +Triangle: [15, 24, 1270] +Triangle: [21, 15, 1262] +Triangle: [23, 1268, 1267] +Triangle: [21, 1263, 1268] +Triangle: [24, 25, 1271] +Triangle: [20, 1261, 1265] +Triangle: [19, 1265, 1266] +Triangle: [18, 1266, 1269] +Triangle: [13, 16, 1273] +Triangle: [14, 13, 1272] +Triangle: [25, 14, 1264] +Triangle: [17, 1269, 1273] +Triangle: [1258, 1274, 1275] +Triangle: [1259, 69, 1277] +Triangle: [1225, 68, 1275] +Triangle: [1226, 1279, 1277] +Triangle: [1280, 1233, 1281] +Triangle: [1227, 1281, 1279] +Triangle: [1280, 1282, 1232] +Triangle: [1282, 1283, 1230] +Triangle: [1283, 1225, 1278] +Triangle: [1250, 1284, 1274] +Triangle: [1252, 1285, 1284] +Triangle: [1253, 1286, 1285] +Triangle: [1259, 1276, 1260] +Triangle: [1253, 1287, 1260] +Triangle: [1321, 1323, 2415] +Triangle: [2417, 1906, 1907] +Triangle: [2418, 1905, 1906] +Triangle: [1315, 1314, 1903] +Triangle: [1323, 1324, 2420] +Triangle: [1314, 1317, 1904] +Triangle: [2420, 1324, 1905] +Triangle: [2424, 1907, 1908] +Triangle: [1320, 1321, 2416] +Triangle: [1326, 1315, 1902] +Triangle: [2423, 1319, 1320] +Triangle: [2421, 1318, 1319] +Triangle: [1336, 1334, 2402] +Triangle: [2409, 1338, 1329] +Triangle: [2403, 1329, 1335] +Triangle: [2410, 1327, 1328] +Triangle: [2411, 1337, 1336] +Triangle: [1330, 1327, 2410] +Triangle: [2404, 1335, 1337] +Triangle: [1331, 1330, 2412] +Triangle: [2414, 1339, 1338] +Triangle: [1334, 1333, 2459] +Triangle: [2458, 1328, 1339] +Triangle: [1333, 1332, 2461] +Triangle: [1332, 1331, 2413] +Triangle: [1306, 1352, 1349] +Triangle: [1351, 1352, 1306] +Triangle: [1345, 1350, 1313] +Triangle: [1340, 1351, 1307] +Triangle: [1313, 1350, 1343] +Triangle: [1349, 1348, 1304] +Triangle: [1344, 1347, 1311] +Triangle: [1304, 1348, 1346] +Triangle: [1347, 1341, 1310] +Triangle: [1346, 1345, 1302] +Triangle: [1303, 1342, 1344] +Triangle: [1312, 1343, 1342] +Triangle: [1310, 1341, 1340] +Triangle: [2390, 1296, 1298] +Triangle: [2400, 2399, 1289] +Triangle: [2392, 1297, 1295] +Triangle: [2398, 1288, 1289] +Triangle: [2391, 1298, 1297] +Triangle: [2398, 2397, 1291] +Triangle: [2389, 2401, 1299] +Triangle: [2394, 1294, 1293] +Triangle: [2401, 2400, 1300] +Triangle: [2395, 1293, 1292] +Triangle: [2396, 1292, 1291] +Triangle: [2393, 1295, 1294] +Triangle: [1358, 1364, 2433] +Triangle: [2439, 1357, 1358] +Triangle: [2455, 1365, 2434] +Triangle: [2435, 1353, 2457] +Triangle: [1365, 1360, 2429] +Triangle: [1364, 1363, 2432] +Triangle: [2437, 1355, 1362] +Triangle: [1363, 1361, 2430] +Triangle: [2431, 1362, 1359] +Triangle: [1361, 1356, 2438] +Triangle: [2436, 1354, 1355] +Triangle: [2429, 1360, 1354] +Triangle: [1359, 1353, 2435] +Triangle: [1913, 1369, 1370] +Triangle: [1913, 1915, 1368] +Triangle: [1912, 1366, 1368] +Triangle: [1916, 1912, 1323] +Triangle: [1372, 1371, 1370] +Triangle: [1379, 1377, 1374] +Triangle: [130, 1439, 1440] +Triangle: [1377, 91, 83] +Triangle: [1388, 1389, 1390] +Triangle: [1438, 91, 1377] +Triangle: [1380, 1379, 1372] +Triangle: [1368, 1381, 1380] +Triangle: [1381, 1368, 1366] +Triangle: [1367, 1383, 1382] +Triangle: [1914, 1370, 1384] +Triangle: [1385, 1384, 1370] +Triangle: [1380, 1381, 1448] +Triangle: [1379, 1380, 1449] +Triangle: [1388, 1385, 1371] +Triangle: [1917, 1384, 1391] +Triangle: [1384, 1385, 1390] +Triangle: [1451, 1377, 1379] +Triangle: [1393, 1374, 83] +Triangle: [1373, 1374, 1393] +Triangle: [103, 1395, 1393] +Triangle: [1394, 1393, 1395] +Triangle: [1373, 1394, 1396] +Triangle: [1392, 1397, 1396] +Triangle: [1388, 1396, 1399] +Triangle: [1398, 1399, 1396] +Triangle: [1383, 1401, 1400] +Triangle: [1403, 1402, 1417] +Triangle: [1405, 1404, 1402] +Triangle: [1407, 1406, 1452] +Triangle: [1452, 1454, 1408] +Triangle: [1455, 1410, 1375] +Triangle: [1455, 178, 128] +Triangle: [137, 1440, 1410] +Triangle: [1444, 1443, 1408] +Triangle: [1408, 1443, 1441] +Triangle: [1442, 1402, 1404] +Triangle: [1418, 1417, 1400] +Triangle: [1417, 1402, 1442] +Triangle: [1400, 1417, 1445] +Triangle: [1400, 1446, 1447] +Triangle: [1381, 1382, 1447] +Triangle: [1372, 1374, 1373] +Triangle: [131, 1437, 1439] +Triangle: [1437, 131, 132] +Triangle: [132, 91, 1438] +Triangle: [1440, 1444, 1375] +Triangle: [1454, 1456, 1375] +Triangle: [1386, 1387, 1433] +Triangle: [1430, 1423, 1422] +Triangle: [1429, 1416, 1413] +Triangle: [1414, 1432, 1429] +Triangle: [1435, 1434, 1431] +Triangle: [1424, 1423, 1430] +Triangle: [1430, 1427, 1428] +Triangle: [1431, 1428, 1429] +Triangle: [1427, 1421, 1419] +Triangle: [1427, 1422, 1420] +Triangle: [1415, 1378, 1435] +Triangle: [1378, 1386, 1434] +Triangle: [1428, 1419, 1416] +Triangle: [1426, 1435, 1432] +Triangle: [1433, 1430, 1431] +Triangle: [1425, 1424, 1433] +Triangle: [1437, 1436, 1387] +Triangle: [1436, 1438, 1425] +Triangle: [1415, 1440, 1439] +Triangle: [1378, 1439, 1437] +Triangle: [1413, 1442, 1441] +Triangle: [1412, 1441, 1443] +Triangle: [1444, 1440, 1415] +Triangle: [1445, 1442, 1413] +Triangle: [1446, 1445, 1416] +Triangle: [1420, 1448, 1447] +Triangle: [1421, 1447, 1446] +Triangle: [1449, 1448, 1420] +Triangle: [1423, 1450, 1449] +Triangle: [1424, 1451, 1450] +Triangle: [1425, 1438, 1451] +Triangle: [1443, 1444, 1426] +Triangle: [1409, 1376, 1456] +Triangle: [1411, 129, 178] +Triangle: [1376, 1411, 1455] +Triangle: [1406, 1409, 1454] +Triangle: [1453, 1452, 1404] +Triangle: [1457, 1458, 1391] +Triangle: [1457, 1459, 1460] +Triangle: [1462, 1461, 1460] +Triangle: [1918, 1391, 1458] +Triangle: [1919, 1458, 1460] +Triangle: [1921, 1920, 1460] +Triangle: [1921, 1461, 1468] +Triangle: [1468, 1467, 1923] +Triangle: [1467, 1466, 1924] +Triangle: [1466, 1367, 1916] +Triangle: [1469, 1463, 1461] +Triangle: [1471, 1472, 1469] +Triangle: [1463, 1464, 1468] +Triangle: [1467, 1468, 1464] +Triangle: [1470, 1465, 1466] +Triangle: [1367, 1466, 1465] +Triangle: [196, 197, 1477] +Triangle: [1462, 1459, 1474] +Triangle: [1475, 1471, 1474] +Triangle: [1473, 1474, 1459] +Triangle: [1475, 1476, 1472] +Triangle: [1389, 1473, 1457] +Triangle: [1399, 1480, 1473] +Triangle: [1479, 209, 210] +Triangle: [185, 194, 1476] +Triangle: [1475, 1477, 197] +Triangle: [1478, 1477, 1474] +Triangle: [1398, 1479, 1480] +Triangle: [196, 1478, 1897] +Triangle: [1897, 1478, 1473] +Triangle: [1487, 1481, 1465] +Triangle: [1481, 1487, 1488] +Triangle: [1482, 1488, 1489] +Triangle: [1483, 1489, 1490] +Triangle: [1484, 1490, 1491] +Triangle: [1485, 1491, 1492] +Triangle: [1401, 1383, 1465] +Triangle: [1418, 1401, 1481] +Triangle: [1403, 1418, 1482] +Triangle: [1403, 1483, 1484] +Triangle: [1405, 1484, 1485] +Triangle: [1453, 1485, 1486] +Triangle: [1493, 1470, 1464] +Triangle: [1496, 1493, 1463] +Triangle: [1469, 1472, 1495] +Triangle: [1476, 1494, 1495] +Triangle: [1470, 1493, 1497] +Triangle: [1498, 1497, 1493] +Triangle: [1495, 1499, 1498] +Triangle: [1513, 1494, 249] +Triangle: [1498, 1502, 1501] +Triangle: [1499, 1500, 1502] +Triangle: [1487, 1497, 1501] +Triangle: [1504, 1503, 1501] +Triangle: [1506, 1505, 1503] +Triangle: [1506, 1508, 1507] +Triangle: [1508, 1510, 1509] +Triangle: [231, 243, 1511] +Triangle: [243, 245, 1512] +Triangle: [262, 1522, 1510] +Triangle: [1511, 1504, 1502] +Triangle: [1506, 1504, 1511] +Triangle: [1523, 263, 247] +Triangle: [1488, 1501, 1503] +Triangle: [1489, 1503, 1505] +Triangle: [1491, 1490, 1505] +Triangle: [1492, 1491, 1507] +Triangle: [194, 249, 1494] +Triangle: [1495, 1494, 1513] +Triangle: [225, 1499, 1513] +Triangle: [225, 231, 1500] +Triangle: [1518, 257, 129] +Triangle: [1526, 1524, 1406] +Triangle: [1517, 1514, 1376] +Triangle: [1527, 1525, 1486] +Triangle: [1522, 1521, 1509] +Triangle: [1524, 1517, 1409] +Triangle: [1376, 1514, 1518] +Triangle: [1506, 1512, 1523] +Triangle: [245, 263, 1523] +Triangle: [1525, 1526, 1407] +Triangle: [1510, 1508, 247] +Triangle: [1520, 1519, 1525] +Triangle: [1516, 1515, 1524] +Triangle: [1519, 1516, 1526] +Triangle: [1509, 1521, 1527] +Triangle: [2389, 1290, 1296] +Triangle: [269, 1528, 1395] +Triangle: [302, 271, 1529] +Triangle: [274, 1530, 1532] +Triangle: [275, 1531, 1528] +Triangle: [278, 1532, 1531] +Triangle: [1532, 1535, 1534] +Triangle: [1530, 1533, 1535] +Triangle: [1535, 1538, 1537] +Triangle: [1533, 1536, 1538] +Triangle: [1538, 1541, 1540] +Triangle: [1536, 1539, 1541] +Triangle: [1541, 1544, 1543] +Triangle: [1542, 1544, 1541] +Triangle: [293, 292, 1543] +Triangle: [291, 293, 1544] +Triangle: [1531, 1534, 1545] +Triangle: [1546, 1545, 1534] +Triangle: [1896, 1546, 1537] +Triangle: [1547, 1896, 1540] +Triangle: [292, 297, 1547] +Triangle: [1392, 1395, 1528] +Triangle: [1392, 1545, 1546] +Triangle: [1397, 1546, 1896] +Triangle: [1398, 1896, 1547] +Triangle: [1479, 1547, 297] +Triangle: [302, 1550, 1530] +Triangle: [1530, 1550, 1551] +Triangle: [1551, 1552, 1553] +Triangle: [1552, 1551, 1550] +Triangle: [1536, 1533, 1553] +Triangle: [1539, 1536, 1554] +Triangle: [1549, 1539, 1557] +Triangle: [1555, 1556, 1557] +Triangle: [1549, 1548, 1542] +Triangle: [1548, 298, 291] +Triangle: [1565, 1562, 1571] +Triangle: [1576, 1555, 1558] +Triangle: [1577, 1558, 1574] +Triangle: [1560, 1577, 1573] +Triangle: [1573, 1574, 1564] +Triangle: [1563, 1571, 1578] +Triangle: [1578, 1571, 1561] +Triangle: [1566, 1561, 1571] +Triangle: [1565, 1570, 1569] +Triangle: [1568, 1566, 1562] +Triangle: [1568, 1567, 1561] +Triangle: [1560, 1561, 1567] +Triangle: [1559, 1576, 1577] +Triangle: [1564, 1580, 1579] +Triangle: [1579, 1572, 1565] +Triangle: [1565, 1572, 1581] +Triangle: [1579, 1580, 1588] +Triangle: [1581, 1572, 1588] +Triangle: [1570, 1581, 1587] +Triangle: [1593, 1591, 1590] +Triangle: [1586, 1589, 1590] +Triangle: [1585, 1586, 1587] +Triangle: [1588, 1580, 1584] +Triangle: [1591, 1593, 1594] +Triangle: [1569, 1570, 1590] +Triangle: [1568, 1569, 1591] +Triangle: [1576, 1559, 1556] +Triangle: [1556, 1559, 1567] +Triangle: [1567, 1568, 1592] +Triangle: [1549, 1556, 1595] +Triangle: [1596, 1595, 1592] +Triangle: [1593, 1597, 1598] +Triangle: [1842, 1840, 1839] +Triangle: [1886, 1601, 1602] +Triangle: [1594, 1598, 1599] +Triangle: [1549, 1596, 1599] +Triangle: [1885, 1548, 1599] +Triangle: [1600, 1603, 358] +Triangle: [1887, 1599, 1598] +Triangle: [1842, 1795, 1796] +Triangle: [683, 1885, 1600] +Triangle: [1606, 1604, 1589] +Triangle: [1604, 1606, 1889] +Triangle: [361, 1605, 1607] +Triangle: [1589, 1604, 1597] +Triangle: [1597, 1604, 1888] +Triangle: [351, 1601, 1605] +Triangle: [1609, 1608, 1586] +Triangle: [1586, 1608, 1610] +Triangle: [1606, 1610, 1890] +Triangle: [1607, 1611, 369] +Triangle: [1580, 1564, 1575] +Triangle: [1575, 1564, 1574] +Triangle: [1574, 1558, 1583] +Triangle: [1613, 1583, 1558] +Triangle: [1613, 1555, 1554] +Triangle: [376, 1618, 1619] +Triangle: [271, 378, 1619] +Triangle: [1617, 1620, 1619] +Triangle: [1529, 271, 1620] +Triangle: [1616, 1621, 1620] +Triangle: [1529, 1621, 1622] +Triangle: [1552, 1622, 1623] +Triangle: [1553, 1623, 1612] +Triangle: [1642, 401, 393] +Triangle: [1642, 1636, 1631] +Triangle: [1638, 1631, 1632] +Triangle: [1640, 1639, 1632] +Triangle: [1628, 1635, 1640] +Triangle: [1641, 1640, 1634] +Triangle: [1635, 1630, 1639] +Triangle: [1629, 1638, 1639] +Triangle: [1629, 1637, 1642] +Triangle: [1637, 391, 401] +Triangle: [1650, 1641, 1633] +Triangle: [1650, 1627, 1648] +Triangle: [1647, 1648, 1649] +Triangle: [1635, 1628, 1647] +Triangle: [1630, 1635, 1646] +Triangle: [1644, 1629, 1630] +Triangle: [1637, 1629, 1644] +Triangle: [1637, 1643, 407] +Triangle: [1651, 1645, 1646] +Triangle: [1645, 1651, 1652] +Triangle: [1643, 1644, 1652] +Triangle: [419, 407, 1643] +Triangle: [422, 419, 1653] +Triangle: [1652, 1659, 1655] +Triangle: [1651, 1661, 1659] +Triangle: [1661, 1668, 1663] +Triangle: [1662, 1676, 1625] +Triangle: [1615, 1622, 1621] +Triangle: [1614, 1623, 1622] +Triangle: [1657, 1676, 1662] +Triangle: [1656, 1625, 1676] +Triangle: [1616, 1624, 1658] +Triangle: [422, 1655, 1654] +Triangle: [1670, 1662, 1648] +Triangle: [1661, 1651, 1649] +Triangle: [1660, 1649, 1648] +Triangle: [1659, 1663, 1654] +Triangle: [1664, 431, 387] +Triangle: [1654, 1663, 1626] +Triangle: [1664, 1665, 433] +Triangle: [1666, 435, 433] +Triangle: [1667, 437, 435] +Triangle: [376, 437, 1667] +Triangle: [1661, 1660, 1625] +Triangle: [1668, 1669, 1626] +Triangle: [1626, 1669, 1665] +Triangle: [1625, 1656, 1669] +Triangle: [1656, 1671, 1672] +Triangle: [1624, 1673, 1674] +Triangle: [1673, 1624, 1671] +Triangle: [1665, 1669, 1672] +Triangle: [1675, 1667, 1666] +Triangle: [1618, 1667, 1675] +Triangle: [1671, 1617, 1675] +Triangle: [1616, 1617, 1671] +Triangle: [1657, 1674, 1673] +Triangle: [1636, 393, 461] +Triangle: [1678, 1677, 461] +Triangle: [1631, 1636, 1677] +Triangle: [1680, 1677, 1678] +Triangle: [466, 1679, 1678] +Triangle: [448, 1681, 1679] +Triangle: [1688, 1681, 448] +Triangle: [1682, 1688, 475] +Triangle: [1680, 1679, 1689] +Triangle: [1690, 1692, 1691] +Triangle: [1681, 1687, 1689] +Triangle: [1682, 459, 485] +Triangle: [449, 1697, 1683] +Triangle: [1697, 1696, 1684] +Triangle: [1684, 1696, 1695] +Triangle: [1685, 1695, 1694] +Triangle: [1693, 1687, 1686] +Triangle: [1697, 1698, 1708] +Triangle: [450, 1699, 1698] +Triangle: [487, 1698, 1697] +Triangle: [495, 1706, 1699] +Triangle: [458, 1701, 1700] +Triangle: [525, 1735, 1701] +Triangle: [456, 1703, 1702] +Triangle: [619, 1828, 1703] +Triangle: [1705, 1704, 452] +Triangle: [1700, 1706, 495] +Triangle: [1709, 1708, 1698] +Triangle: [1707, 1709, 1699] +Triangle: [1700, 1710, 1707] +Triangle: [1701, 1711, 1710] +Triangle: [1735, 1736, 1711] +Triangle: [1703, 1713, 1712] +Triangle: [1689, 1687, 1693] +Triangle: [1687, 1720, 1719] +Triangle: [1685, 1718, 1717] +Triangle: [1683, 1716, 1715] +Triangle: [1714, 1720, 1687] +Triangle: [1686, 1719, 1718] +Triangle: [1684, 1717, 1716] +Triangle: [1715, 1721, 1688] +Triangle: [1688, 1721, 1714] +Triangle: [1722, 1717, 1718] +Triangle: [1716, 1717, 1722] +Triangle: [1722, 1719, 1720] +Triangle: [1721, 1715, 1722] +Triangle: [1696, 1708, 1729] +Triangle: [1730, 1729, 1708] +Triangle: [1731, 1730, 1709] +Triangle: [1694, 1726, 1723] +Triangle: [1724, 1723, 1726] +Triangle: [1725, 1724, 1727] +Triangle: [1695, 1729, 1726] +Triangle: [1727, 1726, 1729] +Triangle: [1727, 1730, 1731] +Triangle: [1710, 1732, 1731] +Triangle: [1728, 1731, 1732] +Triangle: [1734, 1725, 1728] +Triangle: [1711, 1733, 1732] +Triangle: [1702, 1712, 1736] +Triangle: [457, 1702, 1735] +Triangle: [1733, 1711, 1736] +Triangle: [1737, 1734, 1736] +Triangle: [1713, 1738, 1737] +Triangle: [1737, 1741, 1739] +Triangle: [1740, 1725, 1734] +Triangle: [1725, 1740, 1742] +Triangle: [1723, 1724, 1742] +Triangle: [1690, 1693, 1723] +Triangle: [1692, 1690, 1743] +Triangle: [1740, 1745, 1746] +Triangle: [1739, 1741, 1745] +Triangle: [1741, 1749, 1748] +Triangle: [1748, 1749, 1751] +Triangle: [1750, 1751, 1753] +Triangle: [1752, 1753, 1755] +Triangle: [1756, 1754, 1755] +Triangle: [1758, 1756, 1757] +Triangle: [1758, 1759, 1761] +Triangle: [1761, 1763, 1762] +Triangle: [1763, 1765, 1764] +Triangle: [1769, 1767, 1766] +Triangle: [1765, 1769, 1768] +Triangle: [1767, 1771, 1770] +Triangle: [1771, 1773, 1772] +Triangle: [1773, 1775, 1774] +Triangle: [1829, 1713, 1703] +Triangle: [1777, 1776, 1704] +Triangle: [1829, 1776, 1774] +Triangle: [1772, 1774, 1776] +Triangle: [1831, 1747, 1738] +Triangle: [1747, 1741, 1737] +Triangle: [1747, 1778, 1749] +Triangle: [1832, 1778, 1747] +Triangle: [1775, 1773, 1790] +Triangle: [1773, 1771, 1789] +Triangle: [1771, 1767, 1788] +Triangle: [1767, 1769, 1787] +Triangle: [1765, 1786, 1787] +Triangle: [1765, 1763, 1785] +Triangle: [1763, 1761, 1784] +Triangle: [1759, 1783, 1784] +Triangle: [1757, 1782, 1783] +Triangle: [1757, 1755, 1781] +Triangle: [1755, 1753, 1780] +Triangle: [1751, 1779, 1780] +Triangle: [1749, 1778, 1779] +Triangle: [1746, 1744, 1743] +Triangle: [1745, 1748, 1792] +Triangle: [1750, 1794, 1792] +Triangle: [1793, 1794, 1750] +Triangle: [1795, 1793, 1752] +Triangle: [1796, 1795, 1754] +Triangle: [1758, 1797, 1796] +Triangle: [1760, 1798, 1797] +Triangle: [1799, 1798, 1760] +Triangle: [1806, 1807, 1814] +Triangle: [1807, 1808, 1816] +Triangle: [1800, 1801, 1817] +Triangle: [1808, 1809, 1819] +Triangle: [1817, 1801, 1802] +Triangle: [1809, 1810, 1821] +Triangle: [1820, 1802, 1803] +Triangle: [1821, 1810, 1811] +Triangle: [1822, 1803, 1804] +Triangle: [1823, 1811, 1812] +Triangle: [1824, 1804, 1805] +Triangle: [1812, 1813, 1827] +Triangle: [1826, 1805, 1806] +Triangle: [1833, 1800, 1818] +Triangle: [1834, 1818, 1778] +Triangle: [1783, 1826, 1815] +Triangle: [1825, 1827, 1791] +Triangle: [1782, 1824, 1826] +Triangle: [1789, 1823, 1825] +Triangle: [1781, 1822, 1824] +Triangle: [1788, 1821, 1823] +Triangle: [1780, 1820, 1822] +Triangle: [1819, 1821, 1788] +Triangle: [1779, 1817, 1820] +Triangle: [1816, 1819, 1787] +Triangle: [1818, 1817, 1779] +Triangle: [1814, 1816, 1786] +Triangle: [1815, 1814, 1785] +Triangle: [1791, 1827, 1834] +Triangle: [1827, 1813, 1833] +Triangle: [1791, 1832, 1831] +Triangle: [1775, 1831, 1830] +Triangle: [1829, 1830, 1738] +Triangle: [1776, 1829, 1828] +Triangle: [452, 1704, 1828] +Triangle: [1631, 1680, 1691] +Triangle: [1792, 1836, 1744] +Triangle: [1836, 1835, 1692] +Triangle: [1835, 1632, 1691] +Triangle: [1839, 1837, 1835] +Triangle: [1837, 1839, 1840] +Triangle: [1634, 1632, 1835] +Triangle: [1633, 1634, 1837] +Triangle: [1793, 1795, 1841] +Triangle: [1841, 1795, 1839] +Triangle: [1797, 1844, 1843] +Triangle: [1627, 1633, 1838] +Triangle: [1846, 1845, 1670] +Triangle: [1845, 1674, 1657] +Triangle: [1848, 1846, 1838] +Triangle: [1848, 1847, 1845] +Triangle: [1674, 1845, 1847] +Triangle: [1842, 1851, 1848] +Triangle: [1848, 1851, 1850] +Triangle: [1849, 1658, 1847] +Triangle: [1615, 1658, 1849] +Triangle: [1623, 1614, 1852] +Triangle: [1849, 1853, 1852] +Triangle: [1613, 1612, 1852] +Triangle: [1583, 1613, 1853] +Triangle: [1582, 1583, 1854] +Triangle: [1850, 1854, 1853] +Triangle: [1855, 1854, 1850] +Triangle: [1843, 1855, 1851] +Triangle: [1844, 1856, 1855] +Triangle: [1582, 1855, 1856] +Triangle: [1575, 1856, 1858] +Triangle: [1856, 1844, 1857] +Triangle: [1798, 1857, 1844] +Triangle: [1584, 1858, 1860] +Triangle: [1858, 1857, 1859] +Triangle: [1799, 1859, 1857] +Triangle: [1585, 1860, 1862] +Triangle: [1860, 1859, 1861] +Triangle: [1863, 1861, 1859] +Triangle: [1863, 1799, 1762] +Triangle: [1867, 1705, 453] +Triangle: [1867, 1866, 1777] +Triangle: [1772, 1777, 1866] +Triangle: [1770, 1866, 1865] +Triangle: [1865, 1864, 1768] +Triangle: [1864, 1863, 1764] +Triangle: [1863, 1864, 1871] +Triangle: [1864, 1865, 1870] +Triangle: [1865, 1866, 1869] +Triangle: [1867, 1868, 1869] +Triangle: [1868, 1867, 455] +Triangle: [454, 664, 1872] +Triangle: [1609, 1862, 1876] +Triangle: [1862, 1861, 1877] +Triangle: [1871, 1875, 1877] +Triangle: [1870, 1874, 1875] +Triangle: [1870, 1869, 1873] +Triangle: [1869, 1868, 1872] +Triangle: [1880, 1878, 1876] +Triangle: [1882, 1878, 1880] +Triangle: [673, 1879, 1881] +Triangle: [1879, 1882, 1883] +Triangle: [1608, 1876, 1878] +Triangle: [1889, 1890, 1611] +Triangle: [1601, 1886, 1888] +Triangle: [1888, 1889, 1607] +Triangle: [298, 1548, 1885] +Triangle: [1603, 1887, 1884] +Triangle: [1600, 1885, 1887] +Triangle: [1597, 1886, 1884] +Triangle: [1882, 1890, 1610] +Triangle: [1890, 1882, 1879] +Triangle: [369, 1611, 1879] +Triangle: [1875, 1874, 1893] +Triangle: [1874, 1873, 1892] +Triangle: [1891, 1872, 664] +Triangle: [1873, 1872, 1891] +Triangle: [1894, 1880, 1877] +Triangle: [1894, 1893, 1883] +Triangle: [1893, 1892, 1881] +Triangle: [1895, 1881, 1892] +Triangle: [693, 1895, 1891] +Triangle: [676, 1881, 1895] +Triangle: [1841, 1836, 1792] +Triangle: [358, 1603, 1602] +Triangle: [695, 1602, 1601] +Triangle: [210, 206, 1897] +Triangle: [1903, 1904, 1911] +Triangle: [1898, 1325, 1326] +Triangle: [1900, 1322, 1316] +Triangle: [1901, 1316, 1325] +Triangle: [1902, 1903, 1910] +Triangle: [1899, 1902, 1909] +Triangle: [1324, 1322, 1900] +Triangle: [1907, 1898, 1899] +Triangle: [1905, 1900, 1901] +Triangle: [1906, 1901, 1898] +Triangle: [1910, 1911, 2427] +Triangle: [1909, 1910, 2426] +Triangle: [1908, 1909, 2419] +Triangle: [1911, 1318, 2421] +Triangle: [1904, 1317, 1318] +Triangle: [1924, 1916, 1321] +Triangle: [1923, 1924, 1320] +Triangle: [1922, 1923, 1319] +Triangle: [1317, 1921, 1922] +Triangle: [1317, 1314, 1920] +Triangle: [1315, 1919, 1920] +Triangle: [1326, 1918, 1919] +Triangle: [1325, 1917, 1918] +Triangle: [1316, 1914, 1917] +Triangle: [1367, 1366, 1912] +Triangle: [1323, 1912, 1915] +Triangle: [1324, 1915, 1913] +Triangle: [1322, 1913, 1914] +Triangle: [1932, 1522, 262] +Triangle: [1933, 1521, 1522] +Triangle: [1931, 1520, 1521] +Triangle: [1930, 1519, 1520] +Triangle: [1929, 1516, 1519] +Triangle: [1929, 1928, 1515] +Triangle: [1928, 1927, 1517] +Triangle: [1927, 1926, 1514] +Triangle: [1926, 1925, 1518] +Triangle: [1925, 724, 257] +Triangle: [5227, 1932, 732] +Triangle: [5207, 1940, 1941] +Triangle: [1931, 1933, 5228] +Triangle: [5229, 5226, 1930] +Triangle: [5225, 1929, 1930] +Triangle: [5224, 1928, 1929] +Triangle: [5223, 1927, 1928] +Triangle: [5222, 1926, 1927] +Triangle: [5222, 5221, 1925] +Triangle: [724, 1925, 5221] +Triangle: [2375, 1956, 1944] +Triangle: [2377, 1994, 1957] +Triangle: [1967, 1968, 2315] +Triangle: [1982, 1975, 1976] +Triangle: [1970, 1969, 1988] +Triangle: [1981, 1976, 1977] +Triangle: [2281, 1947, 1948] +Triangle: [1959, 1960, 2384] +Triangle: [1997, 1996, 2381] +Triangle: [2001, 1945, 2287] +Triangle: [1993, 1964, 1973] +Triangle: [2374, 1962, 1963] +Triangle: [1943, 1997, 2382] +Triangle: [2278, 1949, 1947] +Triangle: [2195, 2308, 1006] +Triangle: [2088, 1984, 1983] +Triangle: [1983, 1974, 1975] +Triangle: [2002, 2004, 2034] +Triangle: [2090, 1981, 1980] +Triangle: [1985, 1987, 2085] +Triangle: [2084, 1983, 1982] +Triangle: [2329, 1973, 1964] +Triangle: [1989, 1990, 2091] +Triangle: [1992, 1965, 1964] +Triangle: [1980, 1977, 1978] +Triangle: [1986, 1985, 2093] +Triangle: [1990, 1991, 2094] +Triangle: [1979, 1986, 2092] +Triangle: [1991, 1992, 2082] +Triangle: [1985, 1972, 1970] +Triangle: [2082, 1992, 1993] +Triangle: [1968, 1967, 1990] +Triangle: [1987, 1988, 2095] +Triangle: [1979, 1978, 1971] +Triangle: [2089, 1982, 1981] +Triangle: [1966, 1965, 1992] +Triangle: [1986, 1971, 1972] +Triangle: [1984, 1973, 1974] +Triangle: [1980, 1979, 2083] +Triangle: [1967, 1966, 1991] +Triangle: [2086, 1993, 1984] +Triangle: [2275, 1998, 1999] +Triangle: [1955, 1954, 2282] +Triangle: [1952, 1951, 2279] +Triangle: [1954, 1953, 2289] +Triangle: [1953, 1952, 2280] +Triangle: [2385, 1963, 1995] +Triangle: [1958, 1959, 2380] +Triangle: [1960, 1961, 2387] +Triangle: [2000, 2001, 2285] +Triangle: [1945, 1946, 2276] +Triangle: [2283, 1999, 2000] +Triangle: [2288, 1950, 1949] +Triangle: [1944, 1943, 2376] +Triangle: [2002, 2003, 2005] +Triangle: [2003, 2002, 2006] +Triangle: [2065, 2010, 2007] +Triangle: [2010, 2065, 2066] +Triangle: [2003, 2007, 2010] +Triangle: [2003, 2008, 2009] +Triangle: [2013, 2066, 2064] +Triangle: [2010, 2013, 2011] +Triangle: [2009, 2008, 2011] +Triangle: [2011, 2013, 2014] +Triangle: [2059, 2018, 2019] +Triangle: [2019, 2017, 2058] +Triangle: [2068, 2078, 2061] +Triangle: [2030, 2029, 2016] +Triangle: [2017, 2016, 2063] +Triangle: [2032, 2030, 2017] +Triangle: [2004, 2005, 2021] +Triangle: [2023, 2022, 2020] +Triangle: [2023, 2025, 2094] +Triangle: [2025, 2027, 2091] +Triangle: [2021, 2024, 2025] +Triangle: [2005, 2009, 2024] +Triangle: [2027, 2028, 2096] +Triangle: [2024, 2026, 2027] +Triangle: [2009, 2012, 2026] +Triangle: [2014, 2027, 2026] +Triangle: [831, 818, 817] +Triangle: [2032, 2031, 2092] +Triangle: [2030, 2032, 2093] +Triangle: [2004, 2020, 2044] +Triangle: [2029, 2030, 2085] +Triangle: [2002, 2033, 2035] +Triangle: [2020, 2022, 2045] +Triangle: [2035, 2038, 2062] +Triangle: [2038, 2040, 2060] +Triangle: [2036, 2038, 2035] +Triangle: [2034, 2037, 2036] +Triangle: [2039, 2038, 2036] +Triangle: [2060, 2040, 2041] +Triangle: [2018, 2031, 2032] +Triangle: [2049, 2041, 2040] +Triangle: [2018, 2059, 2053] +Triangle: [2056, 2042, 2043] +Triangle: [2041, 2049, 2050] +Triangle: [2041, 2042, 2056] +Triangle: [2043, 2042, 2050] +Triangle: [2006, 2035, 2054] +Triangle: [2022, 2086, 2088] +Triangle: [2084, 2047, 2045] +Triangle: [2047, 2084, 2089] +Triangle: [2045, 2047, 2046] +Triangle: [2034, 2044, 2046] +Triangle: [2046, 2047, 2039] +Triangle: [2090, 2049, 2048] +Triangle: [2031, 2051, 2083] +Triangle: [2051, 2050, 2087] +Triangle: [2007, 2006, 2061] +Triangle: [2049, 2090, 2087] +Triangle: [2378, 1995, 1994] +Triangle: [2383, 1957, 1956] +Triangle: [2059, 2076, 2067] +Triangle: [2286, 2276, 1946] +Triangle: [2063, 2080, 2070] +Triangle: [2056, 2075, 2069] +Triangle: [2079, 2068, 2054] +Triangle: [2057, 2069, 2077] +Triangle: [2065, 2081, 2072] +Triangle: [2055, 2074, 2081] +Triangle: [2066, 2072, 2071] +Triangle: [2078, 2074, 2055] +Triangle: [2053, 2067, 2075] +Triangle: [2070, 2073, 2052] +Triangle: [2077, 2079, 2062] +Triangle: [2052, 2073, 2076] +Triangle: [2106, 2097, 2203] +Triangle: [2320, 2235, 2234] +Triangle: [2321, 2324, 2227] +Triangle: [2327, 2323, 2239] +Triangle: [2322, 2237, 2230] +Triangle: [2323, 2325, 2229] +Triangle: [2326, 2234, 2233] +Triangle: [2328, 2327, 2238] +Triangle: [2316, 2228, 2227] +Triangle: [2318, 2231, 2228] +Triangle: [2328, 2240, 2235] +Triangle: [2325, 2317, 2230] +Triangle: [2292, 2303, 2227] +Triangle: [2296, 2297, 2229] +Triangle: [2231, 2293, 2292] +Triangle: [2029, 2028, 2015] +Triangle: [2235, 2301, 2302] +Triangle: [2276, 2286, 2078] +Triangle: [2303, 2294, 2236] +Triangle: [2291, 2296, 2230] +Triangle: [2298, 2299, 2238] +Triangle: [2229, 2297, 2298] +Triangle: [2337, 2335, 2233] +Triangle: [2299, 2300, 2240] +Triangle: [2232, 2305, 2293] +Triangle: [2240, 2300, 2301] +Triangle: [917, 916, 1944] +Triangle: [916, 915, 1943] +Triangle: [920, 917, 1956] +Triangle: [2112, 1956, 1957] +Triangle: [920, 2112, 2113] +Triangle: [2232, 2315, 2319] +Triangle: [2161, 2249, 2250] +Triangle: [2170, 2174, 2120] +Triangle: [2206, 2197, 2190] +Triangle: [2122, 2253, 2252] +Triangle: [2124, 2254, 2253] +Triangle: [2126, 2256, 2255] +Triangle: [2178, 2128, 2330] +Triangle: [2130, 2259, 2258] +Triangle: [2244, 2160, 2142] +Triangle: [2183, 2184, 2140] +Triangle: [2134, 2261, 2260] +Triangle: [2136, 2262, 2261] +Triangle: [2138, 2263, 2262] +Triangle: [2138, 2140, 2264] +Triangle: [2243, 2142, 2266] +Triangle: [2144, 2268, 2267] +Triangle: [2142, 2147, 2269] +Triangle: [2148, 2270, 2268] +Triangle: [2150, 2271, 2270] +Triangle: [2150, 2152, 2272] +Triangle: [2152, 2154, 2273] +Triangle: [2168, 2172, 2156] +Triangle: [2250, 2274, 2156] +Triangle: [2169, 2167, 2166] +Triangle: [2115, 2251, 2249] +Triangle: [1950, 1951, 2388] +Triangle: [2163, 2147, 2142] +Triangle: [2130, 2132, 2260] +Triangle: [2183, 2138, 2136] +Triangle: [2182, 2136, 2134] +Triangle: [2181, 2134, 2132] +Triangle: [2130, 2179, 2180] +Triangle: [2179, 2130, 2333] +Triangle: [2130, 2128, 2333] +Triangle: [2147, 2163, 2226] +Triangle: [2124, 2176, 2216] +Triangle: [2122, 2175, 2176] +Triangle: [2122, 2120, 2174] +Triangle: [2190, 2185, 2172] +Triangle: [2274, 2273, 2154] +Triangle: [2115, 2161, 2171] +Triangle: [2114, 2185, 2171] +Triangle: [2114, 2156, 2172] +Triangle: [2173, 2172, 2168] +Triangle: [2167, 2169, 2119] +Triangle: [2154, 2152, 2167] +Triangle: [2152, 2150, 2166] +Triangle: [2150, 2148, 2165] +Triangle: [2144, 2164, 2165] +Triangle: [2099, 2187, 2186] +Triangle: [2189, 2188, 2159] +Triangle: [2191, 2190, 2197] +Triangle: [2171, 2185, 2190] +Triangle: [2217, 2194, 2193] +Triangle: [2308, 1943, 915] +Triangle: [2288, 2279, 1951] +Triangle: [2288, 2080, 2071] +Triangle: [2080, 2063, 2064] +Triangle: [2388, 2387, 1961] +Triangle: [2063, 2016, 2015] +Triangle: [2028, 2029, 2095] +Triangle: [2284, 1948, 1998] +Triangle: [2043, 2051, 2031] +Triangle: [2086, 2022, 2023] +Triangle: [2189, 2198, 2197] +Triangle: [2100, 2202, 2187] +Triangle: [2219, 2201, 2194] +Triangle: [2158, 2210, 2200] +Triangle: [2199, 2198, 2189] +Triangle: [2197, 2206, 2205] +Triangle: [2159, 2211, 2204] +Triangle: [2218, 2220, 2295] +Triangle: [2097, 2098, 2186] +Triangle: [2192, 2191, 2198] +Triangle: [2207, 2192, 2199] +Triangle: [2212, 2207, 2200] +Triangle: [2221, 2208, 2201] +Triangle: [2170, 2171, 2191] +Triangle: [2251, 2115, 2120] +Triangle: [2206, 2173, 2119] +Triangle: [2208, 2212, 2210] +Triangle: [2188, 2205, 2211] +Triangle: [2201, 2210, 2158] +Triangle: [2194, 2158, 2159] +Triangle: [2205, 2119, 2169] +Triangle: [2118, 2204, 2211] +Triangle: [2174, 2170, 2192] +Triangle: [2174, 2207, 2212] +Triangle: [2175, 2212, 2208] +Triangle: [2176, 2208, 2221] +Triangle: [2310, 2313, 2209] +Triangle: [2209, 2313, 2311] +Triangle: [2193, 2204, 2220] +Triangle: [2202, 2311, 2312] +Triangle: [2187, 2312, 2309] +Triangle: [2314, 2310, 2177] +Triangle: [2214, 2255, 2254] +Triangle: [2213, 2220, 2204] +Triangle: [2165, 2213, 2118] +Triangle: [2222, 2295, 2220] +Triangle: [2164, 2222, 2213] +Triangle: [2241, 2236, 2294] +Triangle: [2225, 2226, 2164] +Triangle: [2225, 2267, 2269] +Triangle: [2226, 2223, 2222] +Triangle: [2223, 2226, 2163] +Triangle: [2290, 2291, 2237] +Triangle: [2104, 2181, 2180] +Triangle: [2180, 2179, 2103] +Triangle: [2101, 2209, 2202] +Triangle: [2128, 2258, 2257] +Triangle: [2179, 2333, 2334] +Triangle: [2096, 2095, 1988] +Triangle: [2248, 2247, 2101] +Triangle: [2106, 2163, 2160] +Triangle: [2182, 2181, 2104] +Triangle: [2183, 2182, 2111] +Triangle: [2140, 2243, 2265] +Triangle: [2184, 2244, 2243] +Triangle: [2108, 2107, 2160] +Triangle: [2109, 2108, 2244] +Triangle: [2184, 2183, 2110] +Triangle: [2330, 2257, 2256] +Triangle: [2246, 2330, 2126] +Triangle: [2135, 2137, 2139] +Triangle: [2116, 2250, 2249] +Triangle: [2251, 2252, 2121] +Triangle: [2252, 2253, 2123] +Triangle: [2253, 2254, 2125] +Triangle: [2255, 2256, 2127] +Triangle: [2257, 2258, 2129] +Triangle: [2258, 2259, 2131] +Triangle: [2259, 2260, 2133] +Triangle: [2260, 2261, 2135] +Triangle: [2135, 2261, 2262] +Triangle: [2137, 2262, 2263] +Triangle: [2263, 2264, 2141] +Triangle: [2265, 2266, 2143] +Triangle: [2224, 2267, 2268] +Triangle: [2266, 2269, 2146] +Triangle: [2145, 2268, 2270] +Triangle: [2149, 2270, 2271] +Triangle: [2151, 2271, 2272] +Triangle: [2153, 2272, 2273] +Triangle: [2274, 2250, 2116] +Triangle: [2273, 2274, 2157] +Triangle: [2249, 2251, 2117] +Triangle: [2254, 2255, 2215] +Triangle: [2146, 2269, 2267] +Triangle: [2264, 2265, 2242] +Triangle: [2256, 2257, 2245] +Triangle: [2131, 2133, 2139] +Triangle: [2129, 2131, 2141] +Triangle: [2245, 2129, 2242] +Triangle: [2146, 2127, 2245] +Triangle: [2127, 2146, 2224] +Triangle: [2145, 2125, 2215] +Triangle: [2125, 2145, 2149] +Triangle: [2123, 2149, 2151] +Triangle: [2121, 2151, 2153] +Triangle: [2155, 2162, 2117] +Triangle: [2162, 2155, 2157] +Triangle: [2076, 2284, 2275] +Triangle: [2290, 2294, 2097] +Triangle: [2080, 2288, 2278] +Triangle: [2075, 2283, 2277] +Triangle: [2287, 2276, 2068] +Triangle: [2277, 2285, 2077] +Triangle: [2081, 2289, 2280] +Triangle: [2282, 2289, 2081] +Triangle: [2072, 2280, 2279] +Triangle: [2286, 2282, 2074] +Triangle: [2067, 2275, 2283] +Triangle: [2315, 1968, 1969] +Triangle: [2278, 2281, 2073] +Triangle: [2285, 2287, 2079] +Triangle: [2073, 2281, 2284] +Triangle: [2329, 2241, 2237] +Triangle: [2302, 2103, 2334] +Triangle: [2105, 2103, 2302] +Triangle: [2104, 2105, 2301] +Triangle: [2299, 2111, 2104] +Triangle: [2298, 2110, 2111] +Triangle: [2297, 2109, 2110] +Triangle: [2296, 2108, 2109] +Triangle: [2296, 2291, 2107] +Triangle: [2291, 2290, 2106] +Triangle: [2203, 2295, 2222] +Triangle: [2098, 2097, 2294] +Triangle: [2099, 2098, 2303] +Triangle: [2293, 2100, 2099] +Triangle: [2305, 2101, 2100] +Triangle: [2304, 2102, 2247] +Triangle: [1007, 1124, 2307] +Triangle: [2306, 2307, 1124] +Triangle: [2331, 2246, 2177] +Triangle: [2247, 2331, 2209] +Triangle: [1996, 1958, 2386] +Triangle: [2311, 2219, 2217] +Triangle: [2312, 2217, 2218] +Triangle: [2310, 2216, 2221] +Triangle: [2295, 2203, 2186] +Triangle: [2216, 2310, 2314] +Triangle: [2313, 2221, 2219] +Triangle: [1973, 2329, 2322] +Triangle: [2233, 2335, 2336] +Triangle: [1975, 2317, 2325] +Triangle: [1971, 2328, 2320] +Triangle: [1966, 1967, 2318] +Triangle: [1965, 1966, 2316] +Triangle: [1978, 2327, 2328] +Triangle: [2326, 2319, 1969] +Triangle: [1976, 2325, 2323] +Triangle: [1974, 2322, 2317] +Triangle: [1978, 1977, 2323] +Triangle: [1964, 1965, 2324] +Triangle: [1972, 2320, 2326] +Triangle: [2329, 2321, 2236] +Triangle: [2231, 2318, 2315] +Triangle: [1989, 1988, 1969] +Triangle: [2302, 2332, 2337] +Triangle: [2102, 2304, 2332] +Triangle: [2335, 2304, 2248] +Triangle: [2304, 2335, 2337] +Triangle: [2178, 2102, 2334] +Triangle: [2305, 2232, 2336] +Triangle: [2102, 2178, 2331] +Triangle: [2348, 2347, 2346] +Triangle: [2348, 2349, 1009] +Triangle: [2345, 2350, 2371] +Triangle: [2351, 2350, 2345] +Triangle: [2352, 1170, 921] +Triangle: [1170, 2352, 2348] +Triangle: [2347, 2348, 2352] +Triangle: [2353, 2352, 2113] +Triangle: [2354, 2346, 2347] +Triangle: [1994, 2354, 2353] +Triangle: [2346, 2354, 2355] +Triangle: [2356, 2344, 2345] +Triangle: [1995, 2355, 2354] +Triangle: [1963, 2356, 2355] +Triangle: [2344, 2356, 2357] +Triangle: [2342, 2343, 2357] +Triangle: [2341, 2342, 2358] +Triangle: [2340, 2341, 2359] +Triangle: [2339, 2340, 2360] +Triangle: [2357, 2356, 1963] +Triangle: [2358, 2357, 1962] +Triangle: [2359, 2358, 2196] +Triangle: [2360, 2359, 1961] +Triangle: [2361, 2360, 1960] +Triangle: [2363, 2338, 2339] +Triangle: [2363, 2361, 1959] +Triangle: [2362, 2338, 2363] +Triangle: [2364, 2306, 2363] +Triangle: [1996, 2365, 2364] +Triangle: [2307, 2306, 2364] +Triangle: [2195, 2307, 2365] +Triangle: [2366, 2365, 1996] +Triangle: [1997, 1943, 2308] +Triangle: [2362, 2306, 1125] +Triangle: [1186, 2338, 2362] +Triangle: [1934, 2338, 1186] +Triangle: [1935, 2339, 2338] +Triangle: [1936, 2340, 2339] +Triangle: [2341, 2340, 1936] +Triangle: [1938, 2342, 2341] +Triangle: [1939, 2343, 2342] +Triangle: [2367, 2343, 1939] +Triangle: [2367, 2351, 2344] +Triangle: [2368, 2367, 1942] +Triangle: [2369, 2351, 2367] +Triangle: [2350, 2351, 2369] +Triangle: [2349, 2346, 2371] +Triangle: [1009, 2349, 2372] +Triangle: [2350, 2370, 2372] +Triangle: [2368, 1941, 1940] +Triangle: [742, 923, 2373] +Triangle: [2369, 2368, 2373] +Triangle: [923, 1105, 2370] +Triangle: [2372, 2370, 1105] +Triangle: [2381, 2386, 1955] +Triangle: [1951, 1952, 2387] +Triangle: [2374, 2388, 2196] +Triangle: [1998, 2383, 2375] +Triangle: [1947, 2378, 2377] +Triangle: [2379, 2376, 2001] +Triangle: [2384, 2387, 1952] +Triangle: [2386, 2380, 1954] +Triangle: [1949, 2385, 2378] +Triangle: [2376, 2382, 1945] +Triangle: [1950, 2374, 2385] +Triangle: [2382, 2381, 1946] +Triangle: [2380, 2384, 1953] +Triangle: [1948, 2377, 2383] +Triangle: [1999, 2375, 2379] +Triangle: [1338, 2389, 2390] +Triangle: [1336, 2393, 2394] +Triangle: [1331, 1332, 2396] +Triangle: [1332, 1333, 2395] +Triangle: [1339, 1328, 2400] +Triangle: [1333, 1334, 2394] +Triangle: [1338, 1339, 2401] +Triangle: [1330, 1331, 2397] +Triangle: [1335, 2391, 2392] +Triangle: [1330, 2398, 2399] +Triangle: [1337, 2392, 2393] +Triangle: [1328, 1327, 2399] +Triangle: [1329, 2390, 2391] +Triangle: [2407, 2460, 1364] +Triangle: [2406, 2407, 1358] +Triangle: [2458, 2414, 1365] +Triangle: [1353, 2402, 2459] +Triangle: [2414, 2409, 1360] +Triangle: [2460, 2462, 1363] +Triangle: [1355, 2404, 2411] +Triangle: [1363, 2462, 2463] +Triangle: [1362, 2411, 2408] +Triangle: [1361, 2463, 2405] +Triangle: [1354, 2403, 2404] +Triangle: [2409, 2403, 1354] +Triangle: [2408, 2402, 1353] +Triangle: [2427, 2421, 2449] +Triangle: [2425, 2419, 2444] +Triangle: [2419, 2426, 2452] +Triangle: [2426, 2427, 2453] +Triangle: [2449, 2421, 2423] +Triangle: [2446, 2423, 2422] +Triangle: [2422, 2416, 2441] +Triangle: [2450, 2424, 2425] +Triangle: [2448, 2420, 2418] +Triangle: [2415, 2420, 2448] +Triangle: [2443, 2418, 2417] +Triangle: [2442, 2417, 2424] +Triangle: [2416, 2415, 2447] +Triangle: [2428, 2435, 1340] +Triangle: [1343, 2429, 2436] +Triangle: [1342, 2436, 2437] +Triangle: [2464, 2454, 1345] +Triangle: [1347, 2431, 2428] +Triangle: [2465, 2464, 1346] +Triangle: [1344, 2437, 2431] +Triangle: [2466, 2465, 1348] +Triangle: [2434, 2429, 1343] +Triangle: [2435, 2456, 1351] +Triangle: [2454, 2434, 1350] +Triangle: [1351, 2456, 2440] +Triangle: [1352, 2440, 2466] +Triangle: [1308, 2441, 2447] +Triangle: [1303, 2442, 2450] +Triangle: [1309, 2443, 2442] +Triangle: [2447, 2448, 1311] +Triangle: [2448, 2443, 1309] +Triangle: [1312, 2450, 2451] +Triangle: [2445, 2441, 1308] +Triangle: [2446, 2445, 1307] +Triangle: [2449, 2446, 1306] +Triangle: [1301, 2452, 2453] +Triangle: [1302, 2444, 2452] +Triangle: [1313, 2451, 2444] +Triangle: [2453, 2449, 1305] +Triangle: [2455, 2454, 2438] +Triangle: [2439, 2456, 2457] +Triangle: [2405, 2458, 2455] +Triangle: [2457, 2459, 2406] +Triangle: [2461, 2413, 2460] +Triangle: [2459, 2461, 2407] +Triangle: [2460, 2413, 2412] +Triangle: [2462, 2412, 2410] +Triangle: [2463, 2410, 2458] +Triangle: [2454, 2464, 2430] +Triangle: [2464, 2465, 2432] +Triangle: [2465, 2466, 2433] +Triangle: [2440, 2456, 2439] +Triangle: [2433, 2466, 2440] +Triangle: [2515, 2516, 2514] +Triangle: [2511, 2810, 2809] +Triangle: [2559, 2539, 2538] +Triangle: [2560, 2537, 2536] +Triangle: [2566, 2535, 2541] +Triangle: [2559, 2562, 2540] +Triangle: [2566, 2565, 2536] +Triangle: [2560, 2564, 2538] +Triangle: [2563, 2542, 2540] +Triangle: [2561, 2541, 2542] +Triangle: [2543, 2537, 2538] +Triangle: [2533, 2548, 2551] +Triangle: [2534, 2551, 2550] +Triangle: [2536, 2537, 2543] +Triangle: [2542, 2543, 2539] +Triangle: [2541, 2535, 2543] +Triangle: [2530, 2545, 2546] +Triangle: [2470, 2528, 2547] +Triangle: [2532, 2550, 2544] +Triangle: [2549, 2548, 2533] +Triangle: [2528, 2529, 2546] +Triangle: [2531, 2544, 2545] +Triangle: [2521, 2522, 2529] +Triangle: [2523, 2530, 2529] +Triangle: [2524, 2531, 2530] +Triangle: [2525, 2532, 2531] +Triangle: [2525, 2527, 2534] +Triangle: [2526, 2533, 2534] +Triangle: [2526, 2519, 2470] +Triangle: [2521, 2528, 2470] +Triangle: [2522, 2521, 2552] +Triangle: [2524, 2555, 2556] +Triangle: [2522, 2553, 2554] +Triangle: [2527, 2525, 2556] +Triangle: [2527, 2558, 2557] +Triangle: [2524, 2523, 2554] +Triangle: [2519, 2526, 2557] +Triangle: [2552, 2521, 2519] +Triangle: [2548, 2561, 2563] +Triangle: [2551, 2563, 2562] +Triangle: [2546, 2545, 2564] +Triangle: [2549, 2547, 2565] +Triangle: [2544, 2550, 2562] +Triangle: [2549, 2566, 2561] +Triangle: [2547, 2546, 2560] +Triangle: [2545, 2544, 2559] +Triangle: [2567, 2520, 2517] +Triangle: [2569, 2552, 2517] +Triangle: [2552, 2569, 2571] +Triangle: [2553, 2571, 2572] +Triangle: [2554, 2572, 2574] +Triangle: [2555, 2574, 2575] +Triangle: [2558, 2556, 2575] +Triangle: [2567, 2557, 2558] +Triangle: [2520, 2518, 2585] +Triangle: [2494, 2518, 2520] +Triangle: [2567, 2576, 2590] +Triangle: [2576, 2575, 2589] +Triangle: [2574, 2588, 2589] +Triangle: [2572, 2587, 2588] +Triangle: [2586, 2587, 2572] +Triangle: [2569, 2585, 2586] +Triangle: [2568, 2570, 2586] +Triangle: [2480, 2514, 2570] +Triangle: [2586, 2570, 2573] +Triangle: [2516, 2573, 2570] +Triangle: [2581, 2597, 2598] +Triangle: [2597, 2599, 2600] +Triangle: [2646, 2626, 2625] +Triangle: [2647, 2624, 2623] +Triangle: [2653, 2622, 2628] +Triangle: [2646, 2649, 2627] +Triangle: [2653, 2652, 2623] +Triangle: [2647, 2651, 2625] +Triangle: [2650, 2629, 2627] +Triangle: [2648, 2628, 2629] +Triangle: [2630, 2624, 2625] +Triangle: [2620, 2635, 2638] +Triangle: [2621, 2638, 2637] +Triangle: [2623, 2624, 2630] +Triangle: [2629, 2630, 2626] +Triangle: [2628, 2622, 2630] +Triangle: [2617, 2632, 2633] +Triangle: [2604, 2615, 2634] +Triangle: [2618, 2619, 2637] +Triangle: [2604, 2636, 2635] +Triangle: [2615, 2616, 2633] +Triangle: [2618, 2631, 2632] +Triangle: [2609, 2616, 2615] +Triangle: [2610, 2617, 2616] +Triangle: [2611, 2618, 2617] +Triangle: [2612, 2619, 2618] +Triangle: [2612, 2614, 2621] +Triangle: [2614, 2613, 2620] +Triangle: [2613, 2606, 2604] +Triangle: [2608, 2615, 2604] +Triangle: [2608, 2639, 2640] +Triangle: [2612, 2611, 2642] +Triangle: [2609, 2640, 2641] +Triangle: [2614, 2612, 2643] +Triangle: [2613, 2614, 2645] +Triangle: [2611, 2610, 2641] +Triangle: [2606, 2613, 2644] +Triangle: [2639, 2608, 2606] +Triangle: [2635, 2648, 2650] +Triangle: [2638, 2650, 2649] +Triangle: [2633, 2632, 2651] +Triangle: [2636, 2634, 2652] +Triangle: [2631, 2637, 2649] +Triangle: [2636, 2653, 2648] +Triangle: [2634, 2633, 2647] +Triangle: [2632, 2631, 2646] +Triangle: [2708, 2800, 2806] +Triangle: [2793, 2639, 2605] +Triangle: [2655, 2793, 2791] +Triangle: [2798, 2793, 2655] +Triangle: [2794, 2798, 2583] +Triangle: [2794, 2657, 2658] +Triangle: [2796, 2795, 2658] +Triangle: [2792, 2644, 2645] +Triangle: [2700, 2680, 2679] +Triangle: [2701, 2678, 2677] +Triangle: [2707, 2676, 2682] +Triangle: [2700, 2703, 2681] +Triangle: [2707, 2706, 2677] +Triangle: [2701, 2705, 2679] +Triangle: [2704, 2683, 2681] +Triangle: [2702, 2682, 2683] +Triangle: [2684, 2678, 2679] +Triangle: [2675, 2674, 2689] +Triangle: [2675, 2692, 2691] +Triangle: [2676, 2677, 2678] +Triangle: [2683, 2684, 2680] +Triangle: [2682, 2676, 2684] +Triangle: [2671, 2686, 2687] +Triangle: [2473, 2669, 2688] +Triangle: [2673, 2691, 2685] +Triangle: [2690, 2689, 2674] +Triangle: [2670, 2687, 2688] +Triangle: [2672, 2685, 2686] +Triangle: [2663, 2670, 2669] +Triangle: [2664, 2671, 2670] +Triangle: [2665, 2672, 2671] +Triangle: [2665, 2666, 2673] +Triangle: [2666, 2668, 2675] +Triangle: [2668, 2667, 2674] +Triangle: [2667, 2468, 2473] +Triangle: [2662, 2669, 2473] +Triangle: [2662, 2693, 2694] +Triangle: [2666, 2665, 2696] +Triangle: [2663, 2694, 2695] +Triangle: [2668, 2666, 2697] +Triangle: [2667, 2668, 2699] +Triangle: [2665, 2664, 2695] +Triangle: [2468, 2667, 2698] +Triangle: [2693, 2662, 2468] +Triangle: [2689, 2702, 2704] +Triangle: [2692, 2704, 2703] +Triangle: [2686, 2705, 2701] +Triangle: [2690, 2688, 2706] +Triangle: [2685, 2691, 2703] +Triangle: [2690, 2707, 2702] +Triangle: [2688, 2687, 2701] +Triangle: [2685, 2700, 2705] +Triangle: [2768, 2767, 2602] +Triangle: [2801, 2693, 2471] +Triangle: [2709, 2801, 2799] +Triangle: [2801, 2709, 2710] +Triangle: [2802, 2710, 2711] +Triangle: [2803, 2711, 2712] +Triangle: [2805, 2804, 2712] +Triangle: [2800, 2698, 2699] +Triangle: [2756, 2736, 2735] +Triangle: [2757, 2734, 2733] +Triangle: [2763, 2732, 2738] +Triangle: [2756, 2759, 2737] +Triangle: [2763, 2762, 2733] +Triangle: [2757, 2761, 2735] +Triangle: [2760, 2739, 2737] +Triangle: [2758, 2738, 2739] +Triangle: [2734, 2735, 2736] +Triangle: [2730, 2745, 2748] +Triangle: [2729, 2731, 2748] +Triangle: [2733, 2734, 2740] +Triangle: [2739, 2740, 2736] +Triangle: [2739, 2738, 2732] +Triangle: [2727, 2742, 2743] +Triangle: [2725, 2744, 2746] +Triangle: [2729, 2747, 2741] +Triangle: [2717, 2746, 2745] +Triangle: [2726, 2743, 2744] +Triangle: [2728, 2741, 2742] +Triangle: [2719, 2726, 2725] +Triangle: [2720, 2727, 2726] +Triangle: [2721, 2728, 2727] +Triangle: [2721, 2722, 2729] +Triangle: [2722, 2724, 2731] +Triangle: [2724, 2723, 2730] +Triangle: [2723, 2715, 2717] +Triangle: [2718, 2725, 2717] +Triangle: [2718, 2749, 2750] +Triangle: [2722, 2721, 2752] +Triangle: [2719, 2750, 2751] +Triangle: [2724, 2722, 2753] +Triangle: [2723, 2724, 2755] +Triangle: [2720, 2751, 2752] +Triangle: [2715, 2723, 2754] +Triangle: [2749, 2718, 2715] +Triangle: [2745, 2758, 2760] +Triangle: [2747, 2748, 2760] +Triangle: [2743, 2742, 2761] +Triangle: [2746, 2744, 2762] +Triangle: [2741, 2747, 2759] +Triangle: [2746, 2763, 2758] +Triangle: [2743, 2757, 2762] +Triangle: [2742, 2741, 2756] +Triangle: [2809, 2749, 2716] +Triangle: [2495, 2497, 2807] +Triangle: [2496, 2809, 2807] +Triangle: [2812, 2820, 2817] +Triangle: [2817, 2816, 2814] +Triangle: [2754, 2755, 2814] +Triangle: [2582, 2655, 2580] +Triangle: [2582, 2598, 2583] +Triangle: [2657, 2583, 2598] +Triangle: [2494, 2590, 2597] +Triangle: [2578, 2581, 2582] +Triangle: [2581, 2578, 2577] +Triangle: [2577, 2584, 2518] +Triangle: [2518, 2584, 2568] +Triangle: [2580, 2655, 2607] +Triangle: [2656, 2764, 2607] +Triangle: [2481, 2480, 2568] +Triangle: [2584, 2577, 2479] +Triangle: [2472, 2469, 2483] +Triangle: [2480, 2481, 2477] +Triangle: [2504, 2502, 2578] +Triangle: [2475, 2482, 2505] +Triangle: [2502, 2479, 2577] +Triangle: [2503, 2504, 2483] +Triangle: [2504, 2579, 2580] +Triangle: [2503, 2501, 2502] +Triangle: [2483, 2580, 2764] +Triangle: [2488, 2487, 2486] +Triangle: [2477, 2481, 2479] +Triangle: [2484, 2764, 2656] +Triangle: [2601, 2599, 2597] +Triangle: [2589, 2594, 2601] +Triangle: [2588, 2591, 2594] +Triangle: [2591, 2588, 2587] +Triangle: [2599, 2771, 2772] +Triangle: [2772, 2767, 2657] +Triangle: [2601, 2602, 2771] +Triangle: [2771, 2602, 2767] +Triangle: [2776, 2778, 2777] +Triangle: [2773, 2779, 2780] +Triangle: [2774, 2780, 2777] +Triangle: [2659, 2775, 2779] +Triangle: [2779, 2775, 2777] +Triangle: [2784, 2786, 2785] +Triangle: [2785, 2786, 2782] +Triangle: [2815, 2713, 2785] +Triangle: [2496, 2491, 2512] +Triangle: [2485, 2508, 2507] +Triangle: [2482, 2656, 2765] +Triangle: [2505, 2765, 2766] +Triangle: [2796, 2659, 2660] +Triangle: [2792, 2654, 2607] +Triangle: [2806, 2805, 2713] +Triangle: [2708, 2661, 2799] +Triangle: [2816, 2495, 2808] +Triangle: [2811, 2843, 2820] +Triangle: [2513, 2514, 2480] +Triangle: [2509, 2510, 2487] +Triangle: [2479, 2502, 2501] +Triangle: [2485, 2489, 2490] +Triangle: [2511, 2512, 2510] +Triangle: [2506, 2505, 2507] +Triangle: [2497, 2492, 2491] +Triangle: [2492, 2497, 2495] +Triangle: [2816, 2818, 2493] +Triangle: [2788, 2787, 2490] +Triangle: [2507, 2766, 2788] +Triangle: [2661, 2787, 2788] +Triangle: [2766, 2823, 2709] +Triangle: [2789, 2488, 2490] +Triangle: [2708, 2789, 2787] +Triangle: [2488, 2789, 2790] +Triangle: [2714, 2790, 2789] +Triangle: [2644, 2792, 2791] +Triangle: [2640, 2639, 2793] +Triangle: [2641, 2640, 2798] +Triangle: [2641, 2794, 2795] +Triangle: [2643, 2642, 2795] +Triangle: [2645, 2643, 2796] +Triangle: [2698, 2800, 2799] +Triangle: [2694, 2693, 2801] +Triangle: [2694, 2802, 2803] +Triangle: [2696, 2695, 2803] +Triangle: [2697, 2696, 2804] +Triangle: [2697, 2805, 2806] +Triangle: [2808, 2807, 2716] +Triangle: [2749, 2809, 2810] +Triangle: [2750, 2810, 2811] +Triangle: [2751, 2811, 2812] +Triangle: [2753, 2752, 2812] +Triangle: [2755, 2753, 2813] +Triangle: [2781, 2509, 2790] +Triangle: [2815, 2790, 2714] +Triangle: [2781, 2782, 2511] +Triangle: [2817, 2819, 2818] +Triangle: [2819, 2817, 2820] +Triangle: [2770, 2776, 2775] +Triangle: [2654, 2792, 2797] +Triangle: [2769, 2775, 2659] +Triangle: [2657, 2767, 2769] +Triangle: [2770, 2769, 2767] +Triangle: [2826, 2777, 2778] +Triangle: [2822, 2823, 2766] +Triangle: [2825, 2823, 2822] +Triangle: [2656, 2654, 2822] +Triangle: [2774, 2825, 2824] +Triangle: [2654, 2660, 2824] +Triangle: [2773, 2824, 2660] +Triangle: [2710, 2825, 2774] +Triangle: [2823, 2825, 2710] +Triangle: [2712, 2711, 2777] +Triangle: [2783, 2785, 2826] +Triangle: [2713, 2712, 2826] +Triangle: [2593, 2592, 2516] +Triangle: [2810, 2782, 2786] +Triangle: [2836, 2469, 2472] +Triangle: [2830, 2829, 2476] +Triangle: [2831, 2503, 2469] +Triangle: [2498, 2472, 2475] +Triangle: [2831, 2830, 2501] +Triangle: [2477, 2476, 2829] +Triangle: [2508, 2833, 2832] +Triangle: [2838, 2485, 2486] +Triangle: [2485, 2838, 2833] +Triangle: [2832, 2837, 2475] +Triangle: [2512, 2835, 2834] +Triangle: [2840, 2491, 2492] +Triangle: [2491, 2840, 2835] +Triangle: [2834, 2839, 2487] +Triangle: [2499, 2486, 2487] +Triangle: [2500, 2492, 2493] +Triangle: [2818, 2845, 2844] +Triangle: [2828, 2841, 2513] +Triangle: [2835, 2840, 2839] +Triangle: [2838, 2837, 2832] +Triangle: [2836, 2829, 2830] +Triangle: [2513, 2841, 2842] +Triangle: [2819, 2846, 2845] +Triangle: [2592, 2591, 2573] +Triangle: [2596, 2595, 2592] +Triangle: [2595, 2594, 2591] +Triangle: [2603, 2602, 2595] +Triangle: [2602, 2601, 2594] +Triangle: [2811, 2786, 2784] +Triangle: [2482, 2475, 2472] +Triangle: [2821, 2847, 2846] +Triangle: [2868, 2866, 2596] +Triangle: [2852, 2851, 2853] +Triangle: [2, 8, 2850] +Triangle: [10, 2851, 2850] +Triangle: [9, 2853, 2851] +Triangle: [2829, 2836, 2856] +Triangle: [2853, 9, 7] +Triangle: [2858, 2854, 2853] +Triangle: [2859, 2858, 2857] +Triangle: [2862, 2859, 2860] +Triangle: [2863, 2862, 2861] +Triangle: [2863, 2864, 3018] +Triangle: [2865, 2866, 2868] +Triangle: [2868, 2593, 2515] +Triangle: [2867, 2868, 2842] +Triangle: [2870, 2869, 2842] +Triangle: [2841, 2828, 2874] +Triangle: [2875, 2871, 2870] +Triangle: [2891, 2876, 2872] +Triangle: [2872, 2876, 2877] +Triangle: [2854, 2879, 2878] +Triangle: [2894, 2878, 2879] +Triangle: [2474, 2881, 2874] +Triangle: [2829, 2855, 2881] +Triangle: [2882, 2856, 2836] +Triangle: [2837, 2883, 2882] +Triangle: [2838, 2884, 2883] +Triangle: [2499, 2839, 2886] +Triangle: [2885, 2884, 2838] +Triangle: [2840, 2887, 2886] +Triangle: [2500, 2888, 2887] +Triangle: [2478, 2477, 2474] +Triangle: [2871, 2875, 2891] +Triangle: [2875, 2874, 2848] +Triangle: [2889, 2876, 2891] +Triangle: [2877, 2876, 2894] +Triangle: [2889, 2893, 2894] +Triangle: [2881, 2892, 2848] +Triangle: [2889, 2848, 2892] +Triangle: [2855, 2896, 2892] +Triangle: [2892, 2896, 2898] +Triangle: [2878, 2894, 2893] +Triangle: [2852, 2878, 2898] +Triangle: [2899, 2850, 2851] +Triangle: [2897, 2899, 2898] +Triangle: [2899, 2897, 2849] +Triangle: [2856, 2882, 2883] +Triangle: [2884, 2901, 2900] +Triangle: [2900, 2896, 2855] +Triangle: [2849, 2897, 2903] +Triangle: [2902, 2903, 2905] +Triangle: [2897, 2896, 2900] +Triangle: [2901, 2905, 2903] +Triangle: [2902, 11, 2] +Triangle: [11, 2902, 2904] +Triangle: [2885, 2886, 2887] +Triangle: [2885, 2908, 2901] +Triangle: [2905, 2901, 2908] +Triangle: [2910, 2904, 2905] +Triangle: [2888, 2906, 2908] +Triangle: [2909, 2908, 2906] +Triangle: [2909, 2907, 2911] +Triangle: [12, 2904, 2910] +Triangle: [0, 1, 2910] +Triangle: [2844, 2916, 2888] +Triangle: [2888, 2916, 2917] +Triangle: [2906, 2917, 2918] +Triangle: [2907, 2918, 2919] +Triangle: [2911, 2919, 2920] +Triangle: [3, 0, 2920] +Triangle: [2922, 4, 3] +Triangle: [2845, 2915, 2916] +Triangle: [2917, 2916, 2915] +Triangle: [2918, 2917, 2914] +Triangle: [2919, 2918, 2913] +Triangle: [2920, 2919, 2912] +Triangle: [2912, 2923, 2922] +Triangle: [2924, 2923, 2912] +Triangle: [2925, 2924, 2913] +Triangle: [2915, 2926, 2925] +Triangle: [2846, 2926, 2915] +Triangle: [2929, 4, 2922] +Triangle: [2924, 2928, 2929] +Triangle: [2925, 2927, 2928] +Triangle: [2926, 2930, 2927] +Triangle: [2930, 2926, 2846] +Triangle: [4, 2929, 2931] +Triangle: [5, 2931, 2932] +Triangle: [6, 2932, 2857] +Triangle: [2931, 2933, 2934] +Triangle: [2935, 2936, 2934] +Triangle: [2932, 2934, 2860] +Triangle: [2860, 2934, 2936] +Triangle: [2928, 2933, 2931] +Triangle: [2927, 2935, 2933] +Triangle: [2877, 2938, 2937] +Triangle: [2939, 2938, 2877] +Triangle: [2880, 2939, 2895] +Triangle: [2858, 2880, 2879] +Triangle: [2940, 2880, 2858] +Triangle: [2941, 2940, 2859] +Triangle: [2939, 2880, 2940] +Triangle: [2941, 2943, 2942] +Triangle: [2938, 2939, 2942] +Triangle: [2944, 2937, 2938] +Triangle: [2978, 2965, 2964] +Triangle: [2984, 2979, 2963] +Triangle: [2985, 2961, 2967] +Triangle: [2978, 2981, 2966] +Triangle: [2985, 2984, 2962] +Triangle: [2979, 2983, 2964] +Triangle: [2982, 2968, 2966] +Triangle: [2980, 2967, 2968] +Triangle: [2969, 2963, 2964] +Triangle: [2959, 2974, 2977] +Triangle: [2960, 2977, 2976] +Triangle: [2962, 2963, 2969] +Triangle: [2966, 2968, 2969] +Triangle: [2967, 2961, 2969] +Triangle: [2956, 2971, 2972] +Triangle: [2954, 2973, 2975] +Triangle: [2958, 2976, 2970] +Triangle: [2952, 2975, 2974] +Triangle: [2954, 2955, 2972] +Triangle: [2957, 2970, 2971] +Triangle: [2986, 2987, 2955] +Triangle: [2988, 2956, 2955] +Triangle: [2989, 2957, 2956] +Triangle: [2990, 2958, 2957] +Triangle: [2990, 2991, 2960] +Triangle: [2992, 2959, 2960] +Triangle: [2992, 2993, 2952] +Triangle: [2986, 2954, 2952] +Triangle: [2974, 2980, 2982] +Triangle: [2977, 2982, 2981] +Triangle: [2972, 2971, 2983] +Triangle: [2975, 2973, 2984] +Triangle: [2970, 2976, 2981] +Triangle: [2975, 2985, 2980] +Triangle: [2973, 2972, 2979] +Triangle: [2971, 2970, 2978] +Triangle: [2950, 2986, 2993] +Triangle: [2945, 2951, 2993] +Triangle: [2945, 2992, 2991] +Triangle: [2946, 2953, 2991] +Triangle: [2946, 2990, 2989] +Triangle: [2947, 2989, 2988] +Triangle: [2948, 2988, 2987] +Triangle: [2950, 2949, 2987] +Triangle: [2946, 2995, 3001] +Triangle: [2951, 2945, 2994] +Triangle: [2948, 2949, 2998] +Triangle: [2947, 2996, 2995] +Triangle: [2953, 3001, 2994] +Triangle: [2951, 3000, 2999] +Triangle: [2949, 2950, 2999] +Triangle: [2947, 2948, 2997] +Triangle: [2869, 3009, 3003] +Triangle: [3010, 3009, 2869] +Triangle: [2871, 3011, 3010] +Triangle: [3002, 3009, 3010] +Triangle: [2890, 3012, 3011] +Triangle: [3008, 3002, 3011] +Triangle: [2872, 2873, 3012] +Triangle: [3013, 3007, 3008] +Triangle: [3013, 3012, 2873] +Triangle: [2867, 3003, 3017] +Triangle: [3019, 3018, 2866] +Triangle: [3004, 3016, 3017] +Triangle: [3004, 3005, 3015] +Triangle: [3005, 3006, 3014] +Triangle: [3006, 3007, 3013] +Triangle: [3014, 3013, 2937] +Triangle: [3015, 3014, 2944] +Triangle: [3020, 2944, 2943] +Triangle: [3009, 3001, 2995] +Triangle: [3002, 2994, 3001] +Triangle: [3008, 3000, 2994] +Triangle: [3007, 2999, 3000] +Triangle: [3007, 3006, 2998] +Triangle: [3006, 3005, 2997] +Triangle: [3004, 2996, 2997] +Triangle: [3003, 2995, 2996] +Triangle: [3017, 3016, 3019] +Triangle: [3016, 3015, 3020] +Triangle: [3021, 2941, 2862] +Triangle: [3019, 3016, 3021] +Triangle: [2936, 3022, 2864] +Triangle: [2596, 2866, 3023] +Triangle: [3024, 3023, 2866] +Triangle: [3018, 2864, 3022] +Triangle: [3026, 3025, 3027] +Triangle: [3025, 3026, 3024] +Triangle: [2768, 3028, 3027] +Triangle: [3023, 3024, 3026] +Triangle: [2603, 3023, 3028] +Triangle: [2776, 2770, 3027] +Triangle: [2776, 3029, 3031] +Triangle: [3031, 3030, 2827] +Triangle: [3025, 3032, 3029] +Triangle: [3034, 3032, 3025] +Triangle: [3034, 3022, 3035] +Triangle: [3035, 3022, 2936] +Triangle: [2930, 3035, 2935] +Triangle: [3036, 3033, 3035] +Triangle: [3036, 2930, 2847] +Triangle: [2784, 3039, 3040] +Triangle: [2783, 2827, 3030] +Triangle: [2783, 3038, 3039] +Triangle: [2843, 3040, 2821] +Triangle: [2821, 3040, 3037] +Triangle: [3029, 3038, 3030] +Triangle: [3041, 3032, 3034] +Triangle: [3033, 3036, 3037] +Triangle: [3032, 3041, 3038] +Triangle: [3038, 3041, 3042] +Triangle: [3042, 3037, 3040] +Triangle: [3089, 3091, 3090] +Triangle: [3383, 3384, 3086] +Triangle: [3113, 3114, 3134] +Triangle: [3111, 3112, 3135] +Triangle: [3141, 3136, 3116] +Triangle: [3134, 3114, 3115] +Triangle: [3141, 3110, 3111] +Triangle: [3135, 3112, 3113] +Triangle: [3115, 3117, 3138] +Triangle: [3117, 3116, 3136] +Triangle: [3118, 3114, 3113] +Triangle: [3126, 3123, 3108] +Triangle: [3125, 3126, 3109] +Triangle: [3118, 3112, 3111] +Triangle: [3114, 3118, 3117] +Triangle: [3118, 3110, 3116] +Triangle: [3121, 3120, 3105] +Triangle: [3045, 3124, 3122] +Triangle: [3119, 3125, 3107] +Triangle: [3108, 3123, 3124] +Triangle: [3103, 3122, 3121] +Triangle: [3120, 3119, 3106] +Triangle: [3096, 3103, 3104] +Triangle: [3104, 3105, 3098] +Triangle: [3105, 3106, 3099] +Triangle: [3106, 3107, 3100] +Triangle: [3100, 3107, 3109] +Triangle: [3109, 3108, 3101] +Triangle: [3101, 3108, 3045] +Triangle: [3045, 3103, 3096] +Triangle: [3097, 3128, 3127] +Triangle: [3131, 3130, 3099] +Triangle: [3129, 3128, 3097] +Triangle: [3102, 3133, 3131] +Triangle: [3132, 3133, 3102] +Triangle: [3099, 3130, 3129] +Triangle: [3094, 3092, 3132] +Triangle: [3094, 3096, 3127] +Triangle: [3138, 3136, 3123] +Triangle: [3137, 3138, 3126] +Triangle: [3121, 3135, 3139] +Triangle: [3124, 3141, 3140] +Triangle: [3119, 3134, 3137] +Triangle: [3124, 3123, 3136] +Triangle: [3122, 3140, 3135] +Triangle: [3120, 3139, 3134] +Triangle: [3092, 3095, 3142] +Triangle: [3092, 3127, 3144] +Triangle: [3146, 3144, 3127] +Triangle: [3147, 3146, 3128] +Triangle: [3149, 3147, 3129] +Triangle: [3150, 3149, 3130] +Triangle: [3133, 3151, 3150] +Triangle: [3142, 3151, 3133] +Triangle: [3095, 3144, 3160] +Triangle: [3095, 3093, 3069] +Triangle: [3165, 3151, 3142] +Triangle: [3151, 3165, 3164] +Triangle: [3164, 3163, 3149] +Triangle: [3163, 3162, 3147] +Triangle: [3161, 3146, 3147] +Triangle: [3144, 3146, 3161] +Triangle: [3161, 3145, 3143] +Triangle: [3145, 3089, 3055] +Triangle: [3148, 3145, 3161] +Triangle: [3145, 3148, 3091] +Triangle: [3156, 3157, 3173] +Triangle: [3172, 3173, 3175] +Triangle: [3200, 3201, 3221] +Triangle: [3198, 3199, 3222] +Triangle: [3228, 3223, 3203] +Triangle: [3221, 3201, 3202] +Triangle: [3228, 3197, 3198] +Triangle: [3222, 3199, 3200] +Triangle: [3202, 3204, 3225] +Triangle: [3204, 3203, 3223] +Triangle: [3205, 3201, 3200] +Triangle: [3213, 3210, 3195] +Triangle: [3212, 3213, 3196] +Triangle: [3205, 3199, 3198] +Triangle: [3201, 3205, 3204] +Triangle: [3205, 3197, 3203] +Triangle: [3208, 3207, 3192] +Triangle: [3179, 3211, 3209] +Triangle: [3193, 3206, 3212] +Triangle: [3179, 3195, 3210] +Triangle: [3190, 3209, 3208] +Triangle: [3207, 3206, 3193] +Triangle: [3190, 3191, 3184] +Triangle: [3191, 3192, 3185] +Triangle: [3192, 3193, 3186] +Triangle: [3193, 3194, 3187] +Triangle: [3187, 3194, 3196] +Triangle: [3189, 3196, 3195] +Triangle: [3188, 3195, 3179] +Triangle: [3179, 3190, 3183] +Triangle: [3215, 3214, 3183] +Triangle: [3187, 3218, 3217] +Triangle: [3216, 3215, 3184] +Triangle: [3189, 3220, 3218] +Triangle: [3188, 3219, 3220] +Triangle: [3186, 3217, 3216] +Triangle: [3181, 3180, 3219] +Triangle: [3181, 3183, 3214] +Triangle: [3225, 3223, 3210] +Triangle: [3224, 3225, 3213] +Triangle: [3208, 3222, 3226] +Triangle: [3211, 3228, 3227] +Triangle: [3206, 3221, 3224] +Triangle: [3211, 3210, 3223] +Triangle: [3209, 3227, 3222] +Triangle: [3207, 3226, 3221] +Triangle: [3283, 3289, 3380] +Triangle: [3180, 3214, 3367] +Triangle: [3230, 3182, 3365] +Triangle: [3372, 3158, 3230] +Triangle: [3368, 3232, 3158] +Triangle: [3233, 3232, 3368] +Triangle: [3370, 3234, 3233] +Triangle: [3366, 3371, 3220] +Triangle: [3254, 3255, 3275] +Triangle: [3252, 3253, 3276] +Triangle: [3282, 3277, 3257] +Triangle: [3275, 3255, 3256] +Triangle: [3282, 3251, 3252] +Triangle: [3276, 3253, 3254] +Triangle: [3256, 3258, 3279] +Triangle: [3258, 3257, 3277] +Triangle: [3259, 3255, 3254] +Triangle: [3250, 3267, 3264] +Triangle: [3266, 3267, 3250] +Triangle: [3251, 3259, 3253] +Triangle: [3255, 3259, 3258] +Triangle: [3259, 3251, 3257] +Triangle: [3262, 3261, 3246] +Triangle: [3048, 3265, 3263] +Triangle: [3260, 3266, 3248] +Triangle: [3249, 3264, 3265] +Triangle: [3263, 3262, 3245] +Triangle: [3261, 3260, 3247] +Triangle: [3244, 3245, 3238] +Triangle: [3245, 3246, 3239] +Triangle: [3246, 3247, 3240] +Triangle: [3240, 3247, 3248] +Triangle: [3241, 3248, 3250] +Triangle: [3243, 3250, 3249] +Triangle: [3242, 3249, 3048] +Triangle: [3048, 3244, 3237] +Triangle: [3269, 3268, 3237] +Triangle: [3241, 3272, 3271] +Triangle: [3270, 3269, 3238] +Triangle: [3243, 3274, 3272] +Triangle: [3242, 3273, 3274] +Triangle: [3240, 3271, 3270] +Triangle: [3043, 3046, 3273] +Triangle: [3043, 3237, 3268] +Triangle: [3279, 3277, 3264] +Triangle: [3278, 3279, 3267] +Triangle: [3276, 3280, 3261] +Triangle: [3265, 3282, 3281] +Triangle: [3260, 3275, 3278] +Triangle: [3265, 3264, 3277] +Triangle: [3263, 3281, 3276] +Triangle: [3280, 3275, 3260] +Triangle: [3177, 3342, 3343] +Triangle: [3046, 3268, 3375] +Triangle: [3284, 3236, 3373] +Triangle: [3285, 3284, 3375] +Triangle: [3286, 3285, 3376] +Triangle: [3287, 3286, 3377] +Triangle: [3379, 3288, 3287] +Triangle: [3374, 3380, 3274] +Triangle: [3310, 3311, 3331] +Triangle: [3308, 3309, 3332] +Triangle: [3338, 3333, 3313] +Triangle: [3331, 3311, 3312] +Triangle: [3338, 3307, 3308] +Triangle: [3332, 3309, 3310] +Triangle: [3312, 3314, 3335] +Triangle: [3314, 3313, 3333] +Triangle: [3311, 3310, 3309] +Triangle: [3323, 3320, 3305] +Triangle: [3304, 3322, 3323] +Triangle: [3315, 3309, 3308] +Triangle: [3311, 3315, 3314] +Triangle: [3314, 3315, 3307] +Triangle: [3318, 3317, 3302] +Triangle: [3321, 3319, 3300] +Triangle: [3316, 3322, 3304] +Triangle: [3292, 3305, 3320] +Triangle: [3319, 3318, 3301] +Triangle: [3317, 3316, 3303] +Triangle: [3300, 3301, 3294] +Triangle: [3301, 3302, 3295] +Triangle: [3302, 3303, 3296] +Triangle: [3296, 3303, 3304] +Triangle: [3297, 3304, 3306] +Triangle: [3299, 3306, 3305] +Triangle: [3298, 3305, 3292] +Triangle: [3292, 3300, 3293] +Triangle: [3325, 3324, 3293] +Triangle: [3297, 3328, 3327] +Triangle: [3326, 3325, 3294] +Triangle: [3299, 3330, 3328] +Triangle: [3298, 3329, 3330] +Triangle: [3327, 3326, 3295] +Triangle: [3290, 3291, 3329] +Triangle: [3290, 3293, 3324] +Triangle: [3335, 3333, 3320] +Triangle: [3322, 3334, 3335] +Triangle: [3318, 3332, 3336] +Triangle: [3321, 3338, 3337] +Triangle: [3316, 3331, 3334] +Triangle: [3321, 3320, 3333] +Triangle: [3337, 3332, 3318] +Triangle: [3317, 3336, 3331] +Triangle: [3291, 3324, 3383] +Triangle: [3070, 3382, 3381] +Triangle: [3381, 3383, 3071] +Triangle: [3386, 3387, 3391] +Triangle: [3388, 3390, 3391] +Triangle: [3388, 3330, 3329] +Triangle: [3155, 3230, 3157] +Triangle: [3157, 3230, 3158] +Triangle: [3173, 3158, 3232] +Triangle: [3172, 3165, 3069] +Triangle: [3157, 3156, 3153] +Triangle: [3152, 3153, 3156] +Triangle: [3093, 3159, 3152] +Triangle: [3093, 3160, 3143] +Triangle: [3155, 3339, 3182] +Triangle: [3182, 3339, 3231] +Triangle: [3056, 3159, 3143] +Triangle: [3054, 3152, 3159] +Triangle: [3047, 3059, 3058] +Triangle: [3055, 3053, 3052] +Triangle: [3079, 3154, 3153] +Triangle: [3050, 3081, 3080] +Triangle: [3077, 3153, 3152] +Triangle: [3058, 3079, 3078] +Triangle: [3155, 3154, 3079] +Triangle: [3078, 3079, 3077] +Triangle: [3339, 3155, 3058] +Triangle: [3063, 3065, 3061] +Triangle: [3052, 3051, 3054] +Triangle: [3231, 3339, 3059] +Triangle: [3172, 3174, 3176] +Triangle: [3176, 3169, 3164] +Triangle: [3169, 3166, 3163] +Triangle: [3162, 3163, 3166] +Triangle: [3174, 3175, 3346] +Triangle: [3232, 3342, 3346] +Triangle: [3176, 3174, 3345] +Triangle: [3345, 3346, 3342] +Triangle: [3350, 3349, 3351] +Triangle: [3347, 3348, 3354] +Triangle: [3348, 3286, 3351] +Triangle: [3234, 3347, 3353] +Triangle: [3353, 3354, 3351] +Triangle: [3359, 3360, 3358] +Triangle: [3356, 3360, 3359] +Triangle: [3359, 3288, 3389] +Triangle: [3087, 3066, 3071] +Triangle: [3082, 3083, 3060] +Triangle: [3340, 3231, 3057] +Triangle: [3080, 3082, 3341] +Triangle: [3235, 3234, 3370] +Triangle: [3366, 3365, 3182] +Triangle: [3380, 3289, 3288] +Triangle: [3373, 3236, 3283] +Triangle: [3382, 3070, 3390] +Triangle: [3385, 3386, 3394] +Triangle: [3055, 3089, 3088] +Triangle: [3062, 3085, 3084] +Triangle: [3076, 3077, 3054] +Triangle: [3065, 3064, 3060] +Triangle: [3085, 3087, 3086] +Triangle: [3081, 3083, 3082] +Triangle: [3072, 3071, 3066] +Triangle: [3070, 3072, 3067] +Triangle: [3068, 3392, 3390] +Triangle: [3362, 3064, 3065] +Triangle: [3362, 3341, 3082] +Triangle: [3362, 3361, 3236] +Triangle: [3341, 3362, 3284] +Triangle: [3363, 3361, 3065] +Triangle: [3283, 3236, 3361] +Triangle: [3364, 3363, 3063] +Triangle: [3289, 3283, 3363] +Triangle: [3219, 3180, 3365] +Triangle: [3215, 3372, 3367] +Triangle: [3216, 3368, 3372] +Triangle: [3369, 3368, 3216] +Triangle: [3218, 3370, 3369] +Triangle: [3220, 3371, 3370] +Triangle: [3273, 3046, 3373] +Triangle: [3269, 3376, 3375] +Triangle: [3377, 3376, 3269] +Triangle: [3271, 3378, 3377] +Triangle: [3272, 3379, 3378] +Triangle: [3380, 3379, 3272] +Triangle: [3291, 3381, 3382] +Triangle: [3384, 3383, 3324] +Triangle: [3385, 3384, 3325] +Triangle: [3386, 3385, 3326] +Triangle: [3328, 3387, 3386] +Triangle: [3330, 3388, 3387] +Triangle: [3364, 3084, 3355] +Triangle: [3289, 3364, 3389] +Triangle: [3086, 3356, 3355] +Triangle: [3391, 3390, 3392] +Triangle: [3393, 3395, 3394] +Triangle: [3229, 3235, 3371] +Triangle: [3344, 3233, 3234] +Triangle: [3344, 3342, 3232] +Triangle: [3396, 3340, 3341] +Triangle: [3396, 3397, 3399] +Triangle: [3231, 3340, 3396] +Triangle: [3398, 3399, 3348] +Triangle: [3229, 3396, 3398] +Triangle: [3347, 3234, 3235] +Triangle: [3285, 3286, 3348] +Triangle: [3285, 3399, 3397] +Triangle: [3287, 3400, 3351] +Triangle: [3400, 3287, 3288] +Triangle: [3091, 3167, 3168] +Triangle: [3384, 3385, 3360] +Triangle: [3047, 3044, 3409] +Triangle: [3051, 3402, 3403] +Triangle: [3404, 3409, 3044] +Triangle: [3073, 3410, 3050] +Triangle: [3076, 3403, 3404] +Triangle: [3402, 3051, 3052] +Triangle: [3083, 3081, 3405] +Triangle: [3061, 3060, 3411] +Triangle: [3060, 3083, 3406] +Triangle: [3050, 3410, 3405] +Triangle: [3087, 3085, 3407] +Triangle: [3067, 3066, 3413] +Triangle: [3066, 3087, 3408] +Triangle: [3062, 3412, 3407] +Triangle: [3074, 3412, 3062] +Triangle: [3075, 3417, 3068] +Triangle: [3392, 3068, 3417] +Triangle: [3401, 3053, 3088] +Triangle: [3408, 3407, 3412] +Triangle: [3405, 3410, 3411] +Triangle: [3403, 3402, 3409] +Triangle: [3088, 3090, 3415] +Triangle: [3393, 3392, 3418] +Triangle: [3148, 3166, 3167] +Triangle: [3167, 3170, 3171] +Triangle: [3166, 3169, 3170] +Triangle: [3170, 3177, 3178] +Triangle: [3169, 3176, 3177] +Triangle: [3358, 3360, 3385] +Triangle: [3057, 3059, 3047] +Triangle: [3395, 3393, 3419] +Triangle: [3171, 3439, 3441] +Triangle: [3425, 3427, 3426] +Triangle: [3423, 1296, 1290] +Triangle: [1298, 1296, 3423] +Triangle: [1297, 1298, 3424] +Triangle: [3402, 3428, 3429] +Triangle: [1295, 1297, 3426] +Triangle: [3431, 3430, 3426] +Triangle: [3432, 3433, 3430] +Triangle: [3435, 3434, 3433] +Triangle: [3436, 3437, 3434] +Triangle: [3591, 3437, 3436] +Triangle: [3441, 3439, 3438] +Triangle: [3090, 3168, 3441] +Triangle: [3440, 3442, 3415] +Triangle: [3443, 3414, 3415] +Triangle: [3414, 3448, 3447] +Triangle: [3443, 3444, 3448] +Triangle: [3445, 3449, 3464] +Triangle: [3450, 3449, 3445] +Triangle: [3427, 3425, 3451] +Triangle: [3452, 3451, 3467] +Triangle: [3049, 3401, 3447] +Triangle: [3454, 3428, 3402] +Triangle: [3409, 3429, 3455] +Triangle: [3410, 3073, 3455] +Triangle: [3411, 3410, 3456] +Triangle: [3074, 3458, 3459] +Triangle: [3411, 3457, 3458] +Triangle: [3413, 3412, 3459] +Triangle: [3075, 3413, 3460] +Triangle: [3049, 3052, 3053] +Triangle: [3444, 3463, 3464] +Triangle: [3448, 3464, 3421] +Triangle: [3464, 3449, 3462] +Triangle: [3450, 3468, 3467] +Triangle: [3467, 3466, 3462] +Triangle: [3454, 3447, 3421] +Triangle: [3462, 3466, 3465] +Triangle: [3428, 3454, 3465] +Triangle: [3471, 3469, 3465] +Triangle: [3451, 3471, 3466] +Triangle: [3425, 3472, 3471] +Triangle: [3424, 3423, 3472] +Triangle: [3470, 3469, 3471] +Triangle: [3422, 3470, 3472] +Triangle: [3429, 3457, 3456] +Triangle: [3473, 3474, 3457] +Triangle: [3428, 3469, 3473] +Triangle: [3422, 3475, 3476] +Triangle: [3475, 3477, 3478] +Triangle: [3470, 3476, 3473] +Triangle: [3474, 3473, 3476] +Triangle: [1290, 1299, 3475] +Triangle: [1299, 1300, 3477] +Triangle: [3458, 3461, 3460] +Triangle: [3458, 3457, 3474] +Triangle: [3478, 3482, 3481] +Triangle: [3483, 3482, 3478] +Triangle: [3481, 3479, 3461] +Triangle: [3479, 3481, 3482] +Triangle: [3484, 3480, 3482] +Triangle: [3483, 3477, 1300] +Triangle: [3483, 1289, 1288] +Triangle: [3417, 3075, 3461] +Triangle: [3490, 3489, 3461] +Triangle: [3491, 3490, 3479] +Triangle: [3492, 3491, 3480] +Triangle: [3493, 3492, 3484] +Triangle: [3493, 1288, 1291] +Triangle: [3495, 3494, 1291] +Triangle: [3489, 3488, 3418] +Triangle: [3488, 3489, 3490] +Triangle: [3487, 3490, 3491] +Triangle: [3486, 3491, 3492] +Triangle: [3493, 3494, 3485] +Triangle: [3485, 3494, 3495] +Triangle: [3485, 3496, 3497] +Triangle: [3486, 3497, 3498] +Triangle: [3488, 3487, 3498] +Triangle: [3419, 3418, 3488] +Triangle: [3502, 3496, 3495] +Triangle: [3502, 3501, 3497] +Triangle: [3501, 3500, 3498] +Triangle: [3500, 3503, 3499] +Triangle: [3419, 3499, 3503] +Triangle: [1292, 1293, 3504] +Triangle: [1293, 1294, 3505] +Triangle: [1294, 1295, 3430] +Triangle: [3504, 3505, 3507] +Triangle: [3507, 3509, 3508] +Triangle: [3433, 3507, 3505] +Triangle: [3433, 3434, 3509] +Triangle: [3504, 3506, 3501] +Triangle: [3506, 3508, 3500] +Triangle: [3510, 3511, 3450] +Triangle: [3450, 3511, 3512] +Triangle: [3468, 3512, 3453] +Triangle: [3431, 3427, 3452] +Triangle: [3431, 3453, 3513] +Triangle: [3432, 3513, 3514] +Triangle: [3512, 3515, 3513] +Triangle: [3514, 3513, 3515] +Triangle: [3511, 3516, 3515] +Triangle: [3517, 3516, 3511] +Triangle: [3537, 3538, 3551] +Triangle: [3557, 3535, 3536] +Triangle: [3558, 3553, 3540] +Triangle: [3551, 3538, 3539] +Triangle: [3558, 3534, 3535] +Triangle: [3552, 3536, 3537] +Triangle: [3539, 3541, 3555] +Triangle: [3541, 3540, 3553] +Triangle: [3542, 3538, 3537] +Triangle: [3550, 3547, 3532] +Triangle: [3549, 3550, 3533] +Triangle: [3542, 3536, 3535] +Triangle: [3539, 3538, 3542] +Triangle: [3542, 3534, 3540] +Triangle: [3545, 3544, 3529] +Triangle: [3548, 3546, 3527] +Triangle: [3543, 3549, 3531] +Triangle: [3525, 3532, 3547] +Triangle: [3527, 3546, 3545] +Triangle: [3544, 3543, 3530] +Triangle: [3559, 3527, 3528] +Triangle: [3528, 3529, 3561] +Triangle: [3529, 3530, 3562] +Triangle: [3530, 3531, 3563] +Triangle: [3563, 3531, 3533] +Triangle: [3533, 3532, 3565] +Triangle: [3565, 3532, 3525] +Triangle: [3525, 3527, 3559] +Triangle: [3555, 3553, 3547] +Triangle: [3554, 3555, 3550] +Triangle: [3545, 3552, 3556] +Triangle: [3548, 3558, 3557] +Triangle: [3543, 3551, 3554] +Triangle: [3548, 3547, 3553] +Triangle: [3546, 3557, 3552] +Triangle: [3544, 3556, 3551] +Triangle: [3566, 3559, 3523] +Triangle: [3518, 3565, 3566] +Triangle: [3564, 3565, 3518] +Triangle: [3519, 3563, 3564] +Triangle: [3562, 3563, 3519] +Triangle: [3561, 3562, 3520] +Triangle: [3560, 3561, 3521] +Triangle: [3523, 3559, 3560] +Triangle: [3574, 3568, 3519] +Triangle: [3524, 3573, 3567] +Triangle: [3521, 3570, 3571] +Triangle: [3568, 3569, 3520] +Triangle: [3567, 3574, 3526] +Triangle: [3572, 3573, 3524] +Triangle: [3522, 3571, 3572] +Triangle: [3520, 3569, 3570] +Triangle: [3576, 3582, 3442] +Triangle: [3442, 3582, 3583] +Triangle: [3444, 3443, 3583] +Triangle: [3575, 3584, 3583] +Triangle: [3463, 3444, 3584] +Triangle: [3581, 3585, 3584] +Triangle: [3585, 3446, 3445] +Triangle: [3586, 3585, 3581] +Triangle: [3446, 3585, 3586] +Triangle: [3440, 3438, 3590] +Triangle: [3439, 3591, 3592] +Triangle: [3590, 3589, 3577] +Triangle: [3577, 3589, 3588] +Triangle: [3578, 3588, 3587] +Triangle: [3579, 3587, 3586] +Triangle: [3510, 3586, 3587] +Triangle: [3588, 3593, 3517] +Triangle: [3516, 3517, 3593] +Triangle: [3568, 3574, 3582] +Triangle: [3574, 3567, 3575] +Triangle: [3567, 3573, 3581] +Triangle: [3573, 3572, 3580] +Triangle: [3580, 3572, 3571] +Triangle: [3579, 3571, 3570] +Triangle: [3570, 3569, 3577] +Triangle: [3569, 3568, 3576] +Triangle: [3592, 3589, 3590] +Triangle: [3589, 3594, 3593] +Triangle: [3435, 3514, 3594] +Triangle: [3594, 3589, 3592] +Triangle: [3437, 3595, 3509] +Triangle: [3596, 3439, 3171] +Triangle: [3439, 3596, 3597] +Triangle: [3591, 3597, 3595] +Triangle: [3600, 3598, 3599] +Triangle: [3598, 3595, 3597] +Triangle: [3596, 3601, 3599] +Triangle: [3601, 3596, 3178] +Triangle: [3604, 3602, 3350] +Triangle: [3598, 3600, 3602] +Triangle: [3598, 3605, 3607] +Triangle: [3608, 3595, 3607] +Triangle: [3509, 3595, 3608] +Triangle: [3508, 3608, 3503] +Triangle: [3609, 3503, 3608] +Triangle: [3420, 3503, 3609] +Triangle: [3613, 3612, 3358] +Triangle: [3612, 3611, 3357] +Triangle: [3395, 3613, 3416] +Triangle: [3395, 3420, 3610] +Triangle: [3602, 3604, 3603] +Triangle: [3607, 3605, 3614] +Triangle: [3606, 3614, 3610] +Triangle: [3605, 3602, 3611] +Triangle: [3615, 3614, 3611] +Triangle: [3613, 3610, 3615] +Triangle: [3648, 3619, 3618] +Triangle: [3644, 3647, 3624] +Triangle: [3640, 3643, 3625] +Triangle: [3639, 3626, 3621] +Triangle: [5333, 5332, 3627] +Triangle: [5334, 5335, 3628] +Triangle: [3651, 3650, 3629] +Triangle: [3626, 3634, 3633] +Triangle: [5355, 3635, 3632] +Triangle: [3622, 3625, 3638] +Triangle: [3637, 3638, 3639] +Triangle: [3623, 3624, 3642] +Triangle: [3641, 3642, 3643] +Triangle: [3616, 3617, 3646] +Triangle: [3645, 3646, 3647] +Triangle: [3629, 3648, 3649] +Triangle: [3631, 3628, 3650] +Triangle: [3679, 3655, 3691] +Triangle: [3687, 3680, 3660] +Triangle: [3681, 3661, 3677] +Triangle: [3689, 3682, 3662] +Triangle: [3683, 3663, 3673] +Triangle: [3684, 3664, 5380] +Triangle: [3685, 3665, 3697] +Triangle: [3686, 3670, 3653] +Triangle: [3687, 3671, 3670] +Triangle: [3688, 3673, 3662] +Triangle: [5364, 3689, 3675] +Triangle: [3680, 3690, 3677] +Triangle: [3676, 3690, 3680] +Triangle: [5362, 3674, 3689] +Triangle: [3672, 3688, 3682] +Triangle: [3668, 3687, 3686] +Triangle: [3652, 3669, 3686] +Triangle: [3666, 3685, 3699] +Triangle: [5382, 3667, 3684] +Triangle: [3656, 3683, 3688] +Triangle: [3674, 3657, 3682] +Triangle: [3676, 3658, 3681] +Triangle: [3659, 3680, 3687] +Triangle: [3654, 3679, 3693] +Triangle: [3692, 3693, 3696] +Triangle: [3693, 3691, 3695] +Triangle: [3696, 3695, 3665] +Triangle: [3694, 3696, 3685] +Triangle: [3667, 3698, 3699] +Triangle: [3699, 3697, 3664] +Triangle: [3700, 3702, 5373] +Triangle: [3702, 3701, 5372] +Triangle: [3744, 3730, 3706] +Triangle: [3731, 3711, 3722] +Triangle: [3732, 3712, 3728] +Triangle: [5385, 3733, 3713] +Triangle: [5341, 3734, 3714] +Triangle: [3753, 3735, 3715] +Triangle: [3750, 3736, 3716] +Triangle: [3737, 3721, 3704] +Triangle: [3738, 3722, 3721] +Triangle: [5347, 3739, 3724] +Triangle: [3740, 3726, 5396] +Triangle: [3741, 3728, 3711] +Triangle: [3710, 3727, 3741] +Triangle: [3725, 3740, 5397] +Triangle: [3723, 3739, 5347] +Triangle: [3719, 3738, 3737] +Triangle: [3703, 3720, 3737] +Triangle: [3749, 3717, 3736] +Triangle: [3751, 3718, 3735] +Triangle: [5338, 3707, 3734] +Triangle: [3708, 3733, 5385] +Triangle: [3709, 3732, 3741] +Triangle: [3710, 3731, 3738] +Triangle: [3705, 3730, 3744] +Triangle: [3743, 3744, 3747] +Triangle: [3747, 3744, 3742] +Triangle: [3736, 3747, 3746] +Triangle: [3717, 3745, 3747] +Triangle: [3718, 3749, 3750] +Triangle: [3735, 3750, 3748] +Triangle: [3707, 3751, 3753] +Triangle: [3734, 3753, 3752] +Triangle: [3795, 3781, 3757] +Triangle: [3782, 3762, 3773] +Triangle: [3783, 3763, 3779] +Triangle: [3791, 3784, 3764] +Triangle: [3790, 3785, 3765] +Triangle: [3786, 3766, 3803] +Triangle: [3801, 3787, 3767] +Triangle: [3788, 3772, 3755] +Triangle: [3789, 3773, 3772] +Triangle: [3784, 3790, 3775] +Triangle: [3783, 3791, 3777] +Triangle: [3792, 3779, 3762] +Triangle: [3778, 3792, 3782] +Triangle: [3776, 3791, 3783] +Triangle: [3759, 3774, 3790] +Triangle: [3770, 3789, 3788] +Triangle: [3754, 3771, 3788] +Triangle: [3800, 3768, 3787] +Triangle: [3769, 3786, 3804] +Triangle: [3774, 3758, 3785] +Triangle: [3776, 3759, 3784] +Triangle: [3760, 3783, 3792] +Triangle: [3761, 3782, 3789] +Triangle: [3794, 3756, 3781] +Triangle: [3796, 3794, 3795] +Triangle: [3798, 3795, 3793] +Triangle: [3787, 3798, 3797] +Triangle: [3768, 3796, 3798] +Triangle: [3769, 3800, 3801] +Triangle: [3786, 3801, 3799] +Triangle: [3802, 3804, 3785] +Triangle: [3804, 3803, 3765] +Triangle: [3846, 3832, 3808] +Triangle: [3840, 3833, 3813] +Triangle: [3834, 3814, 3830] +Triangle: [3842, 3835, 3815] +Triangle: [3841, 3836, 3816] +Triangle: [3855, 3837, 3817] +Triangle: [3838, 3818, 3850] +Triangle: [3839, 3823, 3806] +Triangle: [3840, 3824, 3823] +Triangle: [3835, 3841, 3826] +Triangle: [3834, 3842, 3828] +Triangle: [3833, 3843, 3830] +Triangle: [3812, 3829, 3843] +Triangle: [3811, 3827, 3842] +Triangle: [3810, 3825, 3841] +Triangle: [3822, 3821, 3840] +Triangle: [3805, 3822, 3839] +Triangle: [3851, 3819, 3838] +Triangle: [3853, 3820, 3837] +Triangle: [3809, 3836, 3841] +Triangle: [3827, 3810, 3835] +Triangle: [3829, 3811, 3834] +Triangle: [3821, 3812, 3833] +Triangle: [3845, 3807, 3832] +Triangle: [3847, 3845, 3846] +Triangle: [3849, 3846, 3844] +Triangle: [3849, 3848, 3818] +Triangle: [3819, 3847, 3849] +Triangle: [3820, 3851, 3852] +Triangle: [3837, 3852, 3850] +Triangle: [3853, 3855, 3836] +Triangle: [3836, 3855, 3854] +Triangle: [3897, 3883, 3859] +Triangle: [3891, 3884, 3864] +Triangle: [3885, 3865, 3916] +Triangle: [3930, 3886, 3866] +Triangle: [3924, 3887, 3867] +Triangle: [3888, 3868, 3905] +Triangle: [3903, 3889, 3869] +Triangle: [3890, 3874, 3911] +Triangle: [3891, 3875, 3908] +Triangle: [3927, 3892, 3877] +Triangle: [3893, 3879, 3920] +Triangle: [3915, 3894, 3881] +Triangle: [3913, 3880, 3894] +Triangle: [3919, 3878, 3893] +Triangle: [3925, 3876, 3892] +Triangle: [3907, 3872, 3891] +Triangle: [3910, 3873, 3890] +Triangle: [3902, 3870, 3889] +Triangle: [3871, 3888, 3906] +Triangle: [3860, 3887, 3924] +Triangle: [3929, 3861, 3886] +Triangle: [3917, 3862, 3885] +Triangle: [3872, 3863, 3884] +Triangle: [3896, 3858, 3883] +Triangle: [3898, 3896, 3897] +Triangle: [3900, 3897, 3895] +Triangle: [3889, 3900, 3899] +Triangle: [3870, 3898, 3900] +Triangle: [3902, 3903, 3888] +Triangle: [3903, 3901, 3868] +Triangle: [3904, 3906, 3887] +Triangle: [3887, 3906, 3905] +Triangle: [3873, 3907, 3909] +Triangle: [3909, 3908, 3874] +Triangle: [3856, 3910, 3912] +Triangle: [3912, 3911, 3857] +Triangle: [3863, 3913, 3915] +Triangle: [3884, 3915, 3914] +Triangle: [3880, 3917, 3918] +Triangle: [3894, 3918, 3916] +Triangle: [3862, 3919, 3921] +Triangle: [3921, 3920, 3865] +Triangle: [3923, 3924, 3892] +Triangle: [3892, 3924, 3922] +Triangle: [3861, 3925, 3927] +Triangle: [3886, 3927, 3926] +Triangle: [3878, 3929, 3930] +Triangle: [3893, 3930, 3928] +Triangle: [3958, 3934, 3970] +Triangle: [3959, 3939, 3950] +Triangle: [3960, 3940, 3991] +Triangle: [4005, 3961, 3941] +Triangle: [3999, 3962, 3942] +Triangle: [3963, 3943, 3980] +Triangle: [3964, 3944, 3976] +Triangle: [3965, 3949, 3986] +Triangle: [3966, 3950, 3983] +Triangle: [4002, 3967, 3952] +Triangle: [3968, 3954, 3995] +Triangle: [3969, 3956, 3989] +Triangle: [3988, 3955, 3969] +Triangle: [3953, 3968, 3996] +Triangle: [4000, 3951, 3967] +Triangle: [3982, 3947, 3966] +Triangle: [3985, 3948, 3965] +Triangle: [3945, 3964, 3978] +Triangle: [3946, 3963, 3981] +Triangle: [3998, 3935, 3962] +Triangle: [4004, 3936, 3961] +Triangle: [3937, 3960, 3993] +Triangle: [3947, 3938, 3959] +Triangle: [3971, 3933, 3958] +Triangle: [3973, 3971, 3972] +Triangle: [3975, 3972, 3970] +Triangle: [3964, 3975, 3974] +Triangle: [3945, 3973, 3975] +Triangle: [3977, 3978, 3963] +Triangle: [3978, 3976, 3943] +Triangle: [3979, 3981, 3962] +Triangle: [3962, 3981, 3980] +Triangle: [3948, 3982, 3984] +Triangle: [3984, 3983, 3949] +Triangle: [3931, 3985, 3987] +Triangle: [3987, 3986, 3932] +Triangle: [3938, 3988, 3990] +Triangle: [3990, 3989, 3939] +Triangle: [3955, 3992, 3993] +Triangle: [3993, 3991, 3956] +Triangle: [3994, 3996, 3960] +Triangle: [3996, 3995, 3940] +Triangle: [3951, 3998, 3999] +Triangle: [3967, 3999, 3997] +Triangle: [3936, 4000, 4002] +Triangle: [3961, 4002, 4001] +Triangle: [4004, 4005, 3968] +Triangle: [4005, 4003, 3954] +Triangle: [4047, 4033, 4009] +Triangle: [4034, 4014, 4025] +Triangle: [4044, 4035, 4015] +Triangle: [4036, 4016, 5392] +Triangle: [5353, 4037, 4017] +Triangle: [4056, 4038, 4018] +Triangle: [4039, 4019, 4051] +Triangle: [4040, 4024, 4007] +Triangle: [4041, 4025, 4024] +Triangle: [5388, 4042, 4027] +Triangle: [4035, 4043, 4029] +Triangle: [4034, 4044, 4031] +Triangle: [4013, 4030, 4044] +Triangle: [4028, 4043, 4035] +Triangle: [4026, 4042, 5388] +Triangle: [4023, 4022, 4041] +Triangle: [4006, 4023, 4040] +Triangle: [4052, 4020, 4039] +Triangle: [4021, 4038, 4056] +Triangle: [4010, 4037, 5353] +Triangle: [4011, 4036, 5394] +Triangle: [4030, 4012, 4035] +Triangle: [4022, 4013, 4034] +Triangle: [4046, 4008, 4033] +Triangle: [4048, 4046, 4047] +Triangle: [4050, 4047, 4045] +Triangle: [4050, 4049, 4019] +Triangle: [4020, 4048, 4050] +Triangle: [4052, 4053, 4038] +Triangle: [4038, 4053, 4051] +Triangle: [4054, 4056, 4037] +Triangle: [4037, 4056, 4055] +Triangle: [4084, 4060, 4096] +Triangle: [4092, 4085, 4065] +Triangle: [4095, 4086, 4066] +Triangle: [4094, 4087, 4067] +Triangle: [5367, 4088, 4068] +Triangle: [4089, 4069, 4106] +Triangle: [4090, 4070, 4102] +Triangle: [4091, 4075, 4058] +Triangle: [4092, 4076, 4075] +Triangle: [4087, 4093, 4078] +Triangle: [4086, 4094, 4080] +Triangle: [4085, 4095, 4082] +Triangle: [4064, 4081, 4095] +Triangle: [4063, 4079, 4094] +Triangle: [4077, 4093, 4087] +Triangle: [4073, 4092, 4091] +Triangle: [4057, 4074, 4091] +Triangle: [4071, 4090, 4104] +Triangle: [4105, 4072, 4089] +Triangle: [4061, 4088, 5367] +Triangle: [4079, 4062, 4087] +Triangle: [4081, 4063, 4086] +Triangle: [4064, 4085, 4092] +Triangle: [4059, 4084, 4098] +Triangle: [4097, 4098, 4101] +Triangle: [4098, 4096, 4100] +Triangle: [4101, 4100, 4070] +Triangle: [4099, 4101, 4090] +Triangle: [4072, 4103, 4104] +Triangle: [4104, 4102, 4069] +Triangle: [4105, 4107, 5370] +Triangle: [5370, 4107, 4106] +Triangle: [4135, 4111, 4147] +Triangle: [4136, 4116, 4127] +Triangle: [4137, 4117, 4133] +Triangle: [4138, 4118, 4131] +Triangle: [4144, 4139, 4119] +Triangle: [4158, 4140, 4120] +Triangle: [4141, 4121, 4153] +Triangle: [4142, 4126, 4109] +Triangle: [4143, 4127, 4126] +Triangle: [4138, 4144, 4129] +Triangle: [4145, 4131, 4117] +Triangle: [4146, 4133, 4116] +Triangle: [4115, 4132, 4146] +Triangle: [4114, 4130, 4145] +Triangle: [4128, 4144, 4138] +Triangle: [4124, 4143, 4142] +Triangle: [4108, 4125, 4142] +Triangle: [4154, 4122, 4141] +Triangle: [4123, 4140, 4158] +Triangle: [4128, 4112, 4139] +Triangle: [4130, 4113, 4138] +Triangle: [4132, 4114, 4137] +Triangle: [4124, 4115, 4136] +Triangle: [4110, 4135, 4149] +Triangle: [4150, 4148, 4149] +Triangle: [4152, 4149, 4147] +Triangle: [4141, 4152, 4151] +Triangle: [4122, 4150, 4152] +Triangle: [4154, 4155, 4140] +Triangle: [4140, 4155, 4153] +Triangle: [4112, 4156, 4158] +Triangle: [4139, 4158, 4157] +Triangle: [4186, 4162, 4198] +Triangle: [4187, 4167, 4178] +Triangle: [4188, 4168, 4184] +Triangle: [4189, 4169, 5356] +Triangle: [4195, 4190, 4170] +Triangle: [4209, 4191, 4171] +Triangle: [5378, 4192, 4172] +Triangle: [4193, 4177, 4160] +Triangle: [4194, 4178, 4177] +Triangle: [5391, 4195, 4180] +Triangle: [4196, 4182, 5360] +Triangle: [4197, 4184, 4167] +Triangle: [4183, 4197, 4187] +Triangle: [4181, 4196, 5361] +Triangle: [4179, 4195, 5391] +Triangle: [4175, 4194, 4193] +Triangle: [4159, 4176, 4193] +Triangle: [4173, 4192, 5378] +Triangle: [4174, 4191, 4209] +Triangle: [4179, 4163, 4190] +Triangle: [4164, 4189, 5358] +Triangle: [4165, 4188, 4197] +Triangle: [4175, 4166, 4187] +Triangle: [4161, 4186, 4200] +Triangle: [4201, 4199, 4200] +Triangle: [4200, 4198, 4202] +Triangle: [4203, 4202, 4172] +Triangle: [4173, 4201, 4203] +Triangle: [4205, 4206, 5376] +Triangle: [4206, 4204, 5375] +Triangle: [4163, 4207, 4209] +Triangle: [4190, 4209, 4208] +Triangle: [4242, 4213, 4212] +Triangle: [4241, 4218, 4217] +Triangle: [4234, 4237, 4219] +Triangle: [4230, 4233, 4220] +Triangle: [4226, 4229, 4221] +Triangle: [4214, 4221, 4222] +Triangle: [4245, 4244, 4223] +Triangle: [4215, 4220, 4228] +Triangle: [4227, 4228, 4229] +Triangle: [4216, 4219, 4232] +Triangle: [4231, 4232, 4233] +Triangle: [4218, 4236, 4235] +Triangle: [4236, 4237, 4234] +Triangle: [4210, 4211, 4240] +Triangle: [4240, 4241, 4238] +Triangle: [4223, 4242, 4243] +Triangle: [4225, 4222, 4244] +Triangle: [4259, 4249, 4273] +Triangle: [4281, 4265, 4254] +Triangle: [4284, 4271, 4255] +Triangle: [4269, 4256, 4276] +Triangle: [4282, 4267, 4257] +Triangle: [4277, 4257, 4258] +Triangle: [4278, 4258, 4259] +Triangle: [4272, 4247, 4264] +Triangle: [4264, 4265, 4281] +Triangle: [4256, 4267, 4282] +Triangle: [4255, 4269, 4283] +Triangle: [4274, 4254, 4271] +Triangle: [4253, 4274, 4284] +Triangle: [4275, 4283, 4268] +Triangle: [4276, 4282, 4266] +Triangle: [4263, 4280, 4281] +Triangle: [4272, 4280, 4263] +Triangle: [4261, 4278, 4279] +Triangle: [4250, 4277, 4278] +Triangle: [4266, 4282, 4277] +Triangle: [4283, 4276, 4251] +Triangle: [4270, 4284, 4275] +Triangle: [4262, 4281, 4274] +Triangle: [4260, 4279, 4273] +Triangle: [4326, 4324, 4288] +Triangle: [4304, 4293, 4313] +Triangle: [4350, 4348, 4294] +Triangle: [4342, 4295, 4315] +Triangle: [4336, 4296, 4316] +Triangle: [4335, 4334, 4297] +Triangle: [4330, 4298, 4318] +Triangle: [4286, 4303, 4319] +Triangle: [4354, 4304, 4320] +Triangle: [4341, 4340, 4306] +Triangle: [4346, 4308, 4322] +Triangle: [4359, 4358, 4310] +Triangle: [4359, 4323, 4309] +Triangle: [4347, 4322, 4307] +Triangle: [4339, 4341, 4321] +Triangle: [4356, 4355, 4320] +Triangle: [4285, 4311, 4319] +Triangle: [4331, 4332, 4318] +Triangle: [4333, 4335, 4317] +Triangle: [4338, 4316, 4289] +Triangle: [4343, 4344, 4315] +Triangle: [4349, 4350, 4314] +Triangle: [4320, 4313, 4292] +Triangle: [4326, 4312, 4287] +Triangle: [4327, 4329, 4326] +Triangle: [4329, 4328, 4324] +Triangle: [4318, 4298, 4328] +Triangle: [4299, 4318, 4329] +Triangle: [4317, 4332, 4331] +Triangle: [4297, 4330, 4332] +Triangle: [4289, 4316, 4335] +Triangle: [4316, 4296, 4334] +Triangle: [4321, 4338, 4337] +Triangle: [4321, 4306, 4336] +Triangle: [4290, 4315, 4341] +Triangle: [4315, 4295, 4340] +Triangle: [4322, 4344, 4343] +Triangle: [4308, 4342, 4344] +Triangle: [4314, 4347, 4345] +Triangle: [4314, 4294, 4346] +Triangle: [4309, 4323, 4350] +Triangle: [4323, 4310, 4348] +Triangle: [4319, 4353, 4351] +Triangle: [4303, 4352, 4353] +Triangle: [4351, 4353, 4355] +Triangle: [4353, 4352, 4354] +Triangle: [4313, 4359, 4357] +Triangle: [4293, 4358, 4359] +Triangle: [4399, 4363, 4387] +Triangle: [4395, 4379, 4368] +Triangle: [4425, 4423, 4369] +Triangle: [4419, 4417, 4370] +Triangle: [4413, 4411, 4371] +Triangle: [4410, 4409, 4372] +Triangle: [4407, 4405, 4373] +Triangle: [4361, 4378, 4394] +Triangle: [4430, 4429, 4379] +Triangle: [4415, 4381, 4396] +Triangle: [4422, 4421, 4383] +Triangle: [4434, 4433, 4385] +Triangle: [4432, 4434, 4398] +Triangle: [4420, 4422, 4397] +Triangle: [4416, 4396, 4380] +Triangle: [4431, 4430, 4395] +Triangle: [4360, 4386, 4394] +Triangle: [4406, 4407, 4393] +Triangle: [4408, 4410, 4392] +Triangle: [4412, 4413, 4391] +Triangle: [4418, 4419, 4390] +Triangle: [4424, 4425, 4389] +Triangle: [4376, 4395, 4388] +Triangle: [4400, 4401, 4387] +Triangle: [4404, 4401, 4400] +Triangle: [4404, 4403, 4399] +Triangle: [4393, 4373, 4403] +Triangle: [4374, 4393, 4404] +Triangle: [4375, 4392, 4407] +Triangle: [4392, 4372, 4405] +Triangle: [4364, 4391, 4410] +Triangle: [4391, 4371, 4409] +Triangle: [4396, 4413, 4412] +Triangle: [4381, 4411, 4413] +Triangle: [4365, 4390, 4416] +Triangle: [4370, 4415, 4416] +Triangle: [4382, 4397, 4419] +Triangle: [4397, 4383, 4417] +Triangle: [4366, 4389, 4422] +Triangle: [4389, 4369, 4421] +Triangle: [4384, 4398, 4425] +Triangle: [4398, 4385, 4423] +Triangle: [4394, 4428, 4426] +Triangle: [4378, 4427, 4428] +Triangle: [4428, 4430, 4431] +Triangle: [4428, 4427, 4429] +Triangle: [4367, 4388, 4434] +Triangle: [4368, 4433, 4434] +Triangle: [4468, 4467, 4438] +Triangle: [4463, 4466, 4443] +Triangle: [4462, 4444, 4441] +Triangle: [4455, 4458, 4445] +Triangle: [4451, 4454, 4446] +Triangle: [4439, 4446, 4447] +Triangle: [4470, 4469, 4448] +Triangle: [4440, 4445, 4453] +Triangle: [4452, 4453, 4454] +Triangle: [4444, 4457, 4456] +Triangle: [4456, 4457, 4458] +Triangle: [4442, 4443, 4461] +Triangle: [4461, 4462, 4459] +Triangle: [5331, 4465, 4464] +Triangle: [5328, 5329, 4466] +Triangle: [4449, 4448, 4467] +Triangle: [4450, 4447, 4469] +Triangle: [4504, 4473, 4474] +Triangle: [4499, 4478, 4479] +Triangle: [4495, 4477, 4480] +Triangle: [4476, 4481, 4494] +Triangle: [4475, 4482, 4490] +Triangle: [4486, 4483, 4482] +Triangle: [4506, 4485, 4484] +Triangle: [4488, 4489, 4481] +Triangle: [4487, 4490, 4489] +Triangle: [4492, 4493, 4480] +Triangle: [4491, 4494, 4493] +Triangle: [4478, 4496, 4497] +Triangle: [4496, 4495, 4498] +Triangle: [4471, 4500, 4501] +Triangle: [4500, 4499, 4502] +Triangle: [4485, 4504, 4503] +Triangle: [4506, 4505, 4483] +Triangle: [4539, 4510, 4760] +Triangle: [4538, 4515, 4761] +Triangle: [4772, 4534, 4516] +Triangle: [4770, 4530, 4517] +Triangle: [4526, 4518, 4764] +Triangle: [4518, 4519, 4765] +Triangle: [4541, 4520, 4766] +Triangle: [4763, 4517, 4525] +Triangle: [4767, 4525, 4526] +Triangle: [4762, 4516, 4529] +Triangle: [4769, 4529, 4530] +Triangle: [4761, 4515, 4533] +Triangle: [4771, 4533, 4534] +Triangle: [4759, 4508, 4537] +Triangle: [4773, 4537, 4538] +Triangle: [4520, 4539, 4775] +Triangle: [4519, 4541, 4776] +Triangle: [4575, 4546, 4545] +Triangle: [4574, 4551, 4550] +Triangle: [4570, 4552, 4549] +Triangle: [4563, 4566, 4553] +Triangle: [4562, 4554, 4547] +Triangle: [4554, 4555, 4558] +Triangle: [4577, 4556, 4557] +Triangle: [4548, 4553, 4561] +Triangle: [4561, 4562, 4559] +Triangle: [4552, 4565, 4564] +Triangle: [4564, 4565, 4566] +Triangle: [4551, 4569, 4568] +Triangle: [4569, 4570, 4567] +Triangle: [4543, 4544, 4573] +Triangle: [4573, 4574, 4571] +Triangle: [4556, 4575, 4576] +Triangle: [4555, 4577, 4578] +Triangle: [4611, 4582, 4581] +Triangle: [4610, 4587, 4586] +Triangle: [4603, 4606, 4588] +Triangle: [4599, 4602, 4589] +Triangle: [4598, 4590, 4583] +Triangle: [4583, 4590, 4591] +Triangle: [4614, 4613, 4592] +Triangle: [4584, 4589, 4597] +Triangle: [4596, 4597, 4598] +Triangle: [4585, 4588, 4601] +Triangle: [4600, 4601, 4602] +Triangle: [4586, 4587, 4605] +Triangle: [4604, 4605, 4606] +Triangle: [4579, 4580, 4609] +Triangle: [4609, 4610, 4607] +Triangle: [4592, 4611, 4612] +Triangle: [4594, 4591, 4613] +Triangle: [4617, 4618, 4647] +Triangle: [4622, 4623, 4646] +Triangle: [4621, 4624, 4642] +Triangle: [4620, 4625, 4638] +Triangle: [4631, 4619, 4626] +Triangle: [4630, 4627, 4626] +Triangle: [4650, 4629, 4628] +Triangle: [4632, 4633, 4625] +Triangle: [4632, 4631, 4634] +Triangle: [4636, 4637, 4624] +Triangle: [4635, 4638, 4637] +Triangle: [4640, 4641, 4623] +Triangle: [4639, 4642, 4641] +Triangle: [4615, 4644, 4645] +Triangle: [4644, 4643, 4646] +Triangle: [4648, 4647, 4628] +Triangle: [4650, 4649, 4627] +Triangle: [4684, 4653, 4654] +Triangle: [4658, 4659, 4682] +Triangle: [4657, 4660, 4678] +Triangle: [4671, 4656, 4661] +Triangle: [4655, 4662, 4670] +Triangle: [4655, 4666, 4663] +Triangle: [4686, 4665, 4664] +Triangle: [4656, 4668, 4669] +Triangle: [4667, 4670, 4669] +Triangle: [4672, 4673, 4660] +Triangle: [4672, 4671, 4674] +Triangle: [4676, 4677, 4659] +Triangle: [4675, 4678, 4677] +Triangle: [4651, 4680, 4681] +Triangle: [4680, 4679, 4682] +Triangle: [4665, 4684, 4683] +Triangle: [4686, 4685, 4663] +Triangle: [4720, 4689, 4690] +Triangle: [4694, 4695, 4718] +Triangle: [4693, 4696, 4714] +Triangle: [4707, 4692, 4697] +Triangle: [4691, 4698, 4706] +Triangle: [4702, 4699, 4698] +Triangle: [4701, 4700, 4721] +Triangle: [4692, 4704, 4705] +Triangle: [4704, 4703, 4706] +Triangle: [4708, 4709, 4696] +Triangle: [4707, 4710, 4709] +Triangle: [4712, 4713, 4695] +Triangle: [4711, 4714, 4713] +Triangle: [4687, 4716, 4717] +Triangle: [4716, 4715, 4718] +Triangle: [4720, 4719, 4700] +Triangle: [4722, 4721, 4699] +Triangle: [4756, 4725, 4726] +Triangle: [4751, 4730, 4731] +Triangle: [4747, 4729, 4732] +Triangle: [4728, 4733, 4746] +Triangle: [4739, 4727, 4734] +Triangle: [4738, 4735, 4734] +Triangle: [4737, 4736, 4757] +Triangle: [4728, 4740, 4741] +Triangle: [4739, 4742, 4741] +Triangle: [4744, 4745, 4732] +Triangle: [4743, 4746, 4745] +Triangle: [4730, 4748, 4749] +Triangle: [4748, 4747, 4750] +Triangle: [4723, 4752, 4753] +Triangle: [4752, 4751, 4754] +Triangle: [4756, 4755, 4736] +Triangle: [4738, 4758, 4757] +Triangle: [4765, 4776, 4542] +Triangle: [4766, 4775, 4540] +Triangle: [4536, 4773, 4774] +Triangle: [4507, 4759, 4773] +Triangle: [4532, 4771, 4772] +Triangle: [4514, 4761, 4771] +Triangle: [4528, 4769, 4770] +Triangle: [4513, 4762, 4769] +Triangle: [4524, 4767, 4768] +Triangle: [4512, 4763, 4767] +Triangle: [4776, 4766, 4521] +Triangle: [4511, 4764, 4765] +Triangle: [4523, 4768, 4764] +Triangle: [4527, 4770, 4763] +Triangle: [4531, 4772, 4762] +Triangle: [4535, 4774, 4761] +Triangle: [4775, 4760, 4509] +Triangle: [4577, 4794, 4784] +Triangle: [4566, 4788, 4781] +Triangle: [4561, 4785, 4786] +Triangle: [4562, 4786, 4782] +Triangle: [4555, 4783, 4794] +Triangle: [4573, 4544, 4777] +Triangle: [4574, 4573, 4791] +Triangle: [4569, 4551, 4779] +Triangle: [4570, 4569, 4789] +Triangle: [4565, 4552, 4780] +Triangle: [4551, 4574, 4792] +Triangle: [4554, 4782, 4783] +Triangle: [4565, 4787, 4788] +Triangle: [4556, 4784, 4793] +Triangle: [4552, 4570, 4790] +Triangle: [4553, 4781, 4785] +Triangle: [4546, 4575, 4793] +Triangle: [4834, 4798, 4822] +Triangle: [4814, 4803, 4823] +Triangle: [4820, 4804, 4824] +Triangle: [4818, 4805, 4825] +Triangle: [4831, 4816, 4806] +Triangle: [4845, 4844, 4807] +Triangle: [4842, 4840, 4808] +Triangle: [4796, 4813, 4829] +Triangle: [4813, 4814, 4830] +Triangle: [4805, 4816, 4831] +Triangle: [4804, 4818, 4832] +Triangle: [4803, 4820, 4833] +Triangle: [4823, 4833, 4819] +Triangle: [4801, 4824, 4832] +Triangle: [4825, 4831, 4815] +Triangle: [4829, 4830, 4811] +Triangle: [4795, 4821, 4829] +Triangle: [4841, 4842, 4828] +Triangle: [4845, 4827, 4810] +Triangle: [4815, 4831, 4826] +Triangle: [4832, 4825, 4800] +Triangle: [4819, 4833, 4824] +Triangle: [4830, 4823, 4802] +Triangle: [4835, 4836, 4822] +Triangle: [4837, 4839, 4836] +Triangle: [4838, 4834, 4836] +Triangle: [4808, 4838, 4839] +Triangle: [4828, 4839, 4837] +Triangle: [4810, 4827, 4842] +Triangle: [4827, 4807, 4840] +Triangle: [4826, 4845, 4843] +Triangle: [4826, 4806, 4844] +Triangle: [4879, 4859, 4849] +Triangle: [4865, 4854, 4874] +Triangle: [4884, 4871, 4855] +Triangle: [5180, 5178, 4856] +Triangle: [4867, 4857, 4877] +Triangle: [4857, 4858, 4878] +Triangle: [4858, 4859, 4879] +Triangle: [4847, 4864, 4880] +Triangle: [4864, 4865, 4881] +Triangle: [4876, 4856, 4867] +Triangle: [5176, 4869, 4883] +Triangle: [4874, 4854, 4871] +Triangle: [4853, 4874, 4884] +Triangle: [5177, 4883, 4868] +Triangle: [4851, 4876, 4882] +Triangle: [4880, 4881, 4862] +Triangle: [4846, 4872, 4880] +Triangle: [4878, 4879, 4860] +Triangle: [4877, 4878, 4861] +Triangle: [4882, 4877, 4850] +Triangle: [5179, 5180, 4876] +Triangle: [4884, 4875, 4852] +Triangle: [4881, 4874, 4853] +Triangle: [4879, 4873, 4848] +Triangle: [4898, 4888, 4887] +Triangle: [4904, 4893, 4892] +Triangle: [4909, 4910, 4894] +Triangle: [4908, 4895, 4890] +Triangle: [4905, 4906, 4896] +Triangle: [4889, 4896, 4897] +Triangle: [4900, 4897, 4898] +Triangle: [4885, 4886, 4903] +Triangle: [4902, 4903, 4904] +Triangle: [4895, 4906, 4905] +Triangle: [4894, 4908, 4907] +Triangle: [4893, 4910, 4909] +Triangle: [4924, 4914, 4938] +Triangle: [4930, 4919, 4939] +Triangle: [4949, 4936, 4920] +Triangle: [4934, 4921, 4941] +Triangle: [4947, 4932, 4922] +Triangle: [4942, 4922, 4923] +Triangle: [4923, 4924, 4944] +Triangle: [4937, 4912, 4929] +Triangle: [4945, 4929, 4930] +Triangle: [4921, 4932, 4947] +Triangle: [4920, 4934, 4948] +Triangle: [4919, 4936, 4949] +Triangle: [4939, 4949, 4935] +Triangle: [4940, 4948, 4933] +Triangle: [4941, 4947, 4931] +Triangle: [4928, 4945, 4946] +Triangle: [4911, 4937, 4945] +Triangle: [4943, 4944, 4925] +Triangle: [4915, 4942, 4943] +Triangle: [4931, 4947, 4942] +Triangle: [4948, 4941, 4916] +Triangle: [4935, 4949, 4940] +Triangle: [4946, 4939, 4918] +Triangle: [4944, 4938, 4913] +Triangle: [4963, 4953, 4977] +Triangle: [4969, 4958, 4978] +Triangle: [4988, 4975, 4959] +Triangle: [4973, 4960, 4980] +Triangle: [4986, 4971, 4961] +Triangle: [4961, 4962, 4982] +Triangle: [4962, 4963, 4983] +Triangle: [4976, 4951, 4968] +Triangle: [4968, 4969, 4985] +Triangle: [4980, 4960, 4971] +Triangle: [4959, 4973, 4987] +Triangle: [4978, 4958, 4975] +Triangle: [4957, 4978, 4988] +Triangle: [4979, 4987, 4972] +Triangle: [4955, 4980, 4986] +Triangle: [4984, 4985, 4966] +Triangle: [4950, 4976, 4984] +Triangle: [4982, 4983, 4964] +Triangle: [4981, 4982, 4965] +Triangle: [4970, 4986, 4981] +Triangle: [4987, 4980, 4955] +Triangle: [4988, 4979, 4956] +Triangle: [4985, 4978, 4957] +Triangle: [4983, 4977, 4952] +Triangle: [5028, 4992, 5016] +Triangle: [5008, 4997, 5017] +Triangle: [5052, 4998, 5018] +Triangle: [5046, 4999, 5019] +Triangle: [5040, 5000, 5020] +Triangle: [5038, 5001, 5021] +Triangle: [5036, 5034, 5002] +Triangle: [4990, 5007, 5023] +Triangle: [5007, 5008, 5024] +Triangle: [5045, 5044, 5010] +Triangle: [5050, 5012, 5026] +Triangle: [5017, 4997, 5014] +Triangle: [5017, 5027, 5013] +Triangle: [5051, 5026, 5011] +Triangle: [5045, 5025, 5009] +Triangle: [5023, 5024, 5005] +Triangle: [4989, 5015, 5023] +Triangle: [5035, 5036, 5022] +Triangle: [5037, 5039, 5021] +Triangle: [5042, 5020, 4993] +Triangle: [5047, 5048, 5019] +Triangle: [5054, 5018, 4995] +Triangle: [5024, 5017, 4996] +Triangle: [5029, 5030, 5016] +Triangle: [5033, 5030, 5029] +Triangle: [5032, 5028, 5030] +Triangle: [5002, 5032, 5033] +Triangle: [5022, 5033, 5031] +Triangle: [5004, 5021, 5036] +Triangle: [5021, 5001, 5034] +Triangle: [4993, 5020, 5039] +Triangle: [5000, 5038, 5039] +Triangle: [5025, 5042, 5041] +Triangle: [5010, 5040, 5042] +Triangle: [4994, 5019, 5045] +Triangle: [5019, 4999, 5044] +Triangle: [5026, 5048, 5047] +Triangle: [5012, 5046, 5048] +Triangle: [5018, 5051, 5049] +Triangle: [4998, 5050, 5051] +Triangle: [5027, 5054, 5053] +Triangle: [5014, 5052, 5054] +Triangle: [5088, 5058, 5078] +Triangle: [5076, 5064, 5080] +Triangle: [5074, 5065, 5081] +Triangle: [5085, 5072, 5066] +Triangle: [5099, 5098, 5067] +Triangle: [5096, 5094, 5068] +Triangle: [5056, 5063, 5079] +Triangle: [5081, 5065, 5072] +Triangle: [5064, 5074, 5086] +Triangle: [5063, 5076, 5087] +Triangle: [5079, 5087, 5075] +Triangle: [5080, 5086, 5073] +Triangle: [5060, 5081, 5085] +Triangle: [5055, 5077, 5079] +Triangle: [5095, 5096, 5084] +Triangle: [5099, 5083, 5070] +Triangle: [5085, 5082, 5059] +Triangle: [5086, 5081, 5060] +Triangle: [5087, 5080, 5061] +Triangle: [5089, 5090, 5078] +Triangle: [5093, 5090, 5089] +Triangle: [5092, 5088, 5090] +Triangle: [5084, 5068, 5092] +Triangle: [5069, 5084, 5093] +Triangle: [5070, 5083, 5096] +Triangle: [5083, 5067, 5094] +Triangle: [5082, 5099, 5097] +Triangle: [5066, 5098, 5099] +Triangle: [5141, 5139, 5103] +Triangle: [5119, 5108, 5128] +Triangle: [5163, 5109, 5129] +Triangle: [5157, 5110, 5130] +Triangle: [5153, 5151, 5111] +Triangle: [5150, 5149, 5112] +Triangle: [5145, 5113, 5133] +Triangle: [5101, 5118, 5134] +Triangle: [5169, 5119, 5135] +Triangle: [5156, 5155, 5121] +Triangle: [5161, 5123, 5137] +Triangle: [5173, 5125, 5138] +Triangle: [5174, 5138, 5124] +Triangle: [5162, 5137, 5122] +Triangle: [5154, 5156, 5136] +Triangle: [5170, 5135, 5116] +Triangle: [5100, 5126, 5134] +Triangle: [5147, 5133, 5114] +Triangle: [5148, 5150, 5132] +Triangle: [5153, 5131, 5104] +Triangle: [5158, 5159, 5130] +Triangle: [5165, 5129, 5106] +Triangle: [5135, 5128, 5107] +Triangle: [5141, 5127, 5102] +Triangle: [5142, 5144, 5141] +Triangle: [5143, 5139, 5141] +Triangle: [5113, 5143, 5144] +Triangle: [5114, 5133, 5144] +Triangle: [5115, 5132, 5147] +Triangle: [5132, 5112, 5145] +Triangle: [5104, 5131, 5150] +Triangle: [5131, 5111, 5149] +Triangle: [5136, 5153, 5152] +Triangle: [5121, 5151, 5153] +Triangle: [5105, 5130, 5156] +Triangle: [5130, 5110, 5155] +Triangle: [5137, 5159, 5158] +Triangle: [5123, 5157, 5159] +Triangle: [5129, 5162, 5160] +Triangle: [5109, 5161, 5162] +Triangle: [5138, 5165, 5164] +Triangle: [5125, 5163, 5165] +Triangle: [5134, 5168, 5166] +Triangle: [5118, 5167, 5168] +Triangle: [5168, 5170, 5171] +Triangle: [5167, 5169, 5170] +Triangle: [5128, 5174, 5172] +Triangle: [5108, 5173, 5174] +Triangle: [4875, 5177, 5175] +Triangle: [4855, 5176, 5177] +Triangle: [4868, 4883, 5180] +Triangle: [4869, 5178, 5180] +Triangle: [5189, 5185, 5186] +Triangle: [5184, 5185, 5189] +Triangle: [5189, 5187, 5188] +Triangle: [5182, 5183, 5189] +Triangle: [5200, 5201, 1934] +Triangle: [1935, 1934, 5201] +Triangle: [1936, 1935, 5202] +Triangle: [1936, 5203, 5204] +Triangle: [1937, 5204, 5205] +Triangle: [1938, 5205, 5206] +Triangle: [1942, 1939, 5206] +Triangle: [1942, 5209, 5208] +Triangle: [5227, 5207, 5208] +Triangle: [1940, 5207, 5197] +Triangle: [735, 5190, 5200] +Triangle: [736, 5191, 5190] +Triangle: [737, 5192, 5191] +Triangle: [5193, 5192, 737] +Triangle: [5194, 5193, 738] +Triangle: [5195, 5194, 739] +Triangle: [744, 5199, 5195] +Triangle: [744, 743, 5198] +Triangle: [5198, 5196, 5216] +Triangle: [5197, 5196, 741] +Triangle: [5218, 5216, 733] +Triangle: [1932, 5227, 5228] +Triangle: [5220, 5221, 5201] +Triangle: [5202, 5201, 5221] +Triangle: [5203, 5202, 5222] +Triangle: [5204, 5203, 5223] +Triangle: [5205, 5204, 5224] +Triangle: [5205, 5225, 5226] +Triangle: [5206, 5226, 5229] +Triangle: [5209, 5229, 5228] +Triangle: [5207, 5227, 5217] +Triangle: [5190, 5210, 5220] +Triangle: [5191, 5211, 5210] +Triangle: [5192, 5212, 5211] +Triangle: [5193, 5213, 5212] +Triangle: [5194, 5214, 5213] +Triangle: [5215, 5214, 5194] +Triangle: [5219, 5215, 5195] +Triangle: [5199, 5198, 5218] +Triangle: [5217, 5216, 5196] +Triangle: [5234, 5236, 5237] +Triangle: [5238, 5239, 5237] +Triangle: [5240, 5241, 5239] +Triangle: [5240, 5242, 5243] +Triangle: [5244, 5245, 5243] +Triangle: [5244, 5246, 5247] +Triangle: [5246, 5248, 5249] +Triangle: [5248, 5250, 5251] +Triangle: [5252, 5253, 5251] +Triangle: [5254, 5255, 5253] +Triangle: [5256, 5257, 5255] +Triangle: [5258, 5259, 5257] +Triangle: [5260, 5261, 5259] +Triangle: [5231, 5262, 5261] +Triangle: [5268, 5267, 5265] +Triangle: [5231, 5232, 5233] +Triangle: [5267, 5268, 5270] +Triangle: [5272, 5271, 5269] +Triangle: [5274, 5273, 5271] +Triangle: [5276, 5275, 5273] +Triangle: [5276, 5278, 5277] +Triangle: [5278, 5280, 5279] +Triangle: [5280, 5282, 5281] +Triangle: [5282, 5284, 5283] +Triangle: [5284, 5286, 5285] +Triangle: [5288, 5287, 5285] +Triangle: [5288, 5290, 5289] +Triangle: [5290, 5292, 5291] +Triangle: [5292, 5294, 5293] +Triangle: [5296, 5295, 5293] +Triangle: [5296, 5298, 5297] +Triangle: [5300, 5299, 5297] +Triangle: [5300, 5302, 5301] +Triangle: [5304, 5303, 5301] +Triangle: [5304, 5306, 5305] +Triangle: [5306, 5308, 5307] +Triangle: [5308, 5310, 5309] +Triangle: [5310, 5312, 5311] +Triangle: [5312, 5314, 5313] +Triangle: [5314, 5316, 5315] +Triangle: [5316, 5318, 5317] +Triangle: [5318, 5320, 5319] +Triangle: [5320, 5322, 5321] +Triangle: [5322, 5324, 5323] +Triangle: [5324, 5326, 5325] +Triangle: [5326, 5327, 5264] +Triangle: [5266, 5265, 5264] +Triangle: [5232, 5234, 5235] +Triangle: [4465, 5329, 5328] +Triangle: [4436, 5331, 5330] +Triangle: [2014, 2015, 2028] +Triangle: [3632, 3635, 5332] +Triangle: [3620, 3627, 5335] +Triangle: [3723, 5339, 5340] +Triangle: [5339, 5338, 5341] +Triangle: [3739, 5340, 5336] +Triangle: [5340, 5341, 5337] +Triangle: [3708, 5343, 5346] +Triangle: [5343, 5342, 5347] +Triangle: [3733, 5346, 5344] +Triangle: [5346, 5347, 5345] +Triangle: [5351, 5352, 4042] +Triangle: [5350, 5353, 5352] +Triangle: [5352, 5348, 4027] +Triangle: [5352, 5353, 5349] +Triangle: [3634, 5355, 5354] +Triangle: [5357, 5358, 4196] +Triangle: [5358, 5356, 4182] +Triangle: [5359, 5361, 4188] +Triangle: [5361, 5360, 4168] +Triangle: [3658, 5362, 5364] +Triangle: [5364, 5363, 3661] +Triangle: [5366, 5367, 4093] +Triangle: [4093, 5367, 5365] +Triangle: [4088, 5370, 5369] +Triangle: [4061, 5368, 5370] +Triangle: [5373, 5372, 3663] +Triangle: [3656, 5371, 5373] +Triangle: [4191, 5376, 5375] +Triangle: [5374, 5376, 4191] +Triangle: [4205, 5379, 5378] +Triangle: [5378, 5377, 4204] +Triangle: [3700, 5382, 5381] +Triangle: [3702, 5381, 5380] +Triangle: [3725, 5384, 5385] +Triangle: [3740, 5385, 5383] +Triangle: [4011, 5386, 5388] +Triangle: [4036, 5388, 5387] +Triangle: [5389, 5391, 4189] +Triangle: [5391, 5390, 4169] +Triangle: [5393, 5394, 4043] +Triangle: [4043, 5394, 5392] +Triangle: [3709, 5395, 5397] +Triangle: [5397, 5396, 3712] +Triangle: [3602, 3600, 5398] +Triangle: [5398, 3600, 3601] +Triangle: [5398, 3344, 3349] +Triangle: [3342, 3344, 5398] +Triangle: [3603, 5399, 3357] +Triangle: [3352, 5399, 3603] +Triangle: [3351, 3400, 5399] +Triangle: [3357, 5399, 3400] +=== Vertex Weights (Max 5 bones per vertex) === +Vertex 0: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.202792 + Group: 'LeftHand', Weight: 0.765915 + Group: 'LeftHandPinky1', Weight: 0.004525 +Vertex 1: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.418454 + Group: 'LeftHand', Weight: 0.567966 +Vertex 2: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.054532 + Group: 'LeftHand', Weight: 0.933015 +Vertex 3: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.115960 + Group: 'LeftHand', Weight: 0.842882 + Group: 'LeftHandPinky1', Weight: 0.016523 +Vertex 4: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.078842 + Group: 'LeftHand', Weight: 0.874936 + Group: 'LeftHandPinky1', Weight: 0.009242 +Vertex 5: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.066944 + Group: 'LeftHand', Weight: 0.889032 +Vertex 6: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.068703 + Group: 'LeftHand', Weight: 0.884850 + Group: 'LeftHandThumb1', Weight: 0.019632 +Vertex 7: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.117496 + Group: 'LeftHand', Weight: 0.829195 + Group: 'LeftHandThumb1', Weight: 0.045681 +Vertex 8: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.155097 + Group: 'LeftHand', Weight: 0.814304 + Group: 'LeftHandThumb1', Weight: 0.008183 +Vertex 9: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.336059 + Group: 'LeftHand', Weight: 0.618435 + Group: 'LeftHandThumb1', Weight: 0.037020 +Vertex 10: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.310578 + Group: 'LeftHand', Weight: 0.653322 + Group: 'LeftHandThumb1', Weight: 0.019197 +Vertex 11: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.048256 + Group: 'LeftHand', Weight: 0.945828 +Vertex 12: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.127772 + Group: 'LeftHand', Weight: 0.866699 +Vertex 13: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.998642 +Vertex 14: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.997987 +Vertex 15: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991908 +Vertex 16: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.998240 +Vertex 17: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.992845 +Vertex 18: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.987412 +Vertex 19: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.983232 +Vertex 20: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.980031 +Vertex 21: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.988615 +Vertex 22: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.981729 +Vertex 23: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.985488 +Vertex 24: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.994747 +Vertex 25: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.996758 +Vertex 26: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.771133 + Group: 'LeftArm', Weight: 0.182643 +Vertex 27: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.779945 + Group: 'LeftArm', Weight: 0.195177 +Vertex 28: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.731322 + Group: 'LeftArm', Weight: 0.099000 +Vertex 29: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.011717 + Group: 'LeftShoulder', Weight: 0.726521 + Group: 'LeftArm', Weight: 0.161566 +Vertex 30: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.030205 + Group: 'LeftShoulder', Weight: 0.623576 + Group: 'LeftArm', Weight: 0.285593 +Vertex 31: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.045909 + Group: 'Spine2', Weight: 0.068744 + Group: 'LeftShoulder', Weight: 0.574601 + Group: 'LeftArm', Weight: 0.284963 +Vertex 32: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068289 + Group: 'Spine2', Weight: 0.083489 + Group: 'LeftShoulder', Weight: 0.524588 + Group: 'LeftArm', Weight: 0.294693 +Vertex 33: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.074456 + Group: 'Spine2', Weight: 0.086167 + Group: 'LeftShoulder', Weight: 0.568376 + Group: 'LeftArm', Weight: 0.239917 +Vertex 34: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.019875 + Group: 'Spine2', Weight: 0.031098 + Group: 'LeftShoulder', Weight: 0.651137 + Group: 'LeftArm', Weight: 0.026662 +Vertex 35: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.076099 + Group: 'Spine2', Weight: 0.083393 + Group: 'LeftShoulder', Weight: 0.572075 + Group: 'LeftArm', Weight: 0.216431 +Vertex 36: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.059015 + Group: 'Spine2', Weight: 0.060769 + Group: 'LeftShoulder', Weight: 0.602595 + Group: 'LeftArm', Weight: 0.162414 +Vertex 37: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.746739 + Group: 'LeftArm', Weight: 0.197573 +Vertex 38: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.751346 + Group: 'LeftArm', Weight: 0.235135 +Vertex 39: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.994002 +Vertex 40: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.993985 +Vertex 41: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.992396 +Vertex 42: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.993189 +Vertex 43: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.990005 +Vertex 44: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.987139 +Vertex 45: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.983448 +Vertex 46: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.982430 +Vertex 47: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.992042 +Vertex 48: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.986438 +Vertex 49: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.990405 +Vertex 50: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.992617 +Vertex 51: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.993303 +Vertex 52: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.960669 + Group: 'LeftForeArm', Weight: 0.025525 +Vertex 53: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.957409 + Group: 'LeftForeArm', Weight: 0.032190 +Vertex 54: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.967218 + Group: 'LeftForeArm', Weight: 0.014639 +Vertex 55: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.972243 + Group: 'LeftForeArm', Weight: 0.004970 +Vertex 56: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.962396 + Group: 'LeftForeArm', Weight: 0.023627 +Vertex 57: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.983442 +Vertex 58: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991748 +Vertex 59: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.959309 + Group: 'LeftForeArm', Weight: 0.028983 +Vertex 60: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.989557 +Vertex 61: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.984846 +Vertex 62: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.977674 +Vertex 63: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.967715 + Group: 'LeftForeArm', Weight: 0.012073 +Vertex 64: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.977861 +Vertex 65: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.285431 + Group: 'LeftForeArm', Weight: 0.714397 +Vertex 66: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.187467 + Group: 'LeftForeArm', Weight: 0.812436 +Vertex 67: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.190656 + Group: 'LeftForeArm', Weight: 0.809238 +Vertex 68: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.272071 + Group: 'LeftForeArm', Weight: 0.727882 +Vertex 69: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.485166 + Group: 'LeftForeArm', Weight: 0.514751 +Vertex 70: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.486143 + Group: 'LeftForeArm', Weight: 0.513791 +Vertex 71: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.236631 + Group: 'LeftForeArm', Weight: 0.763198 +Vertex 72: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.197145 + Group: 'LeftForeArm', Weight: 0.802765 +Vertex 73: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.234382 + Group: 'LeftForeArm', Weight: 0.765579 +Vertex 74: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.209094 + Group: 'LeftForeArm', Weight: 0.790771 +Vertex 75: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.211175 + Group: 'LeftForeArm', Weight: 0.788791 +Vertex 76: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.442099 + Group: 'LeftForeArm', Weight: 0.557859 +Vertex 77: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.205957 + Group: 'LeftForeArm', Weight: 0.793966 +Vertex 78: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.133188 + Group: 'Spine2', Weight: 0.144669 + Group: 'LeftShoulder', Weight: 0.525703 + Group: 'LeftArm', Weight: 0.017614 +Vertex 79: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.147550 + Group: 'Spine2', Weight: 0.170265 + Group: 'LeftShoulder', Weight: 0.490883 + Group: 'LeftArm', Weight: 0.024216 +Vertex 80: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.092280 + Group: 'Spine2', Weight: 0.090564 + Group: 'LeftShoulder', Weight: 0.609080 + Group: 'LeftArm', Weight: 0.007915 +Vertex 81: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.063398 + Group: 'Spine2', Weight: 0.073366 + Group: 'LeftShoulder', Weight: 0.707444 + Group: 'LeftArm', Weight: 0.000000 +Vertex 82: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.025833 + Group: 'LeftShoulder', Weight: 0.813176 + Group: 'LeftArm', Weight: 0.000000 +Vertex 83: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.579640 + Group: 'Spine1', Weight: 0.125843 + Group: 'RightShoulder', Weight: 0.108308 + Group: 'LeftShoulder', Weight: 0.106698 + Group: 'Neck', Weight: 0.079511 +Vertex 84: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.522653 + Group: 'Neck', Weight: 0.177375 + Group: 'RightShoulder', Weight: 0.121701 + Group: 'LeftShoulder', Weight: 0.119835 + Group: 'Spine1', Weight: 0.058436 +Vertex 85: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.026758 + Group: 'Spine2', Weight: 0.104692 + Group: 'Neck', Weight: 0.062956 + Group: 'LeftShoulder', Weight: 0.746458 + Group: 'LeftArm', Weight: 0.000000 +Vertex 86: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.100280 + Group: 'Spine2', Weight: 0.191701 + Group: 'Neck', Weight: 0.028541 + Group: 'LeftShoulder', Weight: 0.606688 + Group: 'LeftArm', Weight: 0.000000 +Vertex 87: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.563113 + Group: 'Spine2', Weight: 0.248131 + Group: 'Neck', Weight: 0.151443 + Group: 'Spine1', Weight: 0.035348 + Group: 'RightShoulder', Weight: 0.001966 +Vertex 88: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.513051 + Group: 'LeftShoulder', Weight: 0.252338 + Group: 'Spine1', Weight: 0.117438 + Group: 'Neck', Weight: 0.077278 + Group: 'RightShoulder', Weight: 0.039895 +Vertex 89: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.780558 + Group: 'Spine', Weight: 0.150756 + Group: 'Spine2', Weight: 0.068686 + Group: 'LeftArm', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 90: +Vertex groups: 5 + Group: 'Hips', Weight: 0.074091 + Group: 'Spine', Weight: 0.585896 + Group: 'Spine1', Weight: 0.252114 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 91: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.501168 + Group: 'Spine1', Weight: 0.352348 + Group: 'RightShoulder', Weight: 0.071353 + Group: 'LeftShoulder', Weight: 0.070420 + Group: 'Neck', Weight: 0.004710 +Vertex 92: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.501209 + Group: 'Spine1', Weight: 0.266699 + Group: 'LeftShoulder', Weight: 0.175022 + Group: 'Neck', Weight: 0.029451 + Group: 'RightShoulder', Weight: 0.027618 +Vertex 93: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.772834 + Group: 'Spine2', Weight: 0.127146 + Group: 'Spine', Weight: 0.056215 + Group: 'LeftShoulder', Weight: 0.043805 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 94: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.210596 + Group: 'Spine2', Weight: 0.296121 + Group: 'Neck', Weight: 0.001830 + Group: 'LeftShoulder', Weight: 0.399608 + Group: 'LeftArm', Weight: 0.000000 +Vertex 95: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.184600 + Group: 'Spine2', Weight: 0.177684 + Group: 'LeftShoulder', Weight: 0.515912 + Group: 'LeftArm', Weight: 0.000000 +Vertex 96: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.201170 + Group: 'Spine2', Weight: 0.181222 + Group: 'LeftShoulder', Weight: 0.472825 + Group: 'LeftArm', Weight: 0.000000 +Vertex 97: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.205067 + Group: 'Spine2', Weight: 0.227837 + Group: 'LeftShoulder', Weight: 0.412349 + Group: 'LeftArm', Weight: 0.000000 +Vertex 98: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.206995 + Group: 'Spine2', Weight: 0.240536 + Group: 'LeftShoulder', Weight: 0.391877 + Group: 'LeftArm', Weight: 0.000000 +Vertex 99: +Vertex groups: 3 + Group: 'Neck', Weight: 0.007656 + Group: 'LeftShoulder', Weight: 0.860126 + Group: 'LeftArm', Weight: 0.000000 +Vertex 100: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.053043 + Group: 'Neck', Weight: 0.107408 + Group: 'LeftShoulder', Weight: 0.777013 + Group: 'LeftArm', Weight: 0.000000 +Vertex 101: +Vertex groups: 5 + Group: 'Spine', Weight: 0.029326 + Group: 'Spine1', Weight: 0.726597 + Group: 'Spine2', Weight: 0.133793 + Group: 'LeftShoulder', Weight: 0.056535 + Group: 'LeftArm', Weight: 0.000000 +Vertex 102: +Vertex groups: 5 + Group: 'Spine', Weight: 0.001508 + Group: 'Spine1', Weight: 0.670205 + Group: 'Spine2', Weight: 0.173923 + Group: 'LeftShoulder', Weight: 0.077755 + Group: 'LeftArm', Weight: 0.000000 +Vertex 103: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.467911 + Group: 'Neck', Weight: 0.260901 + Group: 'RightShoulder', Weight: 0.120710 + Group: 'LeftShoulder', Weight: 0.118753 + Group: 'Spine1', Weight: 0.031725 +Vertex 104: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.061785 + Group: 'Neck', Weight: 0.196185 + Group: 'LeftShoulder', Weight: 0.699769 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 105: +Vertex groups: 4 + Group: 'Neck', Weight: 0.242439 + Group: 'LeftShoulder', Weight: 0.713273 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 106: +Vertex groups: 3 + Group: 'Neck', Weight: 0.094291 + Group: 'LeftShoulder', Weight: 0.854799 + Group: 'LeftArm', Weight: 0.000000 +Vertex 107: +Vertex groups: 3 + Group: 'Neck', Weight: 0.008254 + Group: 'LeftShoulder', Weight: 0.879407 + Group: 'LeftArm', Weight: 0.000000 +Vertex 108: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.338849 + Group: 'Neck', Weight: 0.325656 + Group: 'Spine2', Weight: 0.315811 + Group: 'RightShoulder', Weight: 0.019683 + Group: 'LeftArm', Weight: 0.000000 +Vertex 109: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.480953 + Group: 'LeftShoulder', Weight: 0.205850 + Group: 'Neck', Weight: 0.181795 + Group: 'RightShoulder', Weight: 0.075540 + Group: 'Spine1', Weight: 0.055863 +Vertex 110: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.450780 + Group: 'Spine2', Weight: 0.291892 + Group: 'Neck', Weight: 0.218497 + Group: 'Spine1', Weight: 0.019689 + Group: 'RightShoulder', Weight: 0.019142 +Vertex 111: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.430062 + Group: 'Neck', Weight: 0.273929 + Group: 'LeftShoulder', Weight: 0.198499 + Group: 'RightShoulder', Weight: 0.071829 + Group: 'Spine1', Weight: 0.025681 +Vertex 112: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.073392 + Group: 'Neck', Weight: 0.329482 + Group: 'LeftShoulder', Weight: 0.557257 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 113: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.071254 + Group: 'Neck', Weight: 0.433498 + Group: 'LeftShoulder', Weight: 0.456295 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 114: +Vertex groups: 4 + Group: 'Neck', Weight: 0.587592 + Group: 'LeftShoulder', Weight: 0.370014 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 115: +Vertex groups: 4 + Group: 'Neck', Weight: 0.406267 + Group: 'LeftShoulder', Weight: 0.549756 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 116: +Vertex groups: 5 + Group: 'Spine', Weight: 0.012294 + Group: 'Spine1', Weight: 0.381942 + Group: 'Spine2', Weight: 0.291088 + Group: 'LeftShoulder', Weight: 0.215001 + Group: 'LeftArm', Weight: 0.000000 +Vertex 117: +Vertex groups: 5 + Group: 'Spine', Weight: 0.011242 + Group: 'Spine1', Weight: 0.341155 + Group: 'Spine2', Weight: 0.292428 + Group: 'LeftShoulder', Weight: 0.242790 + Group: 'LeftArm', Weight: 0.000000 +Vertex 118: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.683564 + Group: 'Spine2', Weight: 0.141601 + Group: 'LeftShoulder', Weight: 0.087634 + Group: 'Spine', Weight: 0.087201 + Group: 'LeftArm', Weight: 0.000000 +Vertex 119: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.672332 + Group: 'Spine2', Weight: 0.140827 + Group: 'LeftShoulder', Weight: 0.096781 + Group: 'Spine', Weight: 0.090060 + Group: 'LeftArm', Weight: 0.000000 +Vertex 120: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.726443 + Group: 'Spine', Weight: 0.132192 + Group: 'Spine2', Weight: 0.096252 + Group: 'LeftShoulder', Weight: 0.045113 + Group: 'LeftArm', Weight: 0.000000 +Vertex 121: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.706109 + Group: 'Spine', Weight: 0.153005 + Group: 'Spine2', Weight: 0.086904 + Group: 'LeftShoulder', Weight: 0.053982 + Group: 'LeftArm', Weight: 0.000000 +Vertex 122: +Vertex groups: 5 + Group: 'Hips', Weight: 0.017702 + Group: 'Spine', Weight: 0.565722 + Group: 'Spine1', Weight: 0.270833 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 123: +Vertex groups: 4 + Group: 'Spine', Weight: 0.544430 + Group: 'Spine1', Weight: 0.302601 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 124: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.752878 + Group: 'Spine', Weight: 0.159708 + Group: 'Spine2', Weight: 0.076879 + Group: 'LeftShoulder', Weight: 0.010535 + Group: 'LeftArm', Weight: 0.000000 +Vertex 125: +Vertex groups: 5 + Group: 'Hips', Weight: 0.054929 + Group: 'Spine', Weight: 0.577374 + Group: 'Spine1', Weight: 0.255750 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 126: +Vertex groups: 5 + Group: 'Spine', Weight: 0.132879 + Group: 'Spine1', Weight: 0.752506 + Group: 'Spine2', Weight: 0.052775 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 127: +Vertex groups: 5 + Group: 'Hips', Weight: 0.086133 + Group: 'Spine', Weight: 0.590240 + Group: 'Spine1', Weight: 0.249914 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 128: +Vertex groups: 5 + Group: 'Spine', Weight: 0.140581 + Group: 'Spine1', Weight: 0.751893 + Group: 'Spine2', Weight: 0.043681 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 129: +Vertex groups: 5 + Group: 'Hips', Weight: 0.094538 + Group: 'Spine', Weight: 0.592894 + Group: 'Spine1', Weight: 0.242459 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 130: +Vertex groups: 5 + Group: 'Spine', Weight: 0.066914 + Group: 'Spine1', Weight: 0.780199 + Group: 'Spine2', Weight: 0.085812 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 131: +Vertex groups: 5 + Group: 'Spine', Weight: 0.030658 + Group: 'Spine1', Weight: 0.754833 + Group: 'Spine2', Weight: 0.121084 + Group: 'LeftShoulder', Weight: 0.008748 + Group: 'RightShoulder', Weight: 0.009388 +Vertex 132: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.656335 + Group: 'Spine2', Weight: 0.203678 + Group: 'LeftShoulder', Weight: 0.039652 + Group: 'RightShoulder', Weight: 0.040715 +Vertex 133: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.662303 + Group: 'Spine2', Weight: 0.191512 + Group: 'LeftShoulder', Weight: 0.076517 + Group: 'Spine', Weight: 0.069668 + Group: 'LeftArm', Weight: 0.000000 +Vertex 134: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.640519 + Group: 'Spine2', Weight: 0.200284 + Group: 'LeftShoulder', Weight: 0.091934 + Group: 'Spine', Weight: 0.067262 + Group: 'LeftArm', Weight: 0.000000 +Vertex 135: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.683129 + Group: 'Spine2', Weight: 0.181417 + Group: 'Spine', Weight: 0.070829 + Group: 'LeftShoulder', Weight: 0.064624 + Group: 'LeftArm', Weight: 0.000000 +Vertex 136: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.770658 + Group: 'Spine2', Weight: 0.125732 + Group: 'Spine', Weight: 0.073208 + Group: 'LeftShoulder', Weight: 0.030401 + Group: 'LeftArm', Weight: 0.000000 +Vertex 137: +Vertex groups: 5 + Group: 'Spine', Weight: 0.094733 + Group: 'Spine1', Weight: 0.777253 + Group: 'Spine2', Weight: 0.066576 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 138: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.584935 + Group: 'Spine2', Weight: 0.244002 + Group: 'LeftShoulder', Weight: 0.132257 + Group: 'Spine', Weight: 0.038806 + Group: 'LeftArm', Weight: 0.000000 +Vertex 139: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.596852 + Group: 'Spine2', Weight: 0.207035 + Group: 'LeftShoulder', Weight: 0.141457 + Group: 'Spine', Weight: 0.054657 + Group: 'LeftArm', Weight: 0.000000 +Vertex 140: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.578926 + Group: 'Spine2', Weight: 0.207305 + Group: 'LeftShoulder', Weight: 0.156791 + Group: 'Spine', Weight: 0.056978 + Group: 'LeftArm', Weight: 0.000000 +Vertex 141: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.550427 + Group: 'Spine2', Weight: 0.263765 + Group: 'LeftShoulder', Weight: 0.170872 + Group: 'Spine', Weight: 0.014936 + Group: 'LeftArm', Weight: 0.000000 +Vertex 142: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.424149 + Group: 'Spine2', Weight: 0.238748 + Group: 'LeftShoulder', Weight: 0.241709 + Group: 'LeftArm', Weight: 0.000000 +Vertex 143: +Vertex groups: 5 + Group: 'Spine', Weight: 0.000538 + Group: 'Spine1', Weight: 0.465227 + Group: 'Spine2', Weight: 0.238972 + Group: 'LeftShoulder', Weight: 0.202609 + Group: 'LeftArm', Weight: 0.000000 +Vertex 144: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.490813 + Group: 'Spine2', Weight: 0.210346 + Group: 'LeftShoulder', Weight: 0.212741 + Group: 'LeftArm', Weight: 0.000000 +Vertex 145: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.530264 + Group: 'Spine2', Weight: 0.208008 + Group: 'LeftShoulder', Weight: 0.181824 + Group: 'LeftArm', Weight: 0.000000 +Vertex 146: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.573750 + Group: 'Spine2', Weight: 0.216816 + Group: 'LeftShoulder', Weight: 0.131245 + Group: 'LeftArm', Weight: 0.000000 +Vertex 147: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.607197 + Group: 'Spine2', Weight: 0.214402 + Group: 'LeftShoulder', Weight: 0.098796 + Group: 'LeftArm', Weight: 0.000000 +Vertex 148: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.727459 + Group: 'Spine2', Weight: 0.155152 + Group: 'Spine', Weight: 0.072338 + Group: 'LeftShoulder', Weight: 0.045052 + Group: 'LeftArm', Weight: 0.000000 +Vertex 149: +Vertex groups: 5 + Group: 'Spine', Weight: 0.001007 + Group: 'Spine1', Weight: 0.543034 + Group: 'Spine2', Weight: 0.202122 + Group: 'LeftShoulder', Weight: 0.170741 + Group: 'LeftArm', Weight: 0.000000 +Vertex 150: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.630723 + Group: 'Spine2', Weight: 0.209566 + Group: 'LeftShoulder', Weight: 0.138168 + Group: 'Spine', Weight: 0.021543 + Group: 'LeftArm', Weight: 0.000000 +Vertex 151: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.654377 + Group: 'Spine2', Weight: 0.195026 + Group: 'LeftShoulder', Weight: 0.100714 + Group: 'Spine', Weight: 0.049883 + Group: 'LeftArm', Weight: 0.000000 +Vertex 152: +Vertex groups: 5 + Group: 'Spine', Weight: 0.002227 + Group: 'Spine1', Weight: 0.608238 + Group: 'Spine2', Weight: 0.180504 + Group: 'LeftShoulder', Weight: 0.133246 + Group: 'LeftArm', Weight: 0.000000 +Vertex 153: +Vertex groups: 5 + Group: 'Spine', Weight: 0.024798 + Group: 'Spine1', Weight: 0.656269 + Group: 'Spine2', Weight: 0.164440 + Group: 'LeftShoulder', Weight: 0.097509 + Group: 'LeftArm', Weight: 0.000000 +Vertex 154: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.699769 + Group: 'Spine2', Weight: 0.168264 + Group: 'LeftShoulder', Weight: 0.080093 + Group: 'Spine', Weight: 0.051873 + Group: 'LeftArm', Weight: 0.000000 +Vertex 155: +Vertex groups: 5 + Group: 'Spine', Weight: 0.003018 + Group: 'Spine1', Weight: 0.657191 + Group: 'Spine2', Weight: 0.171980 + Group: 'LeftShoulder', Weight: 0.094398 + Group: 'LeftArm', Weight: 0.000000 +Vertex 156: +Vertex groups: 5 + Group: 'Spine', Weight: 0.026494 + Group: 'Spine1', Weight: 0.705260 + Group: 'Spine2', Weight: 0.144119 + Group: 'LeftShoulder', Weight: 0.069677 + Group: 'LeftArm', Weight: 0.000000 +Vertex 157: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.743343 + Group: 'Spine2', Weight: 0.143598 + Group: 'LeftShoulder', Weight: 0.058408 + Group: 'Spine', Weight: 0.054650 + Group: 'LeftArm', Weight: 0.000000 +Vertex 158: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.661954 + Group: 'Spine2', Weight: 0.192775 + Group: 'LeftShoulder', Weight: 0.062232 + Group: 'RightShoulder', Weight: 0.014119 + Group: 'LeftArm', Weight: 0.000000 +Vertex 159: +Vertex groups: 5 + Group: 'Spine', Weight: 0.029170 + Group: 'Spine1', Weight: 0.746994 + Group: 'Spine2', Weight: 0.125500 + Group: 'LeftShoulder', Weight: 0.028903 + Group: 'LeftArm', Weight: 0.000000 +Vertex 160: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.550205 + Group: 'Spine2', Weight: 0.278099 + Group: 'LeftShoulder', Weight: 0.083045 + Group: 'RightShoulder', Weight: 0.024169 + Group: 'LeftArm', Weight: 0.000000 +Vertex 161: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.820143 + Group: 'Spine2', Weight: 0.103675 + Group: 'Spine', Weight: 0.064991 + Group: 'LeftShoulder', Weight: 0.011191 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 162: +Vertex groups: 5 + Group: 'Spine', Weight: 0.089515 + Group: 'Spine1', Weight: 0.769196 + Group: 'Spine2', Weight: 0.076288 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 163: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.702212 + Group: 'Spine2', Weight: 0.143505 + Group: 'Spine', Weight: 0.089989 + Group: 'LeftShoulder', Weight: 0.064295 + Group: 'LeftArm', Weight: 0.000000 +Vertex 164: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.677522 + Group: 'Spine2', Weight: 0.159452 + Group: 'LeftShoulder', Weight: 0.084362 + Group: 'Spine', Weight: 0.078665 + Group: 'LeftArm', Weight: 0.000000 +Vertex 165: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.721668 + Group: 'Spine2', Weight: 0.134182 + Group: 'Spine', Weight: 0.093194 + Group: 'LeftShoulder', Weight: 0.050956 + Group: 'LeftArm', Weight: 0.000000 +Vertex 166: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.768882 + Group: 'Spine2', Weight: 0.110354 + Group: 'Spine', Weight: 0.099679 + Group: 'LeftShoulder', Weight: 0.021084 + Group: 'LeftArm', Weight: 0.000000 +Vertex 167: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.594238 + Group: 'Spine2', Weight: 0.220663 + Group: 'LeftShoulder', Weight: 0.137830 + Group: 'Spine', Weight: 0.047270 + Group: 'LeftArm', Weight: 0.000000 +Vertex 168: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.494417 + Group: 'Spine2', Weight: 0.294159 + Group: 'LeftShoulder', Weight: 0.199433 + Group: 'Spine', Weight: 0.011991 + Group: 'LeftArm', Weight: 0.000000 +Vertex 169: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.373386 + Group: 'Spine2', Weight: 0.263512 + Group: 'LeftShoulder', Weight: 0.256473 + Group: 'LeftArm', Weight: 0.000000 +Vertex 170: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.338564 + Group: 'Spine2', Weight: 0.241025 + Group: 'LeftShoulder', Weight: 0.312605 + Group: 'LeftArm', Weight: 0.000000 +Vertex 171: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.420161 + Group: 'Spine2', Weight: 0.215203 + Group: 'LeftShoulder', Weight: 0.271937 + Group: 'LeftArm', Weight: 0.000000 +Vertex 172: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.462613 + Group: 'Spine2', Weight: 0.231598 + Group: 'LeftShoulder', Weight: 0.223250 + Group: 'LeftArm', Weight: 0.000000 +Vertex 173: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.508316 + Group: 'Spine2', Weight: 0.275746 + Group: 'LeftShoulder', Weight: 0.132837 + Group: 'RightShoulder', Weight: 0.002244 + Group: 'LeftArm', Weight: 0.000000 +Vertex 174: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.681046 + Group: 'Spine', Weight: 0.278517 + Group: 'Spine2', Weight: 0.040437 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 175: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.662730 + Group: 'Spine', Weight: 0.284071 + Group: 'Spine2', Weight: 0.048593 + Group: 'LeftShoulder', Weight: 0.004606 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 176: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.686099 + Group: 'Spine', Weight: 0.286823 + Group: 'Spine2', Weight: 0.027078 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 177: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.695430 + Group: 'Spine', Weight: 0.278766 + Group: 'Hips', Weight: 0.018870 + Group: 'Spine2', Weight: 0.006933 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 178: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.689659 + Group: 'Spine', Weight: 0.283659 + Group: 'Hips', Weight: 0.024682 + Group: 'Spine2', Weight: 0.002000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 179: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.682091 + Group: 'Spine', Weight: 0.291651 + Group: 'Spine2', Weight: 0.013868 + Group: 'Hips', Weight: 0.012390 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 180: +Vertex groups: 3 + Group: 'Neck', Weight: 0.066991 + Group: 'LeftShoulder', Weight: 0.878929 + Group: 'LeftArm', Weight: 0.000000 +Vertex 181: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.884314 + Group: 'LeftArm', Weight: 0.000000 +Vertex 182: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.037928 + Group: 'Neck', Weight: 0.010626 + Group: 'LeftShoulder', Weight: 0.878751 + Group: 'LeftArm', Weight: 0.000000 +Vertex 183: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.877258 + Group: 'LeftArm', Weight: 0.000000 +Vertex 184: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.063271 + Group: 'LeftShoulder', Weight: 0.805068 + Group: 'LeftArm', Weight: 0.000000 +Vertex 185: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.527827 + Group: 'RightShoulder', Weight: 0.210946 + Group: 'LeftShoulder', Weight: 0.210841 + Group: 'Neck', Weight: 0.050386 + Group: 'LeftArm', Weight: 0.000000 +Vertex 186: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.089305 + Group: 'LeftShoulder', Weight: 0.819182 + Group: 'LeftArm', Weight: 0.000000 +Vertex 187: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050842 + Group: 'Spine2', Weight: 0.136909 + Group: 'LeftShoulder', Weight: 0.705995 + Group: 'LeftArm', Weight: 0.000000 +Vertex 188: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068620 + Group: 'Spine2', Weight: 0.135430 + Group: 'LeftShoulder', Weight: 0.638632 + Group: 'LeftArm', Weight: 0.000000 +Vertex 189: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.196085 + Group: 'Spine2', Weight: 0.225920 + Group: 'LeftShoulder', Weight: 0.398802 + Group: 'LeftArm', Weight: 0.000000 +Vertex 190: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.130497 + Group: 'Spine2', Weight: 0.154531 + Group: 'LeftShoulder', Weight: 0.488687 + Group: 'LeftArm', Weight: 0.100805 +Vertex 191: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.072017 + Group: 'Spine2', Weight: 0.107833 + Group: 'LeftShoulder', Weight: 0.591157 + Group: 'LeftArm', Weight: 0.115078 +Vertex 192: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.033653 + Group: 'Spine2', Weight: 0.078038 + Group: 'LeftShoulder', Weight: 0.663235 + Group: 'LeftArm', Weight: 0.105577 +Vertex 193: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.024770 + Group: 'Spine2', Weight: 0.163811 + Group: 'LeftShoulder', Weight: 0.719545 + Group: 'LeftArm', Weight: 0.000000 +Vertex 194: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.594449 + Group: 'RightShoulder', Weight: 0.197794 + Group: 'LeftShoulder', Weight: 0.197685 + Group: 'Spine1', Weight: 0.010072 + Group: 'LeftArm', Weight: 0.000000 +Vertex 195: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.123333 + Group: 'Spine2', Weight: 0.187240 + Group: 'LeftShoulder', Weight: 0.532087 + Group: 'LeftArm', Weight: 0.000000 +Vertex 196: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.398645 + Group: 'Neck', Weight: 0.272618 + Group: 'RightShoulder', Weight: 0.164481 + Group: 'LeftShoulder', Weight: 0.164256 + Group: 'LeftArm', Weight: 0.000000 +Vertex 197: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.487105 + Group: 'RightShoulder', Weight: 0.197076 + Group: 'LeftShoulder', Weight: 0.196933 + Group: 'Neck', Weight: 0.118887 + Group: 'LeftArm', Weight: 0.000000 +Vertex 198: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.805452 + Group: 'Spine2', Weight: 0.158625 + Group: 'RightShoulder', Weight: 0.022627 + Group: 'Neck', Weight: 0.013296 + Group: 'LeftArm', Weight: 0.000000 +Vertex 199: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.686147 + Group: 'Spine2', Weight: 0.259509 + Group: 'RightShoulder', Weight: 0.040136 + Group: 'Spine1', Weight: 0.014209 + Group: 'LeftArm', Weight: 0.000000 +Vertex 200: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.031725 + Group: 'Neck', Weight: 0.173254 + Group: 'LeftShoulder', Weight: 0.755989 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 201: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.842200 + Group: 'Spine2', Weight: 0.087169 + Group: 'Neck', Weight: 0.066978 + Group: 'RightShoulder', Weight: 0.003653 + Group: 'LeftArm', Weight: 0.000000 +Vertex 202: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.623960 + Group: 'Spine2', Weight: 0.245344 + Group: 'RightShoulder', Weight: 0.079333 + Group: 'Neck', Weight: 0.051363 + Group: 'LeftArm', Weight: 0.000000 +Vertex 203: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.537580 + Group: 'Spine2', Weight: 0.364086 + Group: 'RightShoulder', Weight: 0.088628 + Group: 'Spine1', Weight: 0.008830 + Group: 'Neck', Weight: 0.000875 +Vertex 204: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.646338 + Group: 'Spine2', Weight: 0.174816 + Group: 'Neck', Weight: 0.113079 + Group: 'RightShoulder', Weight: 0.065767 + Group: 'LeftArm', Weight: 0.000000 +Vertex 205: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.554215 + Group: 'Neck', Weight: 0.255197 + Group: 'Spine2', Weight: 0.133594 + Group: 'RightShoulder', Weight: 0.056994 + Group: 'LeftArm', Weight: 0.000000 +Vertex 206: +Vertex groups: 5 + Group: 'Neck', Weight: 0.629395 + Group: 'Spine2', Weight: 0.142831 + Group: 'RightShoulder', Weight: 0.114054 + Group: 'LeftShoulder', Weight: 0.113721 + Group: 'LeftArm', Weight: 0.000000 +Vertex 207: +Vertex groups: 4 + Group: 'Neck', Weight: 0.785876 + Group: 'LeftShoulder', Weight: 0.158832 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 208: +Vertex groups: 5 + Group: 'Neck', Weight: 0.728923 + Group: 'LeftShoulder', Weight: 0.247854 + Group: 'Spine2', Weight: 0.023062 + Group: 'RightShoulder', Weight: 0.000162 + Group: 'LeftArm', Weight: 0.000000 +Vertex 209: +Vertex groups: 5 + Group: 'Neck', Weight: 0.875958 + Group: 'RightShoulder', Weight: 0.054812 + Group: 'LeftShoulder', Weight: 0.054406 + Group: 'Spine2', Weight: 0.014824 + Group: 'LeftArm', Weight: 0.000000 +Vertex 210: +Vertex groups: 5 + Group: 'Neck', Weight: 0.771899 + Group: 'RightShoulder', Weight: 0.080006 + Group: 'LeftShoulder', Weight: 0.079617 + Group: 'Spine2', Weight: 0.068478 + Group: 'LeftArm', Weight: 0.000000 +Vertex 211: +Vertex groups: 5 + Group: 'Spine', Weight: 0.013914 + Group: 'Spine1', Weight: 0.328828 + Group: 'Spine2', Weight: 0.286579 + Group: 'LeftShoulder', Weight: 0.253227 + Group: 'LeftArm', Weight: 0.000000 +Vertex 212: +Vertex groups: 5 + Group: 'Spine', Weight: 0.053777 + Group: 'Spine1', Weight: 0.524101 + Group: 'Spine2', Weight: 0.204176 + Group: 'LeftShoulder', Weight: 0.154516 + Group: 'LeftArm', Weight: 0.000000 +Vertex 213: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.661747 + Group: 'Spine2', Weight: 0.147039 + Group: 'LeftShoulder', Weight: 0.100828 + Group: 'Spine', Weight: 0.090386 + Group: 'LeftArm', Weight: 0.000000 +Vertex 214: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.697547 + Group: 'Spine', Weight: 0.153674 + Group: 'Spine2', Weight: 0.091168 + Group: 'LeftShoulder', Weight: 0.057611 + Group: 'LeftArm', Weight: 0.000000 +Vertex 215: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.650317 + Group: 'Spine', Weight: 0.286651 + Group: 'Spine2', Weight: 0.053687 + Group: 'LeftShoulder', Weight: 0.009345 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 216: +Vertex groups: 4 + Group: 'Spine', Weight: 0.550707 + Group: 'Spine1', Weight: 0.309911 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 217: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.261346 + Group: 'Spine2', Weight: 0.311761 + Group: 'LeftShoulder', Weight: 0.309357 + Group: 'LeftArm', Weight: 0.000000 +Vertex 218: +Vertex groups: 5 + Group: 'Spine', Weight: 0.041151 + Group: 'Spine1', Weight: 0.479480 + Group: 'Spine2', Weight: 0.249391 + Group: 'LeftShoulder', Weight: 0.167702 + Group: 'LeftArm', Weight: 0.000000 +Vertex 219: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.651101 + Group: 'Spine2', Weight: 0.168588 + Group: 'LeftShoulder', Weight: 0.100781 + Group: 'Spine', Weight: 0.079531 + Group: 'LeftArm', Weight: 0.000000 +Vertex 220: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.704467 + Group: 'Spine', Weight: 0.142951 + Group: 'Spine2', Weight: 0.097978 + Group: 'LeftShoulder', Weight: 0.054604 + Group: 'LeftArm', Weight: 0.000000 +Vertex 221: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.664530 + Group: 'Spine', Weight: 0.273516 + Group: 'Spine2', Weight: 0.055810 + Group: 'LeftShoulder', Weight: 0.006145 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 222: +Vertex groups: 4 + Group: 'Spine', Weight: 0.573576 + Group: 'Spine1', Weight: 0.311100 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 223: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.103494 + Group: 'Spine2', Weight: 0.239355 + Group: 'LeftShoulder', Weight: 0.550459 + Group: 'LeftArm', Weight: 0.000000 +Vertex 224: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.593245 + Group: 'LeftShoulder', Weight: 0.260439 + Group: 'RightShoulder', Weight: 0.084397 + Group: 'Spine1', Weight: 0.061919 + Group: 'LeftArm', Weight: 0.000000 +Vertex 225: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.683984 + Group: 'Spine1', Weight: 0.168230 + Group: 'RightShoulder', Weight: 0.073951 + Group: 'LeftShoulder', Weight: 0.073835 + Group: 'LeftArm', Weight: 0.000000 +Vertex 226: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.520282 + Group: 'LeftShoulder', Weight: 0.355718 + Group: 'Spine1', Weight: 0.078613 + Group: 'RightShoulder', Weight: 0.045387 + Group: 'LeftArm', Weight: 0.000000 +Vertex 227: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.099048 + Group: 'Spine2', Weight: 0.336235 + Group: 'LeftShoulder', Weight: 0.482913 + Group: 'LeftArm', Weight: 0.000000 +Vertex 228: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.207042 + Group: 'Spine2', Weight: 0.376662 + Group: 'LeftShoulder', Weight: 0.322948 + Group: 'LeftArm', Weight: 0.000000 +Vertex 229: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.172634 + Group: 'Spine2', Weight: 0.476893 + Group: 'LeftShoulder', Weight: 0.275900 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 230: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.622049 + Group: 'LeftShoulder', Weight: 0.188832 + Group: 'Spine1', Weight: 0.158570 + Group: 'RightShoulder', Weight: 0.030549 + Group: 'LeftArm', Weight: 0.000000 +Vertex 231: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.620794 + Group: 'Spine1', Weight: 0.272870 + Group: 'RightShoulder', Weight: 0.053221 + Group: 'LeftShoulder', Weight: 0.053115 + Group: 'LeftArm', Weight: 0.000000 +Vertex 232: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.603068 + Group: 'Spine1', Weight: 0.280775 + Group: 'LeftShoulder', Weight: 0.103141 + Group: 'RightShoulder', Weight: 0.013016 + Group: 'LeftArm', Weight: 0.000000 +Vertex 233: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.401854 + Group: 'Spine1', Weight: 0.394793 + Group: 'LeftShoulder', Weight: 0.184058 + Group: 'Spine', Weight: 0.019296 + Group: 'LeftArm', Weight: 0.000000 +Vertex 234: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.319299 + Group: 'Spine2', Weight: 0.473086 + Group: 'LeftShoulder', Weight: 0.138944 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 235: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.658585 + Group: 'Spine2', Weight: 0.191102 + Group: 'LeftShoulder', Weight: 0.082003 + Group: 'Spine', Weight: 0.068310 + Group: 'LeftArm', Weight: 0.000000 +Vertex 236: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.669645 + Group: 'Spine2', Weight: 0.219838 + Group: 'LeftShoulder', Weight: 0.064360 + Group: 'Spine', Weight: 0.046157 + Group: 'LeftArm', Weight: 0.000000 +Vertex 237: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.737599 + Group: 'Spine', Weight: 0.127820 + Group: 'Spine2', Weight: 0.099665 + Group: 'LeftShoulder', Weight: 0.034917 + Group: 'LeftArm', Weight: 0.000000 +Vertex 238: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.798700 + Group: 'Spine', Weight: 0.102091 + Group: 'Spine2', Weight: 0.093665 + Group: 'LeftShoulder', Weight: 0.005543 + Group: 'LeftArm', Weight: 0.000000 +Vertex 239: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.683568 + Group: 'Spine', Weight: 0.275145 + Group: 'Spine2', Weight: 0.041287 + Group: 'LeftArm', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 240: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.726827 + Group: 'Spine', Weight: 0.257567 + Group: 'Spine2', Weight: 0.015606 + Group: 'LeftArm', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 241: +Vertex groups: 4 + Group: 'Spine', Weight: 0.617841 + Group: 'Spine1', Weight: 0.295505 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 242: +Vertex groups: 4 + Group: 'Spine', Weight: 0.686912 + Group: 'Spine1', Weight: 0.257368 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 243: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.757518 + Group: 'Spine2', Weight: 0.224785 + Group: 'Spine', Weight: 0.017232 + Group: 'RightShoulder', Weight: 0.000312 + Group: 'LeftShoulder', Weight: 0.000153 +Vertex 244: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.713635 + Group: 'Spine2', Weight: 0.234991 + Group: 'LeftShoulder', Weight: 0.031445 + Group: 'Spine', Weight: 0.019929 + Group: 'LeftArm', Weight: 0.000000 +Vertex 245: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.845667 + Group: 'Spine2', Weight: 0.079529 + Group: 'Spine', Weight: 0.074804 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 246: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.838884 + Group: 'Spine2', Weight: 0.081615 + Group: 'Spine', Weight: 0.079501 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 247: +Vertex groups: 4 + Group: 'Spine', Weight: 0.254843 + Group: 'Spine1', Weight: 0.704659 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 248: +Vertex groups: 4 + Group: 'Spine', Weight: 0.757036 + Group: 'Spine1', Weight: 0.200463 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 249: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.649421 + Group: 'RightShoulder', Weight: 0.147009 + Group: 'LeftShoulder', Weight: 0.146880 + Group: 'Spine1', Weight: 0.056689 + Group: 'LeftArm', Weight: 0.000000 +Vertex 250: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.661834 + Group: 'LeftShoulder', Weight: 0.167824 + Group: 'Spine1', Weight: 0.086173 + Group: 'RightShoulder', Weight: 0.084169 + Group: 'LeftArm', Weight: 0.000000 +Vertex 251: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.680391 + Group: 'RightShoulder', Weight: 0.114904 + Group: 'LeftShoulder', Weight: 0.114770 + Group: 'Spine1', Weight: 0.089935 + Group: 'LeftArm', Weight: 0.000000 +Vertex 252: +Vertex groups: 5 + Group: 'Hips', Weight: 0.229668 + Group: 'Spine', Weight: 0.499370 + Group: 'Spine1', Weight: 0.086683 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 253: +Vertex groups: 5 + Group: 'Hips', Weight: 0.077877 + Group: 'Spine', Weight: 0.543980 + Group: 'Spine1', Weight: 0.123107 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 254: +Vertex groups: 5 + Group: 'Hips', Weight: 0.035722 + Group: 'Spine', Weight: 0.570495 + Group: 'Spine1', Weight: 0.143781 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 255: +Vertex groups: 5 + Group: 'Hips', Weight: 0.142934 + Group: 'Spine', Weight: 0.521164 + Group: 'Spine1', Weight: 0.096712 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 256: +Vertex groups: 5 + Group: 'Hips', Weight: 0.301137 + Group: 'Spine', Weight: 0.476768 + Group: 'Spine1', Weight: 0.083105 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 257: +Vertex groups: 5 + Group: 'Hips', Weight: 0.319589 + Group: 'Spine', Weight: 0.476024 + Group: 'Spine1', Weight: 0.082861 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 258: +Vertex groups: 4 + Group: 'Spine', Weight: 0.607298 + Group: 'Spine1', Weight: 0.150686 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 259: +Vertex groups: 4 + Group: 'Spine', Weight: 0.658347 + Group: 'Spine1', Weight: 0.157031 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 260: +Vertex groups: 4 + Group: 'Spine', Weight: 0.711534 + Group: 'Spine1', Weight: 0.163613 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 261: +Vertex groups: 4 + Group: 'Spine', Weight: 0.771615 + Group: 'Spine1', Weight: 0.134438 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 262: +Vertex groups: 4 + Group: 'Spine', Weight: 0.822413 + Group: 'Spine1', Weight: 0.111497 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 263: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.835975 + Group: 'Spine', Weight: 0.122128 + Group: 'Spine2', Weight: 0.041897 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 264: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.810668 + Group: 'Spine', Weight: 0.135467 + Group: 'Spine2', Weight: 0.053865 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 265: +Vertex groups: 5 + Group: 'Hips', Weight: 0.066217 + Group: 'Spine', Weight: 0.567276 + Group: 'Spine1', Weight: 0.164985 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 266: +Vertex groups: 4 + Group: 'Spine', Weight: 0.607824 + Group: 'Spine1', Weight: 0.207398 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 267: +Vertex groups: 5 + Group: 'Hips', Weight: 0.021653 + Group: 'Spine', Weight: 0.583482 + Group: 'Spine1', Weight: 0.193351 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 268: +Vertex groups: 4 + Group: 'Spine', Weight: 0.653637 + Group: 'Spine1', Weight: 0.197559 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 269: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.436403 + Group: 'Neck', Weight: 0.311637 + Group: 'RightShoulder', Weight: 0.118157 + Group: 'LeftShoulder', Weight: 0.116184 + Group: 'Spine1', Weight: 0.017619 +Vertex 270: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.397041 + Group: 'Neck', Weight: 0.328087 + Group: 'LeftShoulder', Weight: 0.196902 + Group: 'RightShoulder', Weight: 0.067238 + Group: 'Spine1', Weight: 0.010733 +Vertex 271: +Vertex groups: 4 + Group: 'Neck', Weight: 0.251663 + Group: 'Head', Weight: 0.998587 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 272: +Vertex groups: 4 + Group: 'Neck', Weight: 0.201154 + Group: 'Head', Weight: 0.999899 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 273: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.001219 + Group: 'Neck', Weight: 0.660075 + Group: 'Head', Weight: 0.404696 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 274: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.010653 + Group: 'Neck', Weight: 0.640986 + Group: 'Head', Weight: 0.441773 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 275: +Vertex groups: 5 + Group: 'Neck', Weight: 0.626389 + Group: 'Spine2', Weight: 0.187101 + Group: 'RightShoulder', Weight: 0.069327 + Group: 'LeftShoulder', Weight: 0.068014 + Group: 'Head', Weight: 0.049169 +Vertex 276: +Vertex groups: 5 + Group: 'Neck', Weight: 0.659349 + Group: 'Spine2', Weight: 0.163815 + Group: 'LeftShoulder', Weight: 0.113123 + Group: 'Head', Weight: 0.043997 + Group: 'RightShoulder', Weight: 0.019715 +Vertex 277: +Vertex groups: 5 + Group: 'Neck', Weight: 0.767370 + Group: 'Head', Weight: 0.124304 + Group: 'Spine2', Weight: 0.065486 + Group: 'LeftShoulder', Weight: 0.042839 + Group: 'LeftArm', Weight: 0.000000 +Vertex 278: +Vertex groups: 5 + Group: 'Neck', Weight: 0.762370 + Group: 'Head', Weight: 0.133442 + Group: 'Spine2', Weight: 0.073547 + Group: 'RightShoulder', Weight: 0.016035 + Group: 'LeftShoulder', Weight: 0.014606 +Vertex 279: +Vertex groups: 4 + Group: 'Neck', Weight: 0.678262 + Group: 'Head', Weight: 0.448695 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 280: +Vertex groups: 5 + Group: 'Neck', Weight: 0.708550 + Group: 'LeftShoulder', Weight: 0.137052 + Group: 'Spine2', Weight: 0.118874 + Group: 'Head', Weight: 0.035524 + Group: 'LeftArm', Weight: 0.000000 +Vertex 281: +Vertex groups: 5 + Group: 'Neck', Weight: 0.841453 + Group: 'Head', Weight: 0.097604 + Group: 'LeftShoulder', Weight: 0.044965 + Group: 'Spine2', Weight: 0.015978 + Group: 'LeftArm', Weight: 0.000000 +Vertex 282: +Vertex groups: 4 + Group: 'Neck', Weight: 0.754556 + Group: 'Head', Weight: 0.237992 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 283: +Vertex groups: 5 + Group: 'Neck', Weight: 0.799436 + Group: 'Head', Weight: 0.005409 + Group: 'LeftShoulder', Weight: 0.140139 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 284: +Vertex groups: 5 + Group: 'Neck', Weight: 0.875913 + Group: 'Head', Weight: 0.067402 + Group: 'LeftShoulder', Weight: 0.030586 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 285: +Vertex groups: 4 + Group: 'Neck', Weight: 0.632395 + Group: 'Head', Weight: 0.387618 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 286: +Vertex groups: 4 + Group: 'Neck', Weight: 0.855409 + Group: 'LeftShoulder', Weight: 0.106347 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 287: +Vertex groups: 5 + Group: 'Neck', Weight: 0.898152 + Group: 'Head', Weight: 0.069536 + Group: 'LeftShoulder', Weight: 0.000971 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 288: +Vertex groups: 4 + Group: 'Neck', Weight: 0.714445 + Group: 'Head', Weight: 0.319694 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 289: +Vertex groups: 5 + Group: 'Neck', Weight: 0.909267 + Group: 'Head', Weight: 0.012266 + Group: 'LeftShoulder', Weight: 0.037660 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 290: +Vertex groups: 4 + Group: 'Neck', Weight: 0.880389 + Group: 'Head', Weight: 0.097783 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 291: +Vertex groups: 4 + Group: 'Neck', Weight: 0.678835 + Group: 'Head', Weight: 0.290679 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 292: +Vertex groups: 4 + Group: 'Neck', Weight: 0.920987 + Group: 'Head', Weight: 0.012358 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 293: +Vertex groups: 4 + Group: 'Neck', Weight: 0.877811 + Group: 'Head', Weight: 0.103055 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 294: +Vertex groups: 5 + Group: 'Neck', Weight: 0.387603 + Group: 'Spine2', Weight: 0.306339 + Group: 'LeftShoulder', Weight: 0.287260 + Group: 'RightShoulder', Weight: 0.018798 + Group: 'LeftArm', Weight: 0.000000 +Vertex 295: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.075772 + Group: 'Neck', Weight: 0.535078 + Group: 'LeftShoulder', Weight: 0.348491 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 296: +Vertex groups: 4 + Group: 'Neck', Weight: 0.831220 + Group: 'LeftShoulder', Weight: 0.120737 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 297: +Vertex groups: 5 + Group: 'Neck', Weight: 0.876454 + Group: 'LeftShoulder', Weight: 0.037669 + Group: 'RightShoulder', Weight: 0.038431 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 298: +Vertex groups: 4 + Group: 'Neck', Weight: 0.318938 + Group: 'Head', Weight: 0.947844 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 299: +Vertex groups: 4 + Group: 'Neck', Weight: 0.236711 + Group: 'Head', Weight: 0.998376 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 300: +Vertex groups: 3 + Group: 'Neck', Weight: 0.030044 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 301: +Vertex groups: 4 + Group: 'Neck', Weight: 0.429526 + Group: 'Head', Weight: 0.907851 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 302: +Vertex groups: 4 + Group: 'Neck', Weight: 0.442041 + Group: 'Head', Weight: 0.872402 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 303: +Vertex groups: 4 + Group: 'Neck', Weight: 0.421811 + Group: 'Head', Weight: 0.919690 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 304: +Vertex groups: 4 + Group: 'Neck', Weight: 0.209107 + Group: 'Head', Weight: 0.999630 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 305: +Vertex groups: 4 + Group: 'Neck', Weight: 0.088200 + Group: 'Head', Weight: 0.997429 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 306: +Vertex groups: 3 + Group: 'Neck', Weight: 0.145251 + Group: 'Head', Weight: 0.977774 + Group: 'LeftArm', Weight: 0.000000 +Vertex 307: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999967 + Group: 'LeftArm', Weight: 0.000000 +Vertex 308: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 309: +Vertex groups: 3 + Group: 'Neck', Weight: 0.020501 + Group: 'Head', Weight: 0.977027 + Group: 'LeftArm', Weight: 0.000000 +Vertex 310: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'LeftArm', Weight: 0.000000 +Vertex 311: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 + Group: 'LeftArm', Weight: 0.000000 +Vertex 312: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 313: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999963 + Group: 'LeftArm', Weight: 0.000000 +Vertex 314: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 315: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 316: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 317: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 318: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 319: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998127 + Group: 'LeftArm', Weight: 0.000000 +Vertex 320: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999704 +Vertex 321: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 322: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999128 +Vertex 323: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 324: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 325: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'LeftArm', Weight: 0.000000 +Vertex 326: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 327: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998175 +Vertex 328: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'LeftArm', Weight: 0.000000 +Vertex 329: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 330: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 331: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 332: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 333: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999785 +Vertex 334: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997819 +Vertex 335: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999956 + Group: 'LeftArm', Weight: 0.000000 +Vertex 336: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999983 +Vertex 337: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999957 +Vertex 338: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999670 +Vertex 339: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999686 +Vertex 340: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999980 +Vertex 341: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000134 + Group: 'Head', Weight: 0.999331 +Vertex 342: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999879 +Vertex 343: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 344: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999978 +Vertex 345: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999614 +Vertex 346: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 347: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 + Group: 'LeftArm', Weight: 0.000000 +Vertex 348: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000631 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 349: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998962 +Vertex 350: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999861 +Vertex 351: +Vertex groups: 2 + Group: 'Neck', Weight: 0.060148 + Group: 'Head', Weight: 0.999551 +Vertex 352: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 353: +Vertex groups: 4 + Group: 'Neck', Weight: 0.015457 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 354: +Vertex groups: 4 + Group: 'Neck', Weight: 0.085074 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 355: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000217 + Group: 'Head', Weight: 0.999967 +Vertex 356: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000985 + Group: 'Head', Weight: 1.000000 +Vertex 357: +Vertex groups: 2 + Group: 'Neck', Weight: 0.002043 + Group: 'Head', Weight: 1.000000 +Vertex 358: +Vertex groups: 2 + Group: 'Neck', Weight: 0.031534 + Group: 'Head', Weight: 1.000000 +Vertex 359: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 360: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999980 +Vertex 361: +Vertex groups: 2 + Group: 'Neck', Weight: 0.008306 + Group: 'Head', Weight: 0.997655 +Vertex 362: +Vertex groups: 2 + Group: 'Head', Weight: 0.999915 + Group: 'Neck', Weight: 0.000000 +Vertex 363: +Vertex groups: 2 + Group: 'Head', Weight: 0.999998 + Group: 'Neck', Weight: 0.000000 +Vertex 364: +Vertex groups: 2 + Group: 'Head', Weight: 0.999957 + Group: 'Neck', Weight: 0.000000 +Vertex 365: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999809 +Vertex 366: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 367: +Vertex groups: 2 + Group: 'Head', Weight: 0.999975 + Group: 'Neck', Weight: 0.000000 +Vertex 368: +Vertex groups: 2 + Group: 'Head', Weight: 0.999948 + Group: 'Neck', Weight: 0.000000 +Vertex 369: +Vertex groups: 2 + Group: 'Head', Weight: 0.999889 + Group: 'Neck', Weight: 0.000000 +Vertex 370: +Vertex groups: 3 + Group: 'Neck', Weight: 0.007561 + Group: 'Head', Weight: 0.999352 + Group: 'LeftArm', Weight: 0.000000 +Vertex 371: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 372: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999987 + Group: 'LeftArm', Weight: 0.000000 +Vertex 373: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000126 + Group: 'Head', Weight: 0.996979 + Group: 'LeftArm', Weight: 0.000000 +Vertex 374: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.987343 + Group: 'LeftArm', Weight: 0.000000 +Vertex 375: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.976242 +Vertex 376: +Vertex groups: 2 + Group: 'Neck', Weight: 0.002377 + Group: 'Head', Weight: 0.949446 +Vertex 377: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000519 + Group: 'Head', Weight: 0.968591 +Vertex 378: +Vertex groups: 4 + Group: 'Neck', Weight: 0.191046 + Group: 'Head', Weight: 0.986710 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 379: +Vertex groups: 3 + Group: 'Neck', Weight: 0.038636 + Group: 'Head', Weight: 0.977432 + Group: 'LeftArm', Weight: 0.000000 +Vertex 380: +Vertex groups: 3 + Group: 'Neck', Weight: 0.040751 + Group: 'Head', Weight: 0.980922 + Group: 'LeftArm', Weight: 0.000000 +Vertex 381: +Vertex groups: 3 + Group: 'Neck', Weight: 0.024422 + Group: 'Head', Weight: 0.991833 + Group: 'LeftArm', Weight: 0.000000 +Vertex 382: +Vertex groups: 3 + Group: 'Neck', Weight: 0.040552 + Group: 'Head', Weight: 0.999474 + Group: 'LeftArm', Weight: 0.000000 +Vertex 383: +Vertex groups: 3 + Group: 'Neck', Weight: 0.026708 + Group: 'Head', Weight: 0.999655 + Group: 'LeftArm', Weight: 0.000000 +Vertex 384: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992627 + Group: 'LeftArm', Weight: 0.000000 +Vertex 385: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998411 +Vertex 386: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999744 +Vertex 387: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999837 +Vertex 388: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 389: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999754 +Vertex 390: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999132 +Vertex 391: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998734 +Vertex 392: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998957 +Vertex 393: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999919 +Vertex 394: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999903 +Vertex 395: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999944 +Vertex 396: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999917 +Vertex 397: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999249 +Vertex 398: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 399: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999972 +Vertex 400: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999339 +Vertex 401: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998445 +Vertex 402: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998541 +Vertex 403: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999638 +Vertex 404: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999807 +Vertex 405: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999679 +Vertex 406: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999009 +Vertex 407: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999668 +Vertex 408: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999975 +Vertex 409: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999977 +Vertex 410: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999912 +Vertex 411: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999940 +Vertex 412: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999808 +Vertex 413: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 414: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999837 +Vertex 415: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999772 +Vertex 416: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999909 +Vertex 417: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999867 +Vertex 418: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999940 +Vertex 419: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999632 +Vertex 420: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999377 +Vertex 421: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998941 +Vertex 422: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998453 +Vertex 423: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998998 +Vertex 424: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999480 +Vertex 425: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996443 + Group: 'LeftArm', Weight: 0.000000 +Vertex 426: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999945 +Vertex 427: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998453 +Vertex 428: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999959 +Vertex 429: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999935 +Vertex 430: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999881 +Vertex 431: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 432: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999829 +Vertex 433: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998558 +Vertex 434: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998011 +Vertex 435: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.982413 +Vertex 436: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986508 +Vertex 437: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.965945 +Vertex 438: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.971741 +Vertex 439: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999893 +Vertex 440: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 441: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999566 +Vertex 442: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988788 +Vertex 443: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992100 +Vertex 444: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999531 +Vertex 445: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999691 +Vertex 446: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.980315 +Vertex 447: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999965 +Vertex 448: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991989 +Vertex 449: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.977901 +Vertex 450: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.966699 +Vertex 451: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995336 +Vertex 452: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999790 +Vertex 453: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999928 +Vertex 454: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999069 +Vertex 455: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999822 +Vertex 456: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 457: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 458: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999144 +Vertex 459: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988600 +Vertex 460: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998949 +Vertex 461: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999873 +Vertex 462: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999807 +Vertex 463: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999466 +Vertex 464: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997851 +Vertex 465: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 466: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995810 +Vertex 467: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994675 +Vertex 468: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989603 +Vertex 469: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986421 +Vertex 470: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986595 +Vertex 471: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988430 +Vertex 472: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991375 +Vertex 473: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.993594 +Vertex 474: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992844 +Vertex 475: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991262 +Vertex 476: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995766 +Vertex 477: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994807 +Vertex 478: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998765 +Vertex 479: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998846 +Vertex 480: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992168 +Vertex 481: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988155 +Vertex 482: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.985239 +Vertex 483: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.982514 +Vertex 484: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.980128 +Vertex 485: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.983307 +Vertex 486: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.973470 +Vertex 487: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.970268 +Vertex 488: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.972404 +Vertex 489: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994529 +Vertex 490: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999236 +Vertex 491: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 492: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999987 +Vertex 493: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999984 +Vertex 494: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 495: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.977784 +Vertex 496: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.979666 +Vertex 497: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.982541 +Vertex 498: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.977794 +Vertex 499: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.976286 +Vertex 500: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994396 +Vertex 501: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998861 +Vertex 502: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 503: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 504: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991914 +Vertex 505: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989981 +Vertex 506: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988894 +Vertex 507: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989206 +Vertex 508: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989375 +Vertex 509: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.990466 +Vertex 510: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991619 +Vertex 511: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.990743 +Vertex 512: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988729 +Vertex 513: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992327 +Vertex 514: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991907 +Vertex 515: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995687 +Vertex 516: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.987235 +Vertex 517: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.987154 +Vertex 518: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991132 +Vertex 519: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.983148 +Vertex 520: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.984425 +Vertex 521: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986856 +Vertex 522: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994461 +Vertex 523: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997511 +Vertex 524: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999179 +Vertex 525: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999960 +Vertex 526: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999951 +Vertex 527: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999907 +Vertex 528: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 529: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 530: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999800 +Vertex 531: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998350 +Vertex 532: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 533: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992906 +Vertex 534: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.993229 +Vertex 535: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992583 +Vertex 536: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999495 +Vertex 537: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992424 +Vertex 538: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 539: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999899 +Vertex 540: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 541: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999771 +Vertex 542: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 543: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999881 +Vertex 544: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 545: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999674 +Vertex 546: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999989 +Vertex 547: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999985 +Vertex 548: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 549: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 550: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 551: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 552: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 553: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999982 +Vertex 554: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999995 +Vertex 555: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 556: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 557: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 558: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 559: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999993 +Vertex 560: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 561: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 562: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 563: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 564: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999995 +Vertex 565: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 566: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 567: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999968 +Vertex 568: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999983 +Vertex 569: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 570: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 571: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 572: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 573: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 574: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 575: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 576: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 577: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 578: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999993 +Vertex 579: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999993 +Vertex 580: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999992 +Vertex 581: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 582: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 583: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995421 +Vertex 584: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999000 +Vertex 585: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996968 +Vertex 586: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995744 +Vertex 587: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999640 +Vertex 588: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 589: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 590: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999958 +Vertex 591: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 592: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 593: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 594: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 595: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 596: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 597: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 598: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 599: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 600: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999983 +Vertex 601: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 602: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 603: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 604: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 605: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 606: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 607: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 608: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 609: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 610: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999988 +Vertex 611: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 612: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 613: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 614: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 615: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 616: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 617: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 618: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 619: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999933 +Vertex 620: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 621: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 622: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 623: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 624: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 625: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 626: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 627: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999823 +Vertex 628: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994517 +Vertex 629: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999332 +Vertex 630: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999687 +Vertex 631: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996262 +Vertex 632: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999886 +Vertex 633: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.993685 +Vertex 634: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997056 +Vertex 635: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996367 +Vertex 636: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999876 +Vertex 637: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999638 +Vertex 638: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999499 +Vertex 639: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999944 + Group: 'LeftArm', Weight: 0.000000 +Vertex 640: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998895 +Vertex 641: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999813 + Group: 'LeftArm', Weight: 0.000000 +Vertex 642: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999085 + Group: 'LeftArm', Weight: 0.000000 +Vertex 643: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 644: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 + Group: 'LeftArm', Weight: 0.000000 +Vertex 645: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999992 + Group: 'LeftArm', Weight: 0.000000 +Vertex 646: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998500 + Group: 'LeftArm', Weight: 0.000000 +Vertex 647: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999213 +Vertex 648: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999943 +Vertex 649: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 650: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999965 +Vertex 651: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 652: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999900 +Vertex 653: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 654: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999840 +Vertex 655: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 656: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999989 +Vertex 657: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 658: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 659: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999967 +Vertex 660: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999412 +Vertex 661: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999915 +Vertex 662: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 663: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 664: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999462 +Vertex 665: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999484 +Vertex 666: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999952 +Vertex 667: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 668: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 669: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999644 +Vertex 670: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999976 +Vertex 671: +Vertex groups: 2 + Group: 'Head', Weight: 0.999967 + Group: 'Neck', Weight: 0.000000 +Vertex 672: +Vertex groups: 2 + Group: 'Head', Weight: 0.999747 + Group: 'Neck', Weight: 0.000000 +Vertex 673: +Vertex groups: 2 + Group: 'Head', Weight: 0.997843 + Group: 'Neck', Weight: 0.000000 +Vertex 674: +Vertex groups: 2 + Group: 'Head', Weight: 0.999998 + Group: 'Neck', Weight: 0.000000 +Vertex 675: +Vertex groups: 2 + Group: 'Head', Weight: 0.999980 + Group: 'Neck', Weight: 0.000000 +Vertex 676: +Vertex groups: 2 + Group: 'Head', Weight: 0.999616 + Group: 'Neck', Weight: 0.000000 +Vertex 677: +Vertex groups: 2 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 678: +Vertex groups: 2 + Group: 'Head', Weight: 0.999998 + Group: 'Neck', Weight: 0.000000 +Vertex 679: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999980 +Vertex 680: +Vertex groups: 4 + Group: 'Neck', Weight: 0.089311 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 681: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 682: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000265 + Group: 'Head', Weight: 1.000000 +Vertex 683: +Vertex groups: 4 + Group: 'Neck', Weight: 0.188486 + Group: 'Head', Weight: 0.999820 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 684: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999973 +Vertex 685: +Vertex groups: 2 + Group: 'Head', Weight: 0.999983 + Group: 'Neck', Weight: 0.000000 +Vertex 686: +Vertex groups: 2 + Group: 'Head', Weight: 0.999985 + Group: 'Neck', Weight: 0.000000 +Vertex 687: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999984 +Vertex 688: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999995 +Vertex 689: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 690: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 691: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 692: +Vertex groups: 2 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 693: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 694: +Vertex groups: 4 + Group: 'Neck', Weight: 0.704295 + Group: 'LeftShoulder', Weight: 0.252211 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 695: +Vertex groups: 2 + Group: 'Neck', Weight: 0.059627 + Group: 'Head', Weight: 0.999999 +Vertex 696: +Vertex groups: 5 + Group: 'Neck', Weight: 0.498065 + Group: 'LeftShoulder', Weight: 0.338647 + Group: 'Spine2', Weight: 0.103414 + Group: 'RightShoulder', Weight: 0.059875 + Group: 'LeftArm', Weight: 0.000000 +Vertex 697: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.209078 + Group: 'LeftArm', Weight: 0.654087 +Vertex 698: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.200224 + Group: 'LeftArm', Weight: 0.685966 +Vertex 699: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.325447 + Group: 'LeftArm', Weight: 0.589709 +Vertex 700: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.230513 + Group: 'LeftArm', Weight: 0.640321 +Vertex 701: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.198141 + Group: 'LeftArm', Weight: 0.790172 +Vertex 702: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.250937 + Group: 'LeftArm', Weight: 0.736414 +Vertex 703: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.353417 + Group: 'LeftArm', Weight: 0.622032 +Vertex 704: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.161923 + Group: 'LeftArm', Weight: 0.803502 +Vertex 705: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.099625 + Group: 'LeftArm', Weight: 0.882436 +Vertex 706: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.073872 + Group: 'LeftArm', Weight: 0.913428 +Vertex 707: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.061462 + Group: 'LeftArm', Weight: 0.932440 +Vertex 708: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.072817 + Group: 'LeftArm', Weight: 0.923277 +Vertex 709: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.118510 + Group: 'LeftArm', Weight: 0.872797 +Vertex 710: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.228204 + Group: 'LeftArm', Weight: 0.750197 +Vertex 711: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.109767 + Group: 'Spine2', Weight: 0.119504 + Group: 'LeftShoulder', Weight: 0.551234 + Group: 'LeftArm', Weight: 0.074552 +Vertex 712: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050706 + Group: 'Spine2', Weight: 0.058659 + Group: 'LeftShoulder', Weight: 0.698293 + Group: 'LeftArm', Weight: 0.000000 +Vertex 713: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.009136 + Group: 'LeftShoulder', Weight: 0.794017 + Group: 'LeftArm', Weight: 0.000403 +Vertex 714: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.078177 + Group: 'Spine2', Weight: 0.078215 + Group: 'LeftShoulder', Weight: 0.611950 + Group: 'LeftArm', Weight: 0.040811 +Vertex 715: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.117262 + Group: 'Spine2', Weight: 0.135327 + Group: 'LeftShoulder', Weight: 0.530833 + Group: 'LeftArm', Weight: 0.107834 +Vertex 716: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.833024 + Group: 'LeftArm', Weight: 0.005830 +Vertex 717: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.849466 + Group: 'LeftArm', Weight: 0.004439 +Vertex 718: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.856443 + Group: 'LeftArm', Weight: 0.019335 +Vertex 719: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.849989 + Group: 'LeftArm', Weight: 0.004225 +Vertex 720: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.048586 + Group: 'LeftShoulder', Weight: 0.787953 + Group: 'LeftArm', Weight: 0.000283 +Vertex 721: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.017831 + Group: 'Spine2', Weight: 0.062432 + Group: 'LeftShoulder', Weight: 0.656618 + Group: 'LeftArm', Weight: 0.189400 +Vertex 722: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.062547 + Group: 'Spine2', Weight: 0.092333 + Group: 'LeftShoulder', Weight: 0.589719 + Group: 'LeftArm', Weight: 0.193651 +Vertex 723: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.105513 + Group: 'Spine2', Weight: 0.126296 + Group: 'LeftShoulder', Weight: 0.511128 + Group: 'LeftArm', Weight: 0.185781 +Vertex 724: +Vertex groups: 5 + Group: 'Hips', Weight: 0.420212 + Group: 'Spine', Weight: 0.379145 + Group: 'Spine1', Weight: 0.065791 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 725: +Vertex groups: 5 + Group: 'Hips', Weight: 0.385205 + Group: 'Spine', Weight: 0.392955 + Group: 'Spine1', Weight: 0.067913 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 726: +Vertex groups: 5 + Group: 'Hips', Weight: 0.286756 + Group: 'Spine', Weight: 0.426134 + Group: 'Spine1', Weight: 0.069536 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 727: +Vertex groups: 5 + Group: 'Hips', Weight: 0.156800 + Group: 'Spine', Weight: 0.484187 + Group: 'Spine1', Weight: 0.084966 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 728: +Vertex groups: 5 + Group: 'Hips', Weight: 0.080279 + Group: 'Spine', Weight: 0.523244 + Group: 'Spine1', Weight: 0.107432 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 729: +Vertex groups: 5 + Group: 'Hips', Weight: 0.040030 + Group: 'Spine', Weight: 0.554675 + Group: 'Spine1', Weight: 0.123644 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 730: +Vertex groups: 5 + Group: 'Hips', Weight: 0.002445 + Group: 'Spine', Weight: 0.596935 + Group: 'Spine1', Weight: 0.126416 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 731: +Vertex groups: 4 + Group: 'Spine', Weight: 0.664472 + Group: 'Spine1', Weight: 0.125372 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 732: +Vertex groups: 4 + Group: 'Spine', Weight: 0.832030 + Group: 'Spine1', Weight: 0.081708 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 733: +Vertex groups: 4 + Group: 'Spine', Weight: 0.784230 + Group: 'Spine1', Weight: 0.109110 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 734: +Vertex groups: 4 + Group: 'Spine', Weight: 0.728522 + Group: 'Spine1', Weight: 0.121700 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 735: +Vertex groups: 5 + Group: 'Hips', Weight: 0.526421 + Group: 'Spine', Weight: 0.236660 + Group: 'Spine1', Weight: 0.030899 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 736: +Vertex groups: 5 + Group: 'Hips', Weight: 0.377137 + Group: 'Spine', Weight: 0.282237 + Group: 'Spine1', Weight: 0.043338 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 737: +Vertex groups: 5 + Group: 'Hips', Weight: 0.180741 + Group: 'Spine', Weight: 0.363536 + Group: 'Spine1', Weight: 0.061053 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 738: +Vertex groups: 5 + Group: 'Hips', Weight: 0.080777 + Group: 'Spine', Weight: 0.450207 + Group: 'Spine1', Weight: 0.078579 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 739: +Vertex groups: 5 + Group: 'Hips', Weight: 0.043846 + Group: 'Spine', Weight: 0.489147 + Group: 'Spine1', Weight: 0.088246 + Group: 'LeftUpLeg', Weight: 0.000126 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 740: +Vertex groups: 5 + Group: 'Hips', Weight: 0.005170 + Group: 'Spine', Weight: 0.539392 + Group: 'Spine1', Weight: 0.085957 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 741: +Vertex groups: 5 + Group: 'Hips', Weight: 0.018977 + Group: 'Spine', Weight: 0.778345 + Group: 'Spine1', Weight: 0.065580 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 742: +Vertex groups: 5 + Group: 'Hips', Weight: 0.020636 + Group: 'Spine', Weight: 0.815579 + Group: 'Spine1', Weight: 0.054206 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 743: +Vertex groups: 5 + Group: 'Hips', Weight: 0.009271 + Group: 'Spine', Weight: 0.703939 + Group: 'Spine1', Weight: 0.076242 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 744: +Vertex groups: 5 + Group: 'Hips', Weight: 0.002074 + Group: 'Spine', Weight: 0.630332 + Group: 'Spine1', Weight: 0.084295 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 745: +Vertex groups: 5 + Group: 'Hips', Weight: 0.563781 + Group: 'Spine', Weight: 0.230651 + Group: 'Spine1', Weight: 0.029435 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 746: +Vertex groups: 5 + Group: 'Bone', Weight: 0.494784 + Group: 'Hips', Weight: 0.208943 + Group: 'Bone2', Weight: 0.178449 + Group: 'LeftUpLeg', Weight: 0.077164 + Group: 'Bone.001', Weight: 0.040661 +Vertex 747: +Vertex groups: 5 + Group: 'Bone', Weight: 0.560833 + Group: 'Bone2', Weight: 0.208283 + Group: 'Hips', Weight: 0.153379 + Group: 'Bone.001', Weight: 0.046101 + Group: 'LeftUpLeg', Weight: 0.031404 +Vertex 748: +Vertex groups: 5 + Group: 'Bone', Weight: 0.489351 + Group: 'LeftUpLeg', Weight: 0.254657 + Group: 'Bone2', Weight: 0.172480 + Group: 'Hips', Weight: 0.043540 + Group: 'Bone.001', Weight: 0.039972 +Vertex 749: +Vertex groups: 5 + Group: 'Bone', Weight: 0.431204 + Group: 'LeftUpLeg', Weight: 0.362023 + Group: 'Bone2', Weight: 0.141367 + Group: 'Bone.001', Weight: 0.033063 + Group: 'Hips', Weight: 0.032343 +Vertex 750: +Vertex groups: 5 + Group: 'Bone', Weight: 0.998914 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone.001', Weight: 0.077910 + Group: 'LeftUpLeg', Weight: 0.959246 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 751: +Vertex groups: 5 + Group: 'Bone', Weight: 0.413190 + Group: 'LeftUpLeg', Weight: 0.385152 + Group: 'Bone2', Weight: 0.157240 + Group: 'Bone.001', Weight: 0.032206 + Group: 'Hips', Weight: 0.012212 +Vertex 752: +Vertex groups: 4 + Group: 'Bone', Weight: 0.999188 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone.001', Weight: 0.079305 + Group: 'LeftUpLeg', Weight: 0.979637 +Vertex 753: +Vertex groups: 4 + Group: 'Bone', Weight: 0.999388 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone.001', Weight: 0.082166 + Group: 'LeftUpLeg', Weight: 0.990267 +Vertex 754: +Vertex groups: 5 + Group: 'Bone', Weight: 0.999485 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone.001', Weight: 0.082155 + Group: 'LeftUpLeg', Weight: 0.990188 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 755: +Vertex groups: 5 + Group: 'Bone', Weight: 0.999546 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone.001', Weight: 0.081629 + Group: 'LeftUpLeg', Weight: 0.986310 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 756: +Vertex groups: 5 + Group: 'Bone', Weight: 0.999603 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone.001', Weight: 0.076639 + Group: 'LeftUpLeg', Weight: 0.973835 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 757: +Vertex groups: 5 + Group: 'Bone', Weight: 0.424780 + Group: 'LeftUpLeg', Weight: 0.408744 + Group: 'Bone2', Weight: 0.132972 + Group: 'Bone.001', Weight: 0.031186 + Group: 'Hips', Weight: 0.002318 +Vertex 758: +Vertex groups: 5 + Group: 'Bone', Weight: 0.423594 + Group: 'LeftUpLeg', Weight: 0.394893 + Group: 'Bone2', Weight: 0.129702 + Group: 'Bone.001', Weight: 0.030459 + Group: 'Hips', Weight: 0.021352 +Vertex 759: +Vertex groups: 5 + Group: 'Bone', Weight: 0.461724 + Group: 'Bone2', Weight: 0.173156 + Group: 'LeftUpLeg', Weight: 0.171900 + Group: 'Hips', Weight: 0.156584 + Group: 'Bone.001', Weight: 0.036636 +Vertex 760: +Vertex groups: 5 + Group: 'Bone', Weight: 0.444237 + Group: 'LeftUpLeg', Weight: 0.250621 + Group: 'Bone2', Weight: 0.167907 + Group: 'Hips', Weight: 0.102610 + Group: 'Bone.001', Weight: 0.034625 +Vertex 761: +Vertex groups: 5 + Group: 'Bone', Weight: 0.429844 + Group: 'LeftUpLeg', Weight: 0.304311 + Group: 'Bone2', Weight: 0.131579 + Group: 'Hips', Weight: 0.103366 + Group: 'Bone.001', Weight: 0.030900 +Vertex 762: +Vertex groups: 5 + Group: 'Bone', Weight: 0.426452 + Group: 'LeftUpLeg', Weight: 0.362467 + Group: 'Bone2', Weight: 0.133456 + Group: 'Hips', Weight: 0.046327 + Group: 'Bone.001', Weight: 0.031299 +Vertex 763: +Vertex groups: 5 + Group: 'Bone', Weight: 0.423605 + Group: 'LeftUpLeg', Weight: 0.380370 + Group: 'Bone2', Weight: 0.138819 + Group: 'Bone.001', Weight: 0.032467 + Group: 'Hips', Weight: 0.024739 +Vertex 764: +Vertex groups: 5 + Group: 'Bone', Weight: 0.420942 + Group: 'LeftUpLeg', Weight: 0.390400 + Group: 'Bone2', Weight: 0.148277 + Group: 'Bone.001', Weight: 0.034363 + Group: 'Hips', Weight: 0.006017 +Vertex 765: +Vertex groups: 5 + Group: 'Bone', Weight: 0.413478 + Group: 'LeftUpLeg', Weight: 0.391477 + Group: 'Bone2', Weight: 0.153506 + Group: 'Bone.001', Weight: 0.033977 + Group: 'Spine', Weight: 0.007562 +Vertex 766: +Vertex groups: 5 + Group: 'Bone', Weight: 0.414502 + Group: 'LeftUpLeg', Weight: 0.381285 + Group: 'Bone2', Weight: 0.155385 + Group: 'Bone.001', Weight: 0.032876 + Group: 'Spine', Weight: 0.015951 +Vertex 767: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'LeftLeg', Weight: 0.987070 +Vertex 768: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftLeg', Weight: 0.987759 +Vertex 769: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.990162 +Vertex 770: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.993221 +Vertex 771: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.995676 +Vertex 772: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.996089 +Vertex 773: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.996513 +Vertex 774: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.087994 + Group: 'LeftLeg', Weight: 0.993907 +Vertex 775: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.994883 +Vertex 776: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999975 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.987831 +Vertex 777: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.989769 +Vertex 778: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.990446 +Vertex 779: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.991466 +Vertex 780: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.992578 +Vertex 781: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.993162 +Vertex 782: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.995845 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.992284 +Vertex 783: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.995752 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.990343 +Vertex 784: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.996496 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.990696 +Vertex 785: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.997502 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.991804 +Vertex 786: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.998383 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.992530 +Vertex 787: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999112 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.994005 +Vertex 788: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.996907 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.994898 +Vertex 789: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.996395 + Group: 'Bone.001', Weight: 0.087994 + Group: 'LeftLeg', Weight: 0.993887 +Vertex 790: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.997675 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.996137 +Vertex 791: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.998713 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.998155 +Vertex 792: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999246 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.998374 +Vertex 793: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999542 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.997985 +Vertex 794: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999791 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.997030 +Vertex 795: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999812 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftLeg', Weight: 0.996162 +Vertex 796: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999692 + Group: 'Bone.001', Weight: 0.130631 + Group: 'LeftLeg', Weight: 0.995290 +Vertex 797: +Vertex groups: 5 + Group: 'Bone', Weight: 0.422982 + Group: 'LeftUpLeg', Weight: 0.335587 + Group: 'Bone2', Weight: 0.160791 + Group: 'Hips', Weight: 0.047706 + Group: 'Bone.001', Weight: 0.032934 +Vertex 798: +Vertex groups: 5 + Group: 'Bone', Weight: 0.420152 + Group: 'LeftUpLeg', Weight: 0.365836 + Group: 'Bone2', Weight: 0.158770 + Group: 'Bone.001', Weight: 0.032741 + Group: 'Hips', Weight: 0.022501 +Vertex 799: +Vertex groups: 5 + Group: 'Bone', Weight: 0.439528 + Group: 'LeftUpLeg', Weight: 0.253417 + Group: 'Bone2', Weight: 0.144049 + Group: 'Hips', Weight: 0.129317 + Group: 'Bone.001', Weight: 0.033690 +Vertex 800: +Vertex groups: 5 + Group: 'Bone', Weight: 0.481611 + Group: 'Hips', Weight: 0.173540 + Group: 'Bone2', Weight: 0.169670 + Group: 'LeftUpLeg', Weight: 0.135858 + Group: 'Bone.001', Weight: 0.039321 +Vertex 801: +Vertex groups: 5 + Group: 'Bone', Weight: 0.414459 + Group: 'LeftUpLeg', Weight: 0.368966 + Group: 'Bone2', Weight: 0.156852 + Group: 'Bone.001', Weight: 0.032345 + Group: 'Hips', Weight: 0.027378 +Vertex 802: +Vertex groups: 5 + Group: 'Bone', Weight: 0.427805 + Group: 'LeftUpLeg', Weight: 0.338291 + Group: 'Bone2', Weight: 0.160648 + Group: 'Hips', Weight: 0.039266 + Group: 'Bone.001', Weight: 0.033990 +Vertex 803: +Vertex groups: 5 + Group: 'Bone', Weight: 0.443642 + Group: 'LeftUpLeg', Weight: 0.319028 + Group: 'Bone2', Weight: 0.164936 + Group: 'Bone.001', Weight: 0.036507 + Group: 'Hips', Weight: 0.035888 +Vertex 804: +Vertex groups: 5 + Group: 'Bone', Weight: 0.507879 + Group: 'LeftUpLeg', Weight: 0.221298 + Group: 'Bone2', Weight: 0.183305 + Group: 'Hips', Weight: 0.045751 + Group: 'Bone.001', Weight: 0.041767 +Vertex 805: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.282869 + Group: 'Bone', Weight: 0.262095 + Group: 'Bone1', Weight: 0.160702 + Group: 'Bone2', Weight: 0.154834 + Group: 'LeftLeg', Weight: 0.139500 +Vertex 806: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.284559 + Group: 'Bone', Weight: 0.254956 + Group: 'Bone1', Weight: 0.167621 + Group: 'Bone2', Weight: 0.155146 + Group: 'LeftLeg', Weight: 0.137719 +Vertex 807: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.324946 + Group: 'LeftLeg', Weight: 0.297416 + Group: 'Bone2', Weight: 0.162703 + Group: 'LeftUpLeg', Weight: 0.121138 + Group: 'Bone', Weight: 0.093797 +Vertex 808: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.308951 + Group: 'LeftLeg', Weight: 0.299678 + Group: 'Bone2', Weight: 0.162501 + Group: 'LeftUpLeg', Weight: 0.119001 + Group: 'Bone', Weight: 0.109868 +Vertex 809: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.336465 + Group: 'Bone', Weight: 0.332527 + Group: 'Bone2', Weight: 0.145298 + Group: 'Bone1', Weight: 0.092989 + Group: 'LeftLeg', Weight: 0.092721 +Vertex 810: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.338503 + Group: 'Bone', Weight: 0.320665 + Group: 'Bone2', Weight: 0.146011 + Group: 'Bone1', Weight: 0.104059 + Group: 'LeftLeg', Weight: 0.090762 +Vertex 811: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.275365 + Group: 'Bone1', Weight: 0.221302 + Group: 'Bone', Weight: 0.200907 + Group: 'Bone2', Weight: 0.155790 + Group: 'LeftLeg', Weight: 0.146636 +Vertex 812: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.304650 + Group: 'LeftLeg', Weight: 0.281383 + Group: 'Bone2', Weight: 0.162698 + Group: 'LeftUpLeg', Weight: 0.137213 + Group: 'Bone', Weight: 0.114056 +Vertex 813: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.317960 + Group: 'Bone', Weight: 0.281449 + Group: 'Bone2', Weight: 0.148779 + Group: 'Bone1', Weight: 0.142937 + Group: 'LeftLeg', Weight: 0.108875 +Vertex 814: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.247025 + Group: 'Bone1', Weight: 0.236982 + Group: 'LeftLeg', Weight: 0.190174 + Group: 'Bone2', Weight: 0.164902 + Group: 'Bone', Weight: 0.160916 +Vertex 815: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.289420 + Group: 'LeftLeg', Weight: 0.263770 + Group: 'Bone2', Weight: 0.169694 + Group: 'LeftUpLeg', Weight: 0.169625 + Group: 'Bone', Weight: 0.107491 +Vertex 816: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.351905 + Group: 'Bone', Weight: 0.191014 + Group: 'Bone2', Weight: 0.185363 + Group: 'LeftLeg', Weight: 0.154408 + Group: 'Bone1', Weight: 0.117310 +Vertex 817: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.283159 + Group: 'LeftLeg', Weight: 0.276932 + Group: 'Bone2', Weight: 0.174392 + Group: 'LeftUpLeg', Weight: 0.167742 + Group: 'Bone', Weight: 0.097776 +Vertex 818: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.317679 + Group: 'Bone1', Weight: 0.245779 + Group: 'Bone2', Weight: 0.173133 + Group: 'LeftLeg', Weight: 0.137082 + Group: 'Bone', Weight: 0.126327 +Vertex 819: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.379070 + Group: 'Bone2', Weight: 0.211759 + Group: 'LeftLeg', Weight: 0.174186 + Group: 'Bone', Weight: 0.161648 + Group: 'Bone1', Weight: 0.073337 +Vertex 820: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.366868 + Group: 'Bone2', Weight: 0.208213 + Group: 'LeftLeg', Weight: 0.166830 + Group: 'Bone', Weight: 0.164308 + Group: 'Bone1', Weight: 0.093782 +Vertex 821: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.354467 + Group: 'Bone2', Weight: 0.212804 + Group: 'LeftLeg', Weight: 0.183017 + Group: 'Bone', Weight: 0.178228 + Group: 'Bone1', Weight: 0.071485 +Vertex 822: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.367725 + Group: 'Bone2', Weight: 0.212610 + Group: 'Bone', Weight: 0.173239 + Group: 'LeftLeg', Weight: 0.172023 + Group: 'Bone1', Weight: 0.074402 +Vertex 823: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.378816 + Group: 'LeftLeg', Weight: 0.347772 + Group: 'Bone2', Weight: 0.170001 + Group: 'LeftUpLeg', Weight: 0.060683 + Group: 'Bone.001', Weight: 0.042728 +Vertex 824: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.373641 + Group: 'LeftLeg', Weight: 0.359451 + Group: 'Bone2', Weight: 0.171229 + Group: 'LeftUpLeg', Weight: 0.052830 + Group: 'Bone.001', Weight: 0.042848 +Vertex 825: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.381499 + Group: 'LeftLeg', Weight: 0.358332 + Group: 'Bone2', Weight: 0.175152 + Group: 'Bone.001', Weight: 0.045645 + Group: 'LeftUpLeg', Weight: 0.039372 +Vertex 826: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.380184 + Group: 'LeftLeg', Weight: 0.364649 + Group: 'Bone2', Weight: 0.175134 + Group: 'Bone.001', Weight: 0.045333 + Group: 'LeftUpLeg', Weight: 0.034700 +Vertex 827: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.362672 + Group: 'LeftLeg', Weight: 0.352735 + Group: 'Bone2', Weight: 0.171294 + Group: 'LeftUpLeg', Weight: 0.061588 + Group: 'Bone', Weight: 0.051712 +Vertex 828: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.376786 + Group: 'LeftLeg', Weight: 0.366968 + Group: 'Bone2', Weight: 0.174247 + Group: 'Bone.001', Weight: 0.044085 + Group: 'LeftUpLeg', Weight: 0.037914 +Vertex 829: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.341399 + Group: 'LeftLeg', Weight: 0.323995 + Group: 'Bone2', Weight: 0.171694 + Group: 'LeftUpLeg', Weight: 0.096291 + Group: 'Bone', Weight: 0.066621 +Vertex 830: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.358851 + Group: 'Bone1', Weight: 0.352085 + Group: 'Bone2', Weight: 0.177562 + Group: 'LeftUpLeg', Weight: 0.062063 + Group: 'Bone', Weight: 0.049440 +Vertex 831: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.374051 + Group: 'Bone1', Weight: 0.295200 + Group: 'Bone2', Weight: 0.187318 + Group: 'LeftUpLeg', Weight: 0.077694 + Group: 'Bone', Weight: 0.065737 +Vertex 832: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.376798 + Group: 'Bone1', Weight: 0.245696 + Group: 'Bone2', Weight: 0.200228 + Group: 'LeftUpLeg', Weight: 0.099325 + Group: 'Bone', Weight: 0.077954 +Vertex 833: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.369622 + Group: 'Bone1', Weight: 0.236144 + Group: 'Bone2', Weight: 0.199617 + Group: 'LeftUpLeg', Weight: 0.102626 + Group: 'Bone', Weight: 0.091992 +Vertex 834: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.323599 + Group: 'Bone1', Weight: 0.233997 + Group: 'Bone2', Weight: 0.198100 + Group: 'LeftUpLeg', Weight: 0.142244 + Group: 'Bone', Weight: 0.102059 +Vertex 835: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.341409 + Group: 'Bone1', Weight: 0.234342 + Group: 'Bone2', Weight: 0.199421 + Group: 'LeftUpLeg', Weight: 0.126854 + Group: 'Bone', Weight: 0.097974 +Vertex 836: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.274447 + Group: 'Bone1', Weight: 0.217309 + Group: 'Bone', Weight: 0.205020 + Group: 'Bone2', Weight: 0.155834 + Group: 'LeftLeg', Weight: 0.147390 +Vertex 837: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.317132 + Group: 'LeftLeg', Weight: 0.277540 + Group: 'Bone2', Weight: 0.162721 + Group: 'LeftUpLeg', Weight: 0.140975 + Group: 'Bone', Weight: 0.101632 +Vertex 838: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.321628 + Group: 'Bone', Weight: 0.306506 + Group: 'Bone2', Weight: 0.148444 + Group: 'Bone1', Weight: 0.119637 + Group: 'LeftLeg', Weight: 0.103786 +Vertex 839: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.248733 + Group: 'Bone1', Weight: 0.223705 + Group: 'Bone', Weight: 0.197177 + Group: 'LeftLeg', Weight: 0.171679 + Group: 'Bone2', Weight: 0.158705 +Vertex 840: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.291867 + Group: 'LeftLeg', Weight: 0.258422 + Group: 'Bone2', Weight: 0.163743 + Group: 'LeftUpLeg', Weight: 0.159557 + Group: 'Bone', Weight: 0.126410 +Vertex 841: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.282481 + Group: 'Bone', Weight: 0.262298 + Group: 'Bone1', Weight: 0.160608 + Group: 'Bone2', Weight: 0.154789 + Group: 'LeftLeg', Weight: 0.139823 +Vertex 842: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.275479 + Group: 'LeftLeg', Weight: 0.253332 + Group: 'LeftUpLeg', Weight: 0.164525 + Group: 'Bone2', Weight: 0.163973 + Group: 'Bone', Weight: 0.142691 +Vertex 843: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.236359 + Group: 'Bone1', Weight: 0.218268 + Group: 'Bone', Weight: 0.201963 + Group: 'LeftLeg', Weight: 0.183439 + Group: 'Bone2', Weight: 0.159971 +Vertex 844: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.306331 + Group: 'Bone', Weight: 0.226953 + Group: 'LeftLeg', Weight: 0.197034 + Group: 'Bone2', Weight: 0.192886 + Group: 'Bone1', Weight: 0.076795 +Vertex 845: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.321752 + Group: 'Bone2', Weight: 0.203272 + Group: 'LeftLeg', Weight: 0.198718 + Group: 'Bone', Weight: 0.192587 + Group: 'Bone1', Weight: 0.083671 +Vertex 846: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.353329 + Group: 'Bone2', Weight: 0.213412 + Group: 'LeftLeg', Weight: 0.188129 + Group: 'Bone', Weight: 0.187261 + Group: 'Bone1', Weight: 0.057869 +Vertex 847: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.369187 + Group: 'LeftLeg', Weight: 0.342587 + Group: 'Bone2', Weight: 0.171308 + Group: 'LeftUpLeg', Weight: 0.071688 + Group: 'Bone', Weight: 0.045230 +Vertex 848: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.377209 + Group: 'LeftLeg', Weight: 0.353197 + Group: 'Bone2', Weight: 0.174149 + Group: 'LeftUpLeg', Weight: 0.051386 + Group: 'Bone.001', Weight: 0.044060 +Vertex 849: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.339685 + Group: 'LeftLeg', Weight: 0.309642 + Group: 'Bone2', Weight: 0.169630 + Group: 'LeftUpLeg', Weight: 0.105441 + Group: 'Bone', Weight: 0.075603 +Vertex 850: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.343194 + Group: 'LeftLeg', Weight: 0.318892 + Group: 'Bone2', Weight: 0.174207 + Group: 'LeftUpLeg', Weight: 0.093909 + Group: 'Bone', Weight: 0.069798 +Vertex 851: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.310927 + Group: 'LeftLeg', Weight: 0.287317 + Group: 'Bone2', Weight: 0.171760 + Group: 'LeftUpLeg', Weight: 0.126683 + Group: 'Bone', Weight: 0.103314 +Vertex 852: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.299683 + Group: 'Bone1', Weight: 0.232098 + Group: 'Bone2', Weight: 0.191879 + Group: 'LeftUpLeg', Weight: 0.156297 + Group: 'Bone', Weight: 0.120043 +Vertex 853: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.290902 + Group: 'Bone1', Weight: 0.235504 + Group: 'Bone2', Weight: 0.193522 + Group: 'LeftUpLeg', Weight: 0.166644 + Group: 'Bone', Weight: 0.113428 +Vertex 854: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.307130 + Group: 'Bone1', Weight: 0.233992 + Group: 'Bone2', Weight: 0.196825 + Group: 'LeftUpLeg', Weight: 0.154892 + Group: 'Bone', Weight: 0.107161 +Vertex 855: +Vertex groups: 5 + Group: 'Bone', Weight: 0.403268 + Group: 'LeftUpLeg', Weight: 0.370627 + Group: 'Bone2', Weight: 0.154940 + Group: 'LeftLeg', Weight: 0.039214 + Group: 'Bone.001', Weight: 0.031951 +Vertex 856: +Vertex groups: 5 + Group: 'Bone', Weight: 0.402793 + Group: 'LeftUpLeg', Weight: 0.348147 + Group: 'Bone2', Weight: 0.155195 + Group: 'LeftLeg', Weight: 0.061862 + Group: 'Bone.001', Weight: 0.032003 +Vertex 857: +Vertex groups: 5 + Group: 'Bone', Weight: 0.414903 + Group: 'LeftUpLeg', Weight: 0.364738 + Group: 'Bone2', Weight: 0.136881 + Group: 'LeftLeg', Weight: 0.051465 + Group: 'Bone.001', Weight: 0.032013 +Vertex 858: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.312920 + Group: 'Bone.001', Weight: 0.073388 + Group: 'Bone', Weight: 0.994168 + Group: 'LeftUpLeg', Weight: 0.919338 + Group: 'LeftLeg', Weight: 0.078621 +Vertex 859: +Vertex groups: 5 + Group: 'Bone', Weight: 0.403063 + Group: 'LeftUpLeg', Weight: 0.332661 + Group: 'Bone2', Weight: 0.154119 + Group: 'LeftLeg', Weight: 0.077548 + Group: 'Bone.001', Weight: 0.032609 +Vertex 860: +Vertex groups: 5 + Group: 'Bone', Weight: 0.404042 + Group: 'LeftUpLeg', Weight: 0.332816 + Group: 'Bone2', Weight: 0.152487 + Group: 'LeftLeg', Weight: 0.076904 + Group: 'Bone.001', Weight: 0.033751 +Vertex 861: +Vertex groups: 5 + Group: 'Bone', Weight: 0.403916 + Group: 'LeftUpLeg', Weight: 0.377617 + Group: 'Bone2', Weight: 0.153678 + Group: 'Bone.001', Weight: 0.032515 + Group: 'LeftLeg', Weight: 0.032274 +Vertex 862: +Vertex groups: 5 + Group: 'Bone', Weight: 0.402709 + Group: 'LeftUpLeg', Weight: 0.361225 + Group: 'Bone2', Weight: 0.155832 + Group: 'LeftLeg', Weight: 0.048317 + Group: 'Bone.001', Weight: 0.031918 +Vertex 863: +Vertex groups: 5 + Group: 'Bone', Weight: 0.406748 + Group: 'LeftUpLeg', Weight: 0.334554 + Group: 'Bone2', Weight: 0.148523 + Group: 'LeftLeg', Weight: 0.076333 + Group: 'Bone.001', Weight: 0.033842 +Vertex 864: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.306079 + Group: 'Bone.001', Weight: 0.071880 + Group: 'Bone', Weight: 0.994634 + Group: 'LeftUpLeg', Weight: 0.903610 + Group: 'LeftLeg', Weight: 0.092910 +Vertex 865: +Vertex groups: 5 + Group: 'Bone', Weight: 0.409076 + Group: 'LeftUpLeg', Weight: 0.345747 + Group: 'Bone2', Weight: 0.145448 + Group: 'LeftLeg', Weight: 0.066021 + Group: 'Bone.001', Weight: 0.033708 +Vertex 866: +Vertex groups: 5 + Group: 'Bone', Weight: 0.404595 + Group: 'LeftUpLeg', Weight: 0.378028 + Group: 'Bone2', Weight: 0.152091 + Group: 'Bone.001', Weight: 0.033664 + Group: 'LeftLeg', Weight: 0.031621 +Vertex 867: +Vertex groups: 5 + Group: 'Bone', Weight: 0.406783 + Group: 'LeftUpLeg', Weight: 0.377111 + Group: 'Bone2', Weight: 0.148281 + Group: 'LeftLeg', Weight: 0.034039 + Group: 'Bone.001', Weight: 0.033787 +Vertex 868: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone', Weight: 0.992900 + Group: 'LeftUpLeg', Weight: 0.920032 + Group: 'LeftLeg', Weight: 0.078772 +Vertex 869: +Vertex groups: 5 + Group: 'Bone', Weight: 0.408701 + Group: 'LeftUpLeg', Weight: 0.375406 + Group: 'Bone2', Weight: 0.145303 + Group: 'LeftLeg', Weight: 0.036915 + Group: 'Bone.001', Weight: 0.033674 +Vertex 870: +Vertex groups: 5 + Group: 'Bone', Weight: 0.408198 + Group: 'LeftUpLeg', Weight: 0.395136 + Group: 'Bone2', Weight: 0.155867 + Group: 'Bone.001', Weight: 0.032142 + Group: 'LeftLeg', Weight: 0.008657 +Vertex 871: +Vertex groups: 5 + Group: 'Bone', Weight: 0.418892 + Group: 'LeftUpLeg', Weight: 0.400320 + Group: 'Bone2', Weight: 0.137762 + Group: 'Bone.001', Weight: 0.032220 + Group: 'LeftLeg', Weight: 0.010806 +Vertex 872: +Vertex groups: 5 + Group: 'Bone', Weight: 0.991063 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'LeftUpLeg', Weight: 0.937774 + Group: 'LeftLeg', Weight: 0.053763 +Vertex 873: +Vertex groups: 4 + Group: 'Bone', Weight: 0.992172 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone2', Weight: 0.374821 + Group: 'LeftUpLeg', Weight: 0.985605 +Vertex 874: +Vertex groups: 4 + Group: 'Bone', Weight: 0.994309 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'LeftUpLeg', Weight: 0.985460 +Vertex 875: +Vertex groups: 4 + Group: 'Bone', Weight: 0.995136 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone2', Weight: 0.352227 + Group: 'LeftUpLeg', Weight: 0.981349 +Vertex 876: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.077910 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone', Weight: 0.991126 + Group: 'LeftUpLeg', Weight: 0.979876 +Vertex 877: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.073388 + Group: 'Bone2', Weight: 0.312920 + Group: 'Bone', Weight: 0.996896 + Group: 'LeftUpLeg', Weight: 0.972213 +Vertex 878: +Vertex groups: 5 + Group: 'Bone', Weight: 0.406521 + Group: 'LeftUpLeg', Weight: 0.387691 + Group: 'Bone2', Weight: 0.154036 + Group: 'Bone.001', Weight: 0.032591 + Group: 'LeftLeg', Weight: 0.019162 +Vertex 879: +Vertex groups: 5 + Group: 'Bone', Weight: 0.409339 + Group: 'LeftUpLeg', Weight: 0.400772 + Group: 'Bone2', Weight: 0.157075 + Group: 'Bone.001', Weight: 0.032172 + Group: 'LeftLeg', Weight: 0.000642 +Vertex 880: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone', Weight: 0.993213 + Group: 'LeftUpLeg', Weight: 0.938841 + Group: 'LeftLeg', Weight: 0.051711 +Vertex 881: +Vertex groups: 5 + Group: 'Bone', Weight: 0.424909 + Group: 'LeftUpLeg', Weight: 0.409959 + Group: 'Bone2', Weight: 0.130430 + Group: 'Bone.001', Weight: 0.030630 + Group: 'LeftLeg', Weight: 0.004072 +Vertex 882: +Vertex groups: 5 + Group: 'Bone', Weight: 0.411725 + Group: 'LeftUpLeg', Weight: 0.390083 + Group: 'Bone2', Weight: 0.145752 + Group: 'Bone.001', Weight: 0.033778 + Group: 'LeftLeg', Weight: 0.018661 +Vertex 883: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone', Weight: 0.993457 + Group: 'LeftUpLeg', Weight: 0.987930 +Vertex 884: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone', Weight: 0.996252 + Group: 'LeftUpLeg', Weight: 0.976297 +Vertex 885: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.993311 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftLeg', Weight: 0.986326 +Vertex 886: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.386471 + Group: 'LeftLeg', Weight: 0.374624 + Group: 'Bone2', Weight: 0.176721 + Group: 'Bone.001', Weight: 0.035599 + Group: 'LeftUpLeg', Weight: 0.026585 +Vertex 887: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.389740 + Group: 'LeftLeg', Weight: 0.384481 + Group: 'Bone2', Weight: 0.174519 + Group: 'Bone.001', Weight: 0.042594 + Group: 'LeftUpLeg', Weight: 0.008666 +Vertex 888: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.394918 + Group: 'Bone1', Weight: 0.378207 + Group: 'Bone2', Weight: 0.179205 + Group: 'Bone.001', Weight: 0.037098 + Group: 'Bone', Weight: 0.010572 +Vertex 889: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.993703 + Group: 'Bone2', Weight: 0.467316 + Group: 'LeftLeg', Weight: 0.979523 +Vertex 890: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.385542 + Group: 'LeftLeg', Weight: 0.370176 + Group: 'Bone2', Weight: 0.176241 + Group: 'Bone.001', Weight: 0.036485 + Group: 'LeftUpLeg', Weight: 0.031557 +Vertex 891: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.987236 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftUpLeg', Weight: 0.008378 + Group: 'LeftLeg', Weight: 0.970491 +Vertex 892: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.386461 + Group: 'LeftLeg', Weight: 0.378279 + Group: 'Bone2', Weight: 0.173596 + Group: 'Bone.001', Weight: 0.040641 + Group: 'LeftUpLeg', Weight: 0.021023 +Vertex 893: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.386441 + Group: 'LeftLeg', Weight: 0.374899 + Group: 'Bone2', Weight: 0.173622 + Group: 'Bone.001', Weight: 0.038487 + Group: 'LeftUpLeg', Weight: 0.026551 +Vertex 894: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.106780 + Group: 'Bone1', Weight: 0.954507 + Group: 'Bone2', Weight: 0.437508 + Group: 'LeftLeg', Weight: 0.991626 +Vertex 895: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.385104 + Group: 'Bone1', Weight: 0.379231 + Group: 'Bone2', Weight: 0.178684 + Group: 'Bone.001', Weight: 0.035758 + Group: 'LeftUpLeg', Weight: 0.021223 +Vertex 896: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.389804 + Group: 'Bone1', Weight: 0.379391 + Group: 'Bone2', Weight: 0.179505 + Group: 'Bone.001', Weight: 0.036160 + Group: 'LeftUpLeg', Weight: 0.015140 +Vertex 897: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.991697 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.989355 +Vertex 898: +Vertex groups: 5 + Group: 'Bone', Weight: 0.012908 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.931622 + Group: 'Bone2', Weight: 0.432383 + Group: 'LeftLeg', Weight: 0.983745 +Vertex 899: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone.001', Weight: 0.101754 + Group: 'Bone1', Weight: 0.931907 + Group: 'Bone', Weight: 0.004624 + Group: 'LeftLeg', Weight: 0.989954 +Vertex 900: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.394307 + Group: 'LeftFoot', Weight: 0.340656 + Group: 'Bone2', Weight: 0.184268 + Group: 'Bone.001', Weight: 0.051510 + Group: 'LeftLeg', Weight: 0.029259 +Vertex 901: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392645 + Group: 'LeftFoot', Weight: 0.336766 + Group: 'Bone2', Weight: 0.182604 + Group: 'Bone.001', Weight: 0.050486 + Group: 'LeftLeg', Weight: 0.037500 +Vertex 902: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393886 + Group: 'LeftFoot', Weight: 0.348887 + Group: 'Bone2', Weight: 0.178626 + Group: 'Bone.001', Weight: 0.046949 + Group: 'LeftLeg', Weight: 0.031652 +Vertex 903: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.398074 + Group: 'LeftFoot', Weight: 0.362946 + Group: 'Bone2', Weight: 0.174161 + Group: 'Bone.001', Weight: 0.042506 + Group: 'LeftLeg', Weight: 0.022313 +Vertex 904: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.011725 + Group: 'LeftFoot', Weight: 0.948090 +Vertex 905: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.026075 + Group: 'LeftFoot', Weight: 0.955273 +Vertex 906: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.140353 + Group: 'LeftFoot', Weight: 0.854371 +Vertex 907: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.087994 + Group: 'LeftLeg', Weight: 0.241786 + Group: 'LeftFoot', Weight: 0.752444 +Vertex 908: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.222678 + Group: 'LeftFoot', Weight: 0.772543 +Vertex 909: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396436 + Group: 'LeftFoot', Weight: 0.350805 + Group: 'Bone2', Weight: 0.179786 + Group: 'Bone.001', Weight: 0.047254 + Group: 'LeftLeg', Weight: 0.025718 +Vertex 910: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.398440 + Group: 'LeftFoot', Weight: 0.356735 + Group: 'Bone2', Weight: 0.174326 + Group: 'Bone.001', Weight: 0.042547 + Group: 'LeftLeg', Weight: 0.027953 +Vertex 911: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.078382 + Group: 'LeftFoot', Weight: 0.897005 +Vertex 912: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.098336 + Group: 'LeftFoot', Weight: 0.884241 +Vertex 913: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.126546 + Group: 'LeftFoot', Weight: 0.860873 +Vertex 914: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.184284 + Group: 'LeftFoot', Weight: 0.807639 +Vertex 915: +Vertex groups: 5 + Group: 'Bone', Weight: 0.524655 + Group: 'Hips', Weight: 0.243007 + Group: 'Bone2', Weight: 0.189222 + Group: 'Bone.001', Weight: 0.043115 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 916: +Vertex groups: 5 + Group: 'Bone', Weight: 0.562670 + Group: 'Bone2', Weight: 0.202933 + Group: 'Hips', Weight: 0.188158 + Group: 'Bone.001', Weight: 0.046239 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 917: +Vertex groups: 5 + Group: 'Bone', Weight: 0.544234 + Group: 'Hips', Weight: 0.214759 + Group: 'Bone2', Weight: 0.196283 + Group: 'Bone.001', Weight: 0.044724 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 918: +Vertex groups: 5 + Group: 'Bone', Weight: 0.505200 + Group: 'Bone2', Weight: 0.190949 + Group: 'Hips', Weight: 0.185574 + Group: 'LeftUpLeg', Weight: 0.078899 + Group: 'Bone.001', Weight: 0.039377 +Vertex 919: +Vertex groups: 5 + Group: 'Bone', Weight: 0.540345 + Group: 'Bone2', Weight: 0.204233 + Group: 'Hips', Weight: 0.190995 + Group: 'Bone.001', Weight: 0.042116 + Group: 'LeftUpLeg', Weight: 0.022311 +Vertex 920: +Vertex groups: 5 + Group: 'Bone', Weight: 0.540583 + Group: 'Hips', Weight: 0.219254 + Group: 'Bone2', Weight: 0.194967 + Group: 'Bone.001', Weight: 0.044424 + Group: 'Spine', Weight: 0.000773 +Vertex 921: +Vertex groups: 5 + Group: 'Bone', Weight: 0.524138 + Group: 'Hips', Weight: 0.209434 + Group: 'Bone2', Weight: 0.198107 + Group: 'Bone.001', Weight: 0.040853 + Group: 'Spine', Weight: 0.027469 +Vertex 922: +Vertex groups: 5 + Group: 'Bone', Weight: 0.506919 + Group: 'Hips', Weight: 0.201073 + Group: 'Bone2', Weight: 0.182825 + Group: 'Spine', Weight: 0.067525 + Group: 'Bone.001', Weight: 0.041658 +Vertex 923: +Vertex groups: 5 + Group: 'Bone', Weight: 0.441860 + Group: 'Spine', Weight: 0.332171 + Group: 'Bone2', Weight: 0.159361 + Group: 'Bone.001', Weight: 0.036311 + Group: 'Hips', Weight: 0.030297 +Vertex 924: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftToeBase', Weight: 0.997675 +Vertex 925: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftToeBase', Weight: 0.992369 +Vertex 926: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.123765 + Group: 'Bone1', Weight: 0.999994 + Group: 'Bone2', Weight: 0.459127 + Group: 'LeftToeBase', Weight: 0.997053 +Vertex 927: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.121124 + Group: 'Bone1', Weight: 0.999995 + Group: 'Bone2', Weight: 0.455872 + Group: 'LeftToeBase', Weight: 0.994768 +Vertex 928: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftFoot', Weight: 0.203638 + Group: 'LeftToeBase', Weight: 0.793223 +Vertex 929: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftFoot', Weight: 0.036832 + Group: 'LeftToeBase', Weight: 0.956003 +Vertex 930: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftToeBase', Weight: 0.976395 +Vertex 931: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119938 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.454410 + Group: 'LeftToeBase', Weight: 0.975577 +Vertex 932: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.085424 + Group: 'LeftToeBase', Weight: 0.914327 +Vertex 933: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119561 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453946 + Group: 'LeftFoot', Weight: 0.075967 + Group: 'LeftToeBase', Weight: 0.923817 +Vertex 934: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.237879 + Group: 'LeftToeBase', Weight: 0.761563 +Vertex 935: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119426 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453780 + Group: 'LeftFoot', Weight: 0.214619 + Group: 'LeftToeBase', Weight: 0.784834 +Vertex 936: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.911256 + Group: 'LeftToeBase', Weight: 0.084567 +Vertex 937: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119357 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453695 + Group: 'LeftFoot', Weight: 0.796189 + Group: 'LeftToeBase', Weight: 0.199140 +Vertex 938: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396335 + Group: 'LeftFoot', Weight: 0.373186 + Group: 'Bone2', Weight: 0.179737 + Group: 'Bone.001', Weight: 0.047241 + Group: 'LeftToeBase', Weight: 0.003502 +Vertex 939: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119269 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453586 + Group: 'LeftFoot', Weight: 0.924170 + Group: 'LeftToeBase', Weight: 0.055819 +Vertex 940: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.050345 + Group: 'LeftFoot', Weight: 0.927006 +Vertex 941: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396314 + Group: 'LeftFoot', Weight: 0.370354 + Group: 'Bone2', Weight: 0.179752 + Group: 'Bone.001', Weight: 0.047259 + Group: 'LeftToeBase', Weight: 0.006321 +Vertex 942: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.075257 + Group: 'LeftFoot', Weight: 0.907937 +Vertex 943: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119238 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453548 + Group: 'LeftLeg', Weight: 0.037952 + Group: 'LeftFoot', Weight: 0.931253 +Vertex 944: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.075816 + Group: 'LeftFoot', Weight: 0.906556 +Vertex 945: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119237 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453546 + Group: 'LeftLeg', Weight: 0.044716 + Group: 'LeftFoot', Weight: 0.928226 +Vertex 946: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.065751 + Group: 'LeftFoot', Weight: 0.912721 +Vertex 947: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.394328 + Group: 'LeftFoot', Weight: 0.366340 + Group: 'Bone2', Weight: 0.178847 + Group: 'Bone.001', Weight: 0.047019 + Group: 'LeftLeg', Weight: 0.013467 +Vertex 948: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393167 + Group: 'LeftFoot', Weight: 0.362331 + Group: 'Bone2', Weight: 0.178300 + Group: 'Bone.001', Weight: 0.046864 + Group: 'LeftLeg', Weight: 0.019338 +Vertex 949: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.395772 + Group: 'LeftFoot', Weight: 0.367817 + Group: 'Bone2', Weight: 0.179505 + Group: 'Bone.001', Weight: 0.047194 + Group: 'LeftToeBase', Weight: 0.009712 +Vertex 950: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396275 + Group: 'LeftFoot', Weight: 0.365434 + Group: 'Bone2', Weight: 0.179709 + Group: 'Bone.001', Weight: 0.047234 + Group: 'LeftLeg', Weight: 0.011348 +Vertex 951: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392598 + Group: 'LeftFoot', Weight: 0.362221 + Group: 'Bone2', Weight: 0.178072 + Group: 'Bone.001', Weight: 0.046821 + Group: 'LeftToeBase', Weight: 0.020289 +Vertex 952: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.903772 + Group: 'LeftToeBase', Weight: 0.075498 +Vertex 953: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119304 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453629 + Group: 'LeftFoot', Weight: 0.887535 + Group: 'LeftToeBase', Weight: 0.098234 +Vertex 954: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.644981 + Group: 'LeftToeBase', Weight: 0.350473 +Vertex 955: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119378 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453720 + Group: 'LeftFoot', Weight: 0.495213 + Group: 'LeftToeBase', Weight: 0.503105 +Vertex 956: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119318 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453647 + Group: 'LeftFoot', Weight: 0.843052 + Group: 'LeftToeBase', Weight: 0.148256 +Vertex 957: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.872582 + Group: 'LeftToeBase', Weight: 0.113109 +Vertex 958: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.314618 + Group: 'LeftToeBase', Weight: 0.682784 +Vertex 959: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119449 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453808 + Group: 'LeftFoot', Weight: 0.222212 + Group: 'LeftToeBase', Weight: 0.776822 +Vertex 960: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.148504 + Group: 'LeftToeBase', Weight: 0.850139 +Vertex 961: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119568 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453955 + Group: 'LeftFoot', Weight: 0.129279 + Group: 'LeftToeBase', Weight: 0.870059 +Vertex 962: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.062794 + Group: 'LeftToeBase', Weight: 0.936626 +Vertex 963: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119859 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.454314 + Group: 'LeftFoot', Weight: 0.060320 + Group: 'LeftToeBase', Weight: 0.939306 +Vertex 964: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.003286 + Group: 'LeftToeBase', Weight: 0.973098 +Vertex 965: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.120824 + Group: 'Bone1', Weight: 0.999995 + Group: 'Bone2', Weight: 0.455503 + Group: 'LeftFoot', Weight: 0.003381 + Group: 'LeftToeBase', Weight: 0.973117 +Vertex 966: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'LeftToeBase', Weight: 0.989706 +Vertex 967: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.122873 + Group: 'Bone1', Weight: 0.999994 + Group: 'Bone2', Weight: 0.458028 + Group: 'LeftToeBase', Weight: 0.988336 +Vertex 968: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.144497 + Group: 'LeftToeBase', Weight: 0.853968 +Vertex 969: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftFoot', Weight: 0.141078 + Group: 'LeftToeBase', Weight: 0.856893 +Vertex 970: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.394427 + Group: 'LeftFoot', Weight: 0.359441 + Group: 'Bone2', Weight: 0.178871 + Group: 'Bone.001', Weight: 0.047014 + Group: 'LeftToeBase', Weight: 0.020247 +Vertex 971: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'LeftToeBase', Weight: 0.997922 +Vertex 972: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.122866 + Group: 'Bone1', Weight: 0.999994 + Group: 'Bone2', Weight: 0.458019 + Group: 'LeftToeBase', Weight: 0.997938 +Vertex 973: +Vertex groups: 4 + Group: 'Hips', Weight: 0.676124 + Group: 'Spine', Weight: 0.082159 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 974: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.892739 + Group: 'LeftToeBase', Weight: 0.084078 +Vertex 975: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.699526 + Group: 'LeftToeBase', Weight: 0.290916 +Vertex 976: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.353200 + Group: 'LeftToeBase', Weight: 0.641955 +Vertex 977: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.157718 + Group: 'LeftToeBase', Weight: 0.840236 +Vertex 978: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.059939 + Group: 'LeftToeBase', Weight: 0.939372 +Vertex 979: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.007598 + Group: 'LeftToeBase', Weight: 0.970866 +Vertex 980: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftFoot', Weight: 0.096196 + Group: 'LeftToeBase', Weight: 0.902416 +Vertex 981: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftToeBase', Weight: 0.987656 +Vertex 982: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftToeBase', Weight: 0.996477 +Vertex 983: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftToeBase', Weight: 0.988566 +Vertex 984: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftToeBase', Weight: 0.983268 +Vertex 985: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.020440 + Group: 'LeftToeBase', Weight: 0.964615 +Vertex 986: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.115006 + Group: 'LeftToeBase', Weight: 0.884582 +Vertex 987: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.273572 + Group: 'LeftToeBase', Weight: 0.725697 +Vertex 988: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.939661 + Group: 'LeftToeBase', Weight: 0.055586 +Vertex 989: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.016375 + Group: 'LeftFoot', Weight: 0.955267 +Vertex 990: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.093309 + Group: 'LeftFoot', Weight: 0.895918 +Vertex 991: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.118549 + Group: 'LeftFoot', Weight: 0.870536 +Vertex 992: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.134358 + Group: 'LeftFoot', Weight: 0.854788 +Vertex 993: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.113377 + Group: 'LeftFoot', Weight: 0.873446 +Vertex 994: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.083078 + Group: 'LeftFoot', Weight: 0.898356 +Vertex 995: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392632 + Group: 'LeftFoot', Weight: 0.358083 + Group: 'Bone2', Weight: 0.178057 + Group: 'Bone.001', Weight: 0.046800 + Group: 'LeftLeg', Weight: 0.024427 +Vertex 996: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftToeBase', Weight: 0.996806 +Vertex 997: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.391667 + Group: 'LeftFoot', Weight: 0.340055 + Group: 'Bone2', Weight: 0.182149 + Group: 'Bone.001', Weight: 0.050360 + Group: 'LeftToeBase', Weight: 0.035770 +Vertex 998: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393027 + Group: 'LeftFoot', Weight: 0.353914 + Group: 'Bone2', Weight: 0.178237 + Group: 'Bone.001', Weight: 0.046847 + Group: 'LeftToeBase', Weight: 0.027975 +Vertex 999: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftFoot', Weight: 0.046430 + Group: 'LeftToeBase', Weight: 0.951106 +Vertex 1000: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.050630 + Group: 'LeftToeBase', Weight: 0.948836 +Vertex 1001: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftToeBase', Weight: 0.994411 +Vertex 1002: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftToeBase', Weight: 0.994240 +Vertex 1003: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftToeBase', Weight: 0.979810 +Vertex 1004: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftFoot', Weight: 0.336080 + Group: 'LeftToeBase', Weight: 0.658741 +Vertex 1005: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.332376 + Group: 'LeftToeBase', Weight: 0.663796 +Vertex 1006: +Vertex groups: 5 + Group: 'Bone', Weight: 0.490799 + Group: 'Hips', Weight: 0.291857 + Group: 'Bone2', Weight: 0.177011 + Group: 'Bone.001', Weight: 0.040333 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1007: +Vertex groups: 5 + Group: 'Bone', Weight: 0.474917 + Group: 'Hips', Weight: 0.314771 + Group: 'Bone2', Weight: 0.171284 + Group: 'Bone.001', Weight: 0.039028 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1008: +Vertex groups: 5 + Group: 'Bone', Weight: 0.468108 + Group: 'Hips', Weight: 0.274770 + Group: 'Bone2', Weight: 0.164913 + Group: 'LeftUpLeg', Weight: 0.053991 + Group: 'Bone.001', Weight: 0.038218 +Vertex 1009: +Vertex groups: 5 + Group: 'Bone', Weight: 0.483188 + Group: 'Bone2', Weight: 0.174267 + Group: 'Hips', Weight: 0.166479 + Group: 'Spine', Weight: 0.136359 + Group: 'Bone.001', Weight: 0.039708 +Vertex 1010: +Vertex groups: 5 + Group: 'Bone', Weight: 0.467945 + Group: 'Spine', Weight: 0.214582 + Group: 'Bone2', Weight: 0.168769 + Group: 'Hips', Weight: 0.110249 + Group: 'Bone.001', Weight: 0.038455 +Vertex 1011: +Vertex groups: 5 + Group: 'Bone', Weight: 0.416690 + Group: 'LeftUpLeg', Weight: 0.394370 + Group: 'Bone2', Weight: 0.150319 + Group: 'Bone.001', Weight: 0.034251 + Group: 'Spine', Weight: 0.004370 +Vertex 1012: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftToeBase', Weight: 0.985564 +Vertex 1013: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftToeBase', Weight: 0.987461 +Vertex 1014: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.012845 + Group: 'LeftToeBase', Weight: 0.968312 +Vertex 1015: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.070835 + Group: 'LeftToeBase', Weight: 0.928553 +Vertex 1016: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.290324 + Group: 'LeftToeBase', Weight: 0.707199 +Vertex 1017: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.909171 + Group: 'LeftToeBase', Weight: 0.067936 +Vertex 1018: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.390635 + Group: 'LeftFoot', Weight: 0.330561 + Group: 'Bone2', Weight: 0.182553 + Group: 'Bone.001', Weight: 0.051030 + Group: 'LeftToeBase', Weight: 0.045221 +Vertex 1019: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'LeftFoot', Weight: 0.258642 + Group: 'LeftToeBase', Weight: 0.737226 +Vertex 1020: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'LeftFoot', Weight: 0.045179 + Group: 'LeftToeBase', Weight: 0.951736 +Vertex 1021: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'LeftToeBase', Weight: 0.975359 +Vertex 1022: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.036055 + Group: 'LeftToeBase', Weight: 0.956727 +Vertex 1023: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.246949 + Group: 'LeftToeBase', Weight: 0.752091 +Vertex 1024: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.934068 + Group: 'LeftToeBase', Weight: 0.058577 +Vertex 1025: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.137493 + Group: 'LeftToeBase', Weight: 0.861334 +Vertex 1026: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'LeftFoot', Weight: 0.113777 + Group: 'LeftToeBase', Weight: 0.884511 +Vertex 1027: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.113027 + Group: 'LeftToeBase', Weight: 0.886434 +Vertex 1028: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftFoot', Weight: 0.417374 + Group: 'LeftToeBase', Weight: 0.575482 +Vertex 1029: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.762265 + Group: 'LeftToeBase', Weight: 0.236245 +Vertex 1030: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119393 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453739 + Group: 'LeftFoot', Weight: 0.587199 + Group: 'LeftToeBase', Weight: 0.411189 +Vertex 1031: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.721479 + Group: 'LeftToeBase', Weight: 0.277041 +Vertex 1032: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.718358 + Group: 'LeftToeBase', Weight: 0.273285 +Vertex 1033: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftFoot', Weight: 0.684448 + Group: 'LeftToeBase', Weight: 0.303861 +Vertex 1034: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.684866 + Group: 'LeftToeBase', Weight: 0.309357 +Vertex 1035: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'LeftFoot', Weight: 0.546616 + Group: 'LeftToeBase', Weight: 0.444209 +Vertex 1036: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.712746 + Group: 'LeftToeBase', Weight: 0.284641 +Vertex 1037: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftFoot', Weight: 0.741968 + Group: 'LeftToeBase', Weight: 0.241378 +Vertex 1038: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.389933 + Group: 'LeftFoot', Weight: 0.335313 + Group: 'Bone2', Weight: 0.181345 + Group: 'Bone.001', Weight: 0.050138 + Group: 'LeftToeBase', Weight: 0.043271 +Vertex 1039: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119345 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453680 + Group: 'LeftFoot', Weight: 0.738496 + Group: 'LeftToeBase', Weight: 0.257174 +Vertex 1040: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.794679 + Group: 'LeftToeBase', Weight: 0.197265 +Vertex 1041: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.841532 + Group: 'LeftToeBase', Weight: 0.142140 +Vertex 1042: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftLeg', Weight: 0.219431 + Group: 'LeftFoot', Weight: 0.765531 +Vertex 1043: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.193852 + Group: 'LeftFoot', Weight: 0.793766 +Vertex 1044: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.432383 + Group: 'LeftLeg', Weight: 0.288708 + Group: 'LeftFoot', Weight: 0.706411 +Vertex 1045: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.101754 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone2', Weight: 0.434634 + Group: 'LeftLeg', Weight: 0.228241 + Group: 'LeftFoot', Weight: 0.763575 +Vertex 1046: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.106780 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.437508 + Group: 'LeftLeg', Weight: 0.155985 + Group: 'LeftFoot', Weight: 0.834632 +Vertex 1047: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.101754 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.434634 + Group: 'LeftLeg', Weight: 0.120756 + Group: 'LeftFoot', Weight: 0.874030 +Vertex 1048: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.432383 + Group: 'LeftLeg', Weight: 0.098418 + Group: 'LeftFoot', Weight: 0.900611 +Vertex 1049: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.090799 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone2', Weight: 0.438608 + Group: 'LeftLeg', Weight: 0.436003 + Group: 'LeftFoot', Weight: 0.563590 +Vertex 1050: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.088715 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone2', Weight: 0.440400 + Group: 'LeftLeg', Weight: 0.472041 + Group: 'LeftFoot', Weight: 0.527379 +Vertex 1051: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'LeftLeg', Weight: 0.197603 + Group: 'LeftFoot', Weight: 0.784564 +Vertex 1052: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.106780 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone2', Weight: 0.437508 + Group: 'LeftLeg', Weight: 0.196950 + Group: 'LeftFoot', Weight: 0.791466 +Vertex 1053: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.088715 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone2', Weight: 0.440400 + Group: 'LeftLeg', Weight: 0.432646 + Group: 'LeftFoot', Weight: 0.565311 +Vertex 1054: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.090799 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone2', Weight: 0.438608 + Group: 'LeftLeg', Weight: 0.399369 + Group: 'LeftFoot', Weight: 0.597717 +Vertex 1055: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.087994 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.439706 + Group: 'LeftLeg', Weight: 0.466616 + Group: 'LeftFoot', Weight: 0.532208 +Vertex 1056: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999975 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.178381 + Group: 'LeftFoot', Weight: 0.806170 +Vertex 1057: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119273 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453591 + Group: 'LeftFoot', Weight: 0.911613 + Group: 'LeftToeBase', Weight: 0.067991 +Vertex 1058: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393485 + Group: 'LeftFoot', Weight: 0.361270 + Group: 'Bone2', Weight: 0.178444 + Group: 'Bone.001', Weight: 0.046902 + Group: 'LeftToeBase', Weight: 0.019898 +Vertex 1059: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393851 + Group: 'LeftFoot', Weight: 0.360776 + Group: 'Bone2', Weight: 0.178610 + Group: 'Bone.001', Weight: 0.046945 + Group: 'LeftLeg', Weight: 0.019818 +Vertex 1060: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119301 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453625 + Group: 'LeftFoot', Weight: 0.868311 + Group: 'LeftToeBase', Weight: 0.123315 +Vertex 1061: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.962612 + Group: 'LeftToeBase', Weight: 0.004608 +Vertex 1062: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.098800 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.433508 + Group: 'LeftFoot', Weight: 0.972301 +Vertex 1063: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.098800 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.433508 + Group: 'LeftLeg', Weight: 0.008037 + Group: 'LeftFoot', Weight: 0.963975 +Vertex 1064: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'LeftToeBase', Weight: 0.998577 +Vertex 1065: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftToeBase', Weight: 0.998205 +Vertex 1066: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftToeBase', Weight: 0.991711 +Vertex 1067: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftToeBase', Weight: 0.974952 +Vertex 1068: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.082572 + Group: 'LeftToeBase', Weight: 0.917198 +Vertex 1069: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.222110 + Group: 'LeftToeBase', Weight: 0.777330 +Vertex 1070: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.684777 + Group: 'LeftToeBase', Weight: 0.313451 +Vertex 1071: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.831617 + Group: 'LeftToeBase', Weight: 0.163712 +Vertex 1072: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.890334 + Group: 'LeftToeBase', Weight: 0.099333 +Vertex 1073: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.925533 + Group: 'LeftToeBase', Weight: 0.054146 +Vertex 1074: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.395818 + Group: 'LeftFoot', Weight: 0.369725 + Group: 'Bone2', Weight: 0.179502 + Group: 'Bone.001', Weight: 0.047180 + Group: 'LeftLeg', Weight: 0.007774 +Vertex 1075: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.051066 + Group: 'LeftFoot', Weight: 0.926618 +Vertex 1076: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.054221 + Group: 'LeftFoot', Weight: 0.923650 +Vertex 1077: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393555 + Group: 'LeftFoot', Weight: 0.365007 + Group: 'Bone2', Weight: 0.178476 + Group: 'Bone.001', Weight: 0.046910 + Group: 'LeftLeg', Weight: 0.016052 +Vertex 1078: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396201 + Group: 'LeftFoot', Weight: 0.367923 + Group: 'Bone2', Weight: 0.179676 + Group: 'Bone.001', Weight: 0.047225 + Group: 'LeftToeBase', Weight: 0.008975 +Vertex 1079: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392863 + Group: 'LeftFoot', Weight: 0.362452 + Group: 'Bone2', Weight: 0.178162 + Group: 'Bone.001', Weight: 0.046828 + Group: 'LeftToeBase', Weight: 0.019695 +Vertex 1080: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.910002 + Group: 'LeftToeBase', Weight: 0.068663 +Vertex 1081: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.888715 + Group: 'LeftToeBase', Weight: 0.095876 +Vertex 1082: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.757992 + Group: 'LeftToeBase', Weight: 0.236767 +Vertex 1083: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.533022 + Group: 'LeftToeBase', Weight: 0.464560 +Vertex 1084: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.842784 + Group: 'LeftToeBase', Weight: 0.147779 +Vertex 1085: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.276228 + Group: 'LeftToeBase', Weight: 0.722305 +Vertex 1086: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.137593 + Group: 'LeftToeBase', Weight: 0.861576 +Vertex 1087: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.061538 + Group: 'LeftToeBase', Weight: 0.938034 +Vertex 1088: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.004127 + Group: 'LeftToeBase', Weight: 0.972729 +Vertex 1089: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'LeftToeBase', Weight: 0.989172 +Vertex 1090: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone.001', Weight: 0.077910 + Group: 'Bone', Weight: 0.993871 + Group: 'LeftUpLeg', Weight: 0.963625 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1091: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone', Weight: 0.997959 + Group: 'LeftUpLeg', Weight: 0.951741 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1092: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone', Weight: 0.994784 + Group: 'LeftUpLeg', Weight: 0.949299 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1093: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone', Weight: 0.995680 + Group: 'LeftUpLeg', Weight: 0.992290 +Vertex 1094: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone', Weight: 0.996897 + Group: 'LeftUpLeg', Weight: 0.994739 +Vertex 1095: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone', Weight: 0.997341 + Group: 'LeftUpLeg', Weight: 0.992446 +Vertex 1096: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.077910 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone', Weight: 0.995020 + Group: 'LeftUpLeg', Weight: 0.985679 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1097: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.073388 + Group: 'Bone2', Weight: 0.312920 + Group: 'Bone', Weight: 0.998259 + Group: 'LeftUpLeg', Weight: 0.980345 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1098: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone', Weight: 0.993674 + Group: 'LeftUpLeg', Weight: 0.951251 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1099: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.077837 + Group: 'Bone2', Weight: 0.380022 + Group: 'Bone', Weight: 0.994475 + Group: 'LeftUpLeg', Weight: 0.975550 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1100: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone', Weight: 0.996102 + Group: 'LeftUpLeg', Weight: 0.919710 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1101: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.071880 + Group: 'Bone2', Weight: 0.306079 + Group: 'Bone', Weight: 0.998379 + Group: 'LeftUpLeg', Weight: 0.967308 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1102: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone', Weight: 0.997151 + Group: 'LeftUpLeg', Weight: 0.913222 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1103: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone', Weight: 0.996423 + Group: 'LeftUpLeg', Weight: 0.995383 +Vertex 1104: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone', Weight: 0.997927 + Group: 'LeftUpLeg', Weight: 0.986197 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1105: +Vertex groups: 5 + Group: 'Bone', Weight: 0.451110 + Group: 'Spine', Weight: 0.295066 + Group: 'Bone2', Weight: 0.162697 + Group: 'Hips', Weight: 0.054055 + Group: 'Bone.001', Weight: 0.037071 +Vertex 1106: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393856 + Group: 'LeftFoot', Weight: 0.341908 + Group: 'Bone2', Weight: 0.178616 + Group: 'Bone.001', Weight: 0.046947 + Group: 'LeftLeg', Weight: 0.038673 +Vertex 1107: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.107764 + Group: 'LeftFoot', Weight: 0.868400 +Vertex 1108: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392534 + Group: 'LeftFoot', Weight: 0.339986 + Group: 'Bone2', Weight: 0.178013 + Group: 'Bone.001', Weight: 0.046788 + Group: 'LeftLeg', Weight: 0.042678 +Vertex 1109: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.078747 + Group: 'LeftFoot', Weight: 0.898111 +Vertex 1110: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.391508 + Group: 'LeftFoot', Weight: 0.329443 + Group: 'Bone2', Weight: 0.182961 + Group: 'Bone.001', Weight: 0.051144 + Group: 'LeftLeg', Weight: 0.044944 +Vertex 1111: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'LeftFoot', Weight: 0.762832 + Group: 'LeftToeBase', Weight: 0.216845 +Vertex 1112: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.106985 + Group: 'LeftFoot', Weight: 0.874568 +Vertex 1113: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.128677 + Group: 'LeftFoot', Weight: 0.857663 +Vertex 1114: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.166601 + Group: 'LeftFoot', Weight: 0.823647 +Vertex 1115: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.236024 + Group: 'LeftFoot', Weight: 0.758028 +Vertex 1116: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.087994 + Group: 'LeftLeg', Weight: 0.334895 + Group: 'LeftFoot', Weight: 0.661402 +Vertex 1117: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.336468 + Group: 'LeftFoot', Weight: 0.660751 +Vertex 1118: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.171887 + Group: 'LeftFoot', Weight: 0.824957 +Vertex 1119: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.390535 + Group: 'LeftFoot', Weight: 0.326431 + Group: 'Bone2', Weight: 0.181623 + Group: 'LeftLeg', Weight: 0.051196 + Group: 'Bone.001', Weight: 0.050214 +Vertex 1120: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.038757 + Group: 'LeftFoot', Weight: 0.951204 +Vertex 1121: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.048460 + Group: 'LeftFoot', Weight: 0.936101 +Vertex 1122: +Vertex groups: 4 + Group: 'Hips', Weight: 0.610052 + Group: 'Spine', Weight: 0.030128 + Group: 'LeftUpLeg', Weight: 0.120326 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1123: +Vertex groups: 3 + Group: 'Hips', Weight: 0.632929 + Group: 'LeftUpLeg', Weight: 0.123230 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1124: +Vertex groups: 5 + Group: 'Bone', Weight: 0.468597 + Group: 'Hips', Weight: 0.323890 + Group: 'Bone2', Weight: 0.169004 + Group: 'Bone.001', Weight: 0.038509 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1125: +Vertex groups: 5 + Group: 'Bone', Weight: 0.461313 + Group: 'Hips', Weight: 0.318263 + Group: 'Bone2', Weight: 0.166377 + Group: 'Bone.001', Weight: 0.037910 + Group: 'Spine', Weight: 0.016137 +Vertex 1126: +Vertex groups: 5 + Group: 'Bone', Weight: 0.486589 + Group: 'Hips', Weight: 0.262227 + Group: 'Bone2', Weight: 0.171423 + Group: 'LeftUpLeg', Weight: 0.040033 + Group: 'Bone.001', Weight: 0.039727 +Vertex 1127: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftFoot', Weight: 0.814045 + Group: 'LeftToeBase', Weight: 0.163426 +Vertex 1128: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.888922 + Group: 'LeftToeBase', Weight: 0.108152 +Vertex 1129: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.846087 + Group: 'LeftToeBase', Weight: 0.141861 +Vertex 1130: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.859983 + Group: 'LeftToeBase', Weight: 0.122154 +Vertex 1131: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.872463 + Group: 'LeftToeBase', Weight: 0.123106 +Vertex 1132: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.881324 + Group: 'LeftToeBase', Weight: 0.115769 +Vertex 1133: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.941313 + Group: 'LeftFoot', Weight: 0.058149 +Vertex 1134: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.903961 + Group: 'LeftFoot', Weight: 0.094464 +Vertex 1135: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.909246 + Group: 'LeftFoot', Weight: 0.089508 +Vertex 1136: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.921086 + Group: 'LeftFoot', Weight: 0.077867 +Vertex 1137: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.951932 + Group: 'LeftFoot', Weight: 0.045691 +Vertex 1138: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.956458 + Group: 'LeftFoot', Weight: 0.036821 +Vertex 1139: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'LeftLeg', Weight: 0.879839 + Group: 'LeftFoot', Weight: 0.117844 +Vertex 1140: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.898473 + Group: 'LeftFoot', Weight: 0.099947 +Vertex 1141: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.933492 + Group: 'LeftFoot', Weight: 0.065898 +Vertex 1142: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftLeg', Weight: 0.896055 + Group: 'LeftFoot', Weight: 0.102032 +Vertex 1143: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.432383 + Group: 'LeftLeg', Weight: 0.918864 + Group: 'LeftFoot', Weight: 0.080235 +Vertex 1144: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.090799 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone2', Weight: 0.438608 + Group: 'LeftLeg', Weight: 0.961385 + Group: 'LeftFoot', Weight: 0.027013 +Vertex 1145: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.088715 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone2', Weight: 0.440400 + Group: 'LeftLeg', Weight: 0.938904 + Group: 'LeftFoot', Weight: 0.060690 +Vertex 1146: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.087994 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.439706 + Group: 'LeftLeg', Weight: 0.948229 + Group: 'LeftFoot', Weight: 0.051530 +Vertex 1147: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999975 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.884974 + Group: 'LeftFoot', Weight: 0.112980 +Vertex 1148: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.943323 + Group: 'LeftToeBase', Weight: 0.040644 +Vertex 1149: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.107003 + Group: 'Bone1', Weight: 0.999998 + Group: 'Bone2', Weight: 0.441547 + Group: 'LeftFoot', Weight: 0.972829 +Vertex 1150: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.093061 + Group: 'Bone1', Weight: 0.999988 + Group: 'Bone2', Weight: 0.435818 + Group: 'LeftLeg', Weight: 0.106782 + Group: 'LeftFoot', Weight: 0.889704 +Vertex 1151: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.063434 + Group: 'LeftFoot', Weight: 0.922210 +Vertex 1152: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.092612 + Group: 'Bone1', Weight: 0.999987 + Group: 'Bone2', Weight: 0.436371 + Group: 'LeftLeg', Weight: 0.095510 + Group: 'LeftFoot', Weight: 0.898799 +Vertex 1153: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.432383 + Group: 'LeftLeg', Weight: 0.062523 + Group: 'LeftFoot', Weight: 0.935838 +Vertex 1154: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.055525 + Group: 'LeftFoot', Weight: 0.940127 +Vertex 1155: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.167904 + Group: 'LeftFoot', Weight: 0.830418 +Vertex 1156: +Vertex groups: 4 + Group: 'Hips', Weight: 0.585128 + Group: 'Spine', Weight: 0.124236 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1157: +Vertex groups: 5 + Group: 'Hips', Weight: 0.352892 + Group: 'Spine', Weight: 0.185222 + Group: 'Spine1', Weight: 0.011585 + Group: 'LeftUpLeg', Weight: 0.000466 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1158: +Vertex groups: 5 + Group: 'Hips', Weight: 0.160468 + Group: 'Spine', Weight: 0.226354 + Group: 'Spine1', Weight: 0.025910 + Group: 'LeftUpLeg', Weight: 0.143719 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1159: +Vertex groups: 5 + Group: 'Hips', Weight: 0.064588 + Group: 'Spine', Weight: 0.277556 + Group: 'Spine1', Weight: 0.044738 + Group: 'LeftUpLeg', Weight: 0.559706 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1160: +Vertex groups: 5 + Group: 'Hips', Weight: 0.029004 + Group: 'Spine', Weight: 0.279812 + Group: 'Spine1', Weight: 0.042028 + Group: 'LeftUpLeg', Weight: 0.617937 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1161: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004751 + Group: 'Spine', Weight: 0.281028 + Group: 'Spine1', Weight: 0.025991 + Group: 'LeftUpLeg', Weight: 0.641908 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1162: +Vertex groups: 4 + Group: 'Hips', Weight: 0.037551 + Group: 'Spine', Weight: 0.214595 + Group: 'LeftUpLeg', Weight: 0.702199 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1163: +Vertex groups: 4 + Group: 'Hips', Weight: 0.095799 + Group: 'Spine', Weight: 0.184327 + Group: 'LeftUpLeg', Weight: 0.666724 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1164: +Vertex groups: 4 + Group: 'Hips', Weight: 0.173945 + Group: 'Spine', Weight: 0.129483 + Group: 'LeftUpLeg', Weight: 0.599044 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1165: +Vertex groups: 4 + Group: 'Hips', Weight: 0.250938 + Group: 'Spine', Weight: 0.111873 + Group: 'LeftUpLeg', Weight: 0.386642 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1166: +Vertex groups: 5 + Group: 'Bone', Weight: 0.417396 + Group: 'Hips', Weight: 0.283142 + Group: 'Bone2', Weight: 0.150538 + Group: 'Spine', Weight: 0.114623 + Group: 'Bone.001', Weight: 0.034301 +Vertex 1167: +Vertex groups: 5 + Group: 'Bone', Weight: 0.388269 + Group: 'Hips', Weight: 0.230230 + Group: 'Spine', Weight: 0.209561 + Group: 'Bone2', Weight: 0.140033 + Group: 'Bone.001', Weight: 0.031907 +Vertex 1168: +Vertex groups: 5 + Group: 'Bone', Weight: 0.380928 + Group: 'Spine', Weight: 0.225945 + Group: 'LeftUpLeg', Weight: 0.165139 + Group: 'Bone2', Weight: 0.137386 + Group: 'Hips', Weight: 0.090602 +Vertex 1169: +Vertex groups: 5 + Group: 'Bone', Weight: 0.351788 + Group: 'Spine', Weight: 0.244785 + Group: 'LeftUpLeg', Weight: 0.240959 + Group: 'Bone2', Weight: 0.126876 + Group: 'Hips', Weight: 0.035593 +Vertex 1170: +Vertex groups: 5 + Group: 'Bone', Weight: 0.515484 + Group: 'Hips', Weight: 0.209488 + Group: 'Bone2', Weight: 0.190375 + Group: 'Spine', Weight: 0.043383 + Group: 'Bone.001', Weight: 0.041270 +Vertex 1171: +Vertex groups: 5 + Group: 'Bone', Weight: 0.438290 + Group: 'Hips', Weight: 0.304824 + Group: 'Bone2', Weight: 0.158074 + Group: 'Spine', Weight: 0.062795 + Group: 'Bone.001', Weight: 0.036018 +Vertex 1172: +Vertex groups: 5 + Group: 'Bone', Weight: 0.351149 + Group: 'LeftUpLeg', Weight: 0.296216 + Group: 'Hips', Weight: 0.181117 + Group: 'Bone2', Weight: 0.126645 + Group: 'Spine', Weight: 0.044872 +Vertex 1173: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.437284 + Group: 'Bone', Weight: 0.311452 + Group: 'Bone2', Weight: 0.112328 + Group: 'Hips', Weight: 0.097005 + Group: 'Spine', Weight: 0.041930 +Vertex 1174: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.492826 + Group: 'Bone', Weight: 0.304182 + Group: 'Bone2', Weight: 0.109706 + Group: 'Spine', Weight: 0.051301 + Group: 'Hips', Weight: 0.041984 +Vertex 1175: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.508760 + Group: 'Bone', Weight: 0.299641 + Group: 'Bone2', Weight: 0.108069 + Group: 'Spine', Weight: 0.058906 + Group: 'Bone.001', Weight: 0.024624 +Vertex 1176: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.513447 + Group: 'Bone', Weight: 0.296899 + Group: 'Bone2', Weight: 0.107079 + Group: 'Spine', Weight: 0.058177 + Group: 'Bone.001', Weight: 0.024399 +Vertex 1177: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.509199 + Group: 'Bone', Weight: 0.298924 + Group: 'Bone2', Weight: 0.107810 + Group: 'Spine', Weight: 0.059502 + Group: 'Bone.001', Weight: 0.024565 +Vertex 1178: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.496472 + Group: 'Bone', Weight: 0.301599 + Group: 'Bone2', Weight: 0.108775 + Group: 'Spine', Weight: 0.061360 + Group: 'Hips', Weight: 0.031794 +Vertex 1179: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.466964 + Group: 'Bone', Weight: 0.302048 + Group: 'Bone2', Weight: 0.108937 + Group: 'Hips', Weight: 0.063373 + Group: 'Spine', Weight: 0.058678 +Vertex 1180: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.396787 + Group: 'Bone', Weight: 0.308394 + Group: 'Hips', Weight: 0.131026 + Group: 'Bone2', Weight: 0.111225 + Group: 'Spine', Weight: 0.052567 +Vertex 1181: +Vertex groups: 4 + Group: 'Hips', Weight: 0.639066 + Group: 'Spine', Weight: 0.081611 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1182: +Vertex groups: 4 + Group: 'Hips', Weight: 0.327873 + Group: 'Spine', Weight: 0.062093 + Group: 'LeftUpLeg', Weight: 0.421265 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1183: +Vertex groups: 3 + Group: 'Hips', Weight: 0.472663 + Group: 'LeftUpLeg', Weight: 0.417021 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1184: +Vertex groups: 3 + Group: 'Hips', Weight: 0.498448 + Group: 'LeftUpLeg', Weight: 0.320721 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1185: +Vertex groups: 3 + Group: 'Hips', Weight: 0.509918 + Group: 'LeftUpLeg', Weight: 0.212573 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1186: +Vertex groups: 4 + Group: 'Hips', Weight: 0.647420 + Group: 'Spine', Weight: 0.123193 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1187: +Vertex groups: 5 + Group: 'Hips', Weight: 0.011942 + Group: 'Spine', Weight: 0.526742 + Group: 'Spine1', Weight: 0.057335 + Group: 'LeftUpLeg', Weight: 0.000960 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1188: +Vertex groups: 5 + Group: 'Hips', Weight: 0.032058 + Group: 'Spine', Weight: 0.648910 + Group: 'Spine1', Weight: 0.053845 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1189: +Vertex groups: 5 + Group: 'Spine', Weight: 0.410970 + Group: 'Bone', Weight: 0.375657 + Group: 'Bone2', Weight: 0.135484 + Group: 'Hips', Weight: 0.047018 + Group: 'Bone.001', Weight: 0.030871 +Vertex 1190: +Vertex groups: 5 + Group: 'Spine', Weight: 0.415283 + Group: 'Bone', Weight: 0.350207 + Group: 'Bone2', Weight: 0.126306 + Group: 'Hips', Weight: 0.079425 + Group: 'Bone.001', Weight: 0.028779 +Vertex 1191: +Vertex groups: 5 + Group: 'Bone', Weight: 0.326215 + Group: 'LeftUpLeg', Weight: 0.277329 + Group: 'Spine', Weight: 0.170742 + Group: 'Bone2', Weight: 0.117653 + Group: 'Hips', Weight: 0.108060 +Vertex 1192: +Vertex groups: 5 + Group: 'Bone', Weight: 0.366080 + Group: 'Spine', Weight: 0.282338 + Group: 'Hips', Weight: 0.189468 + Group: 'Bone2', Weight: 0.132030 + Group: 'Bone.001', Weight: 0.030084 +Vertex 1193: +Vertex groups: 5 + Group: 'Hips', Weight: 0.062523 + Group: 'Spine', Weight: 0.711883 + Group: 'Spine1', Weight: 0.033170 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1194: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone', Weight: 0.999647 + Group: 'LeftUpLeg', Weight: 0.977577 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1195: +Vertex groups: 5 + Group: 'Bone', Weight: 0.436729 + Group: 'LeftUpLeg', Weight: 0.281881 + Group: 'Bone2', Weight: 0.163891 + Group: 'Hips', Weight: 0.082823 + Group: 'Bone.001', Weight: 0.034676 +Vertex 1196: +Vertex groups: 5 + Group: 'Bone', Weight: 0.497316 + Group: 'Bone2', Weight: 0.179427 + Group: 'LeftUpLeg', Weight: 0.178646 + Group: 'Hips', Weight: 0.103726 + Group: 'Bone.001', Weight: 0.040883 +Vertex 1197: +Vertex groups: 5 + Group: 'Bone', Weight: 0.417018 + Group: 'LeftUpLeg', Weight: 0.358073 + Group: 'Bone2', Weight: 0.158611 + Group: 'Hips', Weight: 0.033811 + Group: 'Bone.001', Weight: 0.032487 +Vertex 1198: +Vertex groups: 5 + Group: 'Bone', Weight: 0.415695 + Group: 'LeftUpLeg', Weight: 0.381609 + Group: 'Bone2', Weight: 0.157155 + Group: 'Bone.001', Weight: 0.032408 + Group: 'Hips', Weight: 0.013133 +Vertex 1199: +Vertex groups: 5 + Group: 'Bone', Weight: 0.462715 + Group: 'LeftUpLeg', Weight: 0.255986 + Group: 'Bone2', Weight: 0.171935 + Group: 'Hips', Weight: 0.071308 + Group: 'Bone.001', Weight: 0.038056 +Vertex 1200: +Vertex groups: 5 + Group: 'Bone', Weight: 0.422570 + Group: 'LeftUpLeg', Weight: 0.388727 + Group: 'Bone2', Weight: 0.132261 + Group: 'Bone.001', Weight: 0.031019 + Group: 'Hips', Weight: 0.025425 +Vertex 1201: +Vertex groups: 5 + Group: 'Bone', Weight: 0.434650 + Group: 'LeftUpLeg', Weight: 0.320004 + Group: 'Bone2', Weight: 0.142473 + Group: 'Hips', Weight: 0.069552 + Group: 'Bone.001', Weight: 0.033321 +Vertex 1202: +Vertex groups: 5 + Group: 'Bone', Weight: 0.481510 + Group: 'LeftUpLeg', Weight: 0.216869 + Group: 'Bone2', Weight: 0.169676 + Group: 'Hips', Weight: 0.092623 + Group: 'Bone.001', Weight: 0.039322 +Vertex 1203: +Vertex groups: 5 + Group: 'Bone', Weight: 0.425034 + Group: 'LeftUpLeg', Weight: 0.311880 + Group: 'Bone2', Weight: 0.160751 + Group: 'Hips', Weight: 0.069185 + Group: 'Bone.001', Weight: 0.033149 +Vertex 1204: +Vertex groups: 5 + Group: 'Bone', Weight: 0.421579 + Group: 'LeftUpLeg', Weight: 0.399265 + Group: 'Bone2', Weight: 0.138178 + Group: 'Bone.001', Weight: 0.032317 + Group: 'Hips', Weight: 0.008661 +Vertex 1205: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone', Weight: 0.999525 + Group: 'LeftUpLeg', Weight: 0.957418 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1206: +Vertex groups: 5 + Group: 'Bone', Weight: 0.425669 + Group: 'LeftUpLeg', Weight: 0.366407 + Group: 'Bone2', Weight: 0.130319 + Group: 'Hips', Weight: 0.047000 + Group: 'Bone.001', Weight: 0.030604 +Vertex 1207: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone', Weight: 0.999740 + Group: 'LeftUpLeg', Weight: 0.968299 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1208: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone', Weight: 0.999485 + Group: 'LeftUpLeg', Weight: 0.977469 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1209: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.978046 +Vertex 1210: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.982243 +Vertex 1211: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.984852 +Vertex 1212: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.985223 +Vertex 1213: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.980779 +Vertex 1214: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.974014 +Vertex 1215: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.962933 + Group: 'LeftHand', Weight: 0.019514 +Vertex 1216: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.966115 + Group: 'LeftHand', Weight: 0.013496 +Vertex 1217: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.965400 + Group: 'LeftHand', Weight: 0.015343 +Vertex 1218: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.966983 + Group: 'LeftHand', Weight: 0.012962 +Vertex 1219: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.976181 +Vertex 1220: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.978164 +Vertex 1221: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.978474 +Vertex 1222: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.084902 + Group: 'LeftForeArm', Weight: 0.914688 +Vertex 1223: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.038219 + Group: 'LeftForeArm', Weight: 0.955645 +Vertex 1224: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.041245 + Group: 'LeftForeArm', Weight: 0.954153 +Vertex 1225: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.114389 + Group: 'LeftForeArm', Weight: 0.885497 +Vertex 1226: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.242825 + Group: 'LeftForeArm', Weight: 0.756971 +Vertex 1227: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.168059 + Group: 'LeftForeArm', Weight: 0.831712 +Vertex 1228: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.072315 + Group: 'LeftForeArm', Weight: 0.927384 +Vertex 1229: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.038998 + Group: 'LeftForeArm', Weight: 0.955235 +Vertex 1230: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.976665 +Vertex 1231: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.055621 + Group: 'LeftForeArm', Weight: 0.944134 +Vertex 1232: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.000746 + Group: 'LeftForeArm', Weight: 0.974139 +Vertex 1233: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.033683 + Group: 'LeftForeArm', Weight: 0.957563 +Vertex 1234: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.037073 + Group: 'LeftForeArm', Weight: 0.956192 +Vertex 1235: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.103550 + Group: 'LeftArm', Weight: 0.866502 +Vertex 1236: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.112017 + Group: 'LeftArm', Weight: 0.850728 +Vertex 1237: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.973971 +Vertex 1238: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.025725 + Group: 'LeftArm', Weight: 0.954143 +Vertex 1239: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991108 +Vertex 1240: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.098006 + Group: 'LeftArm', Weight: 0.878959 +Vertex 1241: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.119315 + Group: 'LeftArm', Weight: 0.861282 +Vertex 1242: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.094688 + Group: 'LeftArm', Weight: 0.876809 +Vertex 1243: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.097804 + Group: 'LeftArm', Weight: 0.879679 +Vertex 1244: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.983960 +Vertex 1245: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.989940 +Vertex 1246: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.989252 +Vertex 1247: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.975304 +Vertex 1248: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.801328 + Group: 'LeftForeArm', Weight: 0.198285 +Vertex 1249: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.815794 + Group: 'LeftForeArm', Weight: 0.184117 +Vertex 1250: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.783526 + Group: 'LeftForeArm', Weight: 0.216444 +Vertex 1251: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.805309 + Group: 'LeftForeArm', Weight: 0.194382 +Vertex 1252: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.839382 + Group: 'LeftForeArm', Weight: 0.160584 +Vertex 1253: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.858919 + Group: 'LeftForeArm', Weight: 0.140999 +Vertex 1254: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.827416 + Group: 'LeftForeArm', Weight: 0.172524 +Vertex 1255: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.811599 + Group: 'LeftForeArm', Weight: 0.188028 +Vertex 1256: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.815530 + Group: 'LeftForeArm', Weight: 0.184338 +Vertex 1257: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.812541 + Group: 'LeftForeArm', Weight: 0.187252 +Vertex 1258: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.607471 + Group: 'LeftForeArm', Weight: 0.392492 +Vertex 1259: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.761657 + Group: 'LeftForeArm', Weight: 0.238205 +Vertex 1260: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.918248 + Group: 'LeftForeArm', Weight: 0.081484 +Vertex 1261: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.977092 +Vertex 1262: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991370 +Vertex 1263: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.987444 +Vertex 1264: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.997854 +Vertex 1265: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.981087 +Vertex 1266: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.985092 +Vertex 1267: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.979809 +Vertex 1268: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.984710 +Vertex 1269: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.990725 +Vertex 1270: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.994445 +Vertex 1271: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.996635 +Vertex 1272: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.998773 +Vertex 1273: +Vertex groups: 1 + Group: 'LeftArm', Weight: 1.000318 +Vertex 1274: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.848196 + Group: 'LeftForeArm', Weight: 0.151765 +Vertex 1275: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.212948 + Group: 'LeftForeArm', Weight: 0.786995 +Vertex 1276: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.856169 + Group: 'LeftForeArm', Weight: 0.143526 +Vertex 1277: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.453469 + Group: 'LeftForeArm', Weight: 0.546424 +Vertex 1278: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.033015 + Group: 'LeftForeArm', Weight: 0.958253 +Vertex 1279: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.091797 + Group: 'LeftForeArm', Weight: 0.907825 +Vertex 1280: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.113141 + Group: 'LeftForeArm', Weight: 0.886644 +Vertex 1281: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.071849 + Group: 'LeftForeArm', Weight: 0.927635 +Vertex 1282: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.064011 + Group: 'LeftForeArm', Weight: 0.935834 +Vertex 1283: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.075030 + Group: 'LeftForeArm', Weight: 0.924842 +Vertex 1284: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.944176 + Group: 'LeftForeArm', Weight: 0.055781 +Vertex 1285: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.954060 + Group: 'LeftForeArm', Weight: 0.041734 +Vertex 1286: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.951262 + Group: 'LeftForeArm', Weight: 0.047041 +Vertex 1287: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.832849 + Group: 'LeftForeArm', Weight: 0.167023 +Vertex 1288: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.202792 + Group: 'RightHand', Weight: 0.765915 + Group: 'RightHandPinky1', Weight: 0.004530 +Vertex 1289: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.418454 + Group: 'RightHand', Weight: 0.567966 +Vertex 1290: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.054532 + Group: 'RightHand', Weight: 0.933015 +Vertex 1291: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.115960 + Group: 'RightHand', Weight: 0.842883 + Group: 'RightHandPinky1', Weight: 0.016530 +Vertex 1292: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.078842 + Group: 'RightHand', Weight: 0.874938 + Group: 'RightHandPinky1', Weight: 0.009250 +Vertex 1293: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.066944 + Group: 'RightHand', Weight: 0.889034 +Vertex 1294: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.068703 + Group: 'RightHand', Weight: 0.884852 + Group: 'RightHandThumb1', Weight: 0.019634 +Vertex 1295: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.117496 + Group: 'RightHand', Weight: 0.829196 + Group: 'RightHandThumb1', Weight: 0.045682 +Vertex 1296: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.155097 + Group: 'RightHand', Weight: 0.814304 + Group: 'RightHandThumb1', Weight: 0.008184 +Vertex 1297: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.336059 + Group: 'RightHand', Weight: 0.618435 + Group: 'RightHandThumb1', Weight: 0.037020 +Vertex 1298: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.310577 + Group: 'RightHand', Weight: 0.653322 + Group: 'RightHandThumb1', Weight: 0.019197 +Vertex 1299: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.048256 + Group: 'RightHand', Weight: 0.945828 +Vertex 1300: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.127772 + Group: 'RightHand', Weight: 0.866699 +Vertex 1301: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.998641 +Vertex 1302: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.997987 +Vertex 1303: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991907 +Vertex 1304: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.998240 +Vertex 1305: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.992845 +Vertex 1306: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.987412 +Vertex 1307: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.983232 +Vertex 1308: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.980031 +Vertex 1309: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.988613 +Vertex 1310: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.981728 +Vertex 1311: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.985487 +Vertex 1312: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.994746 +Vertex 1313: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.996757 +Vertex 1314: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.771545 + Group: 'RightArm', Weight: 0.182643 +Vertex 1315: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.780874 + Group: 'RightArm', Weight: 0.195177 +Vertex 1316: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.735804 + Group: 'RightArm', Weight: 0.099000 +Vertex 1317: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.011566 + Group: 'RightShoulder', Weight: 0.726707 + Group: 'RightArm', Weight: 0.161566 +Vertex 1318: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.030048 + Group: 'RightShoulder', Weight: 0.623695 + Group: 'RightArm', Weight: 0.285593 +Vertex 1319: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.045892 + Group: 'Spine2', Weight: 0.068611 + Group: 'RightShoulder', Weight: 0.574747 + Group: 'RightArm', Weight: 0.284963 +Vertex 1320: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068271 + Group: 'Spine2', Weight: 0.083307 + Group: 'RightShoulder', Weight: 0.524798 + Group: 'RightArm', Weight: 0.294693 +Vertex 1321: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.074432 + Group: 'Spine2', Weight: 0.085937 + Group: 'RightShoulder', Weight: 0.568732 + Group: 'RightArm', Weight: 0.239917 +Vertex 1322: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.019501 + Group: 'Spine2', Weight: 0.029827 + Group: 'RightShoulder', Weight: 0.653645 + Group: 'RightArm', Weight: 0.026662 +Vertex 1323: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.076051 + Group: 'Spine2', Weight: 0.083101 + Group: 'RightShoulder', Weight: 0.572742 + Group: 'RightArm', Weight: 0.216431 +Vertex 1324: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.058932 + Group: 'Spine2', Weight: 0.060431 + Group: 'RightShoulder', Weight: 0.603674 + Group: 'RightArm', Weight: 0.162414 +Vertex 1325: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.751627 + Group: 'RightArm', Weight: 0.197573 +Vertex 1326: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.753502 + Group: 'RightArm', Weight: 0.235135 +Vertex 1327: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.994002 +Vertex 1328: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.993985 +Vertex 1329: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.992396 +Vertex 1330: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.993189 +Vertex 1331: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.990005 +Vertex 1332: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.987139 +Vertex 1333: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.983448 +Vertex 1334: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.982430 +Vertex 1335: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.992042 +Vertex 1336: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.986438 +Vertex 1337: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.990405 +Vertex 1338: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.992617 +Vertex 1339: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.993303 +Vertex 1340: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.960669 + Group: 'RightForeArm', Weight: 0.025525 +Vertex 1341: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.957409 + Group: 'RightForeArm', Weight: 0.032190 +Vertex 1342: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.967217 + Group: 'RightForeArm', Weight: 0.014639 +Vertex 1343: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.972243 + Group: 'RightForeArm', Weight: 0.004970 +Vertex 1344: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.962395 + Group: 'RightForeArm', Weight: 0.023627 +Vertex 1345: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.983442 +Vertex 1346: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991748 +Vertex 1347: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.959309 + Group: 'RightForeArm', Weight: 0.028983 +Vertex 1348: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.989557 +Vertex 1349: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.984846 +Vertex 1350: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.977674 +Vertex 1351: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.967715 + Group: 'RightForeArm', Weight: 0.012073 +Vertex 1352: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.977861 +Vertex 1353: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.285431 + Group: 'RightForeArm', Weight: 0.714397 +Vertex 1354: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.187467 + Group: 'RightForeArm', Weight: 0.812436 +Vertex 1355: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.190656 + Group: 'RightForeArm', Weight: 0.809238 +Vertex 1356: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.272071 + Group: 'RightForeArm', Weight: 0.727882 +Vertex 1357: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.485166 + Group: 'RightForeArm', Weight: 0.514751 +Vertex 1358: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.486143 + Group: 'RightForeArm', Weight: 0.513791 +Vertex 1359: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.236631 + Group: 'RightForeArm', Weight: 0.763198 +Vertex 1360: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.197145 + Group: 'RightForeArm', Weight: 0.802765 +Vertex 1361: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.234382 + Group: 'RightForeArm', Weight: 0.765579 +Vertex 1362: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.209094 + Group: 'RightForeArm', Weight: 0.790771 +Vertex 1363: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.211175 + Group: 'RightForeArm', Weight: 0.788791 +Vertex 1364: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.442099 + Group: 'RightForeArm', Weight: 0.557859 +Vertex 1365: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.205957 + Group: 'RightForeArm', Weight: 0.793966 +Vertex 1366: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.133117 + Group: 'Spine2', Weight: 0.144197 + Group: 'RightShoulder', Weight: 0.526709 + Group: 'RightArm', Weight: 0.017614 +Vertex 1367: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.147516 + Group: 'Spine2', Weight: 0.169825 + Group: 'RightShoulder', Weight: 0.491465 + Group: 'RightArm', Weight: 0.024216 +Vertex 1368: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.092164 + Group: 'Spine2', Weight: 0.090106 + Group: 'RightShoulder', Weight: 0.610520 + Group: 'RightArm', Weight: 0.007915 +Vertex 1369: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.063146 + Group: 'Spine2', Weight: 0.072501 + Group: 'RightShoulder', Weight: 0.710797 + Group: 'RightArm', Weight: 0.000000 +Vertex 1370: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.021671 + Group: 'RightShoulder', Weight: 0.821842 + Group: 'RightArm', Weight: 0.000000 +Vertex 1371: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.023283 + Group: 'Spine2', Weight: 0.099019 + Group: 'Neck', Weight: 0.051597 + Group: 'RightShoulder', Weight: 0.770174 + Group: 'RightArm', Weight: 0.000000 +Vertex 1372: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.099630 + Group: 'Spine2', Weight: 0.189381 + Group: 'Neck', Weight: 0.020010 + Group: 'RightShoulder', Weight: 0.615877 + Group: 'RightArm', Weight: 0.000000 +Vertex 1373: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.571218 + Group: 'Spine2', Weight: 0.246107 + Group: 'Neck', Weight: 0.147655 + Group: 'Spine1', Weight: 0.034250 + Group: 'LeftShoulder', Weight: 0.000770 +Vertex 1374: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.512105 + Group: 'RightShoulder', Weight: 0.256199 + Group: 'Spine1', Weight: 0.117312 + Group: 'Neck', Weight: 0.075923 + Group: 'LeftShoulder', Weight: 0.038460 +Vertex 1375: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.780403 + Group: 'Spine', Weight: 0.150884 + Group: 'Spine2', Weight: 0.068714 + Group: 'RightArm', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1376: +Vertex groups: 5 + Group: 'Hips', Weight: 0.074146 + Group: 'Spine', Weight: 0.585456 + Group: 'Spine1', Weight: 0.252260 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1377: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.501030 + Group: 'Spine1', Weight: 0.266901 + Group: 'RightShoulder', Weight: 0.177621 + Group: 'Neck', Weight: 0.027939 + Group: 'LeftShoulder', Weight: 0.026509 +Vertex 1378: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.772062 + Group: 'Spine2', Weight: 0.127013 + Group: 'Spine', Weight: 0.056239 + Group: 'RightShoulder', Weight: 0.044686 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1379: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.210265 + Group: 'Spine2', Weight: 0.294647 + Group: 'RightShoulder', Weight: 0.404575 + Group: 'RightArm', Weight: 0.000000 +Vertex 1380: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.184364 + Group: 'Spine2', Weight: 0.176830 + Group: 'RightShoulder', Weight: 0.518760 + Group: 'RightArm', Weight: 0.000000 +Vertex 1381: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.201024 + Group: 'Spine2', Weight: 0.180602 + Group: 'RightShoulder', Weight: 0.474447 + Group: 'RightArm', Weight: 0.000000 +Vertex 1382: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.205004 + Group: 'Spine2', Weight: 0.227203 + Group: 'RightShoulder', Weight: 0.413392 + Group: 'RightArm', Weight: 0.000000 +Vertex 1383: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.206961 + Group: 'Spine2', Weight: 0.239928 + Group: 'RightShoulder', Weight: 0.392579 + Group: 'RightArm', Weight: 0.000000 +Vertex 1384: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.876537 + Group: 'RightArm', Weight: 0.000000 +Vertex 1385: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.019635 + Group: 'Neck', Weight: 0.070412 + Group: 'RightShoulder', Weight: 0.853728 + Group: 'RightArm', Weight: 0.000000 +Vertex 1386: +Vertex groups: 5 + Group: 'Spine', Weight: 0.029421 + Group: 'Spine1', Weight: 0.726341 + Group: 'Spine2', Weight: 0.133743 + Group: 'RightShoulder', Weight: 0.057096 + Group: 'RightArm', Weight: 0.000000 +Vertex 1387: +Vertex groups: 5 + Group: 'Spine', Weight: 0.001578 + Group: 'Spine1', Weight: 0.669928 + Group: 'Spine2', Weight: 0.173834 + Group: 'RightShoulder', Weight: 0.078580 + Group: 'RightArm', Weight: 0.000000 +Vertex 1388: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.054595 + Group: 'Neck', Weight: 0.181293 + Group: 'RightShoulder', Weight: 0.730367 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1389: +Vertex groups: 4 + Group: 'Neck', Weight: 0.239335 + Group: 'RightShoulder', Weight: 0.719132 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1390: +Vertex groups: 3 + Group: 'Neck', Weight: 0.087562 + Group: 'RightShoulder', Weight: 0.868571 + Group: 'RightArm', Weight: 0.000000 +Vertex 1391: +Vertex groups: 3 + Group: 'Neck', Weight: 0.002241 + Group: 'RightShoulder', Weight: 0.885596 + Group: 'RightArm', Weight: 0.000000 +Vertex 1392: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.344606 + Group: 'Neck', Weight: 0.322889 + Group: 'Spine2', Weight: 0.314224 + Group: 'LeftShoulder', Weight: 0.018281 + Group: 'RightArm', Weight: 0.000000 +Vertex 1393: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.480218 + Group: 'RightShoulder', Weight: 0.208877 + Group: 'Neck', Weight: 0.180862 + Group: 'LeftShoulder', Weight: 0.074311 + Group: 'Spine1', Weight: 0.055732 +Vertex 1394: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.457038 + Group: 'Spine2', Weight: 0.290462 + Group: 'Neck', Weight: 0.215803 + Group: 'Spine1', Weight: 0.018925 + Group: 'LeftShoulder', Weight: 0.017772 +Vertex 1395: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.429340 + Group: 'Neck', Weight: 0.272857 + Group: 'RightShoulder', Weight: 0.201775 + Group: 'LeftShoulder', Weight: 0.070620 + Group: 'Spine1', Weight: 0.025408 +Vertex 1396: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.069426 + Group: 'Neck', Weight: 0.320791 + Group: 'RightShoulder', Weight: 0.574655 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1397: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.068424 + Group: 'Neck', Weight: 0.426806 + Group: 'RightShoulder', Weight: 0.469229 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1398: +Vertex groups: 4 + Group: 'Neck', Weight: 0.584747 + Group: 'RightShoulder', Weight: 0.374332 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1399: +Vertex groups: 4 + Group: 'Neck', Weight: 0.403401 + Group: 'RightShoulder', Weight: 0.554673 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1400: +Vertex groups: 5 + Group: 'Spine', Weight: 0.012495 + Group: 'Spine1', Weight: 0.381802 + Group: 'Spine2', Weight: 0.290468 + Group: 'RightShoulder', Weight: 0.215734 + Group: 'RightArm', Weight: 0.000000 +Vertex 1401: +Vertex groups: 5 + Group: 'Spine', Weight: 0.011445 + Group: 'Spine1', Weight: 0.341037 + Group: 'Spine2', Weight: 0.291798 + Group: 'RightShoulder', Weight: 0.243442 + Group: 'RightArm', Weight: 0.000000 +Vertex 1402: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.682958 + Group: 'Spine2', Weight: 0.141565 + Group: 'RightShoulder', Weight: 0.088095 + Group: 'Spine', Weight: 0.087383 + Group: 'RightArm', Weight: 0.000000 +Vertex 1403: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.671689 + Group: 'Spine2', Weight: 0.140821 + Group: 'RightShoulder', Weight: 0.097233 + Group: 'Spine', Weight: 0.090258 + Group: 'RightArm', Weight: 0.000000 +Vertex 1404: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.725650 + Group: 'Spine', Weight: 0.132332 + Group: 'Spine2', Weight: 0.096255 + Group: 'RightShoulder', Weight: 0.045763 + Group: 'RightArm', Weight: 0.000000 +Vertex 1405: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.705486 + Group: 'Spine', Weight: 0.153218 + Group: 'Spine2', Weight: 0.086992 + Group: 'RightShoulder', Weight: 0.054303 + Group: 'RightArm', Weight: 0.000000 +Vertex 1406: +Vertex groups: 5 + Group: 'Hips', Weight: 0.017838 + Group: 'Spine', Weight: 0.565022 + Group: 'Spine1', Weight: 0.271008 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1407: +Vertex groups: 4 + Group: 'Spine', Weight: 0.543738 + Group: 'Spine1', Weight: 0.302722 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1408: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.752249 + Group: 'Spine', Weight: 0.159818 + Group: 'Spine2', Weight: 0.076893 + Group: 'RightShoulder', Weight: 0.011040 + Group: 'RightArm', Weight: 0.000000 +Vertex 1409: +Vertex groups: 5 + Group: 'Hips', Weight: 0.054997 + Group: 'Spine', Weight: 0.576753 + Group: 'Spine1', Weight: 0.255938 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1410: +Vertex groups: 5 + Group: 'Spine', Weight: 0.132918 + Group: 'Spine1', Weight: 0.752366 + Group: 'Spine2', Weight: 0.052783 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1411: +Vertex groups: 5 + Group: 'Hips', Weight: 0.086164 + Group: 'Spine', Weight: 0.590008 + Group: 'Spine1', Weight: 0.249997 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1412: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.661882 + Group: 'Spine2', Weight: 0.191296 + Group: 'RightShoulder', Weight: 0.077034 + Group: 'Spine', Weight: 0.069787 + Group: 'RightArm', Weight: 0.000000 +Vertex 1413: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.640072 + Group: 'Spine2', Weight: 0.200045 + Group: 'RightShoulder', Weight: 0.092491 + Group: 'Spine', Weight: 0.067392 + Group: 'RightArm', Weight: 0.000000 +Vertex 1414: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.682736 + Group: 'Spine2', Weight: 0.181224 + Group: 'Spine', Weight: 0.070935 + Group: 'RightShoulder', Weight: 0.065105 + Group: 'RightArm', Weight: 0.000000 +Vertex 1415: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.770015 + Group: 'Spine2', Weight: 0.125606 + Group: 'Spine', Weight: 0.073242 + Group: 'RightShoulder', Weight: 0.031136 + Group: 'RightArm', Weight: 0.000000 +Vertex 1416: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.584431 + Group: 'Spine2', Weight: 0.243572 + Group: 'RightShoulder', Weight: 0.132979 + Group: 'Spine', Weight: 0.039017 + Group: 'RightArm', Weight: 0.000000 +Vertex 1417: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.596321 + Group: 'Spine2', Weight: 0.206798 + Group: 'RightShoulder', Weight: 0.142078 + Group: 'Spine', Weight: 0.054803 + Group: 'RightArm', Weight: 0.000000 +Vertex 1418: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.578396 + Group: 'Spine2', Weight: 0.207098 + Group: 'RightShoulder', Weight: 0.157368 + Group: 'Spine', Weight: 0.057138 + Group: 'RightArm', Weight: 0.000000 +Vertex 1419: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.549901 + Group: 'Spine2', Weight: 0.263216 + Group: 'RightShoulder', Weight: 0.171764 + Group: 'Spine', Weight: 0.015118 + Group: 'RightArm', Weight: 0.000000 +Vertex 1420: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.423885 + Group: 'Spine2', Weight: 0.238220 + Group: 'RightShoulder', Weight: 0.243081 + Group: 'RightArm', Weight: 0.000000 +Vertex 1421: +Vertex groups: 5 + Group: 'Spine', Weight: 0.000682 + Group: 'Spine1', Weight: 0.464945 + Group: 'Spine2', Weight: 0.238510 + Group: 'RightShoulder', Weight: 0.203707 + Group: 'RightArm', Weight: 0.000000 +Vertex 1422: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.490440 + Group: 'Spine2', Weight: 0.209909 + Group: 'RightShoulder', Weight: 0.214278 + Group: 'RightArm', Weight: 0.000000 +Vertex 1423: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.529859 + Group: 'Spine2', Weight: 0.207615 + Group: 'RightShoulder', Weight: 0.183502 + Group: 'RightArm', Weight: 0.000000 +Vertex 1424: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.573393 + Group: 'Spine2', Weight: 0.216561 + Group: 'RightShoulder', Weight: 0.132623 + Group: 'RightArm', Weight: 0.000000 +Vertex 1425: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.606902 + Group: 'Spine2', Weight: 0.214248 + Group: 'RightShoulder', Weight: 0.099882 + Group: 'RightArm', Weight: 0.000000 +Vertex 1426: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.726796 + Group: 'Spine2', Weight: 0.154954 + Group: 'Spine', Weight: 0.072389 + Group: 'RightShoulder', Weight: 0.045862 + Group: 'RightArm', Weight: 0.000000 +Vertex 1427: +Vertex groups: 5 + Group: 'Spine', Weight: 0.001136 + Group: 'Spine1', Weight: 0.542665 + Group: 'Spine2', Weight: 0.201779 + Group: 'RightShoulder', Weight: 0.171918 + Group: 'RightArm', Weight: 0.000000 +Vertex 1428: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.630068 + Group: 'Spine2', Weight: 0.209187 + Group: 'RightShoulder', Weight: 0.139036 + Group: 'Spine', Weight: 0.021709 + Group: 'RightArm', Weight: 0.000000 +Vertex 1429: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.653810 + Group: 'Spine2', Weight: 0.194745 + Group: 'RightShoulder', Weight: 0.101368 + Group: 'Spine', Weight: 0.050078 + Group: 'RightArm', Weight: 0.000000 +Vertex 1430: +Vertex groups: 5 + Group: 'Spine', Weight: 0.002342 + Group: 'Spine1', Weight: 0.607848 + Group: 'Spine2', Weight: 0.180262 + Group: 'RightShoulder', Weight: 0.134373 + Group: 'RightArm', Weight: 0.000000 +Vertex 1431: +Vertex groups: 5 + Group: 'Spine', Weight: 0.024946 + Group: 'Spine1', Weight: 0.655901 + Group: 'Spine2', Weight: 0.164272 + Group: 'RightShoulder', Weight: 0.098293 + Group: 'RightArm', Weight: 0.000000 +Vertex 1432: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.699199 + Group: 'Spine2', Weight: 0.168062 + Group: 'RightShoulder', Weight: 0.080697 + Group: 'Spine', Weight: 0.052042 + Group: 'RightArm', Weight: 0.000000 +Vertex 1433: +Vertex groups: 5 + Group: 'Spine', Weight: 0.003108 + Group: 'Spine1', Weight: 0.656854 + Group: 'Spine2', Weight: 0.171844 + Group: 'RightShoulder', Weight: 0.095331 + Group: 'RightArm', Weight: 0.000000 +Vertex 1434: +Vertex groups: 5 + Group: 'Spine', Weight: 0.026610 + Group: 'Spine1', Weight: 0.704951 + Group: 'Spine2', Weight: 0.144033 + Group: 'RightShoulder', Weight: 0.070329 + Group: 'RightArm', Weight: 0.000000 +Vertex 1435: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.742888 + Group: 'Spine2', Weight: 0.143482 + Group: 'RightShoulder', Weight: 0.058916 + Group: 'Spine', Weight: 0.054714 + Group: 'RightArm', Weight: 0.000000 +Vertex 1436: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.661792 + Group: 'Spine2', Weight: 0.192730 + Group: 'LeftShoulder', Weight: 0.013361 + Group: 'RightShoulder', Weight: 0.062950 + Group: 'RightArm', Weight: 0.000000 +Vertex 1437: +Vertex groups: 5 + Group: 'Spine', Weight: 0.029215 + Group: 'Spine1', Weight: 0.746869 + Group: 'Spine2', Weight: 0.125488 + Group: 'RightShoulder', Weight: 0.029746 + Group: 'RightArm', Weight: 0.000000 +Vertex 1438: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.550013 + Group: 'Spine2', Weight: 0.277998 + Group: 'LeftShoulder', Weight: 0.023235 + Group: 'RightShoulder', Weight: 0.084046 + Group: 'RightArm', Weight: 0.000000 +Vertex 1439: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.819562 + Group: 'Spine2', Weight: 0.103612 + Group: 'Spine', Weight: 0.064995 + Group: 'RightShoulder', Weight: 0.011830 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1440: +Vertex groups: 5 + Group: 'Spine', Weight: 0.089563 + Group: 'Spine1', Weight: 0.769027 + Group: 'Spine2', Weight: 0.076286 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1441: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.701717 + Group: 'Spine2', Weight: 0.143422 + Group: 'Spine', Weight: 0.090135 + Group: 'RightShoulder', Weight: 0.064725 + Group: 'RightArm', Weight: 0.000000 +Vertex 1442: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.676981 + Group: 'Spine2', Weight: 0.159346 + Group: 'RightShoulder', Weight: 0.084851 + Group: 'Spine', Weight: 0.078822 + Group: 'RightArm', Weight: 0.000000 +Vertex 1443: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.720957 + Group: 'Spine2', Weight: 0.134052 + Group: 'Spine', Weight: 0.093281 + Group: 'RightShoulder', Weight: 0.051710 + Group: 'RightArm', Weight: 0.000000 +Vertex 1444: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.768278 + Group: 'Spine2', Weight: 0.110273 + Group: 'Spine', Weight: 0.099740 + Group: 'RightShoulder', Weight: 0.021709 + Group: 'RightArm', Weight: 0.000000 +Vertex 1445: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.593661 + Group: 'Spine2', Weight: 0.220331 + Group: 'RightShoulder', Weight: 0.138488 + Group: 'Spine', Weight: 0.047520 + Group: 'RightArm', Weight: 0.000000 +Vertex 1446: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.493994 + Group: 'Spine2', Weight: 0.293517 + Group: 'RightShoulder', Weight: 0.200297 + Group: 'Spine', Weight: 0.012192 + Group: 'RightArm', Weight: 0.000000 +Vertex 1447: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.373206 + Group: 'Spine2', Weight: 0.262924 + Group: 'RightShoulder', Weight: 0.257592 + Group: 'RightArm', Weight: 0.000000 +Vertex 1448: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.338359 + Group: 'Spine2', Weight: 0.240397 + Group: 'RightShoulder', Weight: 0.314152 + Group: 'RightArm', Weight: 0.000000 +Vertex 1449: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.419805 + Group: 'Spine2', Weight: 0.214647 + Group: 'RightShoulder', Weight: 0.273837 + Group: 'RightArm', Weight: 0.000000 +Vertex 1450: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.462212 + Group: 'Spine2', Weight: 0.231020 + Group: 'RightShoulder', Weight: 0.225551 + Group: 'RightArm', Weight: 0.000000 +Vertex 1451: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.508012 + Group: 'Spine2', Weight: 0.275439 + Group: 'LeftShoulder', Weight: 0.001554 + Group: 'RightShoulder', Weight: 0.134388 + Group: 'RightArm', Weight: 0.000000 +Vertex 1452: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.680713 + Group: 'Spine', Weight: 0.278679 + Group: 'Spine2', Weight: 0.040609 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1453: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.662075 + Group: 'Spine', Weight: 0.284111 + Group: 'Spine2', Weight: 0.048791 + Group: 'RightShoulder', Weight: 0.005023 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1454: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.685852 + Group: 'Spine', Weight: 0.286949 + Group: 'Spine2', Weight: 0.027199 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1455: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.695308 + Group: 'Spine', Weight: 0.278799 + Group: 'Hips', Weight: 0.018922 + Group: 'Spine2', Weight: 0.006971 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1456: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.681863 + Group: 'Spine', Weight: 0.291711 + Group: 'Spine2', Weight: 0.013943 + Group: 'Hips', Weight: 0.012483 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1457: +Vertex groups: 3 + Group: 'Neck', Weight: 0.065276 + Group: 'RightShoulder', Weight: 0.882371 + Group: 'RightArm', Weight: 0.000000 +Vertex 1458: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.886135 + Group: 'RightArm', Weight: 0.000000 +Vertex 1459: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.037523 + Group: 'Neck', Weight: 0.009799 + Group: 'RightShoulder', Weight: 0.879582 + Group: 'RightArm', Weight: 0.000000 +Vertex 1460: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.877874 + Group: 'RightArm', Weight: 0.000000 +Vertex 1461: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.063159 + Group: 'RightShoulder', Weight: 0.805303 + Group: 'RightArm', Weight: 0.000000 +Vertex 1462: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.089170 + Group: 'RightShoulder', Weight: 0.819544 + Group: 'RightArm', Weight: 0.000000 +Vertex 1463: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050853 + Group: 'Spine2', Weight: 0.136711 + Group: 'RightShoulder', Weight: 0.706218 + Group: 'RightArm', Weight: 0.000000 +Vertex 1464: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068626 + Group: 'Spine2', Weight: 0.135213 + Group: 'RightShoulder', Weight: 0.638837 + Group: 'RightArm', Weight: 0.000000 +Vertex 1465: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.196031 + Group: 'Spine2', Weight: 0.225450 + Group: 'RightShoulder', Weight: 0.399242 + Group: 'RightArm', Weight: 0.000000 +Vertex 1466: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.130463 + Group: 'Spine2', Weight: 0.154203 + Group: 'RightShoulder', Weight: 0.489020 + Group: 'RightArm', Weight: 0.100805 +Vertex 1467: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.072008 + Group: 'Spine2', Weight: 0.107636 + Group: 'RightShoulder', Weight: 0.591350 + Group: 'RightArm', Weight: 0.115078 +Vertex 1468: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.033650 + Group: 'Spine2', Weight: 0.077903 + Group: 'RightShoulder', Weight: 0.663393 + Group: 'RightArm', Weight: 0.105577 +Vertex 1469: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.024799 + Group: 'Spine2', Weight: 0.163621 + Group: 'RightShoulder', Weight: 0.719803 + Group: 'RightArm', Weight: 0.000000 +Vertex 1470: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.123322 + Group: 'Spine2', Weight: 0.186914 + Group: 'RightShoulder', Weight: 0.532369 + Group: 'RightArm', Weight: 0.000000 +Vertex 1471: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.805881 + Group: 'Spine2', Weight: 0.158519 + Group: 'LeftShoulder', Weight: 0.022581 + Group: 'Neck', Weight: 0.013020 + Group: 'RightArm', Weight: 0.000000 +Vertex 1472: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.686367 + Group: 'Spine2', Weight: 0.259290 + Group: 'LeftShoulder', Weight: 0.040092 + Group: 'Spine1', Weight: 0.014251 + Group: 'RightArm', Weight: 0.000000 +Vertex 1473: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.031218 + Group: 'Neck', Weight: 0.172441 + Group: 'RightShoulder', Weight: 0.757381 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1474: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.842707 + Group: 'Spine2', Weight: 0.087037 + Group: 'Neck', Weight: 0.066667 + Group: 'LeftShoulder', Weight: 0.003589 + Group: 'RightArm', Weight: 0.000000 +Vertex 1475: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.624193 + Group: 'Spine2', Weight: 0.245277 + Group: 'LeftShoulder', Weight: 0.079287 + Group: 'Neck', Weight: 0.051243 + Group: 'RightArm', Weight: 0.000000 +Vertex 1476: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.537810 + Group: 'Spine2', Weight: 0.363953 + Group: 'LeftShoulder', Weight: 0.088587 + Group: 'Spine1', Weight: 0.008866 + Group: 'Neck', Weight: 0.000784 +Vertex 1477: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.646655 + Group: 'Spine2', Weight: 0.174761 + Group: 'Neck', Weight: 0.112874 + Group: 'LeftShoulder', Weight: 0.065709 + Group: 'RightArm', Weight: 0.000000 +Vertex 1478: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.554831 + Group: 'Neck', Weight: 0.254710 + Group: 'Spine2', Weight: 0.133538 + Group: 'LeftShoulder', Weight: 0.056921 + Group: 'RightArm', Weight: 0.000000 +Vertex 1479: +Vertex groups: 4 + Group: 'Neck', Weight: 0.784535 + Group: 'RightShoulder', Weight: 0.160419 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1480: +Vertex groups: 5 + Group: 'Neck', Weight: 0.727450 + Group: 'RightShoulder', Weight: 0.249589 + Group: 'Spine2', Weight: 0.022898 + Group: 'LeftShoulder', Weight: 0.000062 + Group: 'RightArm', Weight: 0.000000 +Vertex 1481: +Vertex groups: 5 + Group: 'Spine', Weight: 0.014122 + Group: 'Spine1', Weight: 0.328670 + Group: 'Spine2', Weight: 0.286045 + Group: 'RightShoulder', Weight: 0.253742 + Group: 'RightArm', Weight: 0.000000 +Vertex 1482: +Vertex groups: 5 + Group: 'Spine', Weight: 0.053926 + Group: 'Spine1', Weight: 0.523571 + Group: 'Spine2', Weight: 0.203984 + Group: 'RightShoulder', Weight: 0.154982 + Group: 'RightArm', Weight: 0.000000 +Vertex 1483: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.661106 + Group: 'Spine2', Weight: 0.147057 + Group: 'RightShoulder', Weight: 0.101245 + Group: 'Spine', Weight: 0.090592 + Group: 'RightArm', Weight: 0.000000 +Vertex 1484: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.696905 + Group: 'Spine', Weight: 0.153899 + Group: 'Spine2', Weight: 0.091277 + Group: 'RightShoulder', Weight: 0.057919 + Group: 'RightArm', Weight: 0.000000 +Vertex 1485: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.649638 + Group: 'Spine', Weight: 0.286691 + Group: 'Spine2', Weight: 0.053916 + Group: 'RightShoulder', Weight: 0.009756 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1486: +Vertex groups: 4 + Group: 'Spine', Weight: 0.549998 + Group: 'Spine1', Weight: 0.310039 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1487: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.261278 + Group: 'Spine2', Weight: 0.311216 + Group: 'RightShoulder', Weight: 0.309805 + Group: 'RightArm', Weight: 0.000000 +Vertex 1488: +Vertex groups: 5 + Group: 'Spine', Weight: 0.041431 + Group: 'Spine1', Weight: 0.479046 + Group: 'Spine2', Weight: 0.249146 + Group: 'RightShoulder', Weight: 0.168130 + Group: 'RightArm', Weight: 0.000000 +Vertex 1489: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.650487 + Group: 'Spine2', Weight: 0.168616 + Group: 'RightShoulder', Weight: 0.101160 + Group: 'Spine', Weight: 0.079738 + Group: 'RightArm', Weight: 0.000000 +Vertex 1490: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.703815 + Group: 'Spine', Weight: 0.143196 + Group: 'Spine2', Weight: 0.098109 + Group: 'RightShoulder', Weight: 0.054880 + Group: 'RightArm', Weight: 0.000000 +Vertex 1491: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.663888 + Group: 'Spine', Weight: 0.273646 + Group: 'Spine2', Weight: 0.055946 + Group: 'RightShoulder', Weight: 0.006520 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1492: +Vertex groups: 4 + Group: 'Spine', Weight: 0.572838 + Group: 'Spine1', Weight: 0.311289 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1493: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.103529 + Group: 'Spine2', Weight: 0.238995 + Group: 'RightShoulder', Weight: 0.550743 + Group: 'RightArm', Weight: 0.000000 +Vertex 1494: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.592908 + Group: 'RightShoulder', Weight: 0.260744 + Group: 'LeftShoulder', Weight: 0.084370 + Group: 'Spine1', Weight: 0.061978 + Group: 'RightArm', Weight: 0.000000 +Vertex 1495: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.519752 + Group: 'RightShoulder', Weight: 0.356144 + Group: 'Spine1', Weight: 0.078709 + Group: 'LeftShoulder', Weight: 0.045396 + Group: 'RightArm', Weight: 0.000000 +Vertex 1496: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.099115 + Group: 'Spine2', Weight: 0.335807 + Group: 'RightShoulder', Weight: 0.483240 + Group: 'RightArm', Weight: 0.000000 +Vertex 1497: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.207093 + Group: 'Spine2', Weight: 0.376035 + Group: 'RightShoulder', Weight: 0.323383 + Group: 'RightArm', Weight: 0.000000 +Vertex 1498: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.172761 + Group: 'Spine2', Weight: 0.476234 + Group: 'RightShoulder', Weight: 0.276322 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1499: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.621507 + Group: 'RightShoulder', Weight: 0.189216 + Group: 'Spine1', Weight: 0.158733 + Group: 'LeftShoulder', Weight: 0.030544 + Group: 'RightArm', Weight: 0.000000 +Vertex 1500: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.602647 + Group: 'Spine1', Weight: 0.280939 + Group: 'RightShoulder', Weight: 0.103432 + Group: 'LeftShoulder', Weight: 0.012982 + Group: 'RightArm', Weight: 0.000000 +Vertex 1501: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.401268 + Group: 'Spine1', Weight: 0.394689 + Group: 'RightShoulder', Weight: 0.184495 + Group: 'Spine', Weight: 0.019548 + Group: 'RightArm', Weight: 0.000000 +Vertex 1502: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.319365 + Group: 'Spine2', Weight: 0.472496 + Group: 'RightShoulder', Weight: 0.139306 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1503: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.658020 + Group: 'Spine2', Weight: 0.191148 + Group: 'RightShoulder', Weight: 0.082323 + Group: 'Spine', Weight: 0.068509 + Group: 'RightArm', Weight: 0.000000 +Vertex 1504: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.669068 + Group: 'Spine2', Weight: 0.219873 + Group: 'RightShoulder', Weight: 0.064608 + Group: 'Spine', Weight: 0.046451 + Group: 'RightArm', Weight: 0.000000 +Vertex 1505: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.736789 + Group: 'Spine', Weight: 0.128055 + Group: 'Spine2', Weight: 0.099797 + Group: 'RightShoulder', Weight: 0.035359 + Group: 'RightArm', Weight: 0.000000 +Vertex 1506: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.798012 + Group: 'Spine', Weight: 0.102314 + Group: 'Spine2', Weight: 0.093811 + Group: 'RightShoulder', Weight: 0.005863 + Group: 'RightArm', Weight: 0.000000 +Vertex 1507: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.683036 + Group: 'Spine', Weight: 0.275392 + Group: 'Spine2', Weight: 0.041572 + Group: 'RightArm', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1508: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.726294 + Group: 'Spine', Weight: 0.257869 + Group: 'Spine2', Weight: 0.015836 + Group: 'RightArm', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1509: +Vertex groups: 4 + Group: 'Spine', Weight: 0.617082 + Group: 'Spine1', Weight: 0.295807 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1510: +Vertex groups: 4 + Group: 'Spine', Weight: 0.686215 + Group: 'Spine1', Weight: 0.257781 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1511: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.713159 + Group: 'Spine2', Weight: 0.235010 + Group: 'RightShoulder', Weight: 0.031757 + Group: 'Spine', Weight: 0.020074 + Group: 'RightArm', Weight: 0.000000 +Vertex 1512: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.838659 + Group: 'Spine2', Weight: 0.081712 + Group: 'Spine', Weight: 0.079629 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1513: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.661576 + Group: 'RightShoulder', Weight: 0.168073 + Group: 'Spine1', Weight: 0.086233 + Group: 'LeftShoulder', Weight: 0.084118 + Group: 'RightArm', Weight: 0.000000 +Vertex 1514: +Vertex groups: 5 + Group: 'Hips', Weight: 0.229614 + Group: 'Spine', Weight: 0.498968 + Group: 'Spine1', Weight: 0.086804 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1515: +Vertex groups: 5 + Group: 'Hips', Weight: 0.077905 + Group: 'Spine', Weight: 0.543262 + Group: 'Spine1', Weight: 0.123302 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1516: +Vertex groups: 5 + Group: 'Hips', Weight: 0.035819 + Group: 'Spine', Weight: 0.569689 + Group: 'Spine1', Weight: 0.143996 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1517: +Vertex groups: 5 + Group: 'Hips', Weight: 0.142916 + Group: 'Spine', Weight: 0.520578 + Group: 'Spine1', Weight: 0.096878 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1518: +Vertex groups: 5 + Group: 'Hips', Weight: 0.301081 + Group: 'Spine', Weight: 0.476578 + Group: 'Spine1', Weight: 0.083171 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1519: +Vertex groups: 4 + Group: 'Spine', Weight: 0.606418 + Group: 'Spine1', Weight: 0.150934 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1520: +Vertex groups: 4 + Group: 'Spine', Weight: 0.657431 + Group: 'Spine1', Weight: 0.157326 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1521: +Vertex groups: 4 + Group: 'Spine', Weight: 0.710665 + Group: 'Spine1', Weight: 0.163954 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1522: +Vertex groups: 4 + Group: 'Spine', Weight: 0.770904 + Group: 'Spine1', Weight: 0.134774 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1523: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.810445 + Group: 'Spine', Weight: 0.135616 + Group: 'Spine2', Weight: 0.053940 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1524: +Vertex groups: 5 + Group: 'Hips', Weight: 0.066260 + Group: 'Spine', Weight: 0.566540 + Group: 'Spine1', Weight: 0.165188 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1525: +Vertex groups: 4 + Group: 'Spine', Weight: 0.606974 + Group: 'Spine1', Weight: 0.207633 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1526: +Vertex groups: 5 + Group: 'Hips', Weight: 0.021765 + Group: 'Spine', Weight: 0.582680 + Group: 'Spine1', Weight: 0.193562 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1527: +Vertex groups: 4 + Group: 'Spine', Weight: 0.652750 + Group: 'Spine1', Weight: 0.197856 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1528: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.396285 + Group: 'Neck', Weight: 0.326898 + Group: 'RightShoulder', Weight: 0.200304 + Group: 'LeftShoulder', Weight: 0.066077 + Group: 'Spine1', Weight: 0.010436 +Vertex 1529: +Vertex groups: 4 + Group: 'Neck', Weight: 0.201154 + Group: 'Head', Weight: 0.999899 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1530: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.001188 + Group: 'Neck', Weight: 0.660075 + Group: 'Head', Weight: 0.404696 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1531: +Vertex groups: 5 + Group: 'Neck', Weight: 0.658506 + Group: 'Spine2', Weight: 0.163548 + Group: 'RightShoulder', Weight: 0.115534 + Group: 'Head', Weight: 0.044009 + Group: 'LeftShoulder', Weight: 0.018404 +Vertex 1532: +Vertex groups: 5 + Group: 'Neck', Weight: 0.765757 + Group: 'Head', Weight: 0.123991 + Group: 'Spine2', Weight: 0.065294 + Group: 'RightShoulder', Weight: 0.044957 + Group: 'RightArm', Weight: 0.000000 +Vertex 1533: +Vertex groups: 4 + Group: 'Neck', Weight: 0.678262 + Group: 'Head', Weight: 0.448695 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1534: +Vertex groups: 5 + Group: 'Neck', Weight: 0.706125 + Group: 'RightShoulder', Weight: 0.140077 + Group: 'Spine2', Weight: 0.118267 + Group: 'Head', Weight: 0.035531 + Group: 'RightArm', Weight: 0.000000 +Vertex 1535: +Vertex groups: 5 + Group: 'Neck', Weight: 0.839239 + Group: 'Head', Weight: 0.097365 + Group: 'RightShoulder', Weight: 0.047643 + Group: 'Spine2', Weight: 0.015753 + Group: 'RightArm', Weight: 0.000000 +Vertex 1536: +Vertex groups: 4 + Group: 'Neck', Weight: 0.754556 + Group: 'Head', Weight: 0.237992 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1537: +Vertex groups: 5 + Group: 'Neck', Weight: 0.796426 + Group: 'Head', Weight: 0.005697 + Group: 'RightShoulder', Weight: 0.144524 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1538: +Vertex groups: 5 + Group: 'Neck', Weight: 0.874622 + Group: 'Head', Weight: 0.067642 + Group: 'RightShoulder', Weight: 0.033285 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1539: +Vertex groups: 4 + Group: 'Neck', Weight: 0.632395 + Group: 'Head', Weight: 0.387618 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1540: +Vertex groups: 4 + Group: 'Neck', Weight: 0.853469 + Group: 'RightShoulder', Weight: 0.108532 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1541: +Vertex groups: 5 + Group: 'Neck', Weight: 0.896982 + Group: 'Head', Weight: 0.070053 + Group: 'RightShoulder', Weight: 0.002479 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1542: +Vertex groups: 4 + Group: 'Neck', Weight: 0.714445 + Group: 'Head', Weight: 0.319694 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1543: +Vertex groups: 5 + Group: 'Neck', Weight: 0.908425 + Group: 'Head', Weight: 0.012650 + Group: 'RightShoulder', Weight: 0.039242 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1544: +Vertex groups: 4 + Group: 'Neck', Weight: 0.879714 + Group: 'Head', Weight: 0.098179 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1545: +Vertex groups: 5 + Group: 'Neck', Weight: 0.385030 + Group: 'Spine2', Weight: 0.304936 + Group: 'RightShoulder', Weight: 0.292607 + Group: 'LeftShoulder', Weight: 0.017428 + Group: 'RightArm', Weight: 0.000000 +Vertex 1546: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.073745 + Group: 'Neck', Weight: 0.529738 + Group: 'RightShoulder', Weight: 0.358337 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1547: +Vertex groups: 4 + Group: 'Neck', Weight: 0.829903 + Group: 'RightShoulder', Weight: 0.122259 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1548: +Vertex groups: 4 + Group: 'Neck', Weight: 0.236711 + Group: 'Head', Weight: 0.998376 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1549: +Vertex groups: 3 + Group: 'Neck', Weight: 0.030044 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1550: +Vertex groups: 4 + Group: 'Neck', Weight: 0.429526 + Group: 'Head', Weight: 0.907851 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1551: +Vertex groups: 4 + Group: 'Neck', Weight: 0.421811 + Group: 'Head', Weight: 0.919690 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1552: +Vertex groups: 4 + Group: 'Neck', Weight: 0.209107 + Group: 'Head', Weight: 0.999630 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1553: +Vertex groups: 4 + Group: 'Neck', Weight: 0.088200 + Group: 'Head', Weight: 0.997429 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1554: +Vertex groups: 3 + Group: 'Neck', Weight: 0.145251 + Group: 'Head', Weight: 0.977774 + Group: 'RightArm', Weight: 0.000000 +Vertex 1555: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999967 + Group: 'RightArm', Weight: 0.000000 +Vertex 1556: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1557: +Vertex groups: 3 + Group: 'Neck', Weight: 0.020501 + Group: 'Head', Weight: 0.977027 + Group: 'RightArm', Weight: 0.000000 +Vertex 1558: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'RightArm', Weight: 0.000000 +Vertex 1559: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 + Group: 'RightArm', Weight: 0.000000 +Vertex 1560: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1561: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999963 + Group: 'RightArm', Weight: 0.000000 +Vertex 1562: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1563: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1564: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1565: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1566: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1567: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998127 + Group: 'RightArm', Weight: 0.000000 +Vertex 1568: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999704 +Vertex 1569: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 1570: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999128 +Vertex 1571: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1572: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 1573: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'RightArm', Weight: 0.000000 +Vertex 1574: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1575: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998175 +Vertex 1576: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'RightArm', Weight: 0.000000 +Vertex 1577: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1578: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1579: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1580: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1581: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999785 +Vertex 1582: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997819 +Vertex 1583: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999956 + Group: 'RightArm', Weight: 0.000000 +Vertex 1584: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999983 +Vertex 1585: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999957 +Vertex 1586: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999670 +Vertex 1587: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999686 +Vertex 1588: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999980 +Vertex 1589: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000134 + Group: 'Head', Weight: 0.999331 +Vertex 1590: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999879 +Vertex 1591: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1592: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999978 +Vertex 1593: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999614 +Vertex 1594: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1595: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 + Group: 'RightArm', Weight: 0.000000 +Vertex 1596: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000631 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1597: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998962 +Vertex 1598: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999861 +Vertex 1599: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1600: +Vertex groups: 4 + Group: 'Neck', Weight: 0.015457 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1601: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000217 + Group: 'Head', Weight: 0.999967 +Vertex 1602: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000985 + Group: 'Head', Weight: 1.000000 +Vertex 1603: +Vertex groups: 2 + Group: 'Neck', Weight: 0.002043 + Group: 'Head', Weight: 1.000000 +Vertex 1604: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 1605: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999980 +Vertex 1606: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999915 +Vertex 1607: +Vertex groups: 2 + Group: 'Head', Weight: 0.999998 + Group: 'Neck', Weight: 0.000000 +Vertex 1608: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999809 +Vertex 1609: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1610: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999975 +Vertex 1611: +Vertex groups: 2 + Group: 'Head', Weight: 0.999948 + Group: 'Neck', Weight: 0.000000 +Vertex 1612: +Vertex groups: 3 + Group: 'Neck', Weight: 0.007561 + Group: 'Head', Weight: 0.999352 + Group: 'RightArm', Weight: 0.000000 +Vertex 1613: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1614: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999987 + Group: 'RightArm', Weight: 0.000000 +Vertex 1615: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000126 + Group: 'Head', Weight: 0.996979 + Group: 'RightArm', Weight: 0.000000 +Vertex 1616: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.987343 + Group: 'RightArm', Weight: 0.000000 +Vertex 1617: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.976242 +Vertex 1618: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000519 + Group: 'Head', Weight: 0.968591 +Vertex 1619: +Vertex groups: 3 + Group: 'Neck', Weight: 0.038636 + Group: 'Head', Weight: 0.977432 + Group: 'RightArm', Weight: 0.000000 +Vertex 1620: +Vertex groups: 3 + Group: 'Neck', Weight: 0.040751 + Group: 'Head', Weight: 0.980922 + Group: 'RightArm', Weight: 0.000000 +Vertex 1621: +Vertex groups: 3 + Group: 'Neck', Weight: 0.024422 + Group: 'Head', Weight: 0.991833 + Group: 'RightArm', Weight: 0.000000 +Vertex 1622: +Vertex groups: 3 + Group: 'Neck', Weight: 0.040552 + Group: 'Head', Weight: 0.999474 + Group: 'RightArm', Weight: 0.000000 +Vertex 1623: +Vertex groups: 3 + Group: 'Neck', Weight: 0.026708 + Group: 'Head', Weight: 0.999655 + Group: 'RightArm', Weight: 0.000000 +Vertex 1624: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992627 + Group: 'RightArm', Weight: 0.000000 +Vertex 1625: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998411 +Vertex 1626: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999744 +Vertex 1627: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1628: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999754 +Vertex 1629: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999132 +Vertex 1630: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998957 +Vertex 1631: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999903 +Vertex 1632: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999944 +Vertex 1633: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999917 +Vertex 1634: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999249 +Vertex 1635: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1636: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999972 +Vertex 1637: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999339 +Vertex 1638: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998541 +Vertex 1639: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999638 +Vertex 1640: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999807 +Vertex 1641: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999679 +Vertex 1642: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999009 +Vertex 1643: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999975 +Vertex 1644: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999977 +Vertex 1645: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999912 +Vertex 1646: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999940 +Vertex 1647: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999808 +Vertex 1648: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1649: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999837 +Vertex 1650: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999772 +Vertex 1651: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999909 +Vertex 1652: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999867 +Vertex 1653: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999940 +Vertex 1654: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999377 +Vertex 1655: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998941 +Vertex 1656: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998998 +Vertex 1657: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999480 +Vertex 1658: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996443 + Group: 'RightArm', Weight: 0.000000 +Vertex 1659: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999945 +Vertex 1660: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998453 +Vertex 1661: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999959 +Vertex 1662: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999935 +Vertex 1663: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999881 +Vertex 1664: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999829 +Vertex 1665: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998011 +Vertex 1666: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986508 +Vertex 1667: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.971741 +Vertex 1668: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999893 +Vertex 1669: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1670: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999566 +Vertex 1671: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988788 +Vertex 1672: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992100 +Vertex 1673: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999531 +Vertex 1674: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999691 +Vertex 1675: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.980315 +Vertex 1676: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999965 +Vertex 1677: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999807 +Vertex 1678: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999466 +Vertex 1679: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997851 +Vertex 1680: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1681: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994675 +Vertex 1682: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989603 +Vertex 1683: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986421 +Vertex 1684: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986595 +Vertex 1685: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988430 +Vertex 1686: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991375 +Vertex 1687: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.993594 +Vertex 1688: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992844 +Vertex 1689: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995766 +Vertex 1690: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994807 +Vertex 1691: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998765 +Vertex 1692: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998846 +Vertex 1693: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992168 +Vertex 1694: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988155 +Vertex 1695: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.985239 +Vertex 1696: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.982514 +Vertex 1697: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.980128 +Vertex 1698: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.973470 +Vertex 1699: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.972404 +Vertex 1700: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994529 +Vertex 1701: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999236 +Vertex 1702: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1703: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999987 +Vertex 1704: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999984 +Vertex 1705: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 1706: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.979666 +Vertex 1707: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.982541 +Vertex 1708: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.977794 +Vertex 1709: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.976286 +Vertex 1710: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994396 +Vertex 1711: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998861 +Vertex 1712: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1713: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 1714: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991914 +Vertex 1715: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989981 +Vertex 1716: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988894 +Vertex 1717: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989206 +Vertex 1718: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989375 +Vertex 1719: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.990466 +Vertex 1720: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991619 +Vertex 1721: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.990743 +Vertex 1722: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988729 +Vertex 1723: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992327 +Vertex 1724: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991907 +Vertex 1725: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995687 +Vertex 1726: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.987235 +Vertex 1727: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.987154 +Vertex 1728: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991132 +Vertex 1729: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.983148 +Vertex 1730: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.984425 +Vertex 1731: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986856 +Vertex 1732: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994461 +Vertex 1733: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997511 +Vertex 1734: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999179 +Vertex 1735: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999951 +Vertex 1736: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999907 +Vertex 1737: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1738: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1739: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999800 +Vertex 1740: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998350 +Vertex 1741: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1742: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992906 +Vertex 1743: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.993229 +Vertex 1744: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992583 +Vertex 1745: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999495 +Vertex 1746: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992424 +Vertex 1747: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1748: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999899 +Vertex 1749: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 1750: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999771 +Vertex 1751: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 1752: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999881 +Vertex 1753: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 1754: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999674 +Vertex 1755: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999989 +Vertex 1756: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999985 +Vertex 1757: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1758: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1759: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1760: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1761: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1762: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999982 +Vertex 1763: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999995 +Vertex 1764: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1765: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1766: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1767: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1768: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999993 +Vertex 1769: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 1770: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1771: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1772: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1773: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999995 +Vertex 1774: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1775: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 1776: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999968 +Vertex 1777: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999983 +Vertex 1778: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1779: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1780: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1781: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1782: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1783: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1784: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1785: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1786: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1787: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999993 +Vertex 1788: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999993 +Vertex 1789: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999992 +Vertex 1790: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1791: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1792: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995421 +Vertex 1793: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999000 +Vertex 1794: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996968 +Vertex 1795: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995744 +Vertex 1796: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999640 +Vertex 1797: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 1798: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1799: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999958 +Vertex 1800: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1801: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1802: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1803: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 1804: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1805: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1806: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1807: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1808: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 1809: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999983 +Vertex 1810: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 1811: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 1812: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1813: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1814: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1815: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1816: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 1817: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1818: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1819: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999988 +Vertex 1820: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1821: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 1822: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1823: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 1824: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1825: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1826: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1827: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1828: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1829: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 1830: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1831: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1832: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1833: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1834: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1835: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999823 +Vertex 1836: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994517 +Vertex 1837: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999332 +Vertex 1838: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999687 +Vertex 1839: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996262 +Vertex 1840: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999886 +Vertex 1841: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.993685 +Vertex 1842: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997056 +Vertex 1843: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996367 +Vertex 1844: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999876 +Vertex 1845: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999638 +Vertex 1846: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999499 +Vertex 1847: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999944 + Group: 'RightArm', Weight: 0.000000 +Vertex 1848: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998895 +Vertex 1849: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999813 + Group: 'RightArm', Weight: 0.000000 +Vertex 1850: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999085 + Group: 'RightArm', Weight: 0.000000 +Vertex 1851: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1852: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 + Group: 'RightArm', Weight: 0.000000 +Vertex 1853: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999992 + Group: 'RightArm', Weight: 0.000000 +Vertex 1854: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998500 + Group: 'RightArm', Weight: 0.000000 +Vertex 1855: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999213 +Vertex 1856: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999943 +Vertex 1857: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1858: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999965 +Vertex 1859: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 1860: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999900 +Vertex 1861: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1862: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999840 +Vertex 1863: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1864: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999989 +Vertex 1865: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 1866: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1867: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999967 +Vertex 1868: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999412 +Vertex 1869: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999915 +Vertex 1870: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1871: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 1872: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999484 +Vertex 1873: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999952 +Vertex 1874: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1875: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1876: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999644 +Vertex 1877: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999976 +Vertex 1878: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999967 +Vertex 1879: +Vertex groups: 2 + Group: 'Head', Weight: 0.999747 + Group: 'Neck', Weight: 0.000000 +Vertex 1880: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1881: +Vertex groups: 2 + Group: 'Head', Weight: 0.999980 + Group: 'Neck', Weight: 0.000000 +Vertex 1882: +Vertex groups: 2 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 1883: +Vertex groups: 2 + Group: 'Head', Weight: 0.999998 + Group: 'Neck', Weight: 0.000000 +Vertex 1884: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999980 +Vertex 1885: +Vertex groups: 4 + Group: 'Neck', Weight: 0.089311 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1886: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 1887: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000265 + Group: 'Head', Weight: 1.000000 +Vertex 1888: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999973 +Vertex 1889: +Vertex groups: 2 + Group: 'Head', Weight: 0.999983 + Group: 'Neck', Weight: 0.000000 +Vertex 1890: +Vertex groups: 2 + Group: 'Head', Weight: 0.999985 + Group: 'Neck', Weight: 0.000000 +Vertex 1891: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999984 +Vertex 1892: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1893: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1894: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 1895: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1896: +Vertex groups: 4 + Group: 'Neck', Weight: 0.701504 + Group: 'RightShoulder', Weight: 0.256144 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1897: +Vertex groups: 5 + Group: 'Neck', Weight: 0.497321 + Group: 'RightShoulder', Weight: 0.339498 + Group: 'Spine2', Weight: 0.103411 + Group: 'LeftShoulder', Weight: 0.059770 + Group: 'RightArm', Weight: 0.000000 +Vertex 1898: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.210164 + Group: 'RightArm', Weight: 0.654087 +Vertex 1899: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.200821 + Group: 'RightArm', Weight: 0.685966 +Vertex 1900: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.326824 + Group: 'RightArm', Weight: 0.589709 +Vertex 1901: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.231657 + Group: 'RightArm', Weight: 0.640321 +Vertex 1902: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.198419 + Group: 'RightArm', Weight: 0.790172 +Vertex 1903: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.251101 + Group: 'RightArm', Weight: 0.736390 +Vertex 1904: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.353553 + Group: 'RightArm', Weight: 0.622032 +Vertex 1905: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.162440 + Group: 'RightArm', Weight: 0.803502 +Vertex 1906: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.100045 + Group: 'RightArm', Weight: 0.882436 +Vertex 1907: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.074193 + Group: 'RightArm', Weight: 0.913428 +Vertex 1908: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.061641 + Group: 'RightArm', Weight: 0.932440 +Vertex 1909: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.072922 + Group: 'RightArm', Weight: 0.923277 +Vertex 1910: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.118587 + Group: 'RightArm', Weight: 0.872786 +Vertex 1911: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.228280 + Group: 'RightArm', Weight: 0.750190 +Vertex 1912: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.109705 + Group: 'Spine2', Weight: 0.119104 + Group: 'RightShoulder', Weight: 0.552108 + Group: 'RightArm', Weight: 0.074552 +Vertex 1913: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050477 + Group: 'Spine2', Weight: 0.057876 + Group: 'RightShoulder', Weight: 0.701352 + Group: 'RightArm', Weight: 0.000000 +Vertex 1914: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.005851 + Group: 'RightShoulder', Weight: 0.800854 + Group: 'RightArm', Weight: 0.000403 +Vertex 1915: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.078074 + Group: 'Spine2', Weight: 0.077803 + Group: 'RightShoulder', Weight: 0.613255 + Group: 'RightArm', Weight: 0.040811 +Vertex 1916: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.117231 + Group: 'Spine2', Weight: 0.134974 + Group: 'RightShoulder', Weight: 0.531327 + Group: 'RightArm', Weight: 0.107834 +Vertex 1917: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.843135 + Group: 'RightArm', Weight: 0.005830 +Vertex 1918: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.853739 + Group: 'RightArm', Weight: 0.004439 +Vertex 1919: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.857872 + Group: 'RightArm', Weight: 0.019335 +Vertex 1920: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.850524 + Group: 'RightArm', Weight: 0.004225 +Vertex 1921: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.048390 + Group: 'RightShoulder', Weight: 0.788174 + Group: 'RightArm', Weight: 0.000283 +Vertex 1922: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.017825 + Group: 'Spine2', Weight: 0.062319 + Group: 'RightShoulder', Weight: 0.656761 + Group: 'RightArm', Weight: 0.189400 +Vertex 1923: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.062538 + Group: 'Spine2', Weight: 0.092161 + Group: 'RightShoulder', Weight: 0.589894 + Group: 'RightArm', Weight: 0.193651 +Vertex 1924: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.105485 + Group: 'Spine2', Weight: 0.126026 + Group: 'RightShoulder', Weight: 0.511414 + Group: 'RightArm', Weight: 0.185781 +Vertex 1925: +Vertex groups: 5 + Group: 'Hips', Weight: 0.385064 + Group: 'Spine', Weight: 0.392847 + Group: 'Spine1', Weight: 0.067974 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1926: +Vertex groups: 5 + Group: 'Hips', Weight: 0.286594 + Group: 'Spine', Weight: 0.425834 + Group: 'Spine1', Weight: 0.069645 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1927: +Vertex groups: 5 + Group: 'Hips', Weight: 0.156744 + Group: 'Spine', Weight: 0.483652 + Group: 'Spine1', Weight: 0.085120 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1928: +Vertex groups: 5 + Group: 'Hips', Weight: 0.080297 + Group: 'Spine', Weight: 0.522543 + Group: 'Spine1', Weight: 0.107618 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1929: +Vertex groups: 5 + Group: 'Hips', Weight: 0.040117 + Group: 'Spine', Weight: 0.553880 + Group: 'Spine1', Weight: 0.123854 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1930: +Vertex groups: 5 + Group: 'Hips', Weight: 0.002550 + Group: 'Spine', Weight: 0.596060 + Group: 'Spine1', Weight: 0.126659 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1931: +Vertex groups: 4 + Group: 'Spine', Weight: 0.663557 + Group: 'Spine1', Weight: 0.125660 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1932: +Vertex groups: 4 + Group: 'Spine', Weight: 0.783563 + Group: 'Spine1', Weight: 0.109403 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1933: +Vertex groups: 4 + Group: 'Spine', Weight: 0.727662 + Group: 'Spine1', Weight: 0.122021 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1934: +Vertex groups: 5 + Group: 'Hips', Weight: 0.526163 + Group: 'Spine', Weight: 0.236665 + Group: 'Spine1', Weight: 0.030988 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1935: +Vertex groups: 5 + Group: 'Hips', Weight: 0.376757 + Group: 'Spine', Weight: 0.282149 + Group: 'Spine1', Weight: 0.043512 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1936: +Vertex groups: 5 + Group: 'Hips', Weight: 0.180563 + Group: 'Spine', Weight: 0.363173 + Group: 'Spine1', Weight: 0.061178 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1937: +Vertex groups: 5 + Group: 'Hips', Weight: 0.080770 + Group: 'Spine', Weight: 0.449589 + Group: 'Spine1', Weight: 0.078737 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1938: +Vertex groups: 5 + Group: 'Hips', Weight: 0.043905 + Group: 'Spine', Weight: 0.488430 + Group: 'Spine1', Weight: 0.088428 + Group: 'RightUpLeg', Weight: 0.000126 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1939: +Vertex groups: 5 + Group: 'Hips', Weight: 0.005260 + Group: 'Spine', Weight: 0.538587 + Group: 'Spine1', Weight: 0.086167 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1940: +Vertex groups: 5 + Group: 'Hips', Weight: 0.019078 + Group: 'Spine', Weight: 0.777809 + Group: 'Spine1', Weight: 0.065765 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1941: +Vertex groups: 5 + Group: 'Hips', Weight: 0.009394 + Group: 'Spine', Weight: 0.703148 + Group: 'Spine1', Weight: 0.076485 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1942: +Vertex groups: 5 + Group: 'Hips', Weight: 0.002187 + Group: 'Spine', Weight: 0.629458 + Group: 'Spine1', Weight: 0.084536 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1943: +Vertex groups: 5 + Group: 'Bone', Weight: 0.494846 + Group: 'Hips', Weight: 0.208843 + Group: 'Bone2', Weight: 0.178471 + Group: 'RightUpLeg', Weight: 0.077174 + Group: 'Bone.001', Weight: 0.040666 +Vertex 1944: +Vertex groups: 5 + Group: 'Bone', Weight: 0.560847 + Group: 'Bone2', Weight: 0.208288 + Group: 'Hips', Weight: 0.153358 + Group: 'Bone.001', Weight: 0.046102 + Group: 'RightUpLeg', Weight: 0.031405 +Vertex 1945: +Vertex groups: 5 + Group: 'Bone', Weight: 0.489364 + Group: 'RightUpLeg', Weight: 0.254664 + Group: 'Bone2', Weight: 0.172485 + Group: 'Hips', Weight: 0.043513 + Group: 'Bone.001', Weight: 0.039973 +Vertex 1946: +Vertex groups: 5 + Group: 'Bone', Weight: 0.431215 + Group: 'RightUpLeg', Weight: 0.362033 + Group: 'Bone2', Weight: 0.141370 + Group: 'Bone.001', Weight: 0.033063 + Group: 'Hips', Weight: 0.032319 +Vertex 1947: +Vertex groups: 5 + Group: 'Bone', Weight: 0.998914 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone.001', Weight: 0.077910 + Group: 'RightUpLeg', Weight: 0.959257 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1948: +Vertex groups: 5 + Group: 'Bone', Weight: 0.413192 + Group: 'RightUpLeg', Weight: 0.385162 + Group: 'Bone2', Weight: 0.157241 + Group: 'Bone.001', Weight: 0.032206 + Group: 'Hips', Weight: 0.012198 +Vertex 1949: +Vertex groups: 4 + Group: 'Bone', Weight: 0.999188 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone.001', Weight: 0.079305 + Group: 'RightUpLeg', Weight: 0.979643 +Vertex 1950: +Vertex groups: 4 + Group: 'Bone', Weight: 0.999388 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone.001', Weight: 0.082166 + Group: 'RightUpLeg', Weight: 0.990272 +Vertex 1951: +Vertex groups: 5 + Group: 'Bone', Weight: 0.999485 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone.001', Weight: 0.082155 + Group: 'RightUpLeg', Weight: 0.990193 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1952: +Vertex groups: 5 + Group: 'Bone', Weight: 0.999546 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone.001', Weight: 0.081629 + Group: 'RightUpLeg', Weight: 0.986318 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1953: +Vertex groups: 5 + Group: 'Bone', Weight: 0.999603 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone.001', Weight: 0.076639 + Group: 'RightUpLeg', Weight: 0.973852 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1954: +Vertex groups: 5 + Group: 'Bone', Weight: 0.424785 + Group: 'RightUpLeg', Weight: 0.408760 + Group: 'Bone2', Weight: 0.132974 + Group: 'Bone.001', Weight: 0.031186 + Group: 'Hips', Weight: 0.002296 +Vertex 1955: +Vertex groups: 5 + Group: 'Bone', Weight: 0.423595 + Group: 'RightUpLeg', Weight: 0.394911 + Group: 'Bone2', Weight: 0.129702 + Group: 'Bone.001', Weight: 0.030459 + Group: 'Hips', Weight: 0.021333 +Vertex 1956: +Vertex groups: 5 + Group: 'Bone', Weight: 0.461764 + Group: 'Bone2', Weight: 0.173171 + Group: 'RightUpLeg', Weight: 0.171914 + Group: 'Hips', Weight: 0.156512 + Group: 'Bone.001', Weight: 0.036639 +Vertex 1957: +Vertex groups: 5 + Group: 'Bone', Weight: 0.444253 + Group: 'RightUpLeg', Weight: 0.250630 + Group: 'Bone2', Weight: 0.167913 + Group: 'Hips', Weight: 0.102578 + Group: 'Bone.001', Weight: 0.034626 +Vertex 1958: +Vertex groups: 5 + Group: 'Bone', Weight: 0.429849 + Group: 'RightUpLeg', Weight: 0.304414 + Group: 'Bone2', Weight: 0.131580 + Group: 'Hips', Weight: 0.103256 + Group: 'Bone.001', Weight: 0.030900 +Vertex 1959: +Vertex groups: 5 + Group: 'Bone', Weight: 0.426453 + Group: 'RightUpLeg', Weight: 0.362512 + Group: 'Bone2', Weight: 0.133456 + Group: 'Hips', Weight: 0.046280 + Group: 'Bone.001', Weight: 0.031299 +Vertex 1960: +Vertex groups: 5 + Group: 'Bone', Weight: 0.423604 + Group: 'RightUpLeg', Weight: 0.380397 + Group: 'Bone2', Weight: 0.138819 + Group: 'Bone.001', Weight: 0.032467 + Group: 'Hips', Weight: 0.024714 +Vertex 1961: +Vertex groups: 5 + Group: 'Bone', Weight: 0.420945 + Group: 'RightUpLeg', Weight: 0.390422 + Group: 'Bone2', Weight: 0.148278 + Group: 'Bone.001', Weight: 0.034363 + Group: 'Hips', Weight: 0.005991 +Vertex 1962: +Vertex groups: 5 + Group: 'Bone', Weight: 0.413487 + Group: 'RightUpLeg', Weight: 0.391498 + Group: 'Bone2', Weight: 0.153510 + Group: 'Bone.001', Weight: 0.033978 + Group: 'Spine', Weight: 0.007527 +Vertex 1963: +Vertex groups: 5 + Group: 'Bone', Weight: 0.414511 + Group: 'RightUpLeg', Weight: 0.381309 + Group: 'Bone2', Weight: 0.155389 + Group: 'Bone.001', Weight: 0.032877 + Group: 'Spine', Weight: 0.015914 +Vertex 1964: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'RightLeg', Weight: 0.987070 +Vertex 1965: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightLeg', Weight: 0.987759 +Vertex 1966: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.990162 +Vertex 1967: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.993221 +Vertex 1968: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.995676 +Vertex 1969: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.996089 +Vertex 1970: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.996513 +Vertex 1971: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.087994 + Group: 'RightLeg', Weight: 0.993907 +Vertex 1972: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.994883 +Vertex 1973: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999975 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.987831 +Vertex 1974: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.989769 +Vertex 1975: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.990446 +Vertex 1976: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.991466 +Vertex 1977: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.992578 +Vertex 1978: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.993162 +Vertex 1979: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.995845 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.992284 +Vertex 1980: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.995752 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.990343 +Vertex 1981: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.996496 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.990696 +Vertex 1982: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.997502 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.991804 +Vertex 1983: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.998383 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.992530 +Vertex 1984: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999112 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.994005 +Vertex 1985: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.996907 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.994898 +Vertex 1986: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.996395 + Group: 'Bone.001', Weight: 0.087994 + Group: 'RightLeg', Weight: 0.993887 +Vertex 1987: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.997675 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.996137 +Vertex 1988: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.998713 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.998155 +Vertex 1989: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999246 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.998374 +Vertex 1990: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999542 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.997985 +Vertex 1991: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999791 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.997030 +Vertex 1992: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999812 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightLeg', Weight: 0.996162 +Vertex 1993: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999692 + Group: 'Bone.001', Weight: 0.130631 + Group: 'RightLeg', Weight: 0.995290 +Vertex 1994: +Vertex groups: 5 + Group: 'Bone', Weight: 0.422980 + Group: 'RightUpLeg', Weight: 0.335607 + Group: 'Bone2', Weight: 0.160790 + Group: 'Hips', Weight: 0.047689 + Group: 'Bone.001', Weight: 0.032933 +Vertex 1995: +Vertex groups: 5 + Group: 'Bone', Weight: 0.420148 + Group: 'RightUpLeg', Weight: 0.365849 + Group: 'Bone2', Weight: 0.158769 + Group: 'Bone.001', Weight: 0.032740 + Group: 'Hips', Weight: 0.022494 +Vertex 1996: +Vertex groups: 5 + Group: 'Bone', Weight: 0.439585 + Group: 'RightUpLeg', Weight: 0.253451 + Group: 'Bone2', Weight: 0.144067 + Group: 'Hips', Weight: 0.129203 + Group: 'Bone.001', Weight: 0.033694 +Vertex 1997: +Vertex groups: 5 + Group: 'Bone', Weight: 0.481678 + Group: 'Hips', Weight: 0.173425 + Group: 'Bone2', Weight: 0.169693 + Group: 'RightUpLeg', Weight: 0.135877 + Group: 'Bone.001', Weight: 0.039326 +Vertex 1998: +Vertex groups: 5 + Group: 'Bone', Weight: 0.414459 + Group: 'RightUpLeg', Weight: 0.368978 + Group: 'Bone2', Weight: 0.156852 + Group: 'Bone.001', Weight: 0.032345 + Group: 'Hips', Weight: 0.027366 +Vertex 1999: +Vertex groups: 5 + Group: 'Bone', Weight: 0.427812 + Group: 'RightUpLeg', Weight: 0.338296 + Group: 'Bone2', Weight: 0.160651 + Group: 'Hips', Weight: 0.039251 + Group: 'Bone.001', Weight: 0.033991 +Vertex 2000: +Vertex groups: 5 + Group: 'Bone', Weight: 0.443646 + Group: 'RightUpLeg', Weight: 0.319031 + Group: 'Bone2', Weight: 0.164938 + Group: 'Bone.001', Weight: 0.036507 + Group: 'Hips', Weight: 0.035878 +Vertex 2001: +Vertex groups: 5 + Group: 'Bone', Weight: 0.507890 + Group: 'RightUpLeg', Weight: 0.221303 + Group: 'Bone2', Weight: 0.183309 + Group: 'Hips', Weight: 0.045730 + Group: 'Bone.001', Weight: 0.041768 +Vertex 2002: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.282869 + Group: 'Bone', Weight: 0.262095 + Group: 'Bone1', Weight: 0.160702 + Group: 'Bone2', Weight: 0.154834 + Group: 'RightLeg', Weight: 0.139500 +Vertex 2003: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.284559 + Group: 'Bone', Weight: 0.254956 + Group: 'Bone1', Weight: 0.167621 + Group: 'Bone2', Weight: 0.155146 + Group: 'RightLeg', Weight: 0.137719 +Vertex 2004: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.324946 + Group: 'RightLeg', Weight: 0.297416 + Group: 'Bone2', Weight: 0.162703 + Group: 'RightUpLeg', Weight: 0.121138 + Group: 'Bone', Weight: 0.093797 +Vertex 2005: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.308951 + Group: 'RightLeg', Weight: 0.299678 + Group: 'Bone2', Weight: 0.162501 + Group: 'RightUpLeg', Weight: 0.119001 + Group: 'Bone', Weight: 0.109868 +Vertex 2006: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.336465 + Group: 'Bone', Weight: 0.332527 + Group: 'Bone2', Weight: 0.145298 + Group: 'Bone1', Weight: 0.092989 + Group: 'RightLeg', Weight: 0.092721 +Vertex 2007: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.338503 + Group: 'Bone', Weight: 0.320665 + Group: 'Bone2', Weight: 0.146011 + Group: 'Bone1', Weight: 0.104058 + Group: 'RightLeg', Weight: 0.090762 +Vertex 2008: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.275365 + Group: 'Bone1', Weight: 0.221302 + Group: 'Bone', Weight: 0.200907 + Group: 'Bone2', Weight: 0.155790 + Group: 'RightLeg', Weight: 0.146636 +Vertex 2009: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.304650 + Group: 'RightLeg', Weight: 0.281383 + Group: 'Bone2', Weight: 0.162698 + Group: 'RightUpLeg', Weight: 0.137213 + Group: 'Bone', Weight: 0.114056 +Vertex 2010: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.317960 + Group: 'Bone', Weight: 0.281449 + Group: 'Bone2', Weight: 0.148779 + Group: 'Bone1', Weight: 0.142937 + Group: 'RightLeg', Weight: 0.108875 +Vertex 2011: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.247026 + Group: 'Bone1', Weight: 0.236982 + Group: 'RightLeg', Weight: 0.190174 + Group: 'Bone2', Weight: 0.164902 + Group: 'Bone', Weight: 0.160916 +Vertex 2012: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.289420 + Group: 'RightLeg', Weight: 0.263770 + Group: 'Bone2', Weight: 0.169694 + Group: 'RightUpLeg', Weight: 0.169625 + Group: 'Bone', Weight: 0.107491 +Vertex 2013: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.351906 + Group: 'Bone', Weight: 0.191014 + Group: 'Bone2', Weight: 0.185363 + Group: 'RightLeg', Weight: 0.154408 + Group: 'Bone1', Weight: 0.117310 +Vertex 2014: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.283159 + Group: 'RightLeg', Weight: 0.276932 + Group: 'Bone2', Weight: 0.174392 + Group: 'RightUpLeg', Weight: 0.167742 + Group: 'Bone', Weight: 0.097776 +Vertex 2015: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.317680 + Group: 'Bone1', Weight: 0.245779 + Group: 'Bone2', Weight: 0.173133 + Group: 'RightLeg', Weight: 0.137081 + Group: 'Bone', Weight: 0.126327 +Vertex 2016: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.379071 + Group: 'Bone2', Weight: 0.211759 + Group: 'RightLeg', Weight: 0.174185 + Group: 'Bone', Weight: 0.161648 + Group: 'Bone1', Weight: 0.073337 +Vertex 2017: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.366868 + Group: 'Bone2', Weight: 0.208213 + Group: 'RightLeg', Weight: 0.166829 + Group: 'Bone', Weight: 0.164308 + Group: 'Bone1', Weight: 0.093782 +Vertex 2018: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.354467 + Group: 'Bone2', Weight: 0.212804 + Group: 'RightLeg', Weight: 0.183017 + Group: 'Bone', Weight: 0.178228 + Group: 'Bone1', Weight: 0.071485 +Vertex 2019: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.367726 + Group: 'Bone2', Weight: 0.212610 + Group: 'Bone', Weight: 0.173239 + Group: 'RightLeg', Weight: 0.172023 + Group: 'Bone1', Weight: 0.074402 +Vertex 2020: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.378816 + Group: 'RightLeg', Weight: 0.347772 + Group: 'Bone2', Weight: 0.170001 + Group: 'RightUpLeg', Weight: 0.060683 + Group: 'Bone.001', Weight: 0.042728 +Vertex 2021: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.373641 + Group: 'RightLeg', Weight: 0.359451 + Group: 'Bone2', Weight: 0.171229 + Group: 'RightUpLeg', Weight: 0.052831 + Group: 'Bone.001', Weight: 0.042848 +Vertex 2022: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.381499 + Group: 'RightLeg', Weight: 0.358332 + Group: 'Bone2', Weight: 0.175152 + Group: 'Bone.001', Weight: 0.045645 + Group: 'RightUpLeg', Weight: 0.039372 +Vertex 2023: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.380184 + Group: 'RightLeg', Weight: 0.364649 + Group: 'Bone2', Weight: 0.175134 + Group: 'Bone.001', Weight: 0.045333 + Group: 'RightUpLeg', Weight: 0.034700 +Vertex 2024: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.362672 + Group: 'RightLeg', Weight: 0.352734 + Group: 'Bone2', Weight: 0.171294 + Group: 'RightUpLeg', Weight: 0.061588 + Group: 'Bone', Weight: 0.051712 +Vertex 2025: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.376786 + Group: 'RightLeg', Weight: 0.366968 + Group: 'Bone2', Weight: 0.174247 + Group: 'Bone.001', Weight: 0.044085 + Group: 'RightUpLeg', Weight: 0.037914 +Vertex 2026: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.341399 + Group: 'RightLeg', Weight: 0.323995 + Group: 'Bone2', Weight: 0.171694 + Group: 'RightUpLeg', Weight: 0.096291 + Group: 'Bone', Weight: 0.066620 +Vertex 2027: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.358851 + Group: 'Bone1', Weight: 0.352085 + Group: 'Bone2', Weight: 0.177562 + Group: 'RightUpLeg', Weight: 0.062063 + Group: 'Bone', Weight: 0.049440 +Vertex 2028: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.374051 + Group: 'Bone1', Weight: 0.295200 + Group: 'Bone2', Weight: 0.187318 + Group: 'RightUpLeg', Weight: 0.077694 + Group: 'Bone', Weight: 0.065737 +Vertex 2029: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.376799 + Group: 'Bone1', Weight: 0.245696 + Group: 'Bone2', Weight: 0.200228 + Group: 'RightUpLeg', Weight: 0.099324 + Group: 'Bone', Weight: 0.077954 +Vertex 2030: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.369622 + Group: 'Bone1', Weight: 0.236144 + Group: 'Bone2', Weight: 0.199617 + Group: 'RightUpLeg', Weight: 0.102625 + Group: 'Bone', Weight: 0.091992 +Vertex 2031: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.323599 + Group: 'Bone1', Weight: 0.233997 + Group: 'Bone2', Weight: 0.198100 + Group: 'RightUpLeg', Weight: 0.142245 + Group: 'Bone', Weight: 0.102059 +Vertex 2032: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.341410 + Group: 'Bone1', Weight: 0.234342 + Group: 'Bone2', Weight: 0.199421 + Group: 'RightUpLeg', Weight: 0.126854 + Group: 'Bone', Weight: 0.097974 +Vertex 2033: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.274447 + Group: 'Bone1', Weight: 0.217309 + Group: 'Bone', Weight: 0.205020 + Group: 'Bone2', Weight: 0.155834 + Group: 'RightLeg', Weight: 0.147390 +Vertex 2034: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.317132 + Group: 'RightLeg', Weight: 0.277540 + Group: 'Bone2', Weight: 0.162721 + Group: 'RightUpLeg', Weight: 0.140975 + Group: 'Bone', Weight: 0.101632 +Vertex 2035: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.321628 + Group: 'Bone', Weight: 0.306506 + Group: 'Bone2', Weight: 0.148444 + Group: 'Bone1', Weight: 0.119637 + Group: 'RightLeg', Weight: 0.103786 +Vertex 2036: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.248733 + Group: 'Bone1', Weight: 0.223705 + Group: 'Bone', Weight: 0.197177 + Group: 'RightLeg', Weight: 0.171680 + Group: 'Bone2', Weight: 0.158705 +Vertex 2037: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.291867 + Group: 'RightLeg', Weight: 0.258422 + Group: 'Bone2', Weight: 0.163743 + Group: 'RightUpLeg', Weight: 0.159558 + Group: 'Bone', Weight: 0.126410 +Vertex 2038: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.282481 + Group: 'Bone', Weight: 0.262298 + Group: 'Bone1', Weight: 0.160608 + Group: 'Bone2', Weight: 0.154789 + Group: 'RightLeg', Weight: 0.139823 +Vertex 2039: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.275479 + Group: 'RightLeg', Weight: 0.253331 + Group: 'RightUpLeg', Weight: 0.164525 + Group: 'Bone2', Weight: 0.163973 + Group: 'Bone', Weight: 0.142691 +Vertex 2040: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.236359 + Group: 'Bone1', Weight: 0.218268 + Group: 'Bone', Weight: 0.201963 + Group: 'RightLeg', Weight: 0.183439 + Group: 'Bone2', Weight: 0.159971 +Vertex 2041: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.306331 + Group: 'Bone', Weight: 0.226953 + Group: 'RightLeg', Weight: 0.197035 + Group: 'Bone2', Weight: 0.192886 + Group: 'Bone1', Weight: 0.076795 +Vertex 2042: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.321752 + Group: 'Bone2', Weight: 0.203272 + Group: 'RightLeg', Weight: 0.198718 + Group: 'Bone', Weight: 0.192587 + Group: 'Bone1', Weight: 0.083671 +Vertex 2043: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.353329 + Group: 'Bone2', Weight: 0.213412 + Group: 'RightLeg', Weight: 0.188129 + Group: 'Bone', Weight: 0.187261 + Group: 'Bone1', Weight: 0.057869 +Vertex 2044: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.369187 + Group: 'RightLeg', Weight: 0.342587 + Group: 'Bone2', Weight: 0.171308 + Group: 'RightUpLeg', Weight: 0.071688 + Group: 'Bone', Weight: 0.045230 +Vertex 2045: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.377208 + Group: 'RightLeg', Weight: 0.353196 + Group: 'Bone2', Weight: 0.174149 + Group: 'RightUpLeg', Weight: 0.051386 + Group: 'Bone.001', Weight: 0.044060 +Vertex 2046: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.339685 + Group: 'RightLeg', Weight: 0.309641 + Group: 'Bone2', Weight: 0.169630 + Group: 'RightUpLeg', Weight: 0.105441 + Group: 'Bone', Weight: 0.075603 +Vertex 2047: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.343194 + Group: 'RightLeg', Weight: 0.318892 + Group: 'Bone2', Weight: 0.174207 + Group: 'RightUpLeg', Weight: 0.093910 + Group: 'Bone', Weight: 0.069798 +Vertex 2048: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.310927 + Group: 'RightLeg', Weight: 0.287316 + Group: 'Bone2', Weight: 0.171760 + Group: 'RightUpLeg', Weight: 0.126683 + Group: 'Bone', Weight: 0.103314 +Vertex 2049: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.299683 + Group: 'Bone1', Weight: 0.232098 + Group: 'Bone2', Weight: 0.191879 + Group: 'RightUpLeg', Weight: 0.156297 + Group: 'Bone', Weight: 0.120043 +Vertex 2050: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.290902 + Group: 'Bone1', Weight: 0.235504 + Group: 'Bone2', Weight: 0.193522 + Group: 'RightUpLeg', Weight: 0.166645 + Group: 'Bone', Weight: 0.113428 +Vertex 2051: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.307130 + Group: 'Bone1', Weight: 0.233992 + Group: 'Bone2', Weight: 0.196825 + Group: 'RightUpLeg', Weight: 0.154892 + Group: 'Bone', Weight: 0.107161 +Vertex 2052: +Vertex groups: 5 + Group: 'Bone', Weight: 0.403268 + Group: 'RightUpLeg', Weight: 0.370627 + Group: 'Bone2', Weight: 0.154940 + Group: 'RightLeg', Weight: 0.039213 + Group: 'Bone.001', Weight: 0.031951 +Vertex 2053: +Vertex groups: 5 + Group: 'Bone', Weight: 0.402793 + Group: 'RightUpLeg', Weight: 0.348147 + Group: 'Bone2', Weight: 0.155195 + Group: 'RightLeg', Weight: 0.061863 + Group: 'Bone.001', Weight: 0.032003 +Vertex 2054: +Vertex groups: 5 + Group: 'Bone', Weight: 0.414902 + Group: 'RightUpLeg', Weight: 0.364738 + Group: 'Bone2', Weight: 0.136881 + Group: 'RightLeg', Weight: 0.051466 + Group: 'Bone.001', Weight: 0.032013 +Vertex 2055: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.312920 + Group: 'Bone.001', Weight: 0.073388 + Group: 'Bone', Weight: 0.994168 + Group: 'RightUpLeg', Weight: 0.919339 + Group: 'RightLeg', Weight: 0.078621 +Vertex 2056: +Vertex groups: 5 + Group: 'Bone', Weight: 0.403063 + Group: 'RightUpLeg', Weight: 0.332661 + Group: 'Bone2', Weight: 0.154119 + Group: 'RightLeg', Weight: 0.077549 + Group: 'Bone.001', Weight: 0.032608 +Vertex 2057: +Vertex groups: 5 + Group: 'Bone', Weight: 0.404042 + Group: 'RightUpLeg', Weight: 0.332815 + Group: 'Bone2', Weight: 0.152487 + Group: 'RightLeg', Weight: 0.076905 + Group: 'Bone.001', Weight: 0.033751 +Vertex 2058: +Vertex groups: 5 + Group: 'Bone', Weight: 0.403916 + Group: 'RightUpLeg', Weight: 0.377617 + Group: 'Bone2', Weight: 0.153678 + Group: 'Bone.001', Weight: 0.032515 + Group: 'RightLeg', Weight: 0.032274 +Vertex 2059: +Vertex groups: 5 + Group: 'Bone', Weight: 0.402709 + Group: 'RightUpLeg', Weight: 0.361225 + Group: 'Bone2', Weight: 0.155832 + Group: 'RightLeg', Weight: 0.048317 + Group: 'Bone.001', Weight: 0.031918 +Vertex 2060: +Vertex groups: 5 + Group: 'Bone', Weight: 0.406748 + Group: 'RightUpLeg', Weight: 0.334554 + Group: 'Bone2', Weight: 0.148523 + Group: 'RightLeg', Weight: 0.076333 + Group: 'Bone.001', Weight: 0.033842 +Vertex 2061: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.306079 + Group: 'Bone.001', Weight: 0.071880 + Group: 'Bone', Weight: 0.994634 + Group: 'RightUpLeg', Weight: 0.903611 + Group: 'RightLeg', Weight: 0.092911 +Vertex 2062: +Vertex groups: 5 + Group: 'Bone', Weight: 0.409076 + Group: 'RightUpLeg', Weight: 0.345747 + Group: 'Bone2', Weight: 0.145448 + Group: 'RightLeg', Weight: 0.066021 + Group: 'Bone.001', Weight: 0.033708 +Vertex 2063: +Vertex groups: 5 + Group: 'Bone', Weight: 0.404595 + Group: 'RightUpLeg', Weight: 0.378029 + Group: 'Bone2', Weight: 0.152091 + Group: 'Bone.001', Weight: 0.033664 + Group: 'RightLeg', Weight: 0.031621 +Vertex 2064: +Vertex groups: 5 + Group: 'Bone', Weight: 0.406783 + Group: 'RightUpLeg', Weight: 0.377111 + Group: 'Bone2', Weight: 0.148281 + Group: 'RightLeg', Weight: 0.034038 + Group: 'Bone.001', Weight: 0.033787 +Vertex 2065: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone', Weight: 0.992900 + Group: 'RightUpLeg', Weight: 0.920032 + Group: 'RightLeg', Weight: 0.078772 +Vertex 2066: +Vertex groups: 5 + Group: 'Bone', Weight: 0.408701 + Group: 'RightUpLeg', Weight: 0.375406 + Group: 'Bone2', Weight: 0.145303 + Group: 'RightLeg', Weight: 0.036915 + Group: 'Bone.001', Weight: 0.033674 +Vertex 2067: +Vertex groups: 5 + Group: 'Bone', Weight: 0.408198 + Group: 'RightUpLeg', Weight: 0.395136 + Group: 'Bone2', Weight: 0.155867 + Group: 'Bone.001', Weight: 0.032142 + Group: 'RightLeg', Weight: 0.008657 +Vertex 2068: +Vertex groups: 5 + Group: 'Bone', Weight: 0.418891 + Group: 'RightUpLeg', Weight: 0.400321 + Group: 'Bone2', Weight: 0.137762 + Group: 'Bone.001', Weight: 0.032220 + Group: 'RightLeg', Weight: 0.010806 +Vertex 2069: +Vertex groups: 5 + Group: 'Bone', Weight: 0.991063 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'RightUpLeg', Weight: 0.937776 + Group: 'RightLeg', Weight: 0.053764 +Vertex 2070: +Vertex groups: 4 + Group: 'Bone', Weight: 0.992172 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone2', Weight: 0.374821 + Group: 'RightUpLeg', Weight: 0.985605 +Vertex 2071: +Vertex groups: 4 + Group: 'Bone', Weight: 0.994309 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'RightUpLeg', Weight: 0.985461 +Vertex 2072: +Vertex groups: 4 + Group: 'Bone', Weight: 0.995136 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone2', Weight: 0.352227 + Group: 'RightUpLeg', Weight: 0.981350 +Vertex 2073: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.077910 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone', Weight: 0.991126 + Group: 'RightUpLeg', Weight: 0.979876 +Vertex 2074: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.073388 + Group: 'Bone2', Weight: 0.312920 + Group: 'Bone', Weight: 0.996896 + Group: 'RightUpLeg', Weight: 0.972216 +Vertex 2075: +Vertex groups: 5 + Group: 'Bone', Weight: 0.406520 + Group: 'RightUpLeg', Weight: 0.387691 + Group: 'Bone2', Weight: 0.154036 + Group: 'Bone.001', Weight: 0.032591 + Group: 'RightLeg', Weight: 0.019162 +Vertex 2076: +Vertex groups: 5 + Group: 'Bone', Weight: 0.409338 + Group: 'RightUpLeg', Weight: 0.400772 + Group: 'Bone2', Weight: 0.157075 + Group: 'Bone.001', Weight: 0.032172 + Group: 'RightLeg', Weight: 0.000642 +Vertex 2077: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone', Weight: 0.993213 + Group: 'RightUpLeg', Weight: 0.938844 + Group: 'RightLeg', Weight: 0.051712 +Vertex 2078: +Vertex groups: 5 + Group: 'Bone', Weight: 0.424908 + Group: 'RightUpLeg', Weight: 0.409960 + Group: 'Bone2', Weight: 0.130430 + Group: 'Bone.001', Weight: 0.030630 + Group: 'RightLeg', Weight: 0.004072 +Vertex 2079: +Vertex groups: 5 + Group: 'Bone', Weight: 0.411725 + Group: 'RightUpLeg', Weight: 0.390084 + Group: 'Bone2', Weight: 0.145752 + Group: 'Bone.001', Weight: 0.033778 + Group: 'RightLeg', Weight: 0.018661 +Vertex 2080: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone', Weight: 0.993457 + Group: 'RightUpLeg', Weight: 0.987930 +Vertex 2081: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone', Weight: 0.996252 + Group: 'RightUpLeg', Weight: 0.976299 +Vertex 2082: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.993311 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightLeg', Weight: 0.986326 +Vertex 2083: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.386471 + Group: 'RightLeg', Weight: 0.374624 + Group: 'Bone2', Weight: 0.176721 + Group: 'Bone.001', Weight: 0.035599 + Group: 'RightUpLeg', Weight: 0.026585 +Vertex 2084: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.389740 + Group: 'RightLeg', Weight: 0.384480 + Group: 'Bone2', Weight: 0.174519 + Group: 'Bone.001', Weight: 0.042594 + Group: 'RightUpLeg', Weight: 0.008667 +Vertex 2085: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.394918 + Group: 'Bone1', Weight: 0.378207 + Group: 'Bone2', Weight: 0.179205 + Group: 'Bone.001', Weight: 0.037098 + Group: 'Bone', Weight: 0.010572 +Vertex 2086: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.993703 + Group: 'Bone2', Weight: 0.467316 + Group: 'RightLeg', Weight: 0.979522 +Vertex 2087: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.385542 + Group: 'RightLeg', Weight: 0.370175 + Group: 'Bone2', Weight: 0.176241 + Group: 'Bone.001', Weight: 0.036485 + Group: 'RightUpLeg', Weight: 0.031557 +Vertex 2088: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.987236 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightUpLeg', Weight: 0.008378 + Group: 'RightLeg', Weight: 0.970491 +Vertex 2089: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.386461 + Group: 'RightLeg', Weight: 0.378279 + Group: 'Bone2', Weight: 0.173596 + Group: 'Bone.001', Weight: 0.040641 + Group: 'RightUpLeg', Weight: 0.021023 +Vertex 2090: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.386441 + Group: 'RightLeg', Weight: 0.374899 + Group: 'Bone2', Weight: 0.173622 + Group: 'Bone.001', Weight: 0.038487 + Group: 'RightUpLeg', Weight: 0.026551 +Vertex 2091: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.106780 + Group: 'Bone1', Weight: 0.954507 + Group: 'Bone2', Weight: 0.437508 + Group: 'RightLeg', Weight: 0.991626 +Vertex 2092: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.385104 + Group: 'Bone1', Weight: 0.379231 + Group: 'Bone2', Weight: 0.178684 + Group: 'Bone.001', Weight: 0.035758 + Group: 'RightUpLeg', Weight: 0.021223 +Vertex 2093: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.389804 + Group: 'Bone1', Weight: 0.379391 + Group: 'Bone2', Weight: 0.179505 + Group: 'Bone.001', Weight: 0.036160 + Group: 'RightUpLeg', Weight: 0.015140 +Vertex 2094: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.991697 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.989355 +Vertex 2095: +Vertex groups: 5 + Group: 'Bone', Weight: 0.012908 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.931622 + Group: 'Bone2', Weight: 0.432383 + Group: 'RightLeg', Weight: 0.983745 +Vertex 2096: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone.001', Weight: 0.101754 + Group: 'Bone1', Weight: 0.931907 + Group: 'Bone', Weight: 0.004624 + Group: 'RightLeg', Weight: 0.989954 +Vertex 2097: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.394307 + Group: 'RightFoot', Weight: 0.340656 + Group: 'Bone2', Weight: 0.184268 + Group: 'Bone.001', Weight: 0.051510 + Group: 'RightLeg', Weight: 0.029260 +Vertex 2098: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392645 + Group: 'RightFoot', Weight: 0.336765 + Group: 'Bone2', Weight: 0.182604 + Group: 'Bone.001', Weight: 0.050486 + Group: 'RightLeg', Weight: 0.037500 +Vertex 2099: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393886 + Group: 'RightFoot', Weight: 0.348886 + Group: 'Bone2', Weight: 0.178626 + Group: 'Bone.001', Weight: 0.046949 + Group: 'RightLeg', Weight: 0.031652 +Vertex 2100: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.398074 + Group: 'RightFoot', Weight: 0.362945 + Group: 'Bone2', Weight: 0.174161 + Group: 'Bone.001', Weight: 0.042506 + Group: 'RightLeg', Weight: 0.022313 +Vertex 2101: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.011725 + Group: 'RightFoot', Weight: 0.948090 +Vertex 2102: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.026074 + Group: 'RightFoot', Weight: 0.955274 +Vertex 2103: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.140352 + Group: 'RightFoot', Weight: 0.854371 +Vertex 2104: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.087994 + Group: 'RightLeg', Weight: 0.241786 + Group: 'RightFoot', Weight: 0.752444 +Vertex 2105: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.222677 + Group: 'RightFoot', Weight: 0.772543 +Vertex 2106: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396436 + Group: 'RightFoot', Weight: 0.350805 + Group: 'Bone2', Weight: 0.179786 + Group: 'Bone.001', Weight: 0.047254 + Group: 'RightLeg', Weight: 0.025718 +Vertex 2107: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.398440 + Group: 'RightFoot', Weight: 0.356735 + Group: 'Bone2', Weight: 0.174326 + Group: 'Bone.001', Weight: 0.042547 + Group: 'RightLeg', Weight: 0.027953 +Vertex 2108: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.078382 + Group: 'RightFoot', Weight: 0.897005 +Vertex 2109: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.098336 + Group: 'RightFoot', Weight: 0.884242 +Vertex 2110: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.126546 + Group: 'RightFoot', Weight: 0.860873 +Vertex 2111: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.184283 + Group: 'RightFoot', Weight: 0.807639 +Vertex 2112: +Vertex groups: 5 + Group: 'Bone', Weight: 0.505235 + Group: 'Bone2', Weight: 0.190963 + Group: 'Hips', Weight: 0.185518 + Group: 'RightUpLeg', Weight: 0.078905 + Group: 'Bone.001', Weight: 0.039379 +Vertex 2113: +Vertex groups: 5 + Group: 'Bone', Weight: 0.540378 + Group: 'Bone2', Weight: 0.204245 + Group: 'Hips', Weight: 0.190945 + Group: 'Bone.001', Weight: 0.042118 + Group: 'RightUpLeg', Weight: 0.022313 +Vertex 2114: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightToeBase', Weight: 0.997674 +Vertex 2115: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightToeBase', Weight: 0.992369 +Vertex 2116: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.123765 + Group: 'Bone1', Weight: 0.999994 + Group: 'Bone2', Weight: 0.459127 + Group: 'RightToeBase', Weight: 0.997053 +Vertex 2117: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.121124 + Group: 'Bone1', Weight: 0.999995 + Group: 'Bone2', Weight: 0.455872 + Group: 'RightToeBase', Weight: 0.994768 +Vertex 2118: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightFoot', Weight: 0.203639 + Group: 'RightToeBase', Weight: 0.793222 +Vertex 2119: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightFoot', Weight: 0.036833 + Group: 'RightToeBase', Weight: 0.956002 +Vertex 2120: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightToeBase', Weight: 0.976395 +Vertex 2121: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119938 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.454410 + Group: 'RightToeBase', Weight: 0.975578 +Vertex 2122: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.085424 + Group: 'RightToeBase', Weight: 0.914327 +Vertex 2123: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119561 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453946 + Group: 'RightFoot', Weight: 0.075967 + Group: 'RightToeBase', Weight: 0.923818 +Vertex 2124: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.237879 + Group: 'RightToeBase', Weight: 0.761563 +Vertex 2125: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119426 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453780 + Group: 'RightFoot', Weight: 0.214618 + Group: 'RightToeBase', Weight: 0.784835 +Vertex 2126: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.911256 + Group: 'RightToeBase', Weight: 0.084567 +Vertex 2127: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119357 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453695 + Group: 'RightFoot', Weight: 0.796190 + Group: 'RightToeBase', Weight: 0.199140 +Vertex 2128: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396335 + Group: 'RightFoot', Weight: 0.373186 + Group: 'Bone2', Weight: 0.179737 + Group: 'Bone.001', Weight: 0.047241 + Group: 'RightToeBase', Weight: 0.003502 +Vertex 2129: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119269 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453586 + Group: 'RightFoot', Weight: 0.924170 + Group: 'RightToeBase', Weight: 0.055819 +Vertex 2130: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.050345 + Group: 'RightFoot', Weight: 0.927006 +Vertex 2131: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396314 + Group: 'RightFoot', Weight: 0.370354 + Group: 'Bone2', Weight: 0.179752 + Group: 'Bone.001', Weight: 0.047259 + Group: 'RightToeBase', Weight: 0.006321 +Vertex 2132: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.075257 + Group: 'RightFoot', Weight: 0.907937 +Vertex 2133: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119238 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453548 + Group: 'RightLeg', Weight: 0.037951 + Group: 'RightFoot', Weight: 0.931254 +Vertex 2134: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.075816 + Group: 'RightFoot', Weight: 0.906556 +Vertex 2135: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119237 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453546 + Group: 'RightLeg', Weight: 0.044715 + Group: 'RightFoot', Weight: 0.928227 +Vertex 2136: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.065750 + Group: 'RightFoot', Weight: 0.912722 +Vertex 2137: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.394328 + Group: 'RightFoot', Weight: 0.366340 + Group: 'Bone2', Weight: 0.178847 + Group: 'Bone.001', Weight: 0.047019 + Group: 'RightLeg', Weight: 0.013466 +Vertex 2138: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393167 + Group: 'RightFoot', Weight: 0.362331 + Group: 'Bone2', Weight: 0.178300 + Group: 'Bone.001', Weight: 0.046864 + Group: 'RightLeg', Weight: 0.019338 +Vertex 2139: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.395772 + Group: 'RightFoot', Weight: 0.367817 + Group: 'Bone2', Weight: 0.179505 + Group: 'Bone.001', Weight: 0.047194 + Group: 'RightToeBase', Weight: 0.009712 +Vertex 2140: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396275 + Group: 'RightFoot', Weight: 0.365434 + Group: 'Bone2', Weight: 0.179709 + Group: 'Bone.001', Weight: 0.047234 + Group: 'RightLeg', Weight: 0.011347 +Vertex 2141: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392598 + Group: 'RightFoot', Weight: 0.362221 + Group: 'Bone2', Weight: 0.178072 + Group: 'Bone.001', Weight: 0.046821 + Group: 'RightToeBase', Weight: 0.020288 +Vertex 2142: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.903773 + Group: 'RightToeBase', Weight: 0.075498 +Vertex 2143: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119304 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453629 + Group: 'RightFoot', Weight: 0.887536 + Group: 'RightToeBase', Weight: 0.098233 +Vertex 2144: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.644981 + Group: 'RightToeBase', Weight: 0.350473 +Vertex 2145: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119378 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453720 + Group: 'RightFoot', Weight: 0.495213 + Group: 'RightToeBase', Weight: 0.503105 +Vertex 2146: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119318 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453647 + Group: 'RightFoot', Weight: 0.843053 + Group: 'RightToeBase', Weight: 0.148255 +Vertex 2147: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.872582 + Group: 'RightToeBase', Weight: 0.113109 +Vertex 2148: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.314618 + Group: 'RightToeBase', Weight: 0.682784 +Vertex 2149: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119449 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453808 + Group: 'RightFoot', Weight: 0.222212 + Group: 'RightToeBase', Weight: 0.776822 +Vertex 2150: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.148505 + Group: 'RightToeBase', Weight: 0.850139 +Vertex 2151: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119568 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453955 + Group: 'RightFoot', Weight: 0.129279 + Group: 'RightToeBase', Weight: 0.870059 +Vertex 2152: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.062794 + Group: 'RightToeBase', Weight: 0.936626 +Vertex 2153: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119859 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.454314 + Group: 'RightFoot', Weight: 0.060320 + Group: 'RightToeBase', Weight: 0.939306 +Vertex 2154: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.003286 + Group: 'RightToeBase', Weight: 0.973098 +Vertex 2155: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.120824 + Group: 'Bone1', Weight: 0.999995 + Group: 'Bone2', Weight: 0.455503 + Group: 'RightFoot', Weight: 0.003381 + Group: 'RightToeBase', Weight: 0.973117 +Vertex 2156: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'RightToeBase', Weight: 0.989706 +Vertex 2157: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.122873 + Group: 'Bone1', Weight: 0.999994 + Group: 'Bone2', Weight: 0.458028 + Group: 'RightToeBase', Weight: 0.988336 +Vertex 2158: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.144499 + Group: 'RightToeBase', Weight: 0.853967 +Vertex 2159: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightFoot', Weight: 0.141079 + Group: 'RightToeBase', Weight: 0.856892 +Vertex 2160: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.394427 + Group: 'RightFoot', Weight: 0.359441 + Group: 'Bone2', Weight: 0.178871 + Group: 'Bone.001', Weight: 0.047014 + Group: 'RightToeBase', Weight: 0.020247 +Vertex 2161: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'RightToeBase', Weight: 0.997922 +Vertex 2162: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.122866 + Group: 'Bone1', Weight: 0.999994 + Group: 'Bone2', Weight: 0.458019 + Group: 'RightToeBase', Weight: 0.997938 +Vertex 2163: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.892739 + Group: 'RightToeBase', Weight: 0.084078 +Vertex 2164: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.699526 + Group: 'RightToeBase', Weight: 0.290916 +Vertex 2165: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.353200 + Group: 'RightToeBase', Weight: 0.641954 +Vertex 2166: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.157719 + Group: 'RightToeBase', Weight: 0.840236 +Vertex 2167: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.059939 + Group: 'RightToeBase', Weight: 0.939372 +Vertex 2168: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.007598 + Group: 'RightToeBase', Weight: 0.970866 +Vertex 2169: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightFoot', Weight: 0.096197 + Group: 'RightToeBase', Weight: 0.902415 +Vertex 2170: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightToeBase', Weight: 0.987656 +Vertex 2171: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightToeBase', Weight: 0.996476 +Vertex 2172: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightToeBase', Weight: 0.988566 +Vertex 2173: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightToeBase', Weight: 0.983268 +Vertex 2174: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.020440 + Group: 'RightToeBase', Weight: 0.964615 +Vertex 2175: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.115006 + Group: 'RightToeBase', Weight: 0.884582 +Vertex 2176: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.273572 + Group: 'RightToeBase', Weight: 0.725697 +Vertex 2177: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.939661 + Group: 'RightToeBase', Weight: 0.055586 +Vertex 2178: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.016374 + Group: 'RightFoot', Weight: 0.955267 +Vertex 2179: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.093308 + Group: 'RightFoot', Weight: 0.895918 +Vertex 2180: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.118549 + Group: 'RightFoot', Weight: 0.870536 +Vertex 2181: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.134357 + Group: 'RightFoot', Weight: 0.854788 +Vertex 2182: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.113377 + Group: 'RightFoot', Weight: 0.873447 +Vertex 2183: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.083078 + Group: 'RightFoot', Weight: 0.898357 +Vertex 2184: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392632 + Group: 'RightFoot', Weight: 0.358083 + Group: 'Bone2', Weight: 0.178057 + Group: 'Bone.001', Weight: 0.046800 + Group: 'RightLeg', Weight: 0.024427 +Vertex 2185: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightToeBase', Weight: 0.996806 +Vertex 2186: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.391667 + Group: 'RightFoot', Weight: 0.340054 + Group: 'Bone2', Weight: 0.182149 + Group: 'Bone.001', Weight: 0.050360 + Group: 'RightToeBase', Weight: 0.035770 +Vertex 2187: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393027 + Group: 'RightFoot', Weight: 0.353914 + Group: 'Bone2', Weight: 0.178237 + Group: 'Bone.001', Weight: 0.046847 + Group: 'RightToeBase', Weight: 0.027975 +Vertex 2188: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightFoot', Weight: 0.046432 + Group: 'RightToeBase', Weight: 0.951106 +Vertex 2189: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.050631 + Group: 'RightToeBase', Weight: 0.948835 +Vertex 2190: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightToeBase', Weight: 0.994410 +Vertex 2191: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightToeBase', Weight: 0.994240 +Vertex 2192: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightToeBase', Weight: 0.979810 +Vertex 2193: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightFoot', Weight: 0.336081 + Group: 'RightToeBase', Weight: 0.658740 +Vertex 2194: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.332378 + Group: 'RightToeBase', Weight: 0.663794 +Vertex 2195: +Vertex groups: 5 + Group: 'Bone', Weight: 0.468209 + Group: 'Hips', Weight: 0.274612 + Group: 'Bone2', Weight: 0.164948 + Group: 'RightUpLeg', Weight: 0.054003 + Group: 'Bone.001', Weight: 0.038227 +Vertex 2196: +Vertex groups: 5 + Group: 'Bone', Weight: 0.416697 + Group: 'RightUpLeg', Weight: 0.394391 + Group: 'Bone2', Weight: 0.150321 + Group: 'Bone.001', Weight: 0.034251 + Group: 'Spine', Weight: 0.004340 +Vertex 2197: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightToeBase', Weight: 0.985563 +Vertex 2198: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightToeBase', Weight: 0.987460 +Vertex 2199: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.012846 + Group: 'RightToeBase', Weight: 0.968311 +Vertex 2200: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.070836 + Group: 'RightToeBase', Weight: 0.928552 +Vertex 2201: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.290325 + Group: 'RightToeBase', Weight: 0.707198 +Vertex 2202: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.909170 + Group: 'RightToeBase', Weight: 0.067936 +Vertex 2203: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.390635 + Group: 'RightFoot', Weight: 0.330560 + Group: 'Bone2', Weight: 0.182553 + Group: 'Bone.001', Weight: 0.051030 + Group: 'RightToeBase', Weight: 0.045221 +Vertex 2204: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'RightFoot', Weight: 0.258643 + Group: 'RightToeBase', Weight: 0.737225 +Vertex 2205: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'RightFoot', Weight: 0.045180 + Group: 'RightToeBase', Weight: 0.951735 +Vertex 2206: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'RightToeBase', Weight: 0.975359 +Vertex 2207: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.036056 + Group: 'RightToeBase', Weight: 0.956727 +Vertex 2208: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.246950 + Group: 'RightToeBase', Weight: 0.752090 +Vertex 2209: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.934067 + Group: 'RightToeBase', Weight: 0.058578 +Vertex 2210: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.137494 + Group: 'RightToeBase', Weight: 0.861333 +Vertex 2211: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'RightFoot', Weight: 0.113778 + Group: 'RightToeBase', Weight: 0.884510 +Vertex 2212: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.113028 + Group: 'RightToeBase', Weight: 0.886433 +Vertex 2213: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightFoot', Weight: 0.417374 + Group: 'RightToeBase', Weight: 0.575481 +Vertex 2214: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.762265 + Group: 'RightToeBase', Weight: 0.236245 +Vertex 2215: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119393 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453739 + Group: 'RightFoot', Weight: 0.587199 + Group: 'RightToeBase', Weight: 0.411189 +Vertex 2216: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.721479 + Group: 'RightToeBase', Weight: 0.277041 +Vertex 2217: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.718357 + Group: 'RightToeBase', Weight: 0.273286 +Vertex 2218: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightFoot', Weight: 0.684447 + Group: 'RightToeBase', Weight: 0.303862 +Vertex 2219: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.684865 + Group: 'RightToeBase', Weight: 0.309358 +Vertex 2220: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'RightFoot', Weight: 0.546616 + Group: 'RightToeBase', Weight: 0.444209 +Vertex 2221: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.712745 + Group: 'RightToeBase', Weight: 0.284642 +Vertex 2222: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightFoot', Weight: 0.741968 + Group: 'RightToeBase', Weight: 0.241379 +Vertex 2223: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.389933 + Group: 'RightFoot', Weight: 0.335313 + Group: 'Bone2', Weight: 0.181345 + Group: 'Bone.001', Weight: 0.050138 + Group: 'RightToeBase', Weight: 0.043271 +Vertex 2224: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119345 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453680 + Group: 'RightFoot', Weight: 0.738496 + Group: 'RightToeBase', Weight: 0.257174 +Vertex 2225: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.794679 + Group: 'RightToeBase', Weight: 0.197265 +Vertex 2226: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.841532 + Group: 'RightToeBase', Weight: 0.142140 +Vertex 2227: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightLeg', Weight: 0.219432 + Group: 'RightFoot', Weight: 0.765530 +Vertex 2228: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.193853 + Group: 'RightFoot', Weight: 0.793764 +Vertex 2229: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.432383 + Group: 'RightLeg', Weight: 0.288708 + Group: 'RightFoot', Weight: 0.706411 +Vertex 2230: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.101754 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone2', Weight: 0.434634 + Group: 'RightLeg', Weight: 0.228242 + Group: 'RightFoot', Weight: 0.763575 +Vertex 2231: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.106780 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.437508 + Group: 'RightLeg', Weight: 0.155986 + Group: 'RightFoot', Weight: 0.834630 +Vertex 2232: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.101754 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.434634 + Group: 'RightLeg', Weight: 0.120757 + Group: 'RightFoot', Weight: 0.874029 +Vertex 2233: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.432383 + Group: 'RightLeg', Weight: 0.098418 + Group: 'RightFoot', Weight: 0.900611 +Vertex 2234: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.090799 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone2', Weight: 0.438608 + Group: 'RightLeg', Weight: 0.436005 + Group: 'RightFoot', Weight: 0.563589 +Vertex 2235: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.088715 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone2', Weight: 0.440400 + Group: 'RightLeg', Weight: 0.472042 + Group: 'RightFoot', Weight: 0.527378 +Vertex 2236: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'RightLeg', Weight: 0.197604 + Group: 'RightFoot', Weight: 0.784563 +Vertex 2237: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.106780 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone2', Weight: 0.437508 + Group: 'RightLeg', Weight: 0.196950 + Group: 'RightFoot', Weight: 0.791466 +Vertex 2238: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.088715 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone2', Weight: 0.440400 + Group: 'RightLeg', Weight: 0.432647 + Group: 'RightFoot', Weight: 0.565310 +Vertex 2239: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.090799 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone2', Weight: 0.438608 + Group: 'RightLeg', Weight: 0.399369 + Group: 'RightFoot', Weight: 0.597717 +Vertex 2240: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.087994 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.439706 + Group: 'RightLeg', Weight: 0.466617 + Group: 'RightFoot', Weight: 0.532207 +Vertex 2241: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999975 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.178382 + Group: 'RightFoot', Weight: 0.806169 +Vertex 2242: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119273 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453591 + Group: 'RightFoot', Weight: 0.911614 + Group: 'RightToeBase', Weight: 0.067991 +Vertex 2243: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393485 + Group: 'RightFoot', Weight: 0.361270 + Group: 'Bone2', Weight: 0.178444 + Group: 'Bone.001', Weight: 0.046902 + Group: 'RightToeBase', Weight: 0.019898 +Vertex 2244: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393851 + Group: 'RightFoot', Weight: 0.360776 + Group: 'Bone2', Weight: 0.178610 + Group: 'Bone.001', Weight: 0.046945 + Group: 'RightLeg', Weight: 0.019818 +Vertex 2245: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119301 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453625 + Group: 'RightFoot', Weight: 0.868311 + Group: 'RightToeBase', Weight: 0.123315 +Vertex 2246: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.962612 + Group: 'RightToeBase', Weight: 0.004607 +Vertex 2247: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.098800 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.433508 + Group: 'RightFoot', Weight: 0.972301 +Vertex 2248: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.098800 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.433508 + Group: 'RightLeg', Weight: 0.008037 + Group: 'RightFoot', Weight: 0.963975 +Vertex 2249: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'RightToeBase', Weight: 0.998577 +Vertex 2250: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightToeBase', Weight: 0.998205 +Vertex 2251: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightToeBase', Weight: 0.991711 +Vertex 2252: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightToeBase', Weight: 0.974952 +Vertex 2253: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.082571 + Group: 'RightToeBase', Weight: 0.917199 +Vertex 2254: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.222109 + Group: 'RightToeBase', Weight: 0.777331 +Vertex 2255: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.684778 + Group: 'RightToeBase', Weight: 0.313450 +Vertex 2256: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.831617 + Group: 'RightToeBase', Weight: 0.163712 +Vertex 2257: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.890335 + Group: 'RightToeBase', Weight: 0.099333 +Vertex 2258: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.925534 + Group: 'RightToeBase', Weight: 0.054145 +Vertex 2259: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.395818 + Group: 'RightFoot', Weight: 0.369726 + Group: 'Bone2', Weight: 0.179502 + Group: 'Bone.001', Weight: 0.047180 + Group: 'RightLeg', Weight: 0.007774 +Vertex 2260: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.051066 + Group: 'RightFoot', Weight: 0.926619 +Vertex 2261: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.054221 + Group: 'RightFoot', Weight: 0.923651 +Vertex 2262: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393555 + Group: 'RightFoot', Weight: 0.365007 + Group: 'Bone2', Weight: 0.178476 + Group: 'Bone.001', Weight: 0.046910 + Group: 'RightLeg', Weight: 0.016052 +Vertex 2263: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396201 + Group: 'RightFoot', Weight: 0.367924 + Group: 'Bone2', Weight: 0.179676 + Group: 'Bone.001', Weight: 0.047225 + Group: 'RightToeBase', Weight: 0.008975 +Vertex 2264: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392863 + Group: 'RightFoot', Weight: 0.362452 + Group: 'Bone2', Weight: 0.178162 + Group: 'Bone.001', Weight: 0.046828 + Group: 'RightToeBase', Weight: 0.019695 +Vertex 2265: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.910002 + Group: 'RightToeBase', Weight: 0.068663 +Vertex 2266: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.888715 + Group: 'RightToeBase', Weight: 0.095876 +Vertex 2267: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.757992 + Group: 'RightToeBase', Weight: 0.236766 +Vertex 2268: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.533022 + Group: 'RightToeBase', Weight: 0.464560 +Vertex 2269: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.842785 + Group: 'RightToeBase', Weight: 0.147778 +Vertex 2270: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.276228 + Group: 'RightToeBase', Weight: 0.722306 +Vertex 2271: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.137593 + Group: 'RightToeBase', Weight: 0.861576 +Vertex 2272: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.061538 + Group: 'RightToeBase', Weight: 0.938034 +Vertex 2273: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.004127 + Group: 'RightToeBase', Weight: 0.972728 +Vertex 2274: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'RightToeBase', Weight: 0.989172 +Vertex 2275: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone.001', Weight: 0.077910 + Group: 'Bone', Weight: 0.993871 + Group: 'RightUpLeg', Weight: 0.963632 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2276: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone', Weight: 0.997959 + Group: 'RightUpLeg', Weight: 0.951741 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2277: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone', Weight: 0.994784 + Group: 'RightUpLeg', Weight: 0.949299 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2278: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone', Weight: 0.995680 + Group: 'RightUpLeg', Weight: 0.992291 +Vertex 2279: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone', Weight: 0.996897 + Group: 'RightUpLeg', Weight: 0.994741 +Vertex 2280: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone', Weight: 0.997341 + Group: 'RightUpLeg', Weight: 0.992449 +Vertex 2281: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.077910 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone', Weight: 0.995020 + Group: 'RightUpLeg', Weight: 0.985682 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2282: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.073388 + Group: 'Bone2', Weight: 0.312920 + Group: 'Bone', Weight: 0.998259 + Group: 'RightUpLeg', Weight: 0.980353 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2283: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone', Weight: 0.993674 + Group: 'RightUpLeg', Weight: 0.951261 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2284: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.077837 + Group: 'Bone2', Weight: 0.380022 + Group: 'Bone', Weight: 0.994475 + Group: 'RightUpLeg', Weight: 0.975555 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2285: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone', Weight: 0.996102 + Group: 'RightUpLeg', Weight: 0.919710 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2286: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.071880 + Group: 'Bone2', Weight: 0.306079 + Group: 'Bone', Weight: 0.998379 + Group: 'RightUpLeg', Weight: 0.967322 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2287: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone', Weight: 0.997151 + Group: 'RightUpLeg', Weight: 0.913222 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2288: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone', Weight: 0.996423 + Group: 'RightUpLeg', Weight: 0.995384 +Vertex 2289: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone', Weight: 0.997927 + Group: 'RightUpLeg', Weight: 0.986202 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2290: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393856 + Group: 'RightFoot', Weight: 0.341908 + Group: 'Bone2', Weight: 0.178616 + Group: 'Bone.001', Weight: 0.046947 + Group: 'RightLeg', Weight: 0.038673 +Vertex 2291: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.107765 + Group: 'RightFoot', Weight: 0.868400 +Vertex 2292: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392534 + Group: 'RightFoot', Weight: 0.339986 + Group: 'Bone2', Weight: 0.178013 + Group: 'Bone.001', Weight: 0.046788 + Group: 'RightLeg', Weight: 0.042679 +Vertex 2293: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.078748 + Group: 'RightFoot', Weight: 0.898110 +Vertex 2294: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.391508 + Group: 'RightFoot', Weight: 0.329443 + Group: 'Bone2', Weight: 0.182961 + Group: 'Bone.001', Weight: 0.051144 + Group: 'RightLeg', Weight: 0.044945 +Vertex 2295: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'RightFoot', Weight: 0.762832 + Group: 'RightToeBase', Weight: 0.216846 +Vertex 2296: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.106985 + Group: 'RightFoot', Weight: 0.874568 +Vertex 2297: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.128677 + Group: 'RightFoot', Weight: 0.857663 +Vertex 2298: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.166600 + Group: 'RightFoot', Weight: 0.823647 +Vertex 2299: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.236024 + Group: 'RightFoot', Weight: 0.758029 +Vertex 2300: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.087994 + Group: 'RightLeg', Weight: 0.334896 + Group: 'RightFoot', Weight: 0.661402 +Vertex 2301: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.336469 + Group: 'RightFoot', Weight: 0.660750 +Vertex 2302: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.171886 + Group: 'RightFoot', Weight: 0.824958 +Vertex 2303: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.390535 + Group: 'RightFoot', Weight: 0.326431 + Group: 'Bone2', Weight: 0.181623 + Group: 'RightLeg', Weight: 0.051196 + Group: 'Bone.001', Weight: 0.050214 +Vertex 2304: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.038757 + Group: 'RightFoot', Weight: 0.951205 +Vertex 2305: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.048461 + Group: 'RightFoot', Weight: 0.936100 +Vertex 2306: +Vertex groups: 4 + Group: 'Hips', Weight: 0.609575 + Group: 'Spine', Weight: 0.030202 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.120326 +Vertex 2307: +Vertex groups: 3 + Group: 'Hips', Weight: 0.632464 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.123230 +Vertex 2308: +Vertex groups: 5 + Group: 'Bone', Weight: 0.486671 + Group: 'Hips', Weight: 0.262102 + Group: 'Bone2', Weight: 0.171452 + Group: 'RightUpLeg', Weight: 0.040040 + Group: 'Bone.001', Weight: 0.039734 +Vertex 2309: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightFoot', Weight: 0.814043 + Group: 'RightToeBase', Weight: 0.163427 +Vertex 2310: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.888922 + Group: 'RightToeBase', Weight: 0.108152 +Vertex 2311: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.846086 + Group: 'RightToeBase', Weight: 0.141862 +Vertex 2312: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.859982 + Group: 'RightToeBase', Weight: 0.122155 +Vertex 2313: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.872462 + Group: 'RightToeBase', Weight: 0.123106 +Vertex 2314: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.881324 + Group: 'RightToeBase', Weight: 0.115769 +Vertex 2315: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.941314 + Group: 'RightFoot', Weight: 0.058149 +Vertex 2316: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.903961 + Group: 'RightFoot', Weight: 0.094464 +Vertex 2317: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.909246 + Group: 'RightFoot', Weight: 0.089508 +Vertex 2318: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.921086 + Group: 'RightFoot', Weight: 0.077867 +Vertex 2319: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.951932 + Group: 'RightFoot', Weight: 0.045691 +Vertex 2320: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.956458 + Group: 'RightFoot', Weight: 0.036821 +Vertex 2321: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'RightLeg', Weight: 0.879839 + Group: 'RightFoot', Weight: 0.117844 +Vertex 2322: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.898473 + Group: 'RightFoot', Weight: 0.099947 +Vertex 2323: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.933492 + Group: 'RightFoot', Weight: 0.065898 +Vertex 2324: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightLeg', Weight: 0.896055 + Group: 'RightFoot', Weight: 0.102032 +Vertex 2325: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.432383 + Group: 'RightLeg', Weight: 0.918864 + Group: 'RightFoot', Weight: 0.080235 +Vertex 2326: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.090799 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone2', Weight: 0.438608 + Group: 'RightLeg', Weight: 0.961386 + Group: 'RightFoot', Weight: 0.027013 +Vertex 2327: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.088715 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone2', Weight: 0.440400 + Group: 'RightLeg', Weight: 0.938904 + Group: 'RightFoot', Weight: 0.060690 +Vertex 2328: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.087994 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.439706 + Group: 'RightLeg', Weight: 0.948229 + Group: 'RightFoot', Weight: 0.051530 +Vertex 2329: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999975 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.884974 + Group: 'RightFoot', Weight: 0.112980 +Vertex 2330: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.943323 + Group: 'RightToeBase', Weight: 0.040643 +Vertex 2331: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.107003 + Group: 'Bone1', Weight: 0.999998 + Group: 'Bone2', Weight: 0.441547 + Group: 'RightFoot', Weight: 0.972830 +Vertex 2332: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.093061 + Group: 'Bone1', Weight: 0.999988 + Group: 'Bone2', Weight: 0.435818 + Group: 'RightLeg', Weight: 0.106781 + Group: 'RightFoot', Weight: 0.889705 +Vertex 2333: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.063433 + Group: 'RightFoot', Weight: 0.922211 +Vertex 2334: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.092612 + Group: 'Bone1', Weight: 0.999987 + Group: 'Bone2', Weight: 0.436371 + Group: 'RightLeg', Weight: 0.095509 + Group: 'RightFoot', Weight: 0.898800 +Vertex 2335: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.432383 + Group: 'RightLeg', Weight: 0.062523 + Group: 'RightFoot', Weight: 0.935838 +Vertex 2336: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.055526 + Group: 'RightFoot', Weight: 0.940127 +Vertex 2337: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.167904 + Group: 'RightFoot', Weight: 0.830418 +Vertex 2338: +Vertex groups: 4 + Group: 'Hips', Weight: 0.584802 + Group: 'Spine', Weight: 0.124278 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 2339: +Vertex groups: 5 + Group: 'Hips', Weight: 0.352459 + Group: 'Spine', Weight: 0.185197 + Group: 'Spine1', Weight: 0.011718 + Group: 'RightUpLeg', Weight: 0.000466 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2340: +Vertex groups: 5 + Group: 'Hips', Weight: 0.160299 + Group: 'Spine', Weight: 0.226150 + Group: 'Spine1', Weight: 0.026067 + Group: 'RightUpLeg', Weight: 0.143719 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2341: +Vertex groups: 5 + Group: 'Hips', Weight: 0.064560 + Group: 'Spine', Weight: 0.277186 + Group: 'Spine1', Weight: 0.044936 + Group: 'RightUpLeg', Weight: 0.559706 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2342: +Vertex groups: 5 + Group: 'Hips', Weight: 0.029006 + Group: 'Spine', Weight: 0.279418 + Group: 'Spine1', Weight: 0.042231 + Group: 'RightUpLeg', Weight: 0.617937 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2343: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004782 + Group: 'Spine', Weight: 0.280633 + Group: 'Spine1', Weight: 0.026187 + Group: 'RightUpLeg', Weight: 0.642152 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2344: +Vertex groups: 4 + Group: 'Hips', Weight: 0.037560 + Group: 'Spine', Weight: 0.214353 + Group: 'RightUpLeg', Weight: 0.702360 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2345: +Vertex groups: 4 + Group: 'Hips', Weight: 0.095776 + Group: 'Spine', Weight: 0.184190 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.666845 +Vertex 2346: +Vertex groups: 4 + Group: 'Hips', Weight: 0.173885 + Group: 'Spine', Weight: 0.129427 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.599044 +Vertex 2347: +Vertex groups: 4 + Group: 'Hips', Weight: 0.250852 + Group: 'Spine', Weight: 0.111852 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.386642 +Vertex 2348: +Vertex groups: 5 + Group: 'Bone', Weight: 0.417439 + Group: 'Hips', Weight: 0.283072 + Group: 'Bone2', Weight: 0.150553 + Group: 'Spine', Weight: 0.114632 + Group: 'Bone.001', Weight: 0.034304 +Vertex 2349: +Vertex groups: 5 + Group: 'Bone', Weight: 0.388318 + Group: 'Hips', Weight: 0.230158 + Group: 'Spine', Weight: 0.209562 + Group: 'Bone2', Weight: 0.140051 + Group: 'Bone.001', Weight: 0.031911 +Vertex 2350: +Vertex groups: 5 + Group: 'Bone', Weight: 0.380993 + Group: 'Spine', Weight: 0.225833 + Group: 'RightUpLeg', Weight: 0.165167 + Group: 'Bone2', Weight: 0.137409 + Group: 'Hips', Weight: 0.090598 +Vertex 2351: +Vertex groups: 5 + Group: 'Bone', Weight: 0.351882 + Group: 'Spine', Weight: 0.244570 + Group: 'RightUpLeg', Weight: 0.241023 + Group: 'Bone2', Weight: 0.126910 + Group: 'Hips', Weight: 0.035615 +Vertex 2352: +Vertex groups: 5 + Group: 'Bone', Weight: 0.438331 + Group: 'Hips', Weight: 0.304757 + Group: 'Bone2', Weight: 0.158088 + Group: 'Spine', Weight: 0.062802 + Group: 'Bone.001', Weight: 0.036021 +Vertex 2353: +Vertex groups: 5 + Group: 'Bone', Weight: 0.351171 + Group: 'RightUpLeg', Weight: 0.296235 + Group: 'Hips', Weight: 0.181069 + Group: 'Bone2', Weight: 0.126654 + Group: 'Spine', Weight: 0.044871 +Vertex 2354: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.437304 + Group: 'Bone', Weight: 0.311467 + Group: 'Bone2', Weight: 0.112334 + Group: 'Hips', Weight: 0.096976 + Group: 'Spine', Weight: 0.041919 +Vertex 2355: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.492871 + Group: 'Bone', Weight: 0.304186 + Group: 'Bone2', Weight: 0.109708 + Group: 'Spine', Weight: 0.051263 + Group: 'Hips', Weight: 0.041973 +Vertex 2356: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.508815 + Group: 'Bone', Weight: 0.299647 + Group: 'Bone2', Weight: 0.108071 + Group: 'Spine', Weight: 0.058843 + Group: 'Bone.001', Weight: 0.024624 +Vertex 2357: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.513511 + Group: 'Bone', Weight: 0.296906 + Group: 'Bone2', Weight: 0.107082 + Group: 'Spine', Weight: 0.058102 + Group: 'Bone.001', Weight: 0.024399 +Vertex 2358: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.509267 + Group: 'Bone', Weight: 0.298930 + Group: 'Bone2', Weight: 0.107812 + Group: 'Spine', Weight: 0.059426 + Group: 'Bone.001', Weight: 0.024566 +Vertex 2359: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.496554 + Group: 'Bone', Weight: 0.301607 + Group: 'Bone2', Weight: 0.108778 + Group: 'Spine', Weight: 0.061292 + Group: 'Hips', Weight: 0.031768 +Vertex 2360: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.467061 + Group: 'Bone', Weight: 0.302056 + Group: 'Bone2', Weight: 0.108940 + Group: 'Hips', Weight: 0.063312 + Group: 'Spine', Weight: 0.058632 +Vertex 2361: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.396843 + Group: 'Bone', Weight: 0.308438 + Group: 'Hips', Weight: 0.130915 + Group: 'Bone2', Weight: 0.111241 + Group: 'Spine', Weight: 0.052563 +Vertex 2362: +Vertex groups: 4 + Group: 'Hips', Weight: 0.638798 + Group: 'Spine', Weight: 0.081644 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 2363: +Vertex groups: 4 + Group: 'Hips', Weight: 0.327612 + Group: 'Spine', Weight: 0.062101 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.421265 +Vertex 2364: +Vertex groups: 3 + Group: 'Hips', Weight: 0.472131 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.417021 +Vertex 2365: +Vertex groups: 3 + Group: 'Hips', Weight: 0.497878 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.320721 +Vertex 2366: +Vertex groups: 3 + Group: 'Hips', Weight: 0.509405 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.212573 +Vertex 2367: +Vertex groups: 5 + Group: 'Hips', Weight: 0.012032 + Group: 'Spine', Weight: 0.526010 + Group: 'Spine1', Weight: 0.057514 + Group: 'RightUpLeg', Weight: 0.000960 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2368: +Vertex groups: 5 + Group: 'Hips', Weight: 0.032175 + Group: 'Spine', Weight: 0.648202 + Group: 'Spine1', Weight: 0.054027 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2369: +Vertex groups: 5 + Group: 'Spine', Weight: 0.410711 + Group: 'Bone', Weight: 0.375802 + Group: 'Bone2', Weight: 0.135537 + Group: 'Hips', Weight: 0.047067 + Group: 'Bone.001', Weight: 0.030883 +Vertex 2370: +Vertex groups: 5 + Group: 'Spine', Weight: 0.415116 + Group: 'Bone', Weight: 0.350297 + Group: 'Bone2', Weight: 0.126338 + Group: 'Hips', Weight: 0.079462 + Group: 'Bone.001', Weight: 0.028787 +Vertex 2371: +Vertex groups: 5 + Group: 'Bone', Weight: 0.326254 + Group: 'RightUpLeg', Weight: 0.277362 + Group: 'Spine', Weight: 0.170681 + Group: 'Bone2', Weight: 0.117667 + Group: 'Hips', Weight: 0.108036 +Vertex 2372: +Vertex groups: 5 + Group: 'Bone', Weight: 0.366132 + Group: 'Spine', Weight: 0.282316 + Group: 'Hips', Weight: 0.189415 + Group: 'Bone2', Weight: 0.132049 + Group: 'Bone.001', Weight: 0.030088 +Vertex 2373: +Vertex groups: 5 + Group: 'Hips', Weight: 0.062573 + Group: 'Spine', Weight: 0.711397 + Group: 'Spine1', Weight: 0.033414 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 2374: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone', Weight: 0.999647 + Group: 'RightUpLeg', Weight: 0.977588 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2375: +Vertex groups: 5 + Group: 'Bone', Weight: 0.436746 + Group: 'RightUpLeg', Weight: 0.281892 + Group: 'Bone2', Weight: 0.163897 + Group: 'Hips', Weight: 0.082787 + Group: 'Bone.001', Weight: 0.034677 +Vertex 2376: +Vertex groups: 5 + Group: 'Bone', Weight: 0.497343 + Group: 'Bone2', Weight: 0.179437 + Group: 'RightUpLeg', Weight: 0.178656 + Group: 'Hips', Weight: 0.103678 + Group: 'Bone.001', Weight: 0.040886 +Vertex 2377: +Vertex groups: 5 + Group: 'Bone', Weight: 0.417017 + Group: 'RightUpLeg', Weight: 0.358087 + Group: 'Bone2', Weight: 0.158610 + Group: 'Hips', Weight: 0.033798 + Group: 'Bone.001', Weight: 0.032487 +Vertex 2378: +Vertex groups: 5 + Group: 'Bone', Weight: 0.415696 + Group: 'RightUpLeg', Weight: 0.381620 + Group: 'Bone2', Weight: 0.157155 + Group: 'Bone.001', Weight: 0.032408 + Group: 'Hips', Weight: 0.013121 +Vertex 2379: +Vertex groups: 5 + Group: 'Bone', Weight: 0.462721 + Group: 'RightUpLeg', Weight: 0.255990 + Group: 'Bone2', Weight: 0.171938 + Group: 'Hips', Weight: 0.071295 + Group: 'Bone.001', Weight: 0.038057 +Vertex 2380: +Vertex groups: 5 + Group: 'Bone', Weight: 0.422570 + Group: 'RightUpLeg', Weight: 0.388751 + Group: 'Bone2', Weight: 0.132261 + Group: 'Bone.001', Weight: 0.031019 + Group: 'Hips', Weight: 0.025399 +Vertex 2381: +Vertex groups: 5 + Group: 'Bone', Weight: 0.434677 + Group: 'RightUpLeg', Weight: 0.320024 + Group: 'Bone2', Weight: 0.142482 + Group: 'Hips', Weight: 0.069494 + Group: 'Bone.001', Weight: 0.033323 +Vertex 2382: +Vertex groups: 5 + Group: 'Bone', Weight: 0.481542 + Group: 'RightUpLeg', Weight: 0.216883 + Group: 'Bone2', Weight: 0.169687 + Group: 'Hips', Weight: 0.092563 + Group: 'Bone.001', Weight: 0.039325 +Vertex 2383: +Vertex groups: 5 + Group: 'Bone', Weight: 0.425047 + Group: 'RightUpLeg', Weight: 0.311889 + Group: 'Bone2', Weight: 0.160756 + Group: 'Hips', Weight: 0.069157 + Group: 'Bone.001', Weight: 0.033150 +Vertex 2384: +Vertex groups: 5 + Group: 'Bone', Weight: 0.421585 + Group: 'RightUpLeg', Weight: 0.399286 + Group: 'Bone2', Weight: 0.138180 + Group: 'Bone.001', Weight: 0.032317 + Group: 'Hips', Weight: 0.008631 +Vertex 2385: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone', Weight: 0.999525 + Group: 'RightUpLeg', Weight: 0.957434 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2386: +Vertex groups: 5 + Group: 'Bone', Weight: 0.425671 + Group: 'RightUpLeg', Weight: 0.366451 + Group: 'Bone2', Weight: 0.130319 + Group: 'Hips', Weight: 0.046954 + Group: 'Bone.001', Weight: 0.030604 +Vertex 2387: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone', Weight: 0.999740 + Group: 'RightUpLeg', Weight: 0.968320 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2388: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone', Weight: 0.999485 + Group: 'RightUpLeg', Weight: 0.977482 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2389: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.978046 +Vertex 2390: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.982243 +Vertex 2391: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.984852 +Vertex 2392: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.985223 +Vertex 2393: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.980779 +Vertex 2394: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.974014 +Vertex 2395: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.962933 + Group: 'RightHand', Weight: 0.019514 +Vertex 2396: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.966115 + Group: 'RightHand', Weight: 0.013496 +Vertex 2397: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.965400 + Group: 'RightHand', Weight: 0.015343 +Vertex 2398: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.966983 + Group: 'RightHand', Weight: 0.012962 +Vertex 2399: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.976181 +Vertex 2400: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.978164 +Vertex 2401: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.978474 +Vertex 2402: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.084902 + Group: 'RightForeArm', Weight: 0.914688 +Vertex 2403: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.038219 + Group: 'RightForeArm', Weight: 0.955645 +Vertex 2404: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.041245 + Group: 'RightForeArm', Weight: 0.954153 +Vertex 2405: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.114389 + Group: 'RightForeArm', Weight: 0.885497 +Vertex 2406: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.242825 + Group: 'RightForeArm', Weight: 0.756971 +Vertex 2407: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.168059 + Group: 'RightForeArm', Weight: 0.831712 +Vertex 2408: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.072315 + Group: 'RightForeArm', Weight: 0.927384 +Vertex 2409: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.038998 + Group: 'RightForeArm', Weight: 0.955235 +Vertex 2410: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.976665 +Vertex 2411: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.055620 + Group: 'RightForeArm', Weight: 0.944134 +Vertex 2412: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.000746 + Group: 'RightForeArm', Weight: 0.974139 +Vertex 2413: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.033683 + Group: 'RightForeArm', Weight: 0.957563 +Vertex 2414: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.037073 + Group: 'RightForeArm', Weight: 0.956192 +Vertex 2415: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.103666 + Group: 'RightArm', Weight: 0.866491 +Vertex 2416: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.112091 + Group: 'RightArm', Weight: 0.850728 +Vertex 2417: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.973960 +Vertex 2418: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.025916 + Group: 'RightArm', Weight: 0.954129 +Vertex 2419: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991105 +Vertex 2420: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.098186 + Group: 'RightArm', Weight: 0.878936 +Vertex 2421: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.119347 + Group: 'RightArm', Weight: 0.861282 +Vertex 2422: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.094728 + Group: 'RightArm', Weight: 0.876809 +Vertex 2423: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.097836 + Group: 'RightArm', Weight: 0.879680 +Vertex 2424: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.983952 +Vertex 2425: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.989936 +Vertex 2426: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.989250 +Vertex 2427: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.975303 +Vertex 2428: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.801328 + Group: 'RightForeArm', Weight: 0.198285 +Vertex 2429: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.815794 + Group: 'RightForeArm', Weight: 0.184117 +Vertex 2430: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.783526 + Group: 'RightForeArm', Weight: 0.216444 +Vertex 2431: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.805309 + Group: 'RightForeArm', Weight: 0.194382 +Vertex 2432: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.839382 + Group: 'RightForeArm', Weight: 0.160584 +Vertex 2433: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.858919 + Group: 'RightForeArm', Weight: 0.140999 +Vertex 2434: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.827415 + Group: 'RightForeArm', Weight: 0.172524 +Vertex 2435: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.811599 + Group: 'RightForeArm', Weight: 0.188028 +Vertex 2436: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.815530 + Group: 'RightForeArm', Weight: 0.184338 +Vertex 2437: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.812541 + Group: 'RightForeArm', Weight: 0.187252 +Vertex 2438: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.607471 + Group: 'RightForeArm', Weight: 0.392492 +Vertex 2439: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.761657 + Group: 'RightForeArm', Weight: 0.238205 +Vertex 2440: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.918248 + Group: 'RightForeArm', Weight: 0.081484 +Vertex 2441: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.977091 +Vertex 2442: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991368 +Vertex 2443: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.987442 +Vertex 2444: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.997853 +Vertex 2445: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.981087 +Vertex 2446: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.985092 +Vertex 2447: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.979808 +Vertex 2448: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.984708 +Vertex 2449: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.990725 +Vertex 2450: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.994443 +Vertex 2451: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.996634 +Vertex 2452: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.998772 +Vertex 2453: +Vertex groups: 1 + Group: 'RightArm', Weight: 1.000318 +Vertex 2454: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.848196 + Group: 'RightForeArm', Weight: 0.151765 +Vertex 2455: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.212948 + Group: 'RightForeArm', Weight: 0.786995 +Vertex 2456: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.856169 + Group: 'RightForeArm', Weight: 0.143526 +Vertex 2457: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.453469 + Group: 'RightForeArm', Weight: 0.546424 +Vertex 2458: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.033015 + Group: 'RightForeArm', Weight: 0.958253 +Vertex 2459: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.091797 + Group: 'RightForeArm', Weight: 0.907825 +Vertex 2460: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.113141 + Group: 'RightForeArm', Weight: 0.886644 +Vertex 2461: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.071849 + Group: 'RightForeArm', Weight: 0.927635 +Vertex 2462: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.064011 + Group: 'RightForeArm', Weight: 0.935834 +Vertex 2463: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.075030 + Group: 'RightForeArm', Weight: 0.924842 +Vertex 2464: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.944176 + Group: 'RightForeArm', Weight: 0.055781 +Vertex 2465: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.954060 + Group: 'RightForeArm', Weight: 0.041734 +Vertex 2466: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.951262 + Group: 'RightForeArm', Weight: 0.047041 +Vertex 2467: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.832849 + Group: 'RightForeArm', Weight: 0.167023 +Vertex 2468: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.961144 +Vertex 2469: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.079316 + Group: 'LeftHandMiddle1', Weight: 0.864209 + Group: 'LeftHandRing1', Weight: 0.006250 +Vertex 2470: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.996803 +Vertex 2471: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.916841 + Group: 'LeftHandRing3', Weight: 0.080320 +Vertex 2472: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.004176 + Group: 'LeftHandMiddle1', Weight: 0.832684 + Group: 'LeftHandRing1', Weight: 0.099454 +Vertex 2473: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.010773 + Group: 'LeftHandRing3_end', Weight: 0.968991 +Vertex 2474: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.926795 + Group: 'LeftHandMiddle1', Weight: 0.026736 +Vertex 2475: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.675365 + Group: 'LeftHandRing1', Weight: 0.251876 + Group: 'LeftHandRing2', Weight: 0.007540 +Vertex 2476: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.724040 + Group: 'LeftHandMiddle1', Weight: 0.246276 +Vertex 2477: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.901018 + Group: 'LeftHandMiddle1', Weight: 0.079119 +Vertex 2478: +Vertex groups: 1 + Group: 'LeftHandIndex1', Weight: 0.953616 +Vertex 2479: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.756804 + Group: 'LeftHandIndex2', Weight: 0.102533 + Group: 'LeftHandMiddle1', Weight: 0.105404 + Group: 'LeftHandMiddle2', Weight: 0.014353 +Vertex 2480: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.895304 + Group: 'LeftHandIndex2', Weight: 0.091147 +Vertex 2481: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.830787 + Group: 'LeftHandIndex2', Weight: 0.127728 + Group: 'LeftHandMiddle1', Weight: 0.010705 +Vertex 2482: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.706098 + Group: 'LeftHandMiddle2', Weight: 0.112642 + Group: 'LeftHandRing1', Weight: 0.078071 + Group: 'LeftHandRing2', Weight: 0.094128 +Vertex 2483: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.045482 + Group: 'LeftHandMiddle1', Weight: 0.825128 + Group: 'LeftHandMiddle2', Weight: 0.098423 +Vertex 2484: +Vertex groups: 2 + Group: 'LeftHandMiddle1', Weight: 0.796894 + Group: 'LeftHandMiddle2', Weight: 0.137221 +Vertex 2485: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.101746 + Group: 'LeftHandRing1', Weight: 0.799090 + Group: 'LeftHandRing2', Weight: 0.058245 +Vertex 2486: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.026971 + Group: 'LeftHandRing1', Weight: 0.811079 + Group: 'LeftHandRing2', Weight: 0.054079 + Group: 'LeftHandPinky1', Weight: 0.065846 +Vertex 2487: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.697820 + Group: 'LeftHandRing2', Weight: 0.052059 + Group: 'LeftHandPinky1', Weight: 0.172217 + Group: 'LeftHandPinky2', Weight: 0.056289 +Vertex 2488: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.581002 + Group: 'LeftHandRing2', Weight: 0.270430 + Group: 'LeftHandPinky2', Weight: 0.131074 +Vertex 2489: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.035745 + Group: 'LeftHandRing1', Weight: 0.677774 + Group: 'LeftHandRing2', Weight: 0.258470 +Vertex 2490: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.521148 + Group: 'LeftHandRing2', Weight: 0.430220 + Group: 'LeftHandPinky2', Weight: 0.004943 +Vertex 2491: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.097435 + Group: 'LeftHandPinky1', Weight: 0.789330 + Group: 'LeftHandPinky2', Weight: 0.108245 +Vertex 2492: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.022505 + Group: 'LeftHandPinky1', Weight: 0.866296 + Group: 'LeftHandPinky2', Weight: 0.094045 +Vertex 2493: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.887970 + Group: 'LeftHandPinky2', Weight: 0.099513 +Vertex 2494: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.073177 + Group: 'LeftHandIndex2', Weight: 0.827935 + Group: 'LeftHandMiddle2', Weight: 0.066299 +Vertex 2495: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.091434 + Group: 'LeftHandPinky2', Weight: 0.893128 +Vertex 2496: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.092704 + Group: 'LeftHandRing2', Weight: 0.024244 + Group: 'LeftHandPinky1', Weight: 0.098004 + Group: 'LeftHandPinky2', Weight: 0.759978 +Vertex 2497: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.001228 + Group: 'LeftHandPinky1', Weight: 0.090215 + Group: 'LeftHandPinky2', Weight: 0.869367 +Vertex 2498: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.103198 + Group: 'LeftHandIndex1', Weight: 0.005480 + Group: 'LeftHandMiddle1', Weight: 0.768861 + Group: 'LeftHandRing1', Weight: 0.089113 +Vertex 2499: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.018916 + Group: 'LeftHandMiddle1', Weight: 0.031095 + Group: 'LeftHandRing1', Weight: 0.750018 + Group: 'LeftHandPinky1', Weight: 0.162221 +Vertex 2500: +Vertex groups: 1 + Group: 'LeftHandPinky1', Weight: 0.970073 +Vertex 2501: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.361249 + Group: 'LeftHandMiddle1', Weight: 0.600927 +Vertex 2502: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.576866 + Group: 'LeftHandIndex2', Weight: 0.104347 + Group: 'LeftHandMiddle1', Weight: 0.234894 + Group: 'LeftHandMiddle2', Weight: 0.078751 +Vertex 2503: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.146318 + Group: 'LeftHandMiddle1', Weight: 0.806380 +Vertex 2504: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.156434 + Group: 'LeftHandIndex2', Weight: 0.036240 + Group: 'LeftHandMiddle1', Weight: 0.643696 + Group: 'LeftHandMiddle2', Weight: 0.148344 +Vertex 2505: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.478097 + Group: 'LeftHandMiddle2', Weight: 0.099619 + Group: 'LeftHandRing1', Weight: 0.171052 + Group: 'LeftHandRing2', Weight: 0.244940 +Vertex 2506: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.367480 + Group: 'LeftHandRing1', Weight: 0.553481 + Group: 'LeftHandRing2', Weight: 0.024814 +Vertex 2507: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.113151 + Group: 'LeftHandMiddle2', Weight: 0.003675 + Group: 'LeftHandRing1', Weight: 0.448410 + Group: 'LeftHandRing2', Weight: 0.405974 +Vertex 2508: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.190055 + Group: 'LeftHandRing1', Weight: 0.731471 + Group: 'LeftHandRing2', Weight: 0.024431 +Vertex 2509: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.539584 + Group: 'LeftHandRing2', Weight: 0.188648 + Group: 'LeftHandPinky1', Weight: 0.048938 + Group: 'LeftHandPinky2', Weight: 0.209848 +Vertex 2510: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.494251 + Group: 'LeftHandRing2', Weight: 0.002964 + Group: 'LeftHandPinky1', Weight: 0.371399 + Group: 'LeftHandPinky2', Weight: 0.093503 +Vertex 2511: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.199441 + Group: 'LeftHandRing2', Weight: 0.091064 + Group: 'LeftHandPinky1', Weight: 0.043484 + Group: 'LeftHandPinky2', Weight: 0.644621 +Vertex 2512: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.199706 + Group: 'LeftHandPinky1', Weight: 0.659364 + Group: 'LeftHandPinky2', Weight: 0.122698 +Vertex 2513: +Vertex groups: 1 + Group: 'LeftHandIndex1', Weight: 0.941090 +Vertex 2514: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.859440 + Group: 'LeftHandIndex2', Weight: 0.128695 +Vertex 2515: +Vertex groups: 3 + Group: 'LeftHandThumb2', Weight: 0.005432 + Group: 'LeftHandIndex1', Weight: 0.895981 + Group: 'LeftHandIndex2', Weight: 0.030898 +Vertex 2516: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.786430 + Group: 'LeftHandIndex2', Weight: 0.189466 +Vertex 2517: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.030779 + Group: 'LeftHandIndex3', Weight: 0.921718 + Group: 'LeftHandIndex3_end', Weight: 0.024484 +Vertex 2518: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.022029 + Group: 'LeftHandIndex2', Weight: 0.940445 +Vertex 2519: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.026345 + Group: 'LeftHandIndex3_end', Weight: 0.960167 +Vertex 2520: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.951110 + Group: 'LeftHandIndex3', Weight: 0.022471 +Vertex 2521: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.978679 +Vertex 2522: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.009934 + Group: 'LeftHandIndex3_end', Weight: 0.968877 +Vertex 2523: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.976839 +Vertex 2524: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.014380 + Group: 'LeftHandIndex3_end', Weight: 0.966651 +Vertex 2525: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.020076 + Group: 'LeftHandIndex3_end', Weight: 0.963461 +Vertex 2526: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.034452 + Group: 'LeftHandIndex3_end', Weight: 0.955937 +Vertex 2527: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.051875 + Group: 'LeftHandIndex3_end', Weight: 0.945624 +Vertex 2528: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998864 +Vertex 2529: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998914 +Vertex 2530: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998945 +Vertex 2531: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.997610 +Vertex 2532: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.995846 +Vertex 2533: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.995655 +Vertex 2534: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.994551 +Vertex 2535: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999324 +Vertex 2536: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999392 +Vertex 2537: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999409 +Vertex 2538: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999387 +Vertex 2539: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999306 +Vertex 2540: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999198 +Vertex 2541: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999251 +Vertex 2542: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999236 +Vertex 2543: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999332 +Vertex 2544: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998793 +Vertex 2545: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999359 +Vertex 2546: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999454 +Vertex 2547: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999365 +Vertex 2548: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998193 +Vertex 2549: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998763 +Vertex 2550: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998087 +Vertex 2551: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.997835 +Vertex 2552: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.020532 + Group: 'LeftHandIndex3', Weight: 0.929548 + Group: 'LeftHandIndex3_end', Weight: 0.019655 +Vertex 2553: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.024518 + Group: 'LeftHandIndex3', Weight: 0.932565 + Group: 'LeftHandIndex3_end', Weight: 0.009429 +Vertex 2554: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.009841 + Group: 'LeftHandIndex3', Weight: 0.936851 + Group: 'LeftHandIndex3_end', Weight: 0.015216 +Vertex 2555: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.013788 + Group: 'LeftHandIndex3', Weight: 0.937029 + Group: 'LeftHandIndex3_end', Weight: 0.010317 +Vertex 2556: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.021469 + Group: 'LeftHandIndex3', Weight: 0.925469 + Group: 'LeftHandIndex3_end', Weight: 0.024996 +Vertex 2557: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.027468 + Group: 'LeftHandIndex3', Weight: 0.914097 + Group: 'LeftHandIndex3_end', Weight: 0.041832 +Vertex 2558: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.053456 + Group: 'LeftHandIndex3', Weight: 0.914097 + Group: 'LeftHandIndex3_end', Weight: 0.010210 +Vertex 2559: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999188 +Vertex 2560: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999485 +Vertex 2561: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998919 +Vertex 2562: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998848 +Vertex 2563: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998807 +Vertex 2564: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999417 +Vertex 2565: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999424 +Vertex 2566: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999148 +Vertex 2567: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.924658 + Group: 'LeftHandIndex3', Weight: 0.037404 +Vertex 2568: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.101765 + Group: 'LeftHandIndex2', Weight: 0.890165 +Vertex 2569: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.951496 + Group: 'LeftHandIndex3', Weight: 0.030680 +Vertex 2570: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.156340 + Group: 'LeftHandIndex2', Weight: 0.835492 +Vertex 2571: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.937695 + Group: 'LeftHandIndex3', Weight: 0.051051 +Vertex 2572: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.930652 + Group: 'LeftHandIndex3', Weight: 0.046997 +Vertex 2573: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.195731 + Group: 'LeftHandIndex2', Weight: 0.786790 +Vertex 2574: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.901476 + Group: 'LeftHandIndex3', Weight: 0.071985 +Vertex 2575: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.884193 + Group: 'LeftHandIndex3', Weight: 0.082868 +Vertex 2576: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.883163 + Group: 'LeftHandIndex3', Weight: 0.066014 +Vertex 2577: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.166031 + Group: 'LeftHandIndex2', Weight: 0.717302 + Group: 'LeftHandMiddle1', Weight: 0.032840 + Group: 'LeftHandMiddle2', Weight: 0.070155 +Vertex 2578: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.345541 + Group: 'LeftHandIndex2', Weight: 0.305149 + Group: 'LeftHandMiddle1', Weight: 0.117508 + Group: 'LeftHandMiddle2', Weight: 0.224554 +Vertex 2579: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.108833 + Group: 'LeftHandIndex2', Weight: 0.087350 + Group: 'LeftHandMiddle1', Weight: 0.171202 + Group: 'LeftHandMiddle2', Weight: 0.624264 +Vertex 2580: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.020937 + Group: 'LeftHandIndex2', Weight: 0.007629 + Group: 'LeftHandMiddle1', Weight: 0.104441 + Group: 'LeftHandMiddle2', Weight: 0.820456 +Vertex 2581: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.253829 + Group: 'LeftHandIndex2', Weight: 0.369824 + Group: 'LeftHandMiddle1', Weight: 0.070317 + Group: 'LeftHandMiddle2', Weight: 0.292420 +Vertex 2582: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.118111 + Group: 'LeftHandIndex2', Weight: 0.155061 + Group: 'LeftHandMiddle1', Weight: 0.079478 + Group: 'LeftHandMiddle2', Weight: 0.631846 +Vertex 2583: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.058195 + Group: 'LeftHandIndex2', Weight: 0.077312 + Group: 'LeftHandMiddle1', Weight: 0.039808 + Group: 'LeftHandMiddle2', Weight: 0.784453 + Group: 'LeftHandMiddle3', Weight: 0.004522 +Vertex 2584: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.116637 + Group: 'LeftHandIndex2', Weight: 0.857041 +Vertex 2585: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.006092 + Group: 'LeftHandIndex2', Weight: 0.958564 +Vertex 2586: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.037698 + Group: 'LeftHandIndex2', Weight: 0.939795 +Vertex 2587: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.070442 + Group: 'LeftHandIndex2', Weight: 0.905374 +Vertex 2588: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.085925 + Group: 'LeftHandIndex2', Weight: 0.872726 +Vertex 2589: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.082211 + Group: 'LeftHandIndex2', Weight: 0.843399 + Group: 'LeftHandIndex3', Weight: 0.008497 + Group: 'LeftHandMiddle2', Weight: 0.004033 +Vertex 2590: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.117017 + Group: 'LeftHandIndex2', Weight: 0.710419 + Group: 'LeftHandMiddle1', Weight: 0.018332 + Group: 'LeftHandMiddle2', Weight: 0.109927 +Vertex 2591: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.211923 + Group: 'LeftHandIndex2', Weight: 0.748094 +Vertex 2592: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.724529 + Group: 'LeftHandIndex2', Weight: 0.221482 +Vertex 2593: +Vertex groups: 4 + Group: 'LeftHandThumb2', Weight: 0.016804 + Group: 'LeftHandIndex1', Weight: 0.844435 + Group: 'LeftHandIndex2', Weight: 0.041389 + Group: 'LeftHandMiddle1', Weight: 0.013385 +Vertex 2594: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.227109 + Group: 'LeftHandIndex2', Weight: 0.662690 + Group: 'LeftHandMiddle1', Weight: 0.018356 + Group: 'LeftHandMiddle2', Weight: 0.054113 +Vertex 2595: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.643077 + Group: 'LeftHandIndex2', Weight: 0.202404 + Group: 'LeftHandMiddle1', Weight: 0.068696 + Group: 'LeftHandMiddle2', Weight: 0.056196 +Vertex 2596: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.751468 + Group: 'LeftHandIndex2', Weight: 0.055125 + Group: 'LeftHandMiddle1', Weight: 0.106900 +Vertex 2597: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.211761 + Group: 'LeftHandIndex2', Weight: 0.391746 + Group: 'LeftHandMiddle1', Weight: 0.066266 + Group: 'LeftHandMiddle2', Weight: 0.307234 +Vertex 2598: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.120687 + Group: 'LeftHandIndex2', Weight: 0.179559 + Group: 'LeftHandMiddle1', Weight: 0.071422 + Group: 'LeftHandMiddle2', Weight: 0.602229 +Vertex 2599: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.258797 + Group: 'LeftHandIndex2', Weight: 0.326516 + Group: 'LeftHandMiddle1', Weight: 0.102624 + Group: 'LeftHandMiddle2', Weight: 0.283038 +Vertex 2600: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.148853 + Group: 'LeftHandIndex2', Weight: 0.159413 + Group: 'LeftHandMiddle1', Weight: 0.143074 + Group: 'LeftHandMiddle2', Weight: 0.513896 +Vertex 2601: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.268648 + Group: 'LeftHandIndex2', Weight: 0.461781 + Group: 'LeftHandMiddle1', Weight: 0.075375 + Group: 'LeftHandMiddle2', Weight: 0.167287 +Vertex 2602: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.440305 + Group: 'LeftHandIndex2', Weight: 0.188483 + Group: 'LeftHandMiddle1', Weight: 0.151324 + Group: 'LeftHandMiddle2', Weight: 0.182478 +Vertex 2603: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.626710 + Group: 'LeftHandIndex2', Weight: 0.044150 + Group: 'LeftHandMiddle1', Weight: 0.208490 + Group: 'LeftHandMiddle2', Weight: 0.031189 + Group: 'LeftHandRing1', Weight: 0.016143 +Vertex 2604: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.137581 + Group: 'LeftHandMiddle3_end', Weight: 0.861932 +Vertex 2605: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.102358 + Group: 'LeftHandMiddle3', Weight: 0.896145 +Vertex 2606: +Vertex groups: 1 + Group: 'LeftHandMiddle3', Weight: 0.981316 +Vertex 2607: +Vertex groups: 2 + Group: 'LeftHandMiddle1', Weight: 0.037126 + Group: 'LeftHandMiddle2', Weight: 0.922383 +Vertex 2608: +Vertex groups: 1 + Group: 'LeftHandMiddle3', Weight: 0.978893 +Vertex 2609: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.970930 + Group: 'LeftHandMiddle3_end', Weight: 0.002840 +Vertex 2610: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.965330 + Group: 'LeftHandMiddle3_end', Weight: 0.013386 +Vertex 2611: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.958116 + Group: 'LeftHandMiddle3_end', Weight: 0.026631 +Vertex 2612: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.956386 + Group: 'LeftHandMiddle3_end', Weight: 0.026947 +Vertex 2613: +Vertex groups: 1 + Group: 'LeftHandMiddle3', Weight: 0.972188 +Vertex 2614: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.962480 + Group: 'LeftHandMiddle3_end', Weight: 0.015534 +Vertex 2615: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.041366 + Group: 'LeftHandMiddle3_end', Weight: 0.954186 +Vertex 2616: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.038918 + Group: 'LeftHandMiddle3_end', Weight: 0.955402 +Vertex 2617: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.057146 + Group: 'LeftHandMiddle3_end', Weight: 0.942653 +Vertex 2618: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.067136 + Group: 'LeftHandMiddle3_end', Weight: 0.932583 +Vertex 2619: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.077172 + Group: 'LeftHandMiddle3_end', Weight: 0.922449 +Vertex 2620: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.073048 + Group: 'LeftHandMiddle3_end', Weight: 0.926628 +Vertex 2621: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.081522 + Group: 'LeftHandMiddle3_end', Weight: 0.918084 +Vertex 2622: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993542 +Vertex 2623: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.994351 +Vertex 2624: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.994355 +Vertex 2625: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993192 +Vertex 2626: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993134 +Vertex 2627: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.991592 +Vertex 2628: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.991946 +Vertex 2629: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.992567 +Vertex 2630: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993878 +Vertex 2631: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.004837 + Group: 'LeftHandMiddle3_end', Weight: 0.972465 +Vertex 2632: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.978771 +Vertex 2633: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.985766 +Vertex 2634: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.987811 +Vertex 2635: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.001107 + Group: 'LeftHandMiddle3_end', Weight: 0.974338 +Vertex 2636: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.031972 + Group: 'LeftHandMiddle3_end', Weight: 0.958865 +Vertex 2637: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.012540 + Group: 'LeftHandMiddle3_end', Weight: 0.968584 +Vertex 2638: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.009626 + Group: 'LeftHandMiddle3_end', Weight: 0.970049 +Vertex 2639: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.080999 + Group: 'LeftHandMiddle3', Weight: 0.916873 +Vertex 2640: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.083568 + Group: 'LeftHandMiddle3', Weight: 0.912667 +Vertex 2641: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.075513 + Group: 'LeftHandMiddle3', Weight: 0.920113 +Vertex 2642: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.086200 + Group: 'LeftHandMiddle3', Weight: 0.910394 +Vertex 2643: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.180767 + Group: 'LeftHandMiddle3', Weight: 0.816228 +Vertex 2644: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.184559 + Group: 'LeftHandMiddle3', Weight: 0.813848 +Vertex 2645: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.703361 + Group: 'LeftHandMiddle3', Weight: 0.294568 +Vertex 2646: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.987498 +Vertex 2647: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.992839 +Vertex 2648: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.987322 +Vertex 2649: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.984703 +Vertex 2650: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.986362 +Vertex 2651: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.988911 +Vertex 2652: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993856 +Vertex 2653: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.988339 +Vertex 2654: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.071348 + Group: 'LeftHandMiddle2', Weight: 0.839122 + Group: 'LeftHandRing2', Weight: 0.066852 +Vertex 2655: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.007904 + Group: 'LeftHandMiddle1', Weight: 0.015995 + Group: 'LeftHandMiddle2', Weight: 0.891977 +Vertex 2656: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.160682 + Group: 'LeftHandMiddle2', Weight: 0.708955 + Group: 'LeftHandRing2', Weight: 0.100292 +Vertex 2657: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.075478 + Group: 'LeftHandIndex2', Weight: 0.079158 + Group: 'LeftHandMiddle1', Weight: 0.076514 + Group: 'LeftHandMiddle2', Weight: 0.729173 +Vertex 2658: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.009051 + Group: 'LeftHandMiddle1', Weight: 0.044244 + Group: 'LeftHandMiddle2', Weight: 0.836013 + Group: 'LeftHandMiddle3', Weight: 0.005267 + Group: 'LeftHandRing2', Weight: 0.003360 +Vertex 2659: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.048957 + Group: 'LeftHandMiddle2', Weight: 0.786717 + Group: 'LeftHandRing2', Weight: 0.108381 +Vertex 2660: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.050319 + Group: 'LeftHandMiddle2', Weight: 0.826010 + Group: 'LeftHandRing2', Weight: 0.089737 +Vertex 2661: +Vertex groups: 2 + Group: 'LeftHandRing1', Weight: 0.052174 + Group: 'LeftHandRing2', Weight: 0.922097 +Vertex 2662: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.963637 +Vertex 2663: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.970437 +Vertex 2664: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.963431 + Group: 'LeftHandRing3_end', Weight: 0.012754 +Vertex 2665: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.954061 + Group: 'LeftHandRing3_end', Weight: 0.023510 +Vertex 2666: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.947667 + Group: 'LeftHandRing3_end', Weight: 0.019589 +Vertex 2667: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.956420 +Vertex 2668: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.952098 + Group: 'LeftHandRing3_end', Weight: 0.008617 +Vertex 2669: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.017260 + Group: 'LeftHandRing3_end', Weight: 0.965853 +Vertex 2670: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.005257 + Group: 'LeftHandRing3_end', Weight: 0.972379 +Vertex 2671: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.019303 + Group: 'LeftHandRing3_end', Weight: 0.965136 +Vertex 2672: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.025759 + Group: 'LeftHandRing3_end', Weight: 0.961645 +Vertex 2673: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.033791 + Group: 'LeftHandRing3_end', Weight: 0.957390 +Vertex 2674: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.019407 + Group: 'LeftHandRing3_end', Weight: 0.964618 +Vertex 2675: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.039517 + Group: 'LeftHandRing3_end', Weight: 0.954406 +Vertex 2676: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.998053 +Vertex 2677: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997921 +Vertex 2678: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997941 +Vertex 2679: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997638 +Vertex 2680: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997849 +Vertex 2681: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997580 +Vertex 2682: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997959 +Vertex 2683: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997931 +Vertex 2684: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.998067 +Vertex 2685: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.989497 +Vertex 2686: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.991331 +Vertex 2687: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.993023 +Vertex 2688: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.993361 +Vertex 2689: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.992006 +Vertex 2690: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.989672 +Vertex 2691: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.988410 +Vertex 2692: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.989869 +Vertex 2693: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.796176 + Group: 'LeftHandRing3', Weight: 0.201449 +Vertex 2694: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.250713 + Group: 'LeftHandRing3', Weight: 0.745970 +Vertex 2695: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.137629 + Group: 'LeftHandRing3', Weight: 0.858113 +Vertex 2696: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.197138 + Group: 'LeftHandRing3', Weight: 0.799076 +Vertex 2697: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.800609 + Group: 'LeftHandRing3', Weight: 0.194707 +Vertex 2698: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.932942 + Group: 'LeftHandRing3', Weight: 0.063471 +Vertex 2699: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.929094 + Group: 'LeftHandRing3', Weight: 0.066329 +Vertex 2700: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996205 +Vertex 2701: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996838 +Vertex 2702: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996772 +Vertex 2703: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.995487 +Vertex 2704: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996262 +Vertex 2705: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.995930 +Vertex 2706: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997224 +Vertex 2707: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996689 +Vertex 2708: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.066240 + Group: 'LeftHandRing2', Weight: 0.891484 + Group: 'LeftHandPinky2', Weight: 0.010245 +Vertex 2709: +Vertex groups: 3 + Group: 'LeftHandMiddle2', Weight: 0.003859 + Group: 'LeftHandRing1', Weight: 0.009871 + Group: 'LeftHandRing2', Weight: 0.914735 +Vertex 2710: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.024997 + Group: 'LeftHandMiddle2', Weight: 0.066732 + Group: 'LeftHandRing2', Weight: 0.854062 +Vertex 2711: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.027387 + Group: 'LeftHandMiddle2', Weight: 0.124778 + Group: 'LeftHandRing1', Weight: 0.020995 + Group: 'LeftHandRing2', Weight: 0.767716 +Vertex 2712: +Vertex groups: 4 + Group: 'LeftHandMiddle2', Weight: 0.009639 + Group: 'LeftHandRing1', Weight: 0.004978 + Group: 'LeftHandRing2', Weight: 0.891252 + Group: 'LeftHandRing3', Weight: 0.000785 +Vertex 2713: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.209470 + Group: 'LeftHandRing2', Weight: 0.588845 + Group: 'LeftHandPinky2', Weight: 0.145383 +Vertex 2714: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.095458 + Group: 'LeftHandRing2', Weight: 0.816386 + Group: 'LeftHandPinky2', Weight: 0.067292 +Vertex 2715: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.910966 + Group: 'LeftHandPinky3_end', Weight: 0.082539 +Vertex 2716: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.068692 + Group: 'LeftHandPinky3', Weight: 0.926303 +Vertex 2717: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.134959 + Group: 'LeftHandPinky3_end', Weight: 0.864339 +Vertex 2718: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.941592 + Group: 'LeftHandPinky3_end', Weight: 0.054448 +Vertex 2719: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.937977 + Group: 'LeftHandPinky3_end', Weight: 0.056146 +Vertex 2720: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.878190 + Group: 'LeftHandPinky3_end', Weight: 0.116349 +Vertex 2721: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.701738 + Group: 'LeftHandPinky3_end', Weight: 0.291776 +Vertex 2722: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.575824 + Group: 'LeftHandPinky3_end', Weight: 0.422418 +Vertex 2723: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.937479 + Group: 'LeftHandPinky3_end', Weight: 0.060240 +Vertex 2724: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.870092 + Group: 'LeftHandPinky3_end', Weight: 0.127638 +Vertex 2725: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.087890 + Group: 'LeftHandPinky3_end', Weight: 0.911694 +Vertex 2726: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.064774 + Group: 'LeftHandPinky3_end', Weight: 0.934827 +Vertex 2727: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.058794 + Group: 'LeftHandPinky3_end', Weight: 0.940793 +Vertex 2728: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.066527 + Group: 'LeftHandPinky3_end', Weight: 0.932880 +Vertex 2729: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.023412 + Group: 'LeftHandPinky3_end', Weight: 0.963059 +Vertex 2730: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.045692 + Group: 'LeftHandPinky3_end', Weight: 0.951973 +Vertex 2731: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.030411 + Group: 'LeftHandPinky3_end', Weight: 0.959651 +Vertex 2732: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993442 +Vertex 2733: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991802 +Vertex 2734: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991932 +Vertex 2735: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.990581 +Vertex 2736: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991564 +Vertex 2737: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993107 +Vertex 2738: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.994440 +Vertex 2739: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.994362 +Vertex 2740: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993266 +Vertex 2741: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.003949 + Group: 'LeftHandPinky3_end', Weight: 0.972801 +Vertex 2742: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.978326 +Vertex 2743: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.976834 +Vertex 2744: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.002903 + Group: 'LeftHandPinky3_end', Weight: 0.973411 +Vertex 2745: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.990484 +Vertex 2746: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.020810 + Group: 'LeftHandPinky3_end', Weight: 0.964411 +Vertex 2747: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.987623 +Vertex 2748: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991253 +Vertex 2749: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.070453 + Group: 'LeftHandPinky3', Weight: 0.921899 +Vertex 2750: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.055695 + Group: 'LeftHandPinky3', Weight: 0.931089 +Vertex 2751: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.061748 + Group: 'LeftHandPinky3', Weight: 0.923565 +Vertex 2752: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.070407 + Group: 'LeftHandPinky3', Weight: 0.910504 +Vertex 2753: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.050637 + Group: 'LeftHandPinky3', Weight: 0.933317 +Vertex 2754: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.063967 + Group: 'LeftHandPinky3', Weight: 0.932019 +Vertex 2755: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.043325 + Group: 'LeftHandPinky3', Weight: 0.947059 +Vertex 2756: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.985980 +Vertex 2757: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.987719 +Vertex 2758: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.995219 +Vertex 2759: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993214 +Vertex 2760: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.996277 +Vertex 2761: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.987440 +Vertex 2762: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.986769 +Vertex 2763: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.989280 +Vertex 2764: +Vertex groups: 2 + Group: 'LeftHandMiddle1', Weight: 0.141197 + Group: 'LeftHandMiddle2', Weight: 0.818713 +Vertex 2765: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.277471 + Group: 'LeftHandMiddle2', Weight: 0.298310 + Group: 'LeftHandRing1', Weight: 0.091469 + Group: 'LeftHandRing2', Weight: 0.326409 +Vertex 2766: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.108677 + Group: 'LeftHandMiddle2', Weight: 0.081686 + Group: 'LeftHandRing1', Weight: 0.103708 + Group: 'LeftHandRing2', Weight: 0.701312 +Vertex 2767: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.205190 + Group: 'LeftHandIndex2', Weight: 0.104967 + Group: 'LeftHandMiddle1', Weight: 0.298320 + Group: 'LeftHandMiddle2', Weight: 0.334067 +Vertex 2768: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.277232 + Group: 'LeftHandIndex2', Weight: 0.009122 + Group: 'LeftHandMiddle1', Weight: 0.492867 + Group: 'LeftHandMiddle2', Weight: 0.069013 + Group: 'LeftHandRing1', Weight: 0.071155 +Vertex 2769: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.075510 + Group: 'LeftHandIndex2', Weight: 0.028101 + Group: 'LeftHandMiddle1', Weight: 0.138905 + Group: 'LeftHandMiddle2', Weight: 0.652399 + Group: 'LeftHandRing2', Weight: 0.057230 +Vertex 2770: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.153082 + Group: 'LeftHandMiddle1', Weight: 0.521071 + Group: 'LeftHandMiddle2', Weight: 0.105385 + Group: 'LeftHandRing1', Weight: 0.116319 + Group: 'LeftHandRing2', Weight: 0.040019 +Vertex 2771: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.311529 + Group: 'LeftHandIndex2', Weight: 0.246598 + Group: 'LeftHandMiddle1', Weight: 0.146870 + Group: 'LeftHandMiddle2', Weight: 0.259735 +Vertex 2772: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.208659 + Group: 'LeftHandIndex2', Weight: 0.167472 + Group: 'LeftHandMiddle1', Weight: 0.201366 + Group: 'LeftHandMiddle2', Weight: 0.381071 +Vertex 2773: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.071050 + Group: 'LeftHandMiddle2', Weight: 0.602903 + Group: 'LeftHandRing1', Weight: 0.037675 + Group: 'LeftHandRing2', Weight: 0.249635 +Vertex 2774: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.072679 + Group: 'LeftHandMiddle2', Weight: 0.266686 + Group: 'LeftHandRing1', Weight: 0.080376 + Group: 'LeftHandRing2', Weight: 0.557936 +Vertex 2775: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.011335 + Group: 'LeftHandMiddle1', Weight: 0.109972 + Group: 'LeftHandMiddle2', Weight: 0.596514 + Group: 'LeftHandRing1', Weight: 0.029458 + Group: 'LeftHandRing2', Weight: 0.192022 +Vertex 2776: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.459690 + Group: 'LeftHandRing1', Weight: 0.259219 + Group: 'LeftHandMiddle2', Weight: 0.102102 + Group: 'LeftHandRing2', Weight: 0.095130 + Group: 'LeftHandIndex1', Weight: 0.083859 +Vertex 2777: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.062318 + Group: 'LeftHandMiddle2', Weight: 0.182798 + Group: 'LeftHandRing1', Weight: 0.057739 + Group: 'LeftHandRing2', Weight: 0.655213 +Vertex 2778: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.457321 + Group: 'LeftHandMiddle1', Weight: 0.272496 + Group: 'LeftHandRing2', Weight: 0.146295 + Group: 'LeftHandMiddle2', Weight: 0.069243 + Group: 'LeftHandPinky1', Weight: 0.054644 +Vertex 2779: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.112423 + Group: 'LeftHandMiddle2', Weight: 0.540326 + Group: 'LeftHandRing1', Weight: 0.029077 + Group: 'LeftHandRing2', Weight: 0.261140 +Vertex 2780: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.104131 + Group: 'LeftHandMiddle2', Weight: 0.391377 + Group: 'LeftHandRing1', Weight: 0.038292 + Group: 'LeftHandRing2', Weight: 0.416941 +Vertex 2781: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.308537 + Group: 'LeftHandRing2', Weight: 0.414202 + Group: 'LeftHandPinky2', Weight: 0.236525 +Vertex 2782: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.140092 + Group: 'LeftHandRing2', Weight: 0.187146 + Group: 'LeftHandPinky2', Weight: 0.603037 + Group: 'LeftHandPinky3', Weight: 0.036213 +Vertex 2783: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.059933 + Group: 'LeftHandRing1', Weight: 0.477647 + Group: 'LeftHandRing2', Weight: 0.139513 + Group: 'LeftHandPinky1', Weight: 0.197534 + Group: 'LeftHandPinky2', Weight: 0.081256 +Vertex 2784: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.022765 + Group: 'LeftHandRing1', Weight: 0.315890 + Group: 'LeftHandRing2', Weight: 0.086337 + Group: 'LeftHandPinky1', Weight: 0.367926 + Group: 'LeftHandPinky2', Weight: 0.158273 +Vertex 2785: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.287180 + Group: 'LeftHandRing2', Weight: 0.453400 + Group: 'LeftHandPinky2', Weight: 0.204697 +Vertex 2786: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.143826 + Group: 'LeftHandRing2', Weight: 0.210945 + Group: 'LeftHandPinky1', Weight: 0.013837 + Group: 'LeftHandPinky2', Weight: 0.556703 + Group: 'LeftHandPinky3', Weight: 0.044165 +Vertex 2787: +Vertex groups: 2 + Group: 'LeftHandRing1', Weight: 0.143741 + Group: 'LeftHandRing2', Weight: 0.819269 +Vertex 2788: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.020590 + Group: 'LeftHandMiddle2', Weight: 0.001548 + Group: 'LeftHandRing1', Weight: 0.116178 + Group: 'LeftHandRing2', Weight: 0.816279 +Vertex 2789: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.192712 + Group: 'LeftHandRing2', Weight: 0.728542 + Group: 'LeftHandPinky2', Weight: 0.065113 +Vertex 2790: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.283841 + Group: 'LeftHandRing2', Weight: 0.564918 + Group: 'LeftHandPinky2', Weight: 0.122651 +Vertex 2791: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.911137 + Group: 'LeftHandMiddle3', Weight: 0.077374 +Vertex 2792: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.919751 + Group: 'LeftHandMiddle3', Weight: 0.062387 +Vertex 2793: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.884531 + Group: 'LeftHandMiddle3', Weight: 0.099851 +Vertex 2794: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.847301 + Group: 'LeftHandMiddle3', Weight: 0.112298 +Vertex 2795: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.855769 + Group: 'LeftHandMiddle3', Weight: 0.118655 +Vertex 2796: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.895898 + Group: 'LeftHandMiddle3', Weight: 0.075240 +Vertex 2797: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.932524 + Group: 'LeftHandMiddle3', Weight: 0.038509 +Vertex 2798: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.846753 + Group: 'LeftHandMiddle3', Weight: 0.120452 +Vertex 2799: +Vertex groups: 1 + Group: 'LeftHandRing2', Weight: 0.971699 +Vertex 2800: +Vertex groups: 1 + Group: 'LeftHandRing2', Weight: 0.967804 +Vertex 2801: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.956894 + Group: 'LeftHandRing3', Weight: 0.012466 +Vertex 2802: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.892292 + Group: 'LeftHandRing3', Weight: 0.084750 +Vertex 2803: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.838937 + Group: 'LeftHandRing3', Weight: 0.131041 +Vertex 2804: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.867590 + Group: 'LeftHandRing3', Weight: 0.104504 +Vertex 2805: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.914604 + Group: 'LeftHandRing3', Weight: 0.032304 +Vertex 2806: +Vertex groups: 1 + Group: 'LeftHandRing2', Weight: 0.950202 +Vertex 2807: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.924429 + Group: 'LeftHandPinky3', Weight: 0.051360 +Vertex 2808: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.930698 + Group: 'LeftHandPinky3', Weight: 0.055108 +Vertex 2809: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.870318 + Group: 'LeftHandPinky3', Weight: 0.079935 +Vertex 2810: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.069803 + Group: 'LeftHandRing2', Weight: 0.091080 + Group: 'LeftHandPinky2', Weight: 0.757043 + Group: 'LeftHandPinky3', Weight: 0.064509 +Vertex 2811: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.038334 + Group: 'LeftHandRing2', Weight: 0.054803 + Group: 'LeftHandPinky1', Weight: 0.014272 + Group: 'LeftHandPinky2', Weight: 0.794389 + Group: 'LeftHandPinky3', Weight: 0.070231 +Vertex 2812: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.835273 + Group: 'LeftHandPinky3', Weight: 0.121399 +Vertex 2813: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.891592 + Group: 'LeftHandPinky3', Weight: 0.094568 +Vertex 2814: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.914869 + Group: 'LeftHandPinky3', Weight: 0.074236 +Vertex 2815: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.218273 + Group: 'LeftHandRing2', Weight: 0.606068 + Group: 'LeftHandPinky2', Weight: 0.147034 +Vertex 2816: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.091555 + Group: 'LeftHandPinky2', Weight: 0.895438 +Vertex 2817: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.091354 + Group: 'LeftHandPinky2', Weight: 0.885939 +Vertex 2818: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.848605 + Group: 'LeftHandPinky2', Weight: 0.138658 +Vertex 2819: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.803575 + Group: 'LeftHandPinky2', Weight: 0.163798 +Vertex 2820: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.013346 + Group: 'LeftHandPinky1', Weight: 0.164304 + Group: 'LeftHandPinky2', Weight: 0.772421 +Vertex 2821: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.074468 + Group: 'LeftHandPinky1', Weight: 0.773026 + Group: 'LeftHandPinky2', Weight: 0.115413 +Vertex 2822: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.275027 + Group: 'LeftHandMiddle2', Weight: 0.340713 + Group: 'LeftHandRing1', Weight: 0.050053 + Group: 'LeftHandRing2', Weight: 0.326486 +Vertex 2823: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.104331 + Group: 'LeftHandMiddle2', Weight: 0.117342 + Group: 'LeftHandRing1', Weight: 0.052259 + Group: 'LeftHandRing2', Weight: 0.719111 +Vertex 2824: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.261860 + Group: 'LeftHandMiddle2', Weight: 0.356814 + Group: 'LeftHandRing1', Weight: 0.016408 + Group: 'LeftHandRing2', Weight: 0.337183 +Vertex 2825: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.110223 + Group: 'LeftHandMiddle2', Weight: 0.137575 + Group: 'LeftHandRing1', Weight: 0.046778 + Group: 'LeftHandRing2', Weight: 0.692242 +Vertex 2826: +Vertex groups: 4 + Group: 'LeftHandMiddle2', Weight: 0.024378 + Group: 'LeftHandRing1', Weight: 0.098852 + Group: 'LeftHandRing2', Weight: 0.772333 + Group: 'LeftHandPinky2', Weight: 0.010101 +Vertex 2827: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.561277 + Group: 'LeftHandRing2', Weight: 0.165259 + Group: 'LeftHandMiddle1', Weight: 0.165063 + Group: 'LeftHandPinky1', Weight: 0.089942 + Group: 'LeftHandMiddle2', Weight: 0.018459 +Vertex 2828: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.011598 + Group: 'LeftHandThumb2', Weight: 0.008767 + Group: 'LeftHandIndex1', Weight: 0.920366 +Vertex 2829: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.036306 + Group: 'LeftHandIndex1', Weight: 0.729030 + Group: 'LeftHandMiddle1', Weight: 0.210194 +Vertex 2830: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.001389 + Group: 'LeftHandIndex1', Weight: 0.391015 + Group: 'LeftHandMiddle1', Weight: 0.562352 +Vertex 2831: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.011256 + Group: 'LeftHandIndex1', Weight: 0.132136 + Group: 'LeftHandMiddle1', Weight: 0.813340 +Vertex 2832: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.062132 + Group: 'LeftHandMiddle1', Weight: 0.377012 + Group: 'LeftHandRing1', Weight: 0.512168 +Vertex 2833: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.037849 + Group: 'LeftHandMiddle1', Weight: 0.185557 + Group: 'LeftHandRing1', Weight: 0.713050 + Group: 'LeftHandPinky1', Weight: 0.012180 +Vertex 2834: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.376008 + Group: 'LeftHandPinky1', Weight: 0.549167 + Group: 'LeftHandPinky2', Weight: 0.036971 +Vertex 2835: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.147381 + Group: 'LeftHandPinky1', Weight: 0.793631 + Group: 'LeftHandPinky2', Weight: 0.042455 +Vertex 2836: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.057273 + Group: 'LeftHandIndex1', Weight: 0.084128 + Group: 'LeftHandMiddle1', Weight: 0.830669 +Vertex 2837: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.116779 + Group: 'LeftHandMiddle1', Weight: 0.600688 + Group: 'LeftHandRing1', Weight: 0.245393 +Vertex 2838: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.066291 + Group: 'LeftHandMiddle1', Weight: 0.110138 + Group: 'LeftHandRing1', Weight: 0.749875 + Group: 'LeftHandPinky1', Weight: 0.062297 +Vertex 2839: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.000527 + Group: 'LeftHandRing1', Weight: 0.592354 + Group: 'LeftHandPinky1', Weight: 0.342759 +Vertex 2840: +Vertex groups: 2 + Group: 'LeftHandRing1', Weight: 0.065944 + Group: 'LeftHandPinky1', Weight: 0.910453 +Vertex 2841: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.118532 + Group: 'LeftHandThumb2', Weight: 0.143727 + Group: 'LeftHandIndex1', Weight: 0.710667 +Vertex 2842: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.106108 + Group: 'LeftHandThumb2', Weight: 0.190031 + Group: 'LeftHandIndex1', Weight: 0.655366 +Vertex 2843: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.180730 + Group: 'LeftHandRing2', Weight: 0.033176 + Group: 'LeftHandPinky1', Weight: 0.467186 + Group: 'LeftHandPinky2', Weight: 0.262900 +Vertex 2844: +Vertex groups: 1 + Group: 'LeftHandPinky1', Weight: 0.964445 +Vertex 2845: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.933218 + Group: 'LeftHandPinky2', Weight: 0.014766 +Vertex 2846: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.010291 + Group: 'LeftHandRing1', Weight: 0.009548 + Group: 'LeftHandPinky1', Weight: 0.894475 + Group: 'LeftHandPinky2', Weight: 0.016507 +Vertex 2847: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.034531 + Group: 'LeftHandRing1', Weight: 0.069390 + Group: 'LeftHandPinky1', Weight: 0.832795 + Group: 'LeftHandPinky2', Weight: 0.011915 +Vertex 2848: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.072888 + Group: 'LeftHandThumb1', Weight: 0.607166 + Group: 'LeftHandThumb2', Weight: 0.064758 + Group: 'LeftHandIndex1', Weight: 0.248961 +Vertex 2849: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.007062 + Group: 'LeftHand', Weight: 0.928718 + Group: 'LeftHandThumb1', Weight: 0.023758 +Vertex 2850: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.100802 + Group: 'LeftHand', Weight: 0.781669 + Group: 'LeftHandThumb1', Weight: 0.111997 +Vertex 2851: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.165624 + Group: 'LeftHand', Weight: 0.647142 + Group: 'LeftHandThumb1', Weight: 0.181855 +Vertex 2852: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.056348 + Group: 'LeftHand', Weight: 0.359026 + Group: 'LeftHandThumb1', Weight: 0.571656 +Vertex 2853: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.157567 + Group: 'LeftHand', Weight: 0.571169 + Group: 'LeftHandThumb1', Weight: 0.263780 +Vertex 2854: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.065961 + Group: 'LeftHand', Weight: 0.312501 + Group: 'LeftHandThumb1', Weight: 0.610330 +Vertex 2855: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.332757 + Group: 'LeftHandThumb1', Weight: 0.073037 + Group: 'LeftHandIndex1', Weight: 0.550420 + Group: 'LeftHandMiddle1', Weight: 0.012800 +Vertex 2856: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.830772 + Group: 'LeftHandIndex1', Weight: 0.106799 + Group: 'LeftHandMiddle1', Weight: 0.012936 +Vertex 2857: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.036756 + Group: 'LeftHand', Weight: 0.672572 + Group: 'LeftHandThumb1', Weight: 0.266164 +Vertex 2858: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.007190 + Group: 'LeftHand', Weight: 0.241110 + Group: 'LeftHandThumb1', Weight: 0.714223 +Vertex 2859: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.139299 + Group: 'LeftHandThumb1', Weight: 0.819527 +Vertex 2860: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.358503 + Group: 'LeftHandThumb1', Weight: 0.573134 + Group: 'LeftHandPinky1', Weight: 0.013061 +Vertex 2861: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.232100 + Group: 'LeftHandThumb1', Weight: 0.644587 + Group: 'LeftHandIndex1', Weight: 0.010202 + Group: 'LeftHandPinky1', Weight: 0.040663 +Vertex 2862: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.096382 + Group: 'LeftHandThumb1', Weight: 0.816304 + Group: 'LeftHandThumb2', Weight: 0.017826 +Vertex 2863: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.071919 + Group: 'LeftHandThumb1', Weight: 0.680366 + Group: 'LeftHandThumb2', Weight: 0.097444 + Group: 'LeftHandIndex1', Weight: 0.091617 +Vertex 2864: +Vertex groups: 5 + Group: 'LeftHandThumb1', Weight: 0.580971 + Group: 'LeftHand', Weight: 0.184972 + Group: 'LeftHandIndex1', Weight: 0.141771 + Group: 'LeftHandThumb2', Weight: 0.054016 + Group: 'LeftHandPinky1', Weight: 0.038269 +Vertex 2865: +Vertex groups: 5 + Group: 'LeftHandThumb1', Weight: 0.209668 + Group: 'LeftHandThumb2', Weight: 0.383324 + Group: 'LeftHandThumb3', Weight: 0.018214 + Group: 'LeftHandIndex1', Weight: 0.297816 + Group: 'LeftHandMiddle1', Weight: 0.006380 +Vertex 2866: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.642099 + Group: 'LeftHandThumb2', Weight: 0.137464 + Group: 'LeftHandThumb1', Weight: 0.127514 + Group: 'LeftHandMiddle1', Weight: 0.077022 + Group: 'LeftHand', Weight: 0.015901 +Vertex 2867: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.196041 + Group: 'LeftHandThumb2', Weight: 0.354466 + Group: 'LeftHandThumb3', Weight: 0.053203 + Group: 'LeftHandIndex1', Weight: 0.354207 +Vertex 2868: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.104027 + Group: 'LeftHandThumb2', Weight: 0.171179 + Group: 'LeftHandIndex1', Weight: 0.636655 + Group: 'LeftHandMiddle1', Weight: 0.000457 +Vertex 2869: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.184881 + Group: 'LeftHandThumb2', Weight: 0.387581 + Group: 'LeftHandThumb3', Weight: 0.049134 + Group: 'LeftHandIndex1', Weight: 0.359724 +Vertex 2870: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.237711 + Group: 'LeftHandThumb2', Weight: 0.389391 + Group: 'LeftHandThumb3', Weight: 0.001763 + Group: 'LeftHandIndex1', Weight: 0.334540 +Vertex 2871: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.307521 + Group: 'LeftHandThumb2', Weight: 0.578125 + Group: 'LeftHandIndex1', Weight: 0.093273 +Vertex 2872: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.861253 + Group: 'LeftHandThumb2', Weight: 0.106812 +Vertex 2873: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.849842 + Group: 'LeftHandThumb2', Weight: 0.136973 +Vertex 2874: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.015966 + Group: 'LeftHandThumb1', Weight: 0.158445 + Group: 'LeftHandThumb2', Weight: 0.070195 + Group: 'LeftHandIndex1', Weight: 0.729618 +Vertex 2875: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.296805 + Group: 'LeftHandThumb2', Weight: 0.306202 + Group: 'LeftHandIndex1', Weight: 0.368666 +Vertex 2876: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.898516 + Group: 'LeftHandThumb2', Weight: 0.047296 + Group: 'LeftHandIndex1', Weight: 0.016046 +Vertex 2877: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.925440 + Group: 'LeftHandThumb2', Weight: 0.036668 +Vertex 2878: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.133808 + Group: 'LeftHandThumb1', Weight: 0.828825 +Vertex 2879: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.118683 + Group: 'LeftHandThumb1', Weight: 0.845301 +Vertex 2880: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.100380 + Group: 'LeftHandThumb1', Weight: 0.864987 +Vertex 2881: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.117107 + Group: 'LeftHandThumb1', Weight: 0.104246 + Group: 'LeftHandIndex1', Weight: 0.747449 +Vertex 2882: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.729894 + Group: 'LeftHandIndex1', Weight: 0.025969 + Group: 'LeftHandMiddle1', Weight: 0.174173 + Group: 'LeftHandRing1', Weight: 0.025858 +Vertex 2883: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.805796 + Group: 'LeftHandMiddle1', Weight: 0.080893 + Group: 'LeftHandRing1', Weight: 0.060210 + Group: 'LeftHandPinky1', Weight: 0.021022 +Vertex 2884: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.822313 + Group: 'LeftHandPinky1', Weight: 0.123206 +Vertex 2885: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.325922 + Group: 'LeftHandRing1', Weight: 0.052452 + Group: 'LeftHandPinky1', Weight: 0.606970 +Vertex 2886: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.121254 + Group: 'LeftHandRing1', Weight: 0.141281 + Group: 'LeftHandPinky1', Weight: 0.723037 +Vertex 2887: +Vertex groups: 1 + Group: 'LeftHandPinky1', Weight: 0.953060 +Vertex 2888: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.060836 + Group: 'LeftHandPinky1', Weight: 0.927973 +Vertex 2889: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.050537 + Group: 'LeftHandThumb1', Weight: 0.842678 + Group: 'LeftHandThumb2', Weight: 0.013631 + Group: 'LeftHandIndex1', Weight: 0.070810 +Vertex 2890: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.664516 + Group: 'LeftHandThumb2', Weight: 0.278317 + Group: 'LeftHandIndex1', Weight: 0.039112 +Vertex 2891: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.000823 + Group: 'LeftHandThumb1', Weight: 0.663988 + Group: 'LeftHandThumb2', Weight: 0.148666 + Group: 'LeftHandIndex1', Weight: 0.156110 +Vertex 2892: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.238449 + Group: 'LeftHandThumb1', Weight: 0.510820 + Group: 'LeftHandIndex1', Weight: 0.221834 +Vertex 2893: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.095601 + Group: 'LeftHandThumb1', Weight: 0.836123 + Group: 'LeftHandIndex1', Weight: 0.048634 +Vertex 2894: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.053477 + Group: 'LeftHandThumb1', Weight: 0.908789 +Vertex 2895: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.040250 + Group: 'LeftHandThumb1', Weight: 0.919082 +Vertex 2896: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.605274 + Group: 'LeftHandThumb1', Weight: 0.244996 + Group: 'LeftHandIndex1', Weight: 0.130781 +Vertex 2897: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.879772 + Group: 'LeftHandThumb1', Weight: 0.089896 +Vertex 2898: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.277821 + Group: 'LeftHandThumb1', Weight: 0.667522 + Group: 'LeftHandIndex1', Weight: 0.019244 +Vertex 2899: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.037082 + Group: 'LeftHand', Weight: 0.641269 + Group: 'LeftHandThumb1', Weight: 0.299622 +Vertex 2900: +Vertex groups: 1 + Group: 'LeftHand', Weight: 0.937477 +Vertex 2901: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.917854 + Group: 'LeftHandPinky1', Weight: 0.063052 +Vertex 2902: +Vertex groups: 1 + Group: 'LeftHand', Weight: 0.966304 +Vertex 2903: +Vertex groups: 1 + Group: 'LeftHand', Weight: 0.967152 +Vertex 2904: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.051251 + Group: 'LeftHand', Weight: 0.931143 +Vertex 2905: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.945542 + Group: 'LeftHandPinky1', Weight: 0.007713 +Vertex 2906: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.319701 + Group: 'LeftHandPinky1', Weight: 0.658509 +Vertex 2907: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.038546 + Group: 'LeftHand', Weight: 0.724523 + Group: 'LeftHandPinky1', Weight: 0.221640 +Vertex 2908: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.727428 + Group: 'LeftHandPinky1', Weight: 0.245494 +Vertex 2909: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.029866 + Group: 'LeftHand', Weight: 0.856003 + Group: 'LeftHandPinky1', Weight: 0.097014 +Vertex 2910: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.131350 + Group: 'LeftHand', Weight: 0.826255 + Group: 'LeftHandPinky1', Weight: 0.027212 +Vertex 2911: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.083765 + Group: 'LeftHand', Weight: 0.796393 + Group: 'LeftHandPinky1', Weight: 0.112426 +Vertex 2912: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.068230 + Group: 'LeftHand', Weight: 0.800759 + Group: 'LeftHandPinky1', Weight: 0.116735 +Vertex 2913: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.028292 + Group: 'LeftHand', Weight: 0.699315 + Group: 'LeftHandPinky1', Weight: 0.242259 +Vertex 2914: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.273441 + Group: 'LeftHandPinky1', Weight: 0.692643 +Vertex 2915: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.071213 + Group: 'LeftHandPinky1', Weight: 0.902157 +Vertex 2916: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.058134 + Group: 'LeftHandPinky1', Weight: 0.927455 +Vertex 2917: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.273584 + Group: 'LeftHandPinky1', Weight: 0.701248 +Vertex 2918: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.034652 + Group: 'LeftHand', Weight: 0.704526 + Group: 'LeftHandPinky1', Weight: 0.240795 +Vertex 2919: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.077046 + Group: 'LeftHand', Weight: 0.794623 + Group: 'LeftHandPinky1', Weight: 0.119110 +Vertex 2920: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.110417 + Group: 'LeftHand', Weight: 0.804644 + Group: 'LeftHandPinky1', Weight: 0.076441 +Vertex 2921: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.088046 + Group: 'LeftHand', Weight: 0.829994 + Group: 'LeftHandPinky1', Weight: 0.071193 +Vertex 2922: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.071046 + Group: 'LeftHand', Weight: 0.835847 + Group: 'LeftHandPinky1', Weight: 0.075432 +Vertex 2923: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.056429 + Group: 'LeftHand', Weight: 0.803196 + Group: 'LeftHandPinky1', Weight: 0.118055 +Vertex 2924: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.020274 + Group: 'LeftHand', Weight: 0.709855 + Group: 'LeftHandPinky1', Weight: 0.224637 +Vertex 2925: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.293498 + Group: 'LeftHandPinky1', Weight: 0.659994 +Vertex 2926: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.087405 + Group: 'LeftHandPinky1', Weight: 0.870601 +Vertex 2927: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.288137 + Group: 'LeftHandThumb1', Weight: 0.030872 + Group: 'LeftHandPinky1', Weight: 0.636070 +Vertex 2928: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.003452 + Group: 'LeftHand', Weight: 0.696290 + Group: 'LeftHandThumb1', Weight: 0.038842 + Group: 'LeftHandPinky1', Weight: 0.220400 +Vertex 2929: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.037361 + Group: 'LeftHand', Weight: 0.799625 + Group: 'LeftHandThumb1', Weight: 0.019752 + Group: 'LeftHandPinky1', Weight: 0.114817 +Vertex 2930: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.109104 + Group: 'LeftHandRing1', Weight: 0.033766 + Group: 'LeftHandPinky1', Weight: 0.806271 +Vertex 2931: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.021765 + Group: 'LeftHand', Weight: 0.813375 + Group: 'LeftHandThumb1', Weight: 0.069478 + Group: 'LeftHandPinky1', Weight: 0.071718 +Vertex 2932: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.018719 + Group: 'LeftHand', Weight: 0.781045 + Group: 'LeftHandThumb1', Weight: 0.145457 + Group: 'LeftHandPinky1', Weight: 0.010260 +Vertex 2933: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.706793 + Group: 'LeftHandThumb1', Weight: 0.099356 + Group: 'LeftHandPinky1', Weight: 0.151621 +Vertex 2934: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.630767 + Group: 'LeftHandThumb1', Weight: 0.278894 + Group: 'LeftHandPinky1', Weight: 0.052701 +Vertex 2935: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.521823 + Group: 'LeftHandThumb1', Weight: 0.117584 + Group: 'LeftHandRing1', Weight: 0.037185 + Group: 'LeftHandPinky1', Weight: 0.290654 +Vertex 2936: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.503799 + Group: 'LeftHandThumb1', Weight: 0.315440 + Group: 'LeftHandRing1', Weight: 0.004174 + Group: 'LeftHandPinky1', Weight: 0.105603 +Vertex 2937: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.763257 + Group: 'LeftHandThumb2', Weight: 0.218256 +Vertex 2938: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.903304 + Group: 'LeftHandThumb2', Weight: 0.065752 +Vertex 2939: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.036566 + Group: 'LeftHandThumb1', Weight: 0.912803 + Group: 'LeftHandThumb2', Weight: 0.013481 +Vertex 2940: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.084212 + Group: 'LeftHandThumb1', Weight: 0.875190 +Vertex 2941: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.021467 + Group: 'LeftHandThumb1', Weight: 0.854662 + Group: 'LeftHandThumb2', Weight: 0.080392 +Vertex 2942: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.039620 + Group: 'LeftHandThumb1', Weight: 0.901148 + Group: 'LeftHandThumb2', Weight: 0.029764 +Vertex 2943: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.864973 + Group: 'LeftHandThumb2', Weight: 0.093696 +Vertex 2944: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.732469 + Group: 'LeftHandThumb2', Weight: 0.235895 +Vertex 2945: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.864762 + Group: 'LeftHandThumb3_end', Weight: 0.129316 +Vertex 2946: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.823955 + Group: 'LeftHandThumb3_end', Weight: 0.155112 +Vertex 2947: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.821628 + Group: 'LeftHandThumb3_end', Weight: 0.151244 +Vertex 2948: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.818647 + Group: 'LeftHandThumb3_end', Weight: 0.162968 +Vertex 2949: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.844685 + Group: 'LeftHandThumb3_end', Weight: 0.143070 +Vertex 2950: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.851677 + Group: 'LeftHandThumb3_end', Weight: 0.142808 +Vertex 2951: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.885627 + Group: 'LeftHandThumb3_end', Weight: 0.108930 +Vertex 2952: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.989758 +Vertex 2953: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.854525 + Group: 'LeftHandThumb3_end', Weight: 0.130772 +Vertex 2954: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.011436 + Group: 'LeftHandThumb3_end', Weight: 0.968906 +Vertex 2955: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.055316 + Group: 'LeftHandThumb3_end', Weight: 0.943761 +Vertex 2956: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.068436 + Group: 'LeftHandThumb3_end', Weight: 0.929990 +Vertex 2957: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.065354 + Group: 'LeftHandThumb3_end', Weight: 0.932802 +Vertex 2958: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.061384 + Group: 'LeftHandThumb3_end', Weight: 0.937139 +Vertex 2959: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.048164 + Group: 'LeftHandThumb3_end', Weight: 0.950302 +Vertex 2960: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.054960 + Group: 'LeftHandThumb3_end', Weight: 0.944023 +Vertex 2961: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998594 +Vertex 2962: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997753 +Vertex 2963: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997188 +Vertex 2964: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.996246 +Vertex 2965: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.996891 +Vertex 2966: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997027 +Vertex 2967: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998509 +Vertex 2968: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998069 +Vertex 2969: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998002 +Vertex 2970: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.982087 +Vertex 2971: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.981536 +Vertex 2972: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.984963 +Vertex 2973: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.992677 +Vertex 2974: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.988404 +Vertex 2975: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998419 +Vertex 2976: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.983785 +Vertex 2977: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.985286 +Vertex 2978: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.993083 +Vertex 2979: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.993710 +Vertex 2980: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997114 +Vertex 2981: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.993962 +Vertex 2982: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.995046 +Vertex 2983: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.991406 +Vertex 2984: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.996365 +Vertex 2985: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998950 +Vertex 2986: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.124207 + Group: 'LeftHandThumb3_end', Weight: 0.874674 +Vertex 2987: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.189699 + Group: 'LeftHandThumb3_end', Weight: 0.807387 +Vertex 2988: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.205965 + Group: 'LeftHandThumb3_end', Weight: 0.789329 +Vertex 2989: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.202287 + Group: 'LeftHandThumb3_end', Weight: 0.791562 +Vertex 2990: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.193243 + Group: 'LeftHandThumb3_end', Weight: 0.801977 +Vertex 2991: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.180388 + Group: 'LeftHandThumb3_end', Weight: 0.816330 +Vertex 2992: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.122719 + Group: 'LeftHandThumb3_end', Weight: 0.876110 +Vertex 2993: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.085607 + Group: 'LeftHandThumb3_end', Weight: 0.913790 +Vertex 2994: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.068443 + Group: 'LeftHandThumb3', Weight: 0.918781 +Vertex 2995: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.098770 + Group: 'LeftHandThumb3', Weight: 0.856921 +Vertex 2996: +Vertex groups: 3 + Group: 'LeftHandThumb2', Weight: 0.115820 + Group: 'LeftHandThumb3', Weight: 0.839229 + Group: 'LeftHandThumb3_end', Weight: 0.009763 +Vertex 2997: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.100933 + Group: 'LeftHandThumb3', Weight: 0.868889 +Vertex 2998: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.083499 + Group: 'LeftHandThumb3', Weight: 0.893184 +Vertex 2999: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.055231 + Group: 'LeftHandThumb3', Weight: 0.927931 +Vertex 3000: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.066824 + Group: 'LeftHandThumb3', Weight: 0.923192 +Vertex 3001: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.089577 + Group: 'LeftHandThumb3', Weight: 0.881430 +Vertex 3002: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.003964 + Group: 'LeftHandThumb2', Weight: 0.831957 + Group: 'LeftHandThumb3', Weight: 0.118254 +Vertex 3003: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.067520 + Group: 'LeftHandThumb2', Weight: 0.675642 + Group: 'LeftHandThumb3', Weight: 0.144021 + Group: 'LeftHandIndex1', Weight: 0.096133 +Vertex 3004: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.056414 + Group: 'LeftHandThumb2', Weight: 0.747813 + Group: 'LeftHandThumb3', Weight: 0.157329 + Group: 'LeftHandIndex1', Weight: 0.004024 +Vertex 3005: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.072600 + Group: 'LeftHandThumb2', Weight: 0.786069 + Group: 'LeftHandThumb3', Weight: 0.125886 +Vertex 3006: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.061901 + Group: 'LeftHandThumb2', Weight: 0.809953 + Group: 'LeftHandThumb3', Weight: 0.120685 +Vertex 3007: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.019339 + Group: 'LeftHandThumb2', Weight: 0.854457 + Group: 'LeftHandThumb3', Weight: 0.107009 +Vertex 3008: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.004348 + Group: 'LeftHandThumb2', Weight: 0.889260 + Group: 'LeftHandThumb3', Weight: 0.078144 +Vertex 3009: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.059618 + Group: 'LeftHandThumb2', Weight: 0.723970 + Group: 'LeftHandThumb3', Weight: 0.116656 + Group: 'LeftHandIndex1', Weight: 0.091693 +Vertex 3010: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.106598 + Group: 'LeftHandThumb2', Weight: 0.715390 + Group: 'LeftHandThumb3', Weight: 0.054049 + Group: 'LeftHandIndex1', Weight: 0.117653 +Vertex 3011: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.107819 + Group: 'LeftHandThumb2', Weight: 0.816792 + Group: 'LeftHandThumb3', Weight: 0.013712 + Group: 'LeftHandIndex1', Weight: 0.030902 +Vertex 3012: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.168661 + Group: 'LeftHandThumb2', Weight: 0.806558 +Vertex 3013: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.175173 + Group: 'LeftHandThumb2', Weight: 0.791229 + Group: 'LeftHandThumb3', Weight: 0.007579 +Vertex 3014: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.239742 + Group: 'LeftHandThumb2', Weight: 0.711204 + Group: 'LeftHandThumb3', Weight: 0.027321 +Vertex 3015: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.261953 + Group: 'LeftHandThumb2', Weight: 0.667988 + Group: 'LeftHandThumb3', Weight: 0.036913 +Vertex 3016: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.220894 + Group: 'LeftHandThumb2', Weight: 0.639740 + Group: 'LeftHandThumb3', Weight: 0.038863 + Group: 'LeftHandIndex1', Weight: 0.067181 +Vertex 3017: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.172624 + Group: 'LeftHandThumb2', Weight: 0.582048 + Group: 'LeftHandThumb3', Weight: 0.058218 + Group: 'LeftHandIndex1', Weight: 0.149289 +Vertex 3018: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.442834 + Group: 'LeftHandThumb1', Weight: 0.291974 + Group: 'LeftHand', Weight: 0.102214 + Group: 'LeftHandThumb2', Weight: 0.093561 + Group: 'LeftHandMiddle1', Weight: 0.069417 +Vertex 3019: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.046180 + Group: 'LeftHandThumb1', Weight: 0.453440 + Group: 'LeftHandThumb2', Weight: 0.218238 + Group: 'LeftHandIndex1', Weight: 0.200815 + Group: 'LeftHandMiddle1', Weight: 0.003905 +Vertex 3020: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.655534 + Group: 'LeftHandThumb2', Weight: 0.292863 +Vertex 3021: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.004761 + Group: 'LeftHandThumb1', Weight: 0.703301 + Group: 'LeftHandThumb2', Weight: 0.200322 + Group: 'LeftHandIndex1', Weight: 0.024677 +Vertex 3022: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.472703 + Group: 'LeftHandThumb1', Weight: 0.179453 + Group: 'LeftHandPinky1', Weight: 0.127638 + Group: 'LeftHandRing1', Weight: 0.114973 + Group: 'LeftHandIndex1', Weight: 0.105233 +Vertex 3023: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.630350 + Group: 'LeftHandMiddle1', Weight: 0.184882 + Group: 'LeftHandThumb1', Weight: 0.066465 + Group: 'LeftHandThumb2', Weight: 0.063021 + Group: 'LeftHandRing1', Weight: 0.055282 +Vertex 3024: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.471132 + Group: 'LeftHandMiddle1', Weight: 0.202004 + Group: 'LeftHandThumb1', Weight: 0.120714 + Group: 'LeftHand', Weight: 0.106065 + Group: 'LeftHandRing1', Weight: 0.100085 +Vertex 3025: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.393233 + Group: 'LeftHandRing1', Weight: 0.272193 + Group: 'LeftHandIndex1', Weight: 0.189083 + Group: 'LeftHand', Weight: 0.089236 + Group: 'LeftHandPinky1', Weight: 0.056254 +Vertex 3026: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.402059 + Group: 'LeftHandIndex1', Weight: 0.326202 + Group: 'LeftHandRing1', Weight: 0.142276 + Group: 'LeftHand', Weight: 0.066753 + Group: 'LeftHandThumb1', Weight: 0.062709 +Vertex 3027: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.591674 + Group: 'LeftHandRing1', Weight: 0.193208 + Group: 'LeftHandIndex1', Weight: 0.189626 + Group: 'LeftHandMiddle2', Weight: 0.015205 + Group: 'LeftHand', Weight: 0.010287 +Vertex 3028: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.546621 + Group: 'LeftHandIndex1', Weight: 0.318611 + Group: 'LeftHandRing1', Weight: 0.112470 + Group: 'LeftHandMiddle2', Weight: 0.014698 + Group: 'LeftHandThumb1', Weight: 0.007601 +Vertex 3029: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.501652 + Group: 'LeftHandRing1', Weight: 0.318032 + Group: 'LeftHandIndex1', Weight: 0.107087 + Group: 'LeftHandPinky1', Weight: 0.048839 + Group: 'LeftHandRing2', Weight: 0.024389 +Vertex 3030: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.600905 + Group: 'LeftHandMiddle1', Weight: 0.180226 + Group: 'LeftHandPinky1', Weight: 0.108231 + Group: 'LeftHandRing2', Weight: 0.088620 + Group: 'LeftHandIndex1', Weight: 0.022018 +Vertex 3031: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.473748 + Group: 'LeftHandMiddle1', Weight: 0.309088 + Group: 'LeftHandRing2', Weight: 0.084045 + Group: 'LeftHandPinky1', Weight: 0.069124 + Group: 'LeftHandIndex1', Weight: 0.063996 +Vertex 3032: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.472108 + Group: 'LeftHandMiddle1', Weight: 0.240696 + Group: 'LeftHand', Weight: 0.102764 + Group: 'LeftHandIndex1', Weight: 0.099691 + Group: 'LeftHandPinky1', Weight: 0.084741 +Vertex 3033: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.450186 + Group: 'LeftHandPinky1', Weight: 0.310946 + Group: 'LeftHand', Weight: 0.175838 + Group: 'LeftHandThumb1', Weight: 0.039729 + Group: 'LeftHandMiddle1', Weight: 0.023300 +Vertex 3034: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.339910 + Group: 'LeftHandRing1', Weight: 0.310775 + Group: 'LeftHandPinky1', Weight: 0.156821 + Group: 'LeftHandMiddle1', Weight: 0.105123 + Group: 'LeftHandThumb1', Weight: 0.087371 +Vertex 3035: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.222241 + Group: 'LeftHandThumb1', Weight: 0.063149 + Group: 'LeftHandIndex1', Weight: 0.003146 + Group: 'LeftHandRing1', Weight: 0.172627 + Group: 'LeftHandPinky1', Weight: 0.476143 +Vertex 3036: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.084500 + Group: 'LeftHandRing1', Weight: 0.112494 + Group: 'LeftHandPinky1', Weight: 0.738812 +Vertex 3037: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.043562 + Group: 'LeftHandRing1', Weight: 0.147763 + Group: 'LeftHandPinky1', Weight: 0.733992 + Group: 'LeftHandPinky2', Weight: 0.009107 +Vertex 3038: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.077806 + Group: 'LeftHandRing1', Weight: 0.605569 + Group: 'LeftHandRing2', Weight: 0.030375 + Group: 'LeftHandPinky1', Weight: 0.176049 + Group: 'LeftHandPinky2', Weight: 0.020285 +Vertex 3039: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.041686 + Group: 'LeftHandRing1', Weight: 0.496796 + Group: 'LeftHandRing2', Weight: 0.015163 + Group: 'LeftHandPinky1', Weight: 0.316949 + Group: 'LeftHandPinky2', Weight: 0.058550 +Vertex 3040: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.232051 + Group: 'LeftHandPinky1', Weight: 0.602911 + Group: 'LeftHandPinky2', Weight: 0.087237 +Vertex 3041: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.080659 + Group: 'LeftHandIndex1', Weight: 0.014620 + Group: 'LeftHandMiddle1', Weight: 0.070022 + Group: 'LeftHandRing1', Weight: 0.574353 + Group: 'LeftHandPinky1', Weight: 0.187260 +Vertex 3042: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.050027 + Group: 'LeftHandMiddle1', Weight: 0.042419 + Group: 'LeftHandRing1', Weight: 0.503102 + Group: 'LeftHandPinky1', Weight: 0.316584 + Group: 'LeftHandPinky2', Weight: 0.005787 +Vertex 3043: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.961145 +Vertex 3044: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.079331 + Group: 'RightHandMiddle1', Weight: 0.864194 + Group: 'RightHandRing1', Weight: 0.006242 +Vertex 3045: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.996803 +Vertex 3046: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.916858 + Group: 'RightHandRing3', Weight: 0.080323 +Vertex 3047: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.004188 + Group: 'RightHandMiddle1', Weight: 0.832677 + Group: 'RightHandRing1', Weight: 0.099444 +Vertex 3048: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.010774 + Group: 'RightHandRing3_end', Weight: 0.968990 +Vertex 3049: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.926809 + Group: 'RightHandMiddle1', Weight: 0.026706 +Vertex 3050: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.675360 + Group: 'RightHandRing1', Weight: 0.251852 + Group: 'RightHandRing2', Weight: 0.007541 +Vertex 3051: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.724067 + Group: 'RightHandMiddle1', Weight: 0.246250 +Vertex 3052: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.901051 + Group: 'RightHandMiddle1', Weight: 0.079087 +Vertex 3053: +Vertex groups: 1 + Group: 'RightHandIndex1', Weight: 0.953710 +Vertex 3054: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.756922 + Group: 'RightHandIndex2', Weight: 0.102580 + Group: 'RightHandMiddle1', Weight: 0.105288 + Group: 'RightHandMiddle2', Weight: 0.014261 +Vertex 3055: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.895391 + Group: 'RightHandIndex2', Weight: 0.091165 +Vertex 3056: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.830842 + Group: 'RightHandIndex2', Weight: 0.127746 + Group: 'RightHandMiddle1', Weight: 0.010598 +Vertex 3057: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.706083 + Group: 'RightHandMiddle2', Weight: 0.112639 + Group: 'RightHandRing1', Weight: 0.078058 + Group: 'RightHandRing2', Weight: 0.094121 +Vertex 3058: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.045608 + Group: 'RightHandMiddle1', Weight: 0.825065 + Group: 'RightHandMiddle2', Weight: 0.098396 +Vertex 3059: +Vertex groups: 2 + Group: 'RightHandMiddle1', Weight: 0.796871 + Group: 'RightHandMiddle2', Weight: 0.137210 +Vertex 3060: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.101739 + Group: 'RightHandRing1', Weight: 0.798931 + Group: 'RightHandRing2', Weight: 0.058266 +Vertex 3061: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.026939 + Group: 'RightHandRing1', Weight: 0.810663 + Group: 'RightHandRing2', Weight: 0.054132 + Group: 'RightHandPinky1', Weight: 0.066245 +Vertex 3062: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.696837 + Group: 'RightHandRing2', Weight: 0.052175 + Group: 'RightHandPinky1', Weight: 0.173294 + Group: 'RightHandPinky2', Weight: 0.056120 +Vertex 3063: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.578506 + Group: 'RightHandRing2', Weight: 0.270918 + Group: 'RightHandPinky2', Weight: 0.132397 +Vertex 3064: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.035727 + Group: 'RightHandRing1', Weight: 0.677580 + Group: 'RightHandRing2', Weight: 0.258499 +Vertex 3065: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.520496 + Group: 'RightHandRing2', Weight: 0.430346 + Group: 'RightHandPinky2', Weight: 0.005603 +Vertex 3066: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.094035 + Group: 'RightHandPinky1', Weight: 0.797344 + Group: 'RightHandPinky2', Weight: 0.103861 +Vertex 3067: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.017134 + Group: 'RightHandPinky1', Weight: 0.875223 + Group: 'RightHandPinky2', Weight: 0.088069 +Vertex 3068: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.895080 + Group: 'RightHandPinky2', Weight: 0.093744 +Vertex 3069: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.074227 + Group: 'RightHandIndex2', Weight: 0.828359 + Group: 'RightHandMiddle2', Weight: 0.065892 +Vertex 3070: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.092200 + Group: 'RightHandPinky2', Weight: 0.892663 +Vertex 3071: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.091132 + Group: 'RightHandRing2', Weight: 0.024737 + Group: 'RightHandPinky1', Weight: 0.099174 + Group: 'RightHandPinky2', Weight: 0.760177 +Vertex 3072: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.000017 + Group: 'RightHandPinky1', Weight: 0.091164 + Group: 'RightHandPinky2', Weight: 0.869002 +Vertex 3073: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.103197 + Group: 'RightHandIndex1', Weight: 0.005482 + Group: 'RightHandMiddle1', Weight: 0.768860 + Group: 'RightHandRing1', Weight: 0.089102 +Vertex 3074: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.018865 + Group: 'RightHandMiddle1', Weight: 0.031079 + Group: 'RightHandRing1', Weight: 0.749751 + Group: 'RightHandPinky1', Weight: 0.162668 +Vertex 3075: +Vertex groups: 1 + Group: 'RightHandPinky1', Weight: 0.972562 +Vertex 3076: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.361277 + Group: 'RightHandMiddle1', Weight: 0.600899 +Vertex 3077: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.577109 + Group: 'RightHandIndex2', Weight: 0.104447 + Group: 'RightHandMiddle1', Weight: 0.234654 + Group: 'RightHandMiddle2', Weight: 0.078653 +Vertex 3078: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.146343 + Group: 'RightHandMiddle1', Weight: 0.806355 +Vertex 3079: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.156628 + Group: 'RightHandIndex2', Weight: 0.036402 + Group: 'RightHandMiddle1', Weight: 0.643504 + Group: 'RightHandMiddle2', Weight: 0.148263 +Vertex 3080: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.478084 + Group: 'RightHandMiddle2', Weight: 0.099633 + Group: 'RightHandRing1', Weight: 0.171018 + Group: 'RightHandRing2', Weight: 0.244913 +Vertex 3081: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.367476 + Group: 'RightHandRing1', Weight: 0.553431 + Group: 'RightHandRing2', Weight: 0.024824 +Vertex 3082: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.113147 + Group: 'RightHandMiddle2', Weight: 0.003704 + Group: 'RightHandRing1', Weight: 0.448349 + Group: 'RightHandRing2', Weight: 0.405963 +Vertex 3083: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.190050 + Group: 'RightHandRing1', Weight: 0.731379 + Group: 'RightHandRing2', Weight: 0.024453 +Vertex 3084: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.536298 + Group: 'RightHandRing2', Weight: 0.189279 + Group: 'RightHandPinky1', Weight: 0.050599 + Group: 'RightHandPinky2', Weight: 0.211433 +Vertex 3085: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.492703 + Group: 'RightHandRing2', Weight: 0.003234 + Group: 'RightHandPinky1', Weight: 0.373607 + Group: 'RightHandPinky2', Weight: 0.092788 +Vertex 3086: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.196177 + Group: 'RightHandRing2', Weight: 0.091714 + Group: 'RightHandPinky1', Weight: 0.045469 + Group: 'RightHandPinky2', Weight: 0.646298 +Vertex 3087: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.197738 + Group: 'RightHandPinky1', Weight: 0.663254 + Group: 'RightHandPinky2', Weight: 0.120815 +Vertex 3088: +Vertex groups: 1 + Group: 'RightHandIndex1', Weight: 0.941679 +Vertex 3089: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.859808 + Group: 'RightHandIndex2', Weight: 0.128762 +Vertex 3090: +Vertex groups: 3 + Group: 'RightHandThumb2', Weight: 0.005548 + Group: 'RightHandIndex1', Weight: 0.898145 + Group: 'RightHandIndex2', Weight: 0.031406 +Vertex 3091: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.787860 + Group: 'RightHandIndex2', Weight: 0.189741 +Vertex 3092: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.030784 + Group: 'RightHandIndex3', Weight: 0.921718 + Group: 'RightHandIndex3_end', Weight: 0.024484 +Vertex 3093: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.022317 + Group: 'RightHandIndex2', Weight: 0.940503 +Vertex 3094: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.026345 + Group: 'RightHandIndex3_end', Weight: 0.960167 +Vertex 3095: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.951137 + Group: 'RightHandIndex3', Weight: 0.022473 +Vertex 3096: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.978679 +Vertex 3097: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.009934 + Group: 'RightHandIndex3_end', Weight: 0.968877 +Vertex 3098: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.976839 +Vertex 3099: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.014380 + Group: 'RightHandIndex3_end', Weight: 0.966651 +Vertex 3100: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.020076 + Group: 'RightHandIndex3_end', Weight: 0.963461 +Vertex 3101: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.034452 + Group: 'RightHandIndex3_end', Weight: 0.955937 +Vertex 3102: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.051875 + Group: 'RightHandIndex3_end', Weight: 0.945624 +Vertex 3103: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998864 +Vertex 3104: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998914 +Vertex 3105: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998945 +Vertex 3106: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.997610 +Vertex 3107: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.995846 +Vertex 3108: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.995655 +Vertex 3109: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.994551 +Vertex 3110: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999324 +Vertex 3111: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999392 +Vertex 3112: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999409 +Vertex 3113: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999387 +Vertex 3114: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999306 +Vertex 3115: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999198 +Vertex 3116: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999251 +Vertex 3117: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999236 +Vertex 3118: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999332 +Vertex 3119: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998793 +Vertex 3120: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999359 +Vertex 3121: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999454 +Vertex 3122: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999365 +Vertex 3123: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998193 +Vertex 3124: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998763 +Vertex 3125: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998087 +Vertex 3126: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.997835 +Vertex 3127: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.020534 + Group: 'RightHandIndex3', Weight: 0.929548 + Group: 'RightHandIndex3_end', Weight: 0.019655 +Vertex 3128: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.024519 + Group: 'RightHandIndex3', Weight: 0.932565 + Group: 'RightHandIndex3_end', Weight: 0.009429 +Vertex 3129: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.009844 + Group: 'RightHandIndex3', Weight: 0.936851 + Group: 'RightHandIndex3_end', Weight: 0.015215 +Vertex 3130: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.013796 + Group: 'RightHandIndex3', Weight: 0.937029 + Group: 'RightHandIndex3_end', Weight: 0.010317 +Vertex 3131: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.021485 + Group: 'RightHandIndex3', Weight: 0.925469 + Group: 'RightHandIndex3_end', Weight: 0.024996 +Vertex 3132: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.027480 + Group: 'RightHandIndex3', Weight: 0.914097 + Group: 'RightHandIndex3_end', Weight: 0.041832 +Vertex 3133: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.053470 + Group: 'RightHandIndex3', Weight: 0.914097 + Group: 'RightHandIndex3_end', Weight: 0.010210 +Vertex 3134: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999188 +Vertex 3135: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999485 +Vertex 3136: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998919 +Vertex 3137: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998848 +Vertex 3138: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998807 +Vertex 3139: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999417 +Vertex 3140: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999424 +Vertex 3141: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999148 +Vertex 3142: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.924774 + Group: 'RightHandIndex3', Weight: 0.037409 +Vertex 3143: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.101820 + Group: 'RightHandIndex2', Weight: 0.890181 +Vertex 3144: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.951504 + Group: 'RightHandIndex3', Weight: 0.030681 +Vertex 3145: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.156531 + Group: 'RightHandIndex2', Weight: 0.835537 +Vertex 3146: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.937707 + Group: 'RightHandIndex3', Weight: 0.051052 +Vertex 3147: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.930692 + Group: 'RightHandIndex3', Weight: 0.046998 +Vertex 3148: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.196495 + Group: 'RightHandIndex2', Weight: 0.786975 +Vertex 3149: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.901570 + Group: 'RightHandIndex3', Weight: 0.071987 +Vertex 3150: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.884379 + Group: 'RightHandIndex3', Weight: 0.082872 +Vertex 3151: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.883483 + Group: 'RightHandIndex3', Weight: 0.066021 +Vertex 3152: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.166489 + Group: 'RightHandIndex2', Weight: 0.717489 + Group: 'RightHandMiddle1', Weight: 0.031938 + Group: 'RightHandMiddle2', Weight: 0.069974 +Vertex 3153: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.346543 + Group: 'RightHandIndex2', Weight: 0.305564 + Group: 'RightHandMiddle1', Weight: 0.116519 + Group: 'RightHandMiddle2', Weight: 0.224148 +Vertex 3154: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.109537 + Group: 'RightHandIndex2', Weight: 0.087647 + Group: 'RightHandMiddle1', Weight: 0.170505 + Group: 'RightHandMiddle2', Weight: 0.623966 +Vertex 3155: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.021599 + Group: 'RightHandIndex2', Weight: 0.007912 + Group: 'RightHandMiddle1', Weight: 0.104111 + Group: 'RightHandMiddle2', Weight: 0.820308 +Vertex 3156: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.256389 + Group: 'RightHandIndex2', Weight: 0.370881 + Group: 'RightHandMiddle1', Weight: 0.067795 + Group: 'RightHandMiddle2', Weight: 0.291390 +Vertex 3157: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.120431 + Group: 'RightHandIndex2', Weight: 0.156039 + Group: 'RightHandMiddle1', Weight: 0.077184 + Group: 'RightHandMiddle2', Weight: 0.630865 +Vertex 3158: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.062149 + Group: 'RightHandIndex2', Weight: 0.079034 + Group: 'RightHandMiddle1', Weight: 0.031936 + Group: 'RightHandMiddle2', Weight: 0.782606 + Group: 'RightHandMiddle3', Weight: 0.004920 +Vertex 3159: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.116730 + Group: 'RightHandIndex2', Weight: 0.857078 +Vertex 3160: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.006184 + Group: 'RightHandIndex2', Weight: 0.958579 +Vertex 3161: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.037907 + Group: 'RightHandIndex2', Weight: 0.939822 +Vertex 3162: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.070855 + Group: 'RightHandIndex2', Weight: 0.905484 +Vertex 3163: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.087092 + Group: 'RightHandIndex2', Weight: 0.873063 +Vertex 3164: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.084664 + Group: 'RightHandIndex2', Weight: 0.844207 + Group: 'RightHandIndex3', Weight: 0.008532 + Group: 'RightHandMiddle2', Weight: 0.002536 +Vertex 3165: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.121687 + Group: 'RightHandIndex2', Weight: 0.712279 + Group: 'RightHandMiddle1', Weight: 0.009174 + Group: 'RightHandMiddle2', Weight: 0.108169 +Vertex 3166: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.214269 + Group: 'RightHandIndex2', Weight: 0.748723 +Vertex 3167: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.729355 + Group: 'RightHandIndex2', Weight: 0.222514 +Vertex 3168: +Vertex groups: 3 + Group: 'RightHandThumb2', Weight: 0.017270 + Group: 'RightHandIndex1', Weight: 0.852952 + Group: 'RightHandIndex2', Weight: 0.043267 +Vertex 3169: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.233966 + Group: 'RightHandIndex2', Weight: 0.664841 + Group: 'RightHandMiddle1', Weight: 0.005166 + Group: 'RightHandMiddle2', Weight: 0.052131 +Vertex 3170: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.659679 + Group: 'RightHandIndex2', Weight: 0.206513 + Group: 'RightHandMiddle1', Weight: 0.052970 + Group: 'RightHandMiddle2', Weight: 0.052493 +Vertex 3171: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.782497 + Group: 'RightHandIndex2', Weight: 0.058354 + Group: 'RightHandMiddle1', Weight: 0.078451 +Vertex 3172: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.217964 + Group: 'RightHandIndex2', Weight: 0.394286 + Group: 'RightHandMiddle1', Weight: 0.060163 + Group: 'RightHandMiddle2', Weight: 0.304786 +Vertex 3173: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.126365 + Group: 'RightHandIndex2', Weight: 0.181964 + Group: 'RightHandMiddle1', Weight: 0.065805 + Group: 'RightHandMiddle2', Weight: 0.599817 +Vertex 3174: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.273589 + Group: 'RightHandIndex2', Weight: 0.332519 + Group: 'RightHandMiddle1', Weight: 0.088094 + Group: 'RightHandMiddle2', Weight: 0.277348 +Vertex 3175: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.164074 + Group: 'RightHandIndex2', Weight: 0.165889 + Group: 'RightHandMiddle1', Weight: 0.128025 + Group: 'RightHandMiddle2', Weight: 0.507504 +Vertex 3176: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.281236 + Group: 'RightHandIndex2', Weight: 0.466729 + Group: 'RightHandMiddle1', Weight: 0.063054 + Group: 'RightHandMiddle2', Weight: 0.162654 +Vertex 3177: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.472516 + Group: 'RightHandIndex2', Weight: 0.200095 + Group: 'RightHandMiddle1', Weight: 0.120051 + Group: 'RightHandMiddle2', Weight: 0.171779 +Vertex 3178: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.688853 + Group: 'RightHandIndex2', Weight: 0.053412 + Group: 'RightHandMiddle1', Weight: 0.151879 + Group: 'RightHandMiddle2', Weight: 0.020683 + Group: 'RightHandRing1', Weight: 0.000040 +Vertex 3179: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.137581 + Group: 'RightHandMiddle3_end', Weight: 0.861932 +Vertex 3180: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.102350 + Group: 'RightHandMiddle3', Weight: 0.896145 +Vertex 3181: +Vertex groups: 1 + Group: 'RightHandMiddle3', Weight: 0.981316 +Vertex 3182: +Vertex groups: 2 + Group: 'RightHandMiddle1', Weight: 0.036940 + Group: 'RightHandMiddle2', Weight: 0.922315 +Vertex 3183: +Vertex groups: 1 + Group: 'RightHandMiddle3', Weight: 0.978893 +Vertex 3184: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.970930 + Group: 'RightHandMiddle3_end', Weight: 0.002840 +Vertex 3185: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.965330 + Group: 'RightHandMiddle3_end', Weight: 0.013386 +Vertex 3186: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.958116 + Group: 'RightHandMiddle3_end', Weight: 0.026631 +Vertex 3187: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.956387 + Group: 'RightHandMiddle3_end', Weight: 0.026947 +Vertex 3188: +Vertex groups: 1 + Group: 'RightHandMiddle3', Weight: 0.972188 +Vertex 3189: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.962480 + Group: 'RightHandMiddle3_end', Weight: 0.015534 +Vertex 3190: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.041366 + Group: 'RightHandMiddle3_end', Weight: 0.954186 +Vertex 3191: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.038918 + Group: 'RightHandMiddle3_end', Weight: 0.955402 +Vertex 3192: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.057146 + Group: 'RightHandMiddle3_end', Weight: 0.942653 +Vertex 3193: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.067136 + Group: 'RightHandMiddle3_end', Weight: 0.932583 +Vertex 3194: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.077172 + Group: 'RightHandMiddle3_end', Weight: 0.922449 +Vertex 3195: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.073048 + Group: 'RightHandMiddle3_end', Weight: 0.926628 +Vertex 3196: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.081522 + Group: 'RightHandMiddle3_end', Weight: 0.918084 +Vertex 3197: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993542 +Vertex 3198: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.994351 +Vertex 3199: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.994355 +Vertex 3200: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993192 +Vertex 3201: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993134 +Vertex 3202: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.991592 +Vertex 3203: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.991946 +Vertex 3204: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.992567 +Vertex 3205: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993878 +Vertex 3206: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.004837 + Group: 'RightHandMiddle3_end', Weight: 0.972465 +Vertex 3207: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.978771 +Vertex 3208: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.985766 +Vertex 3209: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.987811 +Vertex 3210: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.001107 + Group: 'RightHandMiddle3_end', Weight: 0.974338 +Vertex 3211: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.031972 + Group: 'RightHandMiddle3_end', Weight: 0.958865 +Vertex 3212: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.012540 + Group: 'RightHandMiddle3_end', Weight: 0.968584 +Vertex 3213: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.009626 + Group: 'RightHandMiddle3_end', Weight: 0.970049 +Vertex 3214: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.080985 + Group: 'RightHandMiddle3', Weight: 0.916875 +Vertex 3215: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.083528 + Group: 'RightHandMiddle3', Weight: 0.912672 +Vertex 3216: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.075459 + Group: 'RightHandMiddle3', Weight: 0.920121 +Vertex 3217: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.086130 + Group: 'RightHandMiddle3', Weight: 0.910406 +Vertex 3218: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.180712 + Group: 'RightHandMiddle3', Weight: 0.816235 +Vertex 3219: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.184549 + Group: 'RightHandMiddle3', Weight: 0.813850 +Vertex 3220: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.703330 + Group: 'RightHandMiddle3', Weight: 0.294571 +Vertex 3221: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.987498 +Vertex 3222: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.992839 +Vertex 3223: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.987322 +Vertex 3224: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.984703 +Vertex 3225: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.986362 +Vertex 3226: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.988911 +Vertex 3227: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993856 +Vertex 3228: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.988339 +Vertex 3229: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.071180 + Group: 'RightHandMiddle2', Weight: 0.838821 + Group: 'RightHandRing2', Weight: 0.067049 +Vertex 3230: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.008565 + Group: 'RightHandMiddle1', Weight: 0.014469 + Group: 'RightHandMiddle2', Weight: 0.891626 +Vertex 3231: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.160610 + Group: 'RightHandMiddle2', Weight: 0.708873 + Group: 'RightHandRing2', Weight: 0.100320 +Vertex 3232: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.084805 + Group: 'RightHandIndex2', Weight: 0.083302 + Group: 'RightHandMiddle1', Weight: 0.067191 + Group: 'RightHandMiddle2', Weight: 0.724559 +Vertex 3233: +Vertex groups: 5 + Group: 'RightHandMiddle2', Weight: 0.923612 + Group: 'RightHandMiddle1', Weight: 0.031261 + Group: 'RightHandIndex1', Weight: 0.027130 + Group: 'RightHandRing2', Weight: 0.009105 + Group: 'RightHandMiddle3', Weight: 0.008891 +Vertex 3234: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.041501 + Group: 'RightHandMiddle2', Weight: 0.778411 + Group: 'RightHandRing2', Weight: 0.115141 +Vertex 3235: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.048375 + Group: 'RightHandMiddle2', Weight: 0.823536 + Group: 'RightHandRing2', Weight: 0.091618 +Vertex 3236: +Vertex groups: 2 + Group: 'RightHandRing1', Weight: 0.051184 + Group: 'RightHandRing2', Weight: 0.922288 +Vertex 3237: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.963637 +Vertex 3238: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.970437 +Vertex 3239: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.963432 + Group: 'RightHandRing3_end', Weight: 0.012754 +Vertex 3240: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.954063 + Group: 'RightHandRing3_end', Weight: 0.023510 +Vertex 3241: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.947668 + Group: 'RightHandRing3_end', Weight: 0.019589 +Vertex 3242: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.956420 +Vertex 3243: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.952099 + Group: 'RightHandRing3_end', Weight: 0.008617 +Vertex 3244: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.017260 + Group: 'RightHandRing3_end', Weight: 0.965853 +Vertex 3245: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.005260 + Group: 'RightHandRing3_end', Weight: 0.972378 +Vertex 3246: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.019303 + Group: 'RightHandRing3_end', Weight: 0.965136 +Vertex 3247: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.025756 + Group: 'RightHandRing3_end', Weight: 0.961646 +Vertex 3248: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.033789 + Group: 'RightHandRing3_end', Weight: 0.957391 +Vertex 3249: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.019412 + Group: 'RightHandRing3_end', Weight: 0.964615 +Vertex 3250: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.039515 + Group: 'RightHandRing3_end', Weight: 0.954408 +Vertex 3251: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.998053 +Vertex 3252: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997921 +Vertex 3253: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997941 +Vertex 3254: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997638 +Vertex 3255: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997849 +Vertex 3256: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997580 +Vertex 3257: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997959 +Vertex 3258: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997931 +Vertex 3259: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.998067 +Vertex 3260: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.989497 +Vertex 3261: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.991332 +Vertex 3262: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.993023 +Vertex 3263: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.993361 +Vertex 3264: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.992005 +Vertex 3265: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.989671 +Vertex 3266: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.988410 +Vertex 3267: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.989869 +Vertex 3268: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.796172 + Group: 'RightHandRing3', Weight: 0.201454 +Vertex 3269: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.250697 + Group: 'RightHandRing3', Weight: 0.745981 +Vertex 3270: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.137628 + Group: 'RightHandRing3', Weight: 0.858136 +Vertex 3271: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.197268 + Group: 'RightHandRing3', Weight: 0.799115 +Vertex 3272: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.800765 + Group: 'RightHandRing3', Weight: 0.194739 +Vertex 3273: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.932986 + Group: 'RightHandRing3', Weight: 0.063478 +Vertex 3274: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.929198 + Group: 'RightHandRing3', Weight: 0.066346 +Vertex 3275: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996205 +Vertex 3276: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996838 +Vertex 3277: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996772 +Vertex 3278: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.995487 +Vertex 3279: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996262 +Vertex 3280: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.995930 +Vertex 3281: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997224 +Vertex 3282: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996689 +Vertex 3283: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.062040 + Group: 'RightHandRing2', Weight: 0.892480 + Group: 'RightHandPinky2', Weight: 0.014394 +Vertex 3284: +Vertex groups: 3 + Group: 'RightHandMiddle2', Weight: 0.004230 + Group: 'RightHandRing1', Weight: 0.009560 + Group: 'RightHandRing2', Weight: 0.914531 +Vertex 3285: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.025193 + Group: 'RightHandMiddle2', Weight: 0.067727 + Group: 'RightHandRing2', Weight: 0.852834 +Vertex 3286: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.029298 + Group: 'RightHandMiddle2', Weight: 0.131562 + Group: 'RightHandRing1', Weight: 0.018306 + Group: 'RightHandRing2', Weight: 0.759688 +Vertex 3287: +Vertex groups: 3 + Group: 'RightHandMiddle2', Weight: 0.017924 + Group: 'RightHandRing2', Weight: 0.904569 + Group: 'RightHandRing3', Weight: 0.007271 +Vertex 3288: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.163622 + Group: 'RightHandRing2', Weight: 0.600789 + Group: 'RightHandPinky1', Weight: 0.005853 + Group: 'RightHandPinky2', Weight: 0.167442 +Vertex 3289: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.082917 + Group: 'RightHandRing2', Weight: 0.819443 + Group: 'RightHandPinky2', Weight: 0.073453 +Vertex 3290: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.910968 + Group: 'RightHandPinky3_end', Weight: 0.082538 +Vertex 3291: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.068730 + Group: 'RightHandPinky3', Weight: 0.926308 +Vertex 3292: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.134957 + Group: 'RightHandPinky3_end', Weight: 0.864340 +Vertex 3293: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.941592 + Group: 'RightHandPinky3_end', Weight: 0.054448 +Vertex 3294: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.937977 + Group: 'RightHandPinky3_end', Weight: 0.056148 +Vertex 3295: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.878191 + Group: 'RightHandPinky3_end', Weight: 0.116350 +Vertex 3296: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.701738 + Group: 'RightHandPinky3_end', Weight: 0.291776 +Vertex 3297: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.575824 + Group: 'RightHandPinky3_end', Weight: 0.422418 +Vertex 3298: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.937478 + Group: 'RightHandPinky3_end', Weight: 0.060240 +Vertex 3299: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.870093 + Group: 'RightHandPinky3_end', Weight: 0.127637 +Vertex 3300: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.087890 + Group: 'RightHandPinky3_end', Weight: 0.911694 +Vertex 3301: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.064776 + Group: 'RightHandPinky3_end', Weight: 0.934825 +Vertex 3302: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.058792 + Group: 'RightHandPinky3_end', Weight: 0.940795 +Vertex 3303: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.066531 + Group: 'RightHandPinky3_end', Weight: 0.932877 +Vertex 3304: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.023411 + Group: 'RightHandPinky3_end', Weight: 0.963060 +Vertex 3305: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.045690 + Group: 'RightHandPinky3_end', Weight: 0.951974 +Vertex 3306: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.030406 + Group: 'RightHandPinky3_end', Weight: 0.959653 +Vertex 3307: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993442 +Vertex 3308: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991802 +Vertex 3309: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991932 +Vertex 3310: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.990581 +Vertex 3311: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991564 +Vertex 3312: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993107 +Vertex 3313: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.994440 +Vertex 3314: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.994362 +Vertex 3315: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993266 +Vertex 3316: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.003948 + Group: 'RightHandPinky3_end', Weight: 0.972802 +Vertex 3317: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.978327 +Vertex 3318: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.976834 +Vertex 3319: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.002905 + Group: 'RightHandPinky3_end', Weight: 0.973410 +Vertex 3320: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.990484 +Vertex 3321: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.020809 + Group: 'RightHandPinky3_end', Weight: 0.964412 +Vertex 3322: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.987624 +Vertex 3323: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991253 +Vertex 3324: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.070566 + Group: 'RightHandPinky3', Weight: 0.921909 +Vertex 3325: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.055941 + Group: 'RightHandPinky3', Weight: 0.931116 +Vertex 3326: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.061946 + Group: 'RightHandPinky3', Weight: 0.923590 +Vertex 3327: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.070467 + Group: 'RightHandPinky3', Weight: 0.910501 +Vertex 3328: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.050657 + Group: 'RightHandPinky3', Weight: 0.933318 +Vertex 3329: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.063978 + Group: 'RightHandPinky3', Weight: 0.932021 +Vertex 3330: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.043344 + Group: 'RightHandPinky3', Weight: 0.947061 +Vertex 3331: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.985980 +Vertex 3332: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.987719 +Vertex 3333: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.995219 +Vertex 3334: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993214 +Vertex 3335: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.996277 +Vertex 3336: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.987440 +Vertex 3337: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.986769 +Vertex 3338: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.989280 +Vertex 3339: +Vertex groups: 2 + Group: 'RightHandMiddle1', Weight: 0.141132 + Group: 'RightHandMiddle2', Weight: 0.818672 +Vertex 3340: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.277432 + Group: 'RightHandMiddle2', Weight: 0.298333 + Group: 'RightHandRing1', Weight: 0.091435 + Group: 'RightHandRing2', Weight: 0.326338 +Vertex 3341: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.108678 + Group: 'RightHandMiddle2', Weight: 0.081804 + Group: 'RightHandRing1', Weight: 0.103607 + Group: 'RightHandRing2', Weight: 0.701178 +Vertex 3342: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.267985 + Group: 'RightHandIndex2', Weight: 0.132373 + Group: 'RightHandMiddle1', Weight: 0.236266 + Group: 'RightHandMiddle2', Weight: 0.308728 +Vertex 3343: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.439253 + Group: 'RightHandIndex2', Weight: 0.038212 + Group: 'RightHandMiddle1', Weight: 0.348705 + Group: 'RightHandMiddle2', Weight: 0.056181 + Group: 'RightHandRing1', Weight: 0.047764 +Vertex 3344: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.105009 + Group: 'RightHandIndex2', Weight: 0.054768 + Group: 'RightHandMiddle1', Weight: 0.108841 + Group: 'RightHandMiddle2', Weight: 0.628192 + Group: 'RightHandRing2', Weight: 0.063931 +Vertex 3345: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.337850 + Group: 'RightHandIndex2', Weight: 0.257104 + Group: 'RightHandMiddle1', Weight: 0.121073 + Group: 'RightHandMiddle2', Weight: 0.249941 +Vertex 3346: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.241387 + Group: 'RightHandIndex2', Weight: 0.181433 + Group: 'RightHandMiddle1', Weight: 0.169076 + Group: 'RightHandMiddle2', Weight: 0.367980 +Vertex 3347: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.068379 + Group: 'RightHandMiddle2', Weight: 0.596877 + Group: 'RightHandRing1', Weight: 0.041406 + Group: 'RightHandRing2', Weight: 0.253670 +Vertex 3348: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.072133 + Group: 'RightHandMiddle2', Weight: 0.266764 + Group: 'RightHandRing1', Weight: 0.080508 + Group: 'RightHandRing2', Weight: 0.556970 +Vertex 3349: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.007367 + Group: 'RightHandMiddle1', Weight: 0.096333 + Group: 'RightHandMiddle2', Weight: 0.552180 + Group: 'RightHandRing1', Weight: 0.049231 + Group: 'RightHandRing2', Weight: 0.234758 +Vertex 3350: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.345026 + Group: 'RightHandRing1', Weight: 0.322972 + Group: 'RightHandMiddle2', Weight: 0.139359 + Group: 'RightHandRing2', Weight: 0.138997 + Group: 'RightHandIndex1', Weight: 0.053646 +Vertex 3351: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.069871 + Group: 'RightHandMiddle2', Weight: 0.216688 + Group: 'RightHandRing1', Weight: 0.056683 + Group: 'RightHandRing2', Weight: 0.609559 +Vertex 3352: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.402873 + Group: 'RightHandMiddle1', Weight: 0.273515 + Group: 'RightHandRing2', Weight: 0.150772 + Group: 'RightHandMiddle2', Weight: 0.113747 + Group: 'RightHandPinky1', Weight: 0.059094 +Vertex 3353: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.105882 + Group: 'RightHandMiddle2', Weight: 0.521286 + Group: 'RightHandRing1', Weight: 0.039275 + Group: 'RightHandRing2', Weight: 0.277407 +Vertex 3354: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.102626 + Group: 'RightHandMiddle2', Weight: 0.390959 + Group: 'RightHandRing1', Weight: 0.043555 + Group: 'RightHandRing2', Weight: 0.411970 +Vertex 3355: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.293935 + Group: 'RightHandRing2', Weight: 0.417126 + Group: 'RightHandPinky2', Weight: 0.243980 +Vertex 3356: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.128484 + Group: 'RightHandRing2', Weight: 0.189505 + Group: 'RightHandPinky1', Weight: 0.001111 + Group: 'RightHandPinky2', Weight: 0.608879 + Group: 'RightHandPinky3', Weight: 0.037206 +Vertex 3357: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.354635 + Group: 'RightHandRing2', Weight: 0.100206 + Group: 'RightHandPinky1', Weight: 0.327463 + Group: 'RightHandPinky2', Weight: 0.158230 +Vertex 3358: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.250373 + Group: 'RightHandRing2', Weight: 0.066739 + Group: 'RightHandPinky1', Weight: 0.429824 + Group: 'RightHandPinky2', Weight: 0.202106 +Vertex 3359: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.227791 + Group: 'RightHandRing2', Weight: 0.465808 + Group: 'RightHandPinky1', Weight: 0.027601 + Group: 'RightHandPinky2', Weight: 0.234994 +Vertex 3360: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.115955 + Group: 'RightHandRing2', Weight: 0.215996 + Group: 'RightHandPinky1', Weight: 0.030673 + Group: 'RightHandPinky2', Weight: 0.571668 + Group: 'RightHandPinky3', Weight: 0.046345 +Vertex 3361: +Vertex groups: 2 + Group: 'RightHandRing1', Weight: 0.142628 + Group: 'RightHandRing2', Weight: 0.819490 +Vertex 3362: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.020578 + Group: 'RightHandMiddle2', Weight: 0.001675 + Group: 'RightHandRing1', Weight: 0.115940 + Group: 'RightHandRing2', Weight: 0.816244 +Vertex 3363: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.188357 + Group: 'RightHandRing2', Weight: 0.729459 + Group: 'RightHandPinky2', Weight: 0.067335 +Vertex 3364: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.278380 + Group: 'RightHandRing2', Weight: 0.566004 + Group: 'RightHandPinky2', Weight: 0.125439 +Vertex 3365: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.911100 + Group: 'RightHandMiddle3', Weight: 0.077378 +Vertex 3366: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.919663 + Group: 'RightHandMiddle3', Weight: 0.062397 +Vertex 3367: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.884421 + Group: 'RightHandMiddle3', Weight: 0.099864 +Vertex 3368: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.846485 + Group: 'RightHandMiddle3', Weight: 0.112410 +Vertex 3369: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.854634 + Group: 'RightHandMiddle3', Weight: 0.118857 +Vertex 3370: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.894767 + Group: 'RightHandMiddle3', Weight: 0.075371 +Vertex 3371: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.932200 + Group: 'RightHandMiddle3', Weight: 0.038581 +Vertex 3372: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.846302 + Group: 'RightHandMiddle3', Weight: 0.120509 +Vertex 3373: +Vertex groups: 1 + Group: 'RightHandRing2', Weight: 0.971765 +Vertex 3374: +Vertex groups: 1 + Group: 'RightHandRing2', Weight: 0.968059 +Vertex 3375: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.956850 + Group: 'RightHandRing3', Weight: 0.012498 +Vertex 3376: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.892046 + Group: 'RightHandRing3', Weight: 0.084823 +Vertex 3377: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.838519 + Group: 'RightHandRing3', Weight: 0.131294 +Vertex 3378: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.870650 + Group: 'RightHandRing3', Weight: 0.105257 +Vertex 3379: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.917027 + Group: 'RightHandRing3', Weight: 0.033229 +Vertex 3380: +Vertex groups: 1 + Group: 'RightHandRing2', Weight: 0.951075 +Vertex 3381: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.924596 + Group: 'RightHandPinky3', Weight: 0.051383 +Vertex 3382: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.930717 + Group: 'RightHandPinky3', Weight: 0.055114 +Vertex 3383: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.871082 + Group: 'RightHandPinky3', Weight: 0.080019 +Vertex 3384: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.061754 + Group: 'RightHandRing2', Weight: 0.092655 + Group: 'RightHandPinky2', Weight: 0.761055 + Group: 'RightHandPinky3', Weight: 0.064929 +Vertex 3385: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.023118 + Group: 'RightHandRing2', Weight: 0.055786 + Group: 'RightHandPinky1', Weight: 0.020365 + Group: 'RightHandPinky2', Weight: 0.798492 + Group: 'RightHandPinky3', Weight: 0.070430 +Vertex 3386: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.836282 + Group: 'RightHandPinky3', Weight: 0.121563 +Vertex 3387: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.891798 + Group: 'RightHandPinky3', Weight: 0.094598 +Vertex 3388: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.914920 + Group: 'RightHandPinky3', Weight: 0.074244 +Vertex 3389: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.206945 + Group: 'RightHandRing2', Weight: 0.608394 + Group: 'RightHandPinky2', Weight: 0.152838 +Vertex 3390: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.091975 + Group: 'RightHandPinky2', Weight: 0.895422 +Vertex 3391: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.091926 + Group: 'RightHandPinky2', Weight: 0.886711 +Vertex 3392: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.850868 + Group: 'RightHandPinky2', Weight: 0.137081 +Vertex 3393: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.801831 + Group: 'RightHandPinky2', Weight: 0.166661 +Vertex 3394: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.003544 + Group: 'RightHandPinky1', Weight: 0.167594 + Group: 'RightHandPinky2', Weight: 0.776339 +Vertex 3395: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.070528 + Group: 'RightHandPinky1', Weight: 0.771801 + Group: 'RightHandPinky2', Weight: 0.120538 +Vertex 3396: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.274946 + Group: 'RightHandMiddle2', Weight: 0.340732 + Group: 'RightHandRing1', Weight: 0.050034 + Group: 'RightHandRing2', Weight: 0.326362 +Vertex 3397: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.104379 + Group: 'RightHandMiddle2', Weight: 0.117815 + Group: 'RightHandRing1', Weight: 0.052104 + Group: 'RightHandRing2', Weight: 0.718557 +Vertex 3398: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.261646 + Group: 'RightHandMiddle2', Weight: 0.356665 + Group: 'RightHandRing1', Weight: 0.016493 + Group: 'RightHandRing2', Weight: 0.337097 +Vertex 3399: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.110382 + Group: 'RightHandMiddle2', Weight: 0.138744 + Group: 'RightHandRing1', Weight: 0.046202 + Group: 'RightHandRing2', Weight: 0.690905 +Vertex 3400: +Vertex groups: 4 + Group: 'RightHandMiddle2', Weight: 0.039046 + Group: 'RightHandRing1', Weight: 0.046418 + Group: 'RightHandRing2', Weight: 0.820199 + Group: 'RightHandPinky2', Weight: 0.028603 +Vertex 3401: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.011605 + Group: 'RightHandThumb2', Weight: 0.008772 + Group: 'RightHandIndex1', Weight: 0.920461 +Vertex 3402: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.036307 + Group: 'RightHandIndex1', Weight: 0.729035 + Group: 'RightHandMiddle1', Weight: 0.210188 +Vertex 3403: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.001389 + Group: 'RightHandIndex1', Weight: 0.391025 + Group: 'RightHandMiddle1', Weight: 0.562342 +Vertex 3404: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.011256 + Group: 'RightHandIndex1', Weight: 0.132141 + Group: 'RightHandMiddle1', Weight: 0.813335 +Vertex 3405: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.062129 + Group: 'RightHandMiddle1', Weight: 0.377010 + Group: 'RightHandRing1', Weight: 0.512120 +Vertex 3406: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.037840 + Group: 'RightHandMiddle1', Weight: 0.185553 + Group: 'RightHandRing1', Weight: 0.712972 + Group: 'RightHandPinky1', Weight: 0.012382 +Vertex 3407: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.374673 + Group: 'RightHandPinky1', Weight: 0.551626 + Group: 'RightHandPinky2', Weight: 0.034913 +Vertex 3408: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.144318 + Group: 'RightHandPinky1', Weight: 0.799064 + Group: 'RightHandPinky2', Weight: 0.038314 +Vertex 3409: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.057273 + Group: 'RightHandIndex1', Weight: 0.084129 + Group: 'RightHandMiddle1', Weight: 0.830668 +Vertex 3410: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.116777 + Group: 'RightHandMiddle1', Weight: 0.600687 + Group: 'RightHandRing1', Weight: 0.245365 +Vertex 3411: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.066281 + Group: 'RightHandMiddle1', Weight: 0.110135 + Group: 'RightHandRing1', Weight: 0.749770 + Group: 'RightHandPinky1', Weight: 0.062468 +Vertex 3412: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.000400 + Group: 'RightHandRing1', Weight: 0.591634 + Group: 'RightHandPinky1', Weight: 0.344018 +Vertex 3413: +Vertex groups: 2 + Group: 'RightHandRing1', Weight: 0.063053 + Group: 'RightHandPinky1', Weight: 0.914886 +Vertex 3414: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.118542 + Group: 'RightHandThumb2', Weight: 0.143733 + Group: 'RightHandIndex1', Weight: 0.710950 +Vertex 3415: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.106146 + Group: 'RightHandThumb2', Weight: 0.190052 + Group: 'RightHandIndex1', Weight: 0.656404 +Vertex 3416: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.150947 + Group: 'RightHandRing2', Weight: 0.015560 + Group: 'RightHandPinky1', Weight: 0.489583 + Group: 'RightHandPinky2', Weight: 0.287033 +Vertex 3417: +Vertex groups: 1 + Group: 'RightHandPinky1', Weight: 0.965491 +Vertex 3418: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.933184 + Group: 'RightHandPinky2', Weight: 0.015522 +Vertex 3419: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.010883 + Group: 'RightHandRing1', Weight: 0.007957 + Group: 'RightHandPinky1', Weight: 0.893815 + Group: 'RightHandPinky2', Weight: 0.018912 +Vertex 3420: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.035577 + Group: 'RightHandRing1', Weight: 0.067832 + Group: 'RightHandPinky1', Weight: 0.831933 + Group: 'RightHandPinky2', Weight: 0.015807 +Vertex 3421: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.072889 + Group: 'RightHandThumb1', Weight: 0.607166 + Group: 'RightHandThumb2', Weight: 0.064759 + Group: 'RightHandIndex1', Weight: 0.248982 +Vertex 3422: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.007062 + Group: 'RightHand', Weight: 0.928718 + Group: 'RightHandThumb1', Weight: 0.023758 +Vertex 3423: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.100802 + Group: 'RightHand', Weight: 0.781669 + Group: 'RightHandThumb1', Weight: 0.111997 +Vertex 3424: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.165624 + Group: 'RightHand', Weight: 0.647142 + Group: 'RightHandThumb1', Weight: 0.181856 +Vertex 3425: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.056348 + Group: 'RightHand', Weight: 0.359027 + Group: 'RightHandThumb1', Weight: 0.571656 +Vertex 3426: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.157567 + Group: 'RightHand', Weight: 0.571171 + Group: 'RightHandThumb1', Weight: 0.263780 +Vertex 3427: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.065961 + Group: 'RightHand', Weight: 0.312502 + Group: 'RightHandThumb1', Weight: 0.610331 +Vertex 3428: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.332757 + Group: 'RightHandThumb1', Weight: 0.073037 + Group: 'RightHandIndex1', Weight: 0.550424 + Group: 'RightHandMiddle1', Weight: 0.012791 +Vertex 3429: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.830771 + Group: 'RightHandIndex1', Weight: 0.106799 + Group: 'RightHandMiddle1', Weight: 0.012934 +Vertex 3430: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.036756 + Group: 'RightHand', Weight: 0.672577 + Group: 'RightHandThumb1', Weight: 0.266166 +Vertex 3431: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.007190 + Group: 'RightHand', Weight: 0.241114 + Group: 'RightHandThumb1', Weight: 0.714225 +Vertex 3432: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.139309 + Group: 'RightHandThumb1', Weight: 0.819532 +Vertex 3433: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.358526 + Group: 'RightHandThumb1', Weight: 0.573146 + Group: 'RightHandPinky1', Weight: 0.013141 +Vertex 3434: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.232171 + Group: 'RightHandThumb1', Weight: 0.644625 + Group: 'RightHandIndex1', Weight: 0.011416 + Group: 'RightHandPinky1', Weight: 0.040903 +Vertex 3435: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.096418 + Group: 'RightHandThumb1', Weight: 0.816324 + Group: 'RightHandThumb2', Weight: 0.017844 +Vertex 3436: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.072038 + Group: 'RightHandThumb1', Weight: 0.680432 + Group: 'RightHandThumb2', Weight: 0.097475 + Group: 'RightHandIndex1', Weight: 0.092920 +Vertex 3437: +Vertex groups: 5 + Group: 'RightHandThumb1', Weight: 0.578890 + Group: 'RightHand', Weight: 0.184520 + Group: 'RightHandIndex1', Weight: 0.143705 + Group: 'RightHandThumb2', Weight: 0.053943 + Group: 'RightHandPinky1', Weight: 0.038943 +Vertex 3438: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.209771 + Group: 'RightHandThumb2', Weight: 0.383368 + Group: 'RightHandThumb3', Weight: 0.018224 + Group: 'RightHandIndex1', Weight: 0.300820 +Vertex 3439: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.650985 + Group: 'RightHandThumb2', Weight: 0.137753 + Group: 'RightHandThumb1', Weight: 0.127942 + Group: 'RightHandMiddle1', Weight: 0.066346 + Group: 'RightHand', Weight: 0.016973 +Vertex 3440: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.196114 + Group: 'RightHandThumb2', Weight: 0.354506 + Group: 'RightHandThumb3', Weight: 0.053208 + Group: 'RightHandIndex1', Weight: 0.356245 +Vertex 3441: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.104166 + Group: 'RightHandThumb2', Weight: 0.171258 + Group: 'RightHandIndex1', Weight: 0.640503 +Vertex 3442: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.184906 + Group: 'RightHandThumb2', Weight: 0.387595 + Group: 'RightHandThumb3', Weight: 0.049137 + Group: 'RightHandIndex1', Weight: 0.360426 +Vertex 3443: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.237723 + Group: 'RightHandThumb2', Weight: 0.389398 + Group: 'RightHandThumb3', Weight: 0.001765 + Group: 'RightHandIndex1', Weight: 0.334875 +Vertex 3444: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.307523 + Group: 'RightHandThumb2', Weight: 0.578127 + Group: 'RightHandIndex1', Weight: 0.093343 +Vertex 3445: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.861253 + Group: 'RightHandThumb2', Weight: 0.106813 +Vertex 3446: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.849842 + Group: 'RightHandThumb2', Weight: 0.136973 +Vertex 3447: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.015971 + Group: 'RightHandThumb1', Weight: 0.158447 + Group: 'RightHandThumb2', Weight: 0.070196 + Group: 'RightHandIndex1', Weight: 0.729664 +Vertex 3448: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.296808 + Group: 'RightHandThumb2', Weight: 0.306204 + Group: 'RightHandIndex1', Weight: 0.368761 +Vertex 3449: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.898516 + Group: 'RightHandThumb2', Weight: 0.047296 + Group: 'RightHandIndex1', Weight: 0.016061 +Vertex 3450: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.925440 + Group: 'RightHandThumb2', Weight: 0.036668 +Vertex 3451: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.133809 + Group: 'RightHandThumb1', Weight: 0.828825 +Vertex 3452: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.118684 + Group: 'RightHandThumb1', Weight: 0.845302 +Vertex 3453: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.100382 + Group: 'RightHandThumb1', Weight: 0.864988 +Vertex 3454: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.117107 + Group: 'RightHandThumb1', Weight: 0.104247 + Group: 'RightHandIndex1', Weight: 0.747459 +Vertex 3455: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.729893 + Group: 'RightHandIndex1', Weight: 0.025970 + Group: 'RightHandMiddle1', Weight: 0.174172 + Group: 'RightHandRing1', Weight: 0.025845 +Vertex 3456: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.805793 + Group: 'RightHandMiddle1', Weight: 0.080892 + Group: 'RightHandRing1', Weight: 0.060197 + Group: 'RightHandPinky1', Weight: 0.021067 +Vertex 3457: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.822304 + Group: 'RightHandPinky1', Weight: 0.123250 +Vertex 3458: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.325876 + Group: 'RightHandRing1', Weight: 0.052340 + Group: 'RightHandPinky1', Weight: 0.607184 +Vertex 3459: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.121169 + Group: 'RightHandRing1', Weight: 0.141009 + Group: 'RightHandPinky1', Weight: 0.723540 +Vertex 3460: +Vertex groups: 1 + Group: 'RightHandPinky1', Weight: 0.954184 +Vertex 3461: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.060755 + Group: 'RightHandPinky1', Weight: 0.928209 +Vertex 3462: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.050538 + Group: 'RightHandThumb1', Weight: 0.842678 + Group: 'RightHandThumb2', Weight: 0.013631 + Group: 'RightHandIndex1', Weight: 0.070817 +Vertex 3463: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.664517 + Group: 'RightHandThumb2', Weight: 0.278318 + Group: 'RightHandIndex1', Weight: 0.039160 +Vertex 3464: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.000826 + Group: 'RightHandThumb1', Weight: 0.663989 + Group: 'RightHandThumb2', Weight: 0.148667 + Group: 'RightHandIndex1', Weight: 0.156142 +Vertex 3465: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.238449 + Group: 'RightHandThumb1', Weight: 0.510821 + Group: 'RightHandIndex1', Weight: 0.221842 +Vertex 3466: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.095601 + Group: 'RightHandThumb1', Weight: 0.836123 + Group: 'RightHandIndex1', Weight: 0.048642 +Vertex 3467: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.053477 + Group: 'RightHandThumb1', Weight: 0.908789 +Vertex 3468: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.040252 + Group: 'RightHandThumb1', Weight: 0.919083 +Vertex 3469: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.605274 + Group: 'RightHandThumb1', Weight: 0.244996 + Group: 'RightHandIndex1', Weight: 0.130784 +Vertex 3470: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.879772 + Group: 'RightHandThumb1', Weight: 0.089896 +Vertex 3471: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.277821 + Group: 'RightHandThumb1', Weight: 0.667522 + Group: 'RightHandIndex1', Weight: 0.019248 +Vertex 3472: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.037082 + Group: 'RightHand', Weight: 0.641269 + Group: 'RightHandThumb1', Weight: 0.299622 +Vertex 3473: +Vertex groups: 1 + Group: 'RightHand', Weight: 0.937477 +Vertex 3474: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.917851 + Group: 'RightHandPinky1', Weight: 0.063069 +Vertex 3475: +Vertex groups: 1 + Group: 'RightHand', Weight: 0.966304 +Vertex 3476: +Vertex groups: 1 + Group: 'RightHand', Weight: 0.967151 +Vertex 3477: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.051251 + Group: 'RightHand', Weight: 0.931143 +Vertex 3478: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.945541 + Group: 'RightHandPinky1', Weight: 0.007724 +Vertex 3479: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.319682 + Group: 'RightHandPinky1', Weight: 0.658581 +Vertex 3480: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.038546 + Group: 'RightHand', Weight: 0.724520 + Group: 'RightHandPinky1', Weight: 0.221661 +Vertex 3481: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.727416 + Group: 'RightHandPinky1', Weight: 0.245547 +Vertex 3482: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.029866 + Group: 'RightHand', Weight: 0.856000 + Group: 'RightHandPinky1', Weight: 0.097029 +Vertex 3483: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.131350 + Group: 'RightHand', Weight: 0.826255 + Group: 'RightHandPinky1', Weight: 0.027222 +Vertex 3484: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.083765 + Group: 'RightHand', Weight: 0.796392 + Group: 'RightHandPinky1', Weight: 0.112437 +Vertex 3485: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.068230 + Group: 'RightHand', Weight: 0.800761 + Group: 'RightHandPinky1', Weight: 0.116744 +Vertex 3486: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.028292 + Group: 'RightHand', Weight: 0.699318 + Group: 'RightHandPinky1', Weight: 0.242274 +Vertex 3487: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.273448 + Group: 'RightHandPinky1', Weight: 0.692671 +Vertex 3488: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.071239 + Group: 'RightHandPinky1', Weight: 0.902174 +Vertex 3489: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.058105 + Group: 'RightHandPinky1', Weight: 0.927626 +Vertex 3490: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.273575 + Group: 'RightHandPinky1', Weight: 0.701305 +Vertex 3491: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.034651 + Group: 'RightHand', Weight: 0.704525 + Group: 'RightHandPinky1', Weight: 0.240815 +Vertex 3492: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.077046 + Group: 'RightHand', Weight: 0.794623 + Group: 'RightHandPinky1', Weight: 0.119120 +Vertex 3493: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.110417 + Group: 'RightHand', Weight: 0.804645 + Group: 'RightHandPinky1', Weight: 0.076447 +Vertex 3494: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.088046 + Group: 'RightHand', Weight: 0.829995 + Group: 'RightHandPinky1', Weight: 0.071199 +Vertex 3495: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.071046 + Group: 'RightHand', Weight: 0.835850 + Group: 'RightHandPinky1', Weight: 0.075439 +Vertex 3496: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.056429 + Group: 'RightHand', Weight: 0.803200 + Group: 'RightHandPinky1', Weight: 0.118064 +Vertex 3497: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.020274 + Group: 'RightHand', Weight: 0.709863 + Group: 'RightHandPinky1', Weight: 0.224651 +Vertex 3498: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.293518 + Group: 'RightHandPinky1', Weight: 0.660005 +Vertex 3499: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.087469 + Group: 'RightHandPinky1', Weight: 0.870542 +Vertex 3500: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.288180 + Group: 'RightHandThumb1', Weight: 0.030912 + Group: 'RightHandPinky1', Weight: 0.636083 +Vertex 3501: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.003452 + Group: 'RightHand', Weight: 0.696306 + Group: 'RightHandThumb1', Weight: 0.038858 + Group: 'RightHandPinky1', Weight: 0.220419 +Vertex 3502: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.037361 + Group: 'RightHand', Weight: 0.799634 + Group: 'RightHandThumb1', Weight: 0.019761 + Group: 'RightHandPinky1', Weight: 0.114829 +Vertex 3503: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.109214 + Group: 'RightHandRing1', Weight: 0.032467 + Group: 'RightHandPinky1', Weight: 0.806256 +Vertex 3504: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.021766 + Group: 'RightHand', Weight: 0.813388 + Group: 'RightHandThumb1', Weight: 0.069484 + Group: 'RightHandPinky1', Weight: 0.071738 +Vertex 3505: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.018719 + Group: 'RightHand', Weight: 0.781055 + Group: 'RightHandThumb1', Weight: 0.145462 + Group: 'RightHandPinky1', Weight: 0.010294 +Vertex 3506: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.706825 + Group: 'RightHandThumb1', Weight: 0.099370 + Group: 'RightHandPinky1', Weight: 0.151674 +Vertex 3507: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.630791 + Group: 'RightHandThumb1', Weight: 0.278906 + Group: 'RightHandPinky1', Weight: 0.052742 +Vertex 3508: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.521914 + Group: 'RightHandThumb1', Weight: 0.117625 + Group: 'RightHandRing1', Weight: 0.036244 + Group: 'RightHandPinky1', Weight: 0.290818 +Vertex 3509: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.503894 + Group: 'RightHandThumb1', Weight: 0.315489 + Group: 'RightHandRing1', Weight: 0.003661 + Group: 'RightHandPinky1', Weight: 0.105771 +Vertex 3510: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.763258 + Group: 'RightHandThumb2', Weight: 0.218257 +Vertex 3511: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.903306 + Group: 'RightHandThumb2', Weight: 0.065753 +Vertex 3512: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.036571 + Group: 'RightHandThumb1', Weight: 0.912805 + Group: 'RightHandThumb2', Weight: 0.013482 +Vertex 3513: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.084218 + Group: 'RightHandThumb1', Weight: 0.875193 +Vertex 3514: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.021499 + Group: 'RightHandThumb1', Weight: 0.854671 + Group: 'RightHandThumb2', Weight: 0.080396 +Vertex 3515: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.039629 + Group: 'RightHandThumb1', Weight: 0.901150 + Group: 'RightHandThumb2', Weight: 0.029766 +Vertex 3516: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.864977 + Group: 'RightHandThumb2', Weight: 0.093698 +Vertex 3517: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.732472 + Group: 'RightHandThumb2', Weight: 0.235897 +Vertex 3518: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.864762 + Group: 'RightHandThumb3_end', Weight: 0.129316 +Vertex 3519: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.823955 + Group: 'RightHandThumb3_end', Weight: 0.155112 +Vertex 3520: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.821628 + Group: 'RightHandThumb3_end', Weight: 0.151244 +Vertex 3521: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.818647 + Group: 'RightHandThumb3_end', Weight: 0.162968 +Vertex 3522: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.844685 + Group: 'RightHandThumb3_end', Weight: 0.143070 +Vertex 3523: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.851677 + Group: 'RightHandThumb3_end', Weight: 0.142808 +Vertex 3524: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.885627 + Group: 'RightHandThumb3_end', Weight: 0.108930 +Vertex 3525: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.989758 +Vertex 3526: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.854525 + Group: 'RightHandThumb3_end', Weight: 0.130772 +Vertex 3527: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.011436 + Group: 'RightHandThumb3_end', Weight: 0.968906 +Vertex 3528: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.055316 + Group: 'RightHandThumb3_end', Weight: 0.943761 +Vertex 3529: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.068436 + Group: 'RightHandThumb3_end', Weight: 0.929990 +Vertex 3530: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.065354 + Group: 'RightHandThumb3_end', Weight: 0.932802 +Vertex 3531: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.061384 + Group: 'RightHandThumb3_end', Weight: 0.937139 +Vertex 3532: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.048164 + Group: 'RightHandThumb3_end', Weight: 0.950302 +Vertex 3533: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.054960 + Group: 'RightHandThumb3_end', Weight: 0.944023 +Vertex 3534: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998594 +Vertex 3535: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997753 +Vertex 3536: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997188 +Vertex 3537: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.996246 +Vertex 3538: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.996891 +Vertex 3539: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997027 +Vertex 3540: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998509 +Vertex 3541: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998069 +Vertex 3542: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998002 +Vertex 3543: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.982087 +Vertex 3544: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.981536 +Vertex 3545: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.984963 +Vertex 3546: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.992677 +Vertex 3547: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.988404 +Vertex 3548: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998419 +Vertex 3549: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.983785 +Vertex 3550: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.985286 +Vertex 3551: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.993083 +Vertex 3552: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.993710 +Vertex 3553: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997114 +Vertex 3554: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.993962 +Vertex 3555: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.995046 +Vertex 3556: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.991406 +Vertex 3557: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.996365 +Vertex 3558: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998950 +Vertex 3559: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.124207 + Group: 'RightHandThumb3_end', Weight: 0.874674 +Vertex 3560: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.189699 + Group: 'RightHandThumb3_end', Weight: 0.807387 +Vertex 3561: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.205965 + Group: 'RightHandThumb3_end', Weight: 0.789329 +Vertex 3562: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.202287 + Group: 'RightHandThumb3_end', Weight: 0.791562 +Vertex 3563: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.193243 + Group: 'RightHandThumb3_end', Weight: 0.801977 +Vertex 3564: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.180388 + Group: 'RightHandThumb3_end', Weight: 0.816330 +Vertex 3565: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.122719 + Group: 'RightHandThumb3_end', Weight: 0.876110 +Vertex 3566: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.085607 + Group: 'RightHandThumb3_end', Weight: 0.913790 +Vertex 3567: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.068443 + Group: 'RightHandThumb3', Weight: 0.918781 +Vertex 3568: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.098771 + Group: 'RightHandThumb3', Weight: 0.856921 +Vertex 3569: +Vertex groups: 3 + Group: 'RightHandThumb2', Weight: 0.115821 + Group: 'RightHandThumb3', Weight: 0.839229 + Group: 'RightHandThumb3_end', Weight: 0.009763 +Vertex 3570: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.100933 + Group: 'RightHandThumb3', Weight: 0.868889 +Vertex 3571: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.083499 + Group: 'RightHandThumb3', Weight: 0.893184 +Vertex 3572: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.055231 + Group: 'RightHandThumb3', Weight: 0.927931 +Vertex 3573: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.066824 + Group: 'RightHandThumb3', Weight: 0.923192 +Vertex 3574: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.089578 + Group: 'RightHandThumb3', Weight: 0.881430 +Vertex 3575: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.003967 + Group: 'RightHandThumb2', Weight: 0.831957 + Group: 'RightHandThumb3', Weight: 0.118254 +Vertex 3576: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.067540 + Group: 'RightHandThumb2', Weight: 0.675652 + Group: 'RightHandThumb3', Weight: 0.144023 + Group: 'RightHandIndex1', Weight: 0.096693 +Vertex 3577: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.056422 + Group: 'RightHandThumb2', Weight: 0.747816 + Group: 'RightHandThumb3', Weight: 0.157329 + Group: 'RightHandIndex1', Weight: 0.004420 +Vertex 3578: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.072603 + Group: 'RightHandThumb2', Weight: 0.786070 + Group: 'RightHandThumb3', Weight: 0.125886 +Vertex 3579: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.061902 + Group: 'RightHandThumb2', Weight: 0.809954 + Group: 'RightHandThumb3', Weight: 0.120685 +Vertex 3580: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.019340 + Group: 'RightHandThumb2', Weight: 0.854457 + Group: 'RightHandThumb3', Weight: 0.107009 +Vertex 3581: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.004348 + Group: 'RightHandThumb2', Weight: 0.889260 + Group: 'RightHandThumb3', Weight: 0.078144 +Vertex 3582: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.059626 + Group: 'RightHandThumb2', Weight: 0.723975 + Group: 'RightHandThumb3', Weight: 0.116657 + Group: 'RightHandIndex1', Weight: 0.091924 +Vertex 3583: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.106604 + Group: 'RightHandThumb2', Weight: 0.715393 + Group: 'RightHandThumb3', Weight: 0.054050 + Group: 'RightHandIndex1', Weight: 0.117813 +Vertex 3584: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.107820 + Group: 'RightHandThumb2', Weight: 0.816793 + Group: 'RightHandThumb3', Weight: 0.013712 + Group: 'RightHandIndex1', Weight: 0.030993 +Vertex 3585: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.168662 + Group: 'RightHandThumb2', Weight: 0.806558 +Vertex 3586: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.175173 + Group: 'RightHandThumb2', Weight: 0.791229 + Group: 'RightHandThumb3', Weight: 0.007579 +Vertex 3587: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.239744 + Group: 'RightHandThumb2', Weight: 0.711205 + Group: 'RightHandThumb3', Weight: 0.027322 +Vertex 3588: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.261959 + Group: 'RightHandThumb2', Weight: 0.667991 + Group: 'RightHandThumb3', Weight: 0.036914 +Vertex 3589: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.220921 + Group: 'RightHandThumb2', Weight: 0.639753 + Group: 'RightHandThumb3', Weight: 0.038866 + Group: 'RightHandIndex1', Weight: 0.067851 +Vertex 3590: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.172672 + Group: 'RightHandThumb2', Weight: 0.582070 + Group: 'RightHandThumb3', Weight: 0.058220 + Group: 'RightHandIndex1', Weight: 0.150624 +Vertex 3591: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.449185 + Group: 'RightHandThumb1', Weight: 0.292611 + Group: 'RightHand', Weight: 0.102831 + Group: 'RightHandThumb2', Weight: 0.093809 + Group: 'RightHandMiddle1', Weight: 0.061564 +Vertex 3592: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.046565 + Group: 'RightHandThumb1', Weight: 0.453546 + Group: 'RightHandThumb2', Weight: 0.218287 + Group: 'RightHandIndex1', Weight: 0.203234 +Vertex 3593: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.655542 + Group: 'RightHandThumb2', Weight: 0.292867 +Vertex 3594: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.004844 + Group: 'RightHandThumb1', Weight: 0.703324 + Group: 'RightHandThumb2', Weight: 0.200333 + Group: 'RightHandIndex1', Weight: 0.025629 +Vertex 3595: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.470979 + Group: 'RightHandThumb1', Weight: 0.178885 + Group: 'RightHandPinky1', Weight: 0.127973 + Group: 'RightHandRing1', Weight: 0.113473 + Group: 'RightHandIndex1', Weight: 0.108690 +Vertex 3596: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.659814 + Group: 'RightHandMiddle1', Weight: 0.154601 + Group: 'RightHandThumb1', Weight: 0.067673 + Group: 'RightHandThumb2', Weight: 0.063789 + Group: 'RightHandRing1', Weight: 0.054124 +Vertex 3597: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.490805 + Group: 'RightHandMiddle1', Weight: 0.179422 + Group: 'RightHandThumb1', Weight: 0.122051 + Group: 'RightHand', Weight: 0.107901 + Group: 'RightHandRing1', Weight: 0.099821 +Vertex 3598: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.359158 + Group: 'RightHandRing1', Weight: 0.273928 + Group: 'RightHandIndex1', Weight: 0.212469 + Group: 'RightHand', Weight: 0.092965 + Group: 'RightHandPinky1', Weight: 0.061481 +Vertex 3599: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.363508 + Group: 'RightHandMiddle1', Weight: 0.360202 + Group: 'RightHandRing1', Weight: 0.141948 + Group: 'RightHand', Weight: 0.069681 + Group: 'RightHandThumb1', Weight: 0.064660 +Vertex 3600: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.460011 + Group: 'RightHandIndex1', Weight: 0.269636 + Group: 'RightHandRing1', Weight: 0.207149 + Group: 'RightHand', Weight: 0.031874 + Group: 'RightHandPinky1', Weight: 0.031330 +Vertex 3601: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.435352 + Group: 'RightHandIndex1', Weight: 0.426827 + Group: 'RightHandRing1', Weight: 0.108948 + Group: 'RightHandMiddle2', Weight: 0.014907 + Group: 'RightHandThumb1', Weight: 0.013967 +Vertex 3602: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.426935 + Group: 'RightHandRing1', Weight: 0.332098 + Group: 'RightHandIndex1', Weight: 0.138369 + Group: 'RightHandPinky1', Weight: 0.067938 + Group: 'RightHand', Weight: 0.034660 +Vertex 3603: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.543471 + Group: 'RightHandMiddle1', Weight: 0.203372 + Group: 'RightHandPinky1', Weight: 0.131823 + Group: 'RightHandRing2', Weight: 0.063285 + Group: 'RightHandIndex1', Weight: 0.058049 +Vertex 3604: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.453022 + Group: 'RightHandMiddle1', Weight: 0.291956 + Group: 'RightHandRing2', Weight: 0.088754 + Group: 'RightHandPinky1', Weight: 0.087721 + Group: 'RightHandIndex1', Weight: 0.078547 +Vertex 3605: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.471974 + Group: 'RightHandMiddle1', Weight: 0.215999 + Group: 'RightHandIndex1', Weight: 0.114414 + Group: 'RightHand', Weight: 0.106325 + Group: 'RightHandPinky1', Weight: 0.091288 +Vertex 3606: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.449307 + Group: 'RightHandPinky1', Weight: 0.315428 + Group: 'RightHand', Weight: 0.177896 + Group: 'RightHandThumb1', Weight: 0.040682 + Group: 'RightHandMiddle1', Weight: 0.016686 +Vertex 3607: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.344326 + Group: 'RightHandRing1', Weight: 0.310986 + Group: 'RightHandPinky1', Weight: 0.161033 + Group: 'RightHandMiddle1', Weight: 0.094813 + Group: 'RightHandThumb1', Weight: 0.088842 +Vertex 3608: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.222607 + Group: 'RightHandThumb1', Weight: 0.063315 + Group: 'RightHandIndex1', Weight: 0.006114 + Group: 'RightHandRing1', Weight: 0.170860 + Group: 'RightHandPinky1', Weight: 0.476880 +Vertex 3609: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.085019 + Group: 'RightHandRing1', Weight: 0.110588 + Group: 'RightHandPinky1', Weight: 0.738591 +Vertex 3610: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.045148 + Group: 'RightHandRing1', Weight: 0.144519 + Group: 'RightHandPinky1', Weight: 0.733625 + Group: 'RightHandPinky2', Weight: 0.014988 +Vertex 3611: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.612895 + Group: 'RightHandPinky1', Weight: 0.221458 + Group: 'RightHandMiddle1', Weight: 0.093594 + Group: 'RightHandPinky2', Weight: 0.049486 + Group: 'RightHandRing2', Weight: 0.022567 +Vertex 3612: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.040750 + Group: 'RightHandRing1', Weight: 0.461278 + Group: 'RightHandRing2', Weight: 0.004403 + Group: 'RightHandPinky1', Weight: 0.334998 + Group: 'RightHandPinky2', Weight: 0.071881 +Vertex 3613: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.215036 + Group: 'RightHandPinky1', Weight: 0.609777 + Group: 'RightHandPinky2', Weight: 0.098684 +Vertex 3614: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.081934 + Group: 'RightHandIndex1', Weight: 0.023567 + Group: 'RightHandMiddle1', Weight: 0.064237 + Group: 'RightHandRing1', Weight: 0.564962 + Group: 'RightHandPinky1', Weight: 0.192087 +Vertex 3615: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.051358 + Group: 'RightHandMiddle1', Weight: 0.036695 + Group: 'RightHandRing1', Weight: 0.488272 + Group: 'RightHandPinky1', Weight: 0.323746 + Group: 'RightHandPinky2', Weight: 0.017016 +Vertex 3616: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3617: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3618: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3619: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3620: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3621: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3622: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3623: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3624: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3625: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3626: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3627: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3628: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3629: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3630: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3631: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3632: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3633: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3634: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3635: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3636: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3637: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3638: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3639: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3640: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3641: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3642: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3643: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3644: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3645: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3646: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3647: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3648: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3649: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3650: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3651: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3652: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999977 + Group: 'Head_end', Weight: 0.000000 +Vertex 3653: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999926 + Group: 'Head_end', Weight: 0.000000 +Vertex 3654: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3655: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3656: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3657: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3658: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3659: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3660: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3661: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3662: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3663: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3664: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3665: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3666: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3667: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3668: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3669: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999982 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3670: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999993 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3671: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3672: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3673: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3674: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3675: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3676: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3677: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3678: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999951 + Group: 'Head_end', Weight: 0.000000 +Vertex 3679: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3680: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3681: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3682: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3683: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3684: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3685: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3686: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999984 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3687: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3688: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3689: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3690: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3691: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3692: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3693: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3694: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3695: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3696: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3697: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3698: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3699: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3700: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3701: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3702: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3703: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3704: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3705: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3706: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3707: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3708: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3709: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3710: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3711: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3712: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3713: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3714: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3715: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3716: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3717: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3718: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3719: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3720: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3721: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3722: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3723: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3724: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3725: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3726: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3727: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3728: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3729: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3730: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3731: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3732: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3733: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3734: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3735: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3736: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3737: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3738: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3739: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3740: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3741: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3742: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3743: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3744: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3745: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3746: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3747: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3748: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3749: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3750: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3751: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3752: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3753: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3754: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999886 + Group: 'Head_end', Weight: 0.000000 +Vertex 3755: +Vertex groups: 4 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999973 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3756: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3757: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3758: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3759: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3760: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3761: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999995 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3762: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3763: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3764: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3765: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3766: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3767: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3768: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3769: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3770: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3771: +Vertex groups: 4 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999939 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3772: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3773: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3774: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3775: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3776: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3777: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3778: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3779: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3780: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999799 + Group: 'Head_end', Weight: 0.000000 +Vertex 3781: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3782: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3783: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3784: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3785: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3786: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3787: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3788: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999986 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3789: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3790: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3791: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3792: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3793: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3794: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3795: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3796: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3797: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3798: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3799: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3800: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3801: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3802: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3803: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3804: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3805: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3806: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3807: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3808: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3809: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3810: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3811: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3812: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3813: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3814: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3815: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3816: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3817: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3818: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3819: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3820: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3821: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3822: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3823: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3824: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3825: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3826: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3827: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3828: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3829: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3830: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3831: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3832: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3833: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3834: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3835: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3836: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3837: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3838: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3839: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3840: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3841: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3842: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3843: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3844: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3845: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3846: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3847: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3848: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3849: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3850: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3851: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3852: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3853: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3854: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3855: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3856: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3857: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3858: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3859: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3860: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3861: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3862: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3863: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3864: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3865: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3866: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3867: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3868: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3869: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3870: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3871: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3872: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3873: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3874: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3875: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3876: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3877: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3878: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3879: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3880: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3881: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3882: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3883: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3884: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3885: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3886: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3887: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3888: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3889: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3890: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3891: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3892: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3893: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3894: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3895: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3896: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3897: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3898: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3899: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3900: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3901: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3902: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3903: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3904: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3905: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3906: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3907: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3908: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3909: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3910: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3911: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3912: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3913: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3914: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3915: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3916: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3917: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3918: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3919: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3920: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3921: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3922: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3923: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3924: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3925: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3926: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3927: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3928: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3929: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3930: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3931: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3932: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3933: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3934: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3935: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3936: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3937: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3938: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3939: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3940: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3941: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3942: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3943: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3944: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3945: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3946: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3947: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3948: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3949: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3950: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3951: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3952: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3953: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3954: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3955: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3956: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3957: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3958: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3959: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3960: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3961: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3962: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3963: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3964: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3965: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3966: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3967: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3968: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3969: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3970: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3971: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3972: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3973: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3974: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3975: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3976: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3977: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3978: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3979: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3980: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3981: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3982: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3983: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3984: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3985: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3986: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3987: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3988: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3989: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3990: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3991: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3992: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3993: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3994: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3995: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3996: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3997: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3998: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3999: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4000: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4001: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4002: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4003: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4004: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4005: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4006: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4007: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4008: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4009: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4010: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4011: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4012: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4013: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4014: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4015: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4016: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4017: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4018: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4019: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4020: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4021: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4022: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4023: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4024: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4025: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4026: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4027: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4028: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4029: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4030: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4031: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4032: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4033: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4034: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4035: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4036: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4037: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4038: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4039: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4040: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4041: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4042: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4043: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4044: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4045: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4046: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4047: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4048: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4049: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4050: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4051: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4052: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4053: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4054: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4055: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4056: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4057: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4058: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4059: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4060: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4061: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4062: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4063: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999964 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4064: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4065: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4066: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4067: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4068: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4069: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4070: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4071: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4072: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4073: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4074: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4075: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4076: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4077: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4078: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4079: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999984 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4080: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4081: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4082: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4083: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999971 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4084: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4085: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4086: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999995 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4087: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4088: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4089: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4090: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4091: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4092: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4093: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4094: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4095: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4096: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4097: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4098: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4099: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4100: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4101: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4102: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4103: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4104: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4105: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4106: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4107: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4108: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4109: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4110: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4111: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4112: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4113: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4114: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4115: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4116: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4117: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4118: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4119: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4120: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4121: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4122: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4123: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4124: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4125: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4126: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4127: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4128: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4129: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4130: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4131: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4132: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4133: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4134: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4135: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4136: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4137: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4138: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4139: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4140: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4141: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4142: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4143: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4144: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4145: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4146: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4147: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4148: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4149: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4150: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4151: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4152: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4153: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4154: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4155: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4156: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4157: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4158: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4159: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4160: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4161: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4162: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4163: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4164: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4165: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4166: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4167: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4168: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4169: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4170: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4171: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4172: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4173: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4174: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4175: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4176: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4177: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4178: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4179: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4180: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4181: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4182: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4183: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4184: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4185: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4186: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4187: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4188: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4189: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4190: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4191: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4192: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4193: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4194: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4195: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4196: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4197: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4198: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4199: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4200: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4201: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4202: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4203: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4204: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4205: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4206: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4207: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4208: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4209: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4210: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4211: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4212: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4213: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4214: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4215: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4216: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4217: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4218: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4219: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4220: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4221: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4222: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4223: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4224: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4225: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4226: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4227: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4228: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4229: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4230: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4231: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4232: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4233: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4234: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4235: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4236: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4237: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4238: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4239: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4240: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4241: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4242: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4243: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4244: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4245: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4246: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4247: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4248: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4249: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4250: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4251: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4252: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4253: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4254: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4255: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4256: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4257: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4258: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4259: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4260: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4261: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4262: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4263: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4264: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4265: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4266: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4267: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4268: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4269: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4270: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4271: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4272: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4273: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4274: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4275: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4276: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4277: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4278: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4279: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4280: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4281: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4282: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4283: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4284: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4285: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4286: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4287: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4288: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4289: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4290: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4291: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4292: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4293: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4294: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4295: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4296: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4297: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4298: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4299: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4300: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4301: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4302: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4303: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4304: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4305: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4306: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4307: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4308: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4309: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4310: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4311: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4312: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4313: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4314: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4315: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4316: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4317: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4318: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4319: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4320: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4321: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4322: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4323: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4324: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4325: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4326: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4327: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4328: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4329: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4330: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4331: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4332: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4333: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4334: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4335: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4336: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4337: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4338: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4339: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4340: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4341: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4342: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4343: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4344: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4345: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4346: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4347: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4348: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4349: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4350: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4351: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4352: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4353: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4354: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4355: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4356: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4357: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4358: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4359: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4360: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4361: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4362: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4363: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4364: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4365: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4366: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4367: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4368: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4369: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4370: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4371: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4372: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4373: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4374: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4375: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4376: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4377: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4378: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4379: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4380: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4381: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4382: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4383: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4384: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4385: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4386: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4387: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4388: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4389: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4390: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4391: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4392: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4393: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4394: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4395: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4396: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4397: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4398: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4399: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4400: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4401: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4402: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4403: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4404: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4405: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4406: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4407: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4408: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4409: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4410: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4411: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4412: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4413: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4414: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4415: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4416: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4417: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4418: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4419: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4420: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4421: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4422: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4423: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4424: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4425: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4426: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4427: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4428: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4429: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4430: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4431: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4432: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4433: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4434: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4435: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4436: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4437: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4438: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4439: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4440: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4441: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4442: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4443: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4444: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4445: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4446: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4447: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4448: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4449: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4450: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4451: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4452: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4453: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4454: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4455: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4456: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4457: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4458: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4459: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4460: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4461: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4462: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4463: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4464: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4465: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4466: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4467: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4468: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4469: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4470: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4471: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4472: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4473: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4474: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4475: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4476: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4477: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4478: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4479: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4480: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4481: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4482: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4483: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4484: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4485: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4486: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4487: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4488: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4489: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4490: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4491: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4492: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4493: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4494: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4495: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4496: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4497: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4498: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4499: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4500: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4501: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4502: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4503: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4504: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4505: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4506: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4507: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4508: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4509: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4510: +Vertex groups: 5 + Group: 'Head', Weight: 0.999861 + Group: 'Spine2', Weight: 0.000139 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4511: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4512: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4513: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4514: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4515: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4516: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4517: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4518: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4519: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4520: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4521: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4522: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4523: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4524: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4525: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4526: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4527: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4528: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4529: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4530: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4531: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4532: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4533: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4534: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4535: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4536: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4537: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4538: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4539: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4540: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4541: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4542: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4543: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4544: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4545: +Vertex groups: 5 + Group: 'Head', Weight: 0.999380 + Group: 'RightShoulder', Weight: 0.000620 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4546: +Vertex groups: 5 + Group: 'Head', Weight: 0.999557 + Group: 'RightShoulder', Weight: 0.000443 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4547: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4548: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4549: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4550: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4551: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4552: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4553: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4554: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4555: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4556: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4557: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4558: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4559: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4560: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4561: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4562: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4563: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4564: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4565: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4566: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4567: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4568: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4569: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4570: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4571: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4572: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4573: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4574: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4575: +Vertex groups: 5 + Group: 'Head', Weight: 0.999831 + Group: 'RightShoulder', Weight: 0.000169 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4576: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4577: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4578: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4579: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4580: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4581: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4582: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4583: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4584: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4585: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4586: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4587: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4588: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4589: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4590: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4591: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4592: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4593: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4594: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4595: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4596: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4597: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4598: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4599: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4600: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4601: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4602: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4603: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4604: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4605: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4606: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4607: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4608: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4609: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4610: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4611: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4612: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4613: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4614: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4615: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4616: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4617: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4618: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4619: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4620: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4621: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4622: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4623: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4624: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4625: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4626: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4627: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4628: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4629: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4630: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4631: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4632: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4633: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4634: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4635: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4636: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4637: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4638: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4639: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4640: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4641: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4642: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4643: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4644: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4645: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4646: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4647: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4648: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4649: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4650: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4651: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4652: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4653: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4654: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4655: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4656: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4657: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4658: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4659: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4660: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4661: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4662: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4663: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4664: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4665: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4666: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4667: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4668: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4669: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4670: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4671: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4672: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4673: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4674: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4675: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4676: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4677: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4678: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4679: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4680: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4681: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4682: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4683: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4684: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4685: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4686: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4687: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4688: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4689: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4690: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4691: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4692: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4693: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4694: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4695: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4696: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4697: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4698: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4699: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4700: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4701: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4702: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4703: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4704: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4705: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4706: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4707: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4708: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4709: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4710: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4711: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4712: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4713: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4714: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4715: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4716: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4717: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4718: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4719: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4720: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4721: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4722: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4723: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4724: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4725: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4726: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4727: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4728: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4729: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4730: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4731: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4732: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4733: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4734: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4735: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4736: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4737: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4738: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4739: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4740: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4741: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4742: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4743: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4744: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4745: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4746: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4747: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4748: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4749: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4750: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4751: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4752: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4753: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4754: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4755: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4756: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4757: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4758: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4759: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4760: +Vertex groups: 5 + Group: 'Head', Weight: 0.999857 + Group: 'Spine2', Weight: 0.000143 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4761: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4762: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4763: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4764: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4765: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4766: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4767: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4768: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4769: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4770: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4771: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4772: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4773: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4774: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4775: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4776: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4777: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4778: +Vertex groups: 5 + Group: 'Head', Weight: 0.999834 + Group: 'RightShoulder', Weight: 0.000166 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4779: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4780: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4781: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4782: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4783: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4784: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4785: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4786: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4787: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4788: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4789: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4790: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4791: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4792: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4793: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4794: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4795: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4796: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4797: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4798: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4799: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4800: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4801: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4802: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4803: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4804: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4805: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4806: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4807: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4808: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4809: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4810: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4811: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4812: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4813: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4814: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4815: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4816: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4817: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4818: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4819: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4820: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4821: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4822: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4823: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4824: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4825: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4826: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4827: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4828: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4829: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4830: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4831: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4832: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4833: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4834: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4835: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4836: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4837: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4838: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4839: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4840: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4841: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4842: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4843: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4844: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4845: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4846: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4847: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4848: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4849: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4850: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4851: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4852: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4853: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4854: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4855: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4856: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4857: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4858: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4859: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4860: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4861: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4862: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4863: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4864: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4865: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4866: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4867: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4868: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4869: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4870: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4871: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4872: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4873: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4874: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4875: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4876: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4877: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4878: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4879: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4880: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4881: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4882: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4883: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4884: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4885: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4886: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4887: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4888: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4889: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4890: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4891: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4892: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4893: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4894: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4895: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4896: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4897: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4898: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4899: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4900: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4901: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4902: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4903: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4904: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4905: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4906: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4907: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4908: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4909: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4910: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4911: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4912: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4913: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4914: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4915: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4916: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4917: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4918: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4919: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4920: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4921: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4922: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4923: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4924: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4925: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4926: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4927: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4928: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4929: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4930: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4931: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4932: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4933: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4934: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4935: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4936: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4937: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4938: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4939: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4940: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4941: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4942: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4943: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4944: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4945: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4946: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4947: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4948: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4949: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4950: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4951: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4952: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4953: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4954: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4955: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4956: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4957: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4958: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4959: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4960: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4961: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4962: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4963: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4964: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4965: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4966: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4967: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4968: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4969: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4970: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4971: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4972: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4973: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4974: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4975: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4976: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4977: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4978: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4979: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4980: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4981: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4982: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4983: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4984: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4985: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4986: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4987: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4988: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4989: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4990: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4991: +Vertex groups: 5 + Group: 'Head', Weight: 0.999614 + Group: 'LeftShoulder', Weight: 0.000386 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4992: +Vertex groups: 5 + Group: 'Head', Weight: 0.999833 + Group: 'LeftShoulder', Weight: 0.000167 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4993: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4994: +Vertex groups: 5 + Group: 'Head', Weight: 0.999065 + Group: 'LeftShoulder', Weight: 0.000935 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4995: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4996: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4997: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4998: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4999: +Vertex groups: 5 + Group: 'Head', Weight: 0.995169 + Group: 'LeftShoulder', Weight: 0.004831 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5000: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5001: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5002: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5003: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5004: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5005: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5006: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5007: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5008: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5009: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5010: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5011: +Vertex groups: 5 + Group: 'Head', Weight: 0.999879 + Group: 'LeftShoulder', Weight: 0.000121 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5012: +Vertex groups: 5 + Group: 'Head', Weight: 0.999764 + Group: 'LeftShoulder', Weight: 0.000236 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5013: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5014: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5015: +Vertex groups: 5 + Group: 'Head', Weight: 0.953550 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 5016: +Vertex groups: 5 + Group: 'Head', Weight: 0.999768 + Group: 'LeftShoulder', Weight: 0.000232 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5017: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5018: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5019: +Vertex groups: 5 + Group: 'Head', Weight: 0.997823 + Group: 'LeftShoulder', Weight: 0.002177 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5020: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5021: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5022: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5023: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5024: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5025: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5026: +Vertex groups: 5 + Group: 'Head', Weight: 0.999840 + Group: 'LeftShoulder', Weight: 0.000160 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5027: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5028: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5029: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5030: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5031: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5032: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5033: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5034: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5035: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5036: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5037: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5038: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5039: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5040: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5041: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5042: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5043: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5044: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5045: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5046: +Vertex groups: 5 + Group: 'Head', Weight: 0.991966 + Group: 'LeftShoulder', Weight: 0.008034 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5047: +Vertex groups: 5 + Group: 'Head', Weight: 0.995661 + Group: 'LeftShoulder', Weight: 0.004339 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5048: +Vertex groups: 5 + Group: 'Head', Weight: 0.994015 + Group: 'LeftShoulder', Weight: 0.005985 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5049: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5050: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5051: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5052: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5053: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5054: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5055: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5056: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5057: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5058: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5059: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5060: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5061: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5062: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5063: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5064: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5065: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5066: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5067: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5068: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5069: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5070: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5071: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5072: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5073: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5074: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5075: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5076: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5077: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 5078: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5079: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5080: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5081: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5082: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5083: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5084: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5085: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5086: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5087: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5088: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5089: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5090: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5091: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5092: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5093: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5094: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5095: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5096: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5097: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5098: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5099: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5100: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5101: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5102: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5103: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5104: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5105: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5106: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5107: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5108: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5109: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5110: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5111: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5112: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5113: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5114: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5115: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5116: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5117: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5118: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5119: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5120: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5121: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5122: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5123: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5124: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5125: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5126: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5127: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5128: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5129: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5130: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5131: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5132: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5133: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5134: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5135: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5136: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5137: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5138: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5139: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5140: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5141: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5142: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5143: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5144: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5145: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5146: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5147: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5148: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5149: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5150: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5151: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5152: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5153: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5154: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5155: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5156: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5157: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5158: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5159: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5160: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5161: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5162: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5163: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5164: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5165: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5166: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5167: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5168: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5169: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5170: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5171: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5172: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5173: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5174: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5175: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5176: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5177: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5178: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5179: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5180: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5181: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5182: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5183: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5184: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5185: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5186: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5187: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5188: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5189: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5190: +Vertex groups: 5 + Group: 'Hips', Weight: 0.485923 + Group: 'Spine', Weight: 0.284869 + Group: 'Spine1', Weight: 0.047699 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5191: +Vertex groups: 5 + Group: 'Hips', Weight: 0.354494 + Group: 'Spine', Weight: 0.327523 + Group: 'Spine1', Weight: 0.053945 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5192: +Vertex groups: 5 + Group: 'Hips', Weight: 0.172641 + Group: 'Spine', Weight: 0.411246 + Group: 'Spine1', Weight: 0.068821 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5193: +Vertex groups: 5 + Group: 'Hips', Weight: 0.081324 + Group: 'Spine', Weight: 0.479573 + Group: 'Spine1', Weight: 0.087902 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5194: +Vertex groups: 5 + Group: 'Hips', Weight: 0.043142 + Group: 'Spine', Weight: 0.516324 + Group: 'Spine1', Weight: 0.099493 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5195: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004592 + Group: 'Spine', Weight: 0.564740 + Group: 'Spine1', Weight: 0.098608 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5196: +Vertex groups: 5 + Group: 'Hips', Weight: 0.005989 + Group: 'Spine', Weight: 0.785448 + Group: 'Spine1', Weight: 0.078377 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5197: +Vertex groups: 5 + Group: 'Hips', Weight: 0.007892 + Group: 'Spine', Weight: 0.825366 + Group: 'Spine1', Weight: 0.062199 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5198: +Vertex groups: 5 + Group: 'Hips', Weight: 0.000820 + Group: 'Spine', Weight: 0.718597 + Group: 'Spine1', Weight: 0.089622 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5199: +Vertex groups: 4 + Group: 'Spine', Weight: 0.646631 + Group: 'Spine1', Weight: 0.096957 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5200: +Vertex groups: 5 + Group: 'Hips', Weight: 0.521449 + Group: 'Spine', Weight: 0.276425 + Group: 'Spine1', Weight: 0.045459 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5201: +Vertex groups: 5 + Group: 'Hips', Weight: 0.485696 + Group: 'Spine', Weight: 0.284846 + Group: 'Spine1', Weight: 0.047800 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5202: +Vertex groups: 5 + Group: 'Hips', Weight: 0.354172 + Group: 'Spine', Weight: 0.327375 + Group: 'Spine1', Weight: 0.054040 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5203: +Vertex groups: 5 + Group: 'Hips', Weight: 0.172511 + Group: 'Spine', Weight: 0.410809 + Group: 'Spine1', Weight: 0.068957 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5204: +Vertex groups: 5 + Group: 'Hips', Weight: 0.081325 + Group: 'Spine', Weight: 0.478918 + Group: 'Spine1', Weight: 0.088071 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5205: +Vertex groups: 5 + Group: 'Hips', Weight: 0.043211 + Group: 'Spine', Weight: 0.515572 + Group: 'Spine1', Weight: 0.099686 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5206: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004689 + Group: 'Spine', Weight: 0.563901 + Group: 'Spine1', Weight: 0.098832 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5207: +Vertex groups: 5 + Group: 'Hips', Weight: 0.006091 + Group: 'Spine', Weight: 0.784867 + Group: 'Spine1', Weight: 0.078597 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5208: +Vertex groups: 5 + Group: 'Hips', Weight: 0.000943 + Group: 'Spine', Weight: 0.717777 + Group: 'Spine1', Weight: 0.089893 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5209: +Vertex groups: 4 + Group: 'Spine', Weight: 0.645736 + Group: 'Spine1', Weight: 0.097216 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5210: +Vertex groups: 5 + Group: 'Hips', Weight: 0.472233 + Group: 'Spine', Weight: 0.299955 + Group: 'Spine1', Weight: 0.051487 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5211: +Vertex groups: 5 + Group: 'Hips', Weight: 0.345829 + Group: 'Spine', Weight: 0.340444 + Group: 'Spine1', Weight: 0.056001 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5212: +Vertex groups: 5 + Group: 'Hips', Weight: 0.169230 + Group: 'Spine', Weight: 0.423859 + Group: 'Spine1', Weight: 0.071180 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5213: +Vertex groups: 5 + Group: 'Hips', Weight: 0.080965 + Group: 'Spine', Weight: 0.487820 + Group: 'Spine1', Weight: 0.090966 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5214: +Vertex groups: 5 + Group: 'Hips', Weight: 0.042778 + Group: 'Spine', Weight: 0.523298 + Group: 'Spine1', Weight: 0.103115 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5215: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004382 + Group: 'Spine', Weight: 0.570555 + Group: 'Spine1', Weight: 0.102662 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5216: +Vertex groups: 5 + Group: 'Hips', Weight: 0.002763 + Group: 'Spine', Weight: 0.785956 + Group: 'Spine1', Weight: 0.082598 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5217: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004753 + Group: 'Spine', Weight: 0.827290 + Group: 'Spine1', Weight: 0.064733 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5218: +Vertex groups: 4 + Group: 'Spine', Weight: 0.720626 + Group: 'Spine1', Weight: 0.093906 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5219: +Vertex groups: 4 + Group: 'Spine', Weight: 0.649793 + Group: 'Spine1', Weight: 0.101083 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5220: +Vertex groups: 5 + Group: 'Hips', Weight: 0.508397 + Group: 'Spine', Weight: 0.290198 + Group: 'Spine1', Weight: 0.050147 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5221: +Vertex groups: 5 + Group: 'Hips', Weight: 0.472016 + Group: 'Spine', Weight: 0.299920 + Group: 'Spine1', Weight: 0.051539 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5222: +Vertex groups: 5 + Group: 'Hips', Weight: 0.345525 + Group: 'Spine', Weight: 0.340277 + Group: 'Spine1', Weight: 0.056098 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5223: +Vertex groups: 5 + Group: 'Hips', Weight: 0.169113 + Group: 'Spine', Weight: 0.423403 + Group: 'Spine1', Weight: 0.071319 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5224: +Vertex groups: 5 + Group: 'Hips', Weight: 0.080969 + Group: 'Spine', Weight: 0.487155 + Group: 'Spine1', Weight: 0.091139 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5225: +Vertex groups: 5 + Group: 'Hips', Weight: 0.042851 + Group: 'Spine', Weight: 0.522537 + Group: 'Spine1', Weight: 0.103311 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5226: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004480 + Group: 'Spine', Weight: 0.569708 + Group: 'Spine1', Weight: 0.102889 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5227: +Vertex groups: 5 + Group: 'Hips', Weight: 0.002866 + Group: 'Spine', Weight: 0.785358 + Group: 'Spine1', Weight: 0.082830 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5228: +Vertex groups: 4 + Group: 'Spine', Weight: 0.719797 + Group: 'Spine1', Weight: 0.094185 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5229: +Vertex groups: 4 + Group: 'Spine', Weight: 0.648894 + Group: 'Spine1', Weight: 0.101347 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5230: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5231: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5232: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5233: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5234: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5235: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5236: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5237: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5238: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5239: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5240: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5241: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5242: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5243: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5244: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5245: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5246: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5247: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5248: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5249: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5250: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5251: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5252: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5253: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5254: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5255: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5256: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5257: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5258: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5259: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5260: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5261: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5262: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5263: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5264: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5265: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5266: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5267: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5268: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5269: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5270: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5271: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5272: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5273: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5274: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5275: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5276: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5277: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5278: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5279: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5280: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5281: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5282: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5283: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5284: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5285: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5286: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5287: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5288: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5289: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5290: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5291: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5292: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5293: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5294: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5295: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5296: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5297: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5298: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5299: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5300: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5301: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5302: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5303: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5304: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5305: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5306: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5307: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5308: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5309: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5310: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5311: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5312: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5313: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5314: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5315: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5316: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5317: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5318: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5319: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5320: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5321: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5322: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5323: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5324: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5325: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5326: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5327: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5328: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5329: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5330: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5331: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5332: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 5333: +Vertex groups: 1 + Group: 'Head', Weight: 0.999966 +Vertex 5334: +Vertex groups: 1 + Group: 'Head', Weight: 0.999898 +Vertex 5335: +Vertex groups: 1 + Group: 'Head', Weight: 0.999931 +Vertex 5336: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5337: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5338: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5339: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5340: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5341: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5342: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5343: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5344: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5345: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5346: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5347: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5348: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5349: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5350: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5351: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5352: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5353: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5354: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5355: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5356: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 5357: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 5358: +Vertex groups: 1 + Group: 'Head', Weight: 0.999972 +Vertex 5359: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 5360: +Vertex groups: 1 + Group: 'Head', Weight: 0.999967 +Vertex 5361: +Vertex groups: 1 + Group: 'Head', Weight: 0.999973 +Vertex 5362: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 5363: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5364: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 5365: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 5366: +Vertex groups: 1 + Group: 'Head', Weight: 0.999878 +Vertex 5367: +Vertex groups: 1 + Group: 'Head', Weight: 0.999967 +Vertex 5368: +Vertex groups: 1 + Group: 'Head', Weight: 0.999438 +Vertex 5369: +Vertex groups: 1 + Group: 'Head', Weight: 0.999773 +Vertex 5370: +Vertex groups: 1 + Group: 'Head', Weight: 0.999606 +Vertex 5371: +Vertex groups: 1 + Group: 'Head', Weight: 0.999409 +Vertex 5372: +Vertex groups: 1 + Group: 'Head', Weight: 0.999870 +Vertex 5373: +Vertex groups: 1 + Group: 'Head', Weight: 0.999655 +Vertex 5374: +Vertex groups: 1 + Group: 'Head', Weight: 0.999799 +Vertex 5375: +Vertex groups: 1 + Group: 'Head', Weight: 0.999767 +Vertex 5376: +Vertex groups: 1 + Group: 'Head', Weight: 0.999849 +Vertex 5377: +Vertex groups: 1 + Group: 'Head', Weight: 0.999806 +Vertex 5378: +Vertex groups: 1 + Group: 'Head', Weight: 0.999899 +Vertex 5379: +Vertex groups: 1 + Group: 'Head', Weight: 0.999589 +Vertex 5380: +Vertex groups: 1 + Group: 'Head', Weight: 0.999938 +Vertex 5381: +Vertex groups: 1 + Group: 'Head', Weight: 0.999655 +Vertex 5382: +Vertex groups: 1 + Group: 'Head', Weight: 0.998968 +Vertex 5383: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5384: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5385: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5386: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5387: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5388: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5389: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5390: +Vertex groups: 1 + Group: 'Head', Weight: 0.999979 +Vertex 5391: +Vertex groups: 1 + Group: 'Head', Weight: 0.999977 +Vertex 5392: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5393: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5394: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5395: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5396: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5397: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5398: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.367814 + Group: 'RightHandIndex1', Weight: 0.271328 + Group: 'RightHandRing1', Weight: 0.189331 + Group: 'RightHandMiddle2', Weight: 0.101477 + Group: 'RightHandRing2', Weight: 0.070050 +Vertex 5399: +Vertex groups: 5 + Group: 'RightHandRing2', Weight: 0.495034 + Group: 'RightHandRing1', Weight: 0.298855 + Group: 'RightHandMiddle1', Weight: 0.102023 + Group: 'RightHandPinky1', Weight: 0.066130 + Group: 'RightHandMiddle2', Weight: 0.037957 +=== Animation Keyframes === +=== Bone Transforms per Keyframe === +Keyframes: 47 +Frame: 0 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 1 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 2 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 3 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 4 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 5 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 6 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 7 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 8 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 9 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 10 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 11 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 12 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 13 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 14 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 15 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 16 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 17 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 18 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 19 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 20 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 21 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 22 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 23 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 24 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 25 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 26 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 27 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 28 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 29 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 30 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 31 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 32 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 33 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 34 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 35 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 36 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 37 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 38 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 39 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 40 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 41 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 42 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 43 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 44 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 45 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 46 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + diff --git a/resources/w/girlfriend/girlfriend_idle003.txt b/resources/w/girlfriend/girlfriend_idle003.txt new file mode 100644 index 0000000..8f64b88 --- /dev/null +++ b/resources/w/girlfriend/girlfriend_idle003.txt @@ -0,0 +1,116120 @@ +=== Armature Matrix === + + + + +=== Armature Bones: 62 +Bone: Hips + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.09507554942544139 + + + + Parent: None + Children: ['Spine', 'LeftUpLeg', 'RightUpLeg'] +Bone: Spine + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.12353978971747905 + + + + Parent: Hips + Children: ['Spine1'] +Bone: Spine1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.14721100651092592 + + + + Parent: Spine + Children: ['Spine2'] +Bone: Spine2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.1504897780231176 + + + + Parent: Spine1 + Children: ['Neck', 'LeftShoulder', 'RightShoulder'] +Bone: Neck + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.14121287866897442 + + + + Parent: Spine2 + Children: ['Head'] +Bone: Head + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.22816329000639674 + + + + Parent: Neck + Children: [] +Bone: LeftShoulder + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.12367134536725961 + + + + Parent: Spine2 + Children: ['LeftArm'] +Bone: LeftArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2452980058838208 + + + + Parent: LeftShoulder + Children: ['LeftForeArm'] +Bone: LeftForeArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2225854961490068 + + + + Parent: LeftArm + Children: ['LeftHand'] +Bone: LeftHand + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.059997293858802675 + + + + Parent: LeftForeArm + Children: ['LeftHandThumb1', 'LeftHandIndex1', 'LeftHandMiddle1', 'LeftHandRing1', 'LeftHandPinky1'] +Bone: LeftHandThumb1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.024587623753619402 + + + + Parent: LeftHand + Children: ['LeftHandThumb2'] +Bone: LeftHandThumb2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022115675238174277 + + + + Parent: LeftHandThumb1 + Children: ['LeftHandThumb3'] +Bone: LeftHandThumb3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02079256883015047 + + + + Parent: LeftHandThumb2 + Children: ['LeftHandThumb3_end'] +Bone: LeftHandThumb3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02144576255051639 + + + + Parent: LeftHandThumb3 + Children: [] +Bone: LeftHandIndex1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.039380642877091566 + + + + Parent: LeftHand + Children: ['LeftHandIndex2'] +Bone: LeftHandIndex2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02689386367683547 + + + + Parent: LeftHandIndex1 + Children: ['LeftHandIndex3'] +Bone: LeftHandIndex3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.021548516170175166 + + + + Parent: LeftHandIndex2 + Children: ['LeftHandIndex3_end'] +Bone: LeftHandIndex3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.017936713692482353 + + + + Parent: LeftHandIndex3 + Children: [] +Bone: LeftHandMiddle1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.03128070502690231 + + + + Parent: LeftHand + Children: ['LeftHandMiddle2'] +Bone: LeftHandMiddle2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02933969730155993 + + + + Parent: LeftHandMiddle1 + Children: ['LeftHandMiddle3'] +Bone: LeftHandMiddle3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02854078575259649 + + + + Parent: LeftHandMiddle2 + Children: ['LeftHandMiddle3_end'] +Bone: LeftHandMiddle3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02217298257472352 + + + + Parent: LeftHandMiddle3 + Children: [] +Bone: LeftHandRing1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02824055589541246 + + + + Parent: LeftHand + Children: ['LeftHandRing2'] +Bone: LeftHandRing2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.026119443766119885 + + + + Parent: LeftHandRing1 + Children: ['LeftHandRing3'] +Bone: LeftHandRing3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.025662976201378793 + + + + Parent: LeftHandRing2 + Children: ['LeftHandRing3_end'] +Bone: LeftHandRing3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01959367912247575 + + + + Parent: LeftHandRing3 + Children: [] +Bone: LeftHandPinky1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02621499128668013 + + + + Parent: LeftHand + Children: ['LeftHandPinky2'] +Bone: LeftHandPinky2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.023017874331436206 + + + + Parent: LeftHandPinky1 + Children: ['LeftHandPinky3'] +Bone: LeftHandPinky3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022463324798304887 + + + + Parent: LeftHandPinky2 + Children: ['LeftHandPinky3_end'] +Bone: LeftHandPinky3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01734677299296374 + + + + Parent: LeftHandPinky3 + Children: [] +Bone: RightShoulder + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.12367134536725961 + + + + Parent: Spine2 + Children: ['RightArm'] +Bone: RightArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2452980058838208 + + + + Parent: RightShoulder + Children: ['RightForeArm'] +Bone: RightForeArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2225854961490068 + + + + Parent: RightArm + Children: ['RightHand'] +Bone: RightHand + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.059997293858802675 + + + + Parent: RightForeArm + Children: ['RightHandThumb1', 'RightHandIndex1', 'RightHandMiddle1', 'RightHandRing1', 'RightHandPinky1'] +Bone: RightHandThumb1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.024587623753619402 + + + + Parent: RightHand + Children: ['RightHandThumb2'] +Bone: RightHandThumb2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022115675238174277 + + + + Parent: RightHandThumb1 + Children: ['RightHandThumb3'] +Bone: RightHandThumb3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02079256883015047 + + + + Parent: RightHandThumb2 + Children: ['RightHandThumb3_end'] +Bone: RightHandThumb3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02144576255051639 + + + + Parent: RightHandThumb3 + Children: [] +Bone: RightHandIndex1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.039380642877091566 + + + + Parent: RightHand + Children: ['RightHandIndex2'] +Bone: RightHandIndex2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02689386367683547 + + + + Parent: RightHandIndex1 + Children: ['RightHandIndex3'] +Bone: RightHandIndex3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.021548516170175166 + + + + Parent: RightHandIndex2 + Children: ['RightHandIndex3_end'] +Bone: RightHandIndex3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.017936713692482353 + + + + Parent: RightHandIndex3 + Children: [] +Bone: RightHandMiddle1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.03128070502690231 + + + + Parent: RightHand + Children: ['RightHandMiddle2'] +Bone: RightHandMiddle2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02933969730155993 + + + + Parent: RightHandMiddle1 + Children: ['RightHandMiddle3'] +Bone: RightHandMiddle3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02854078575259649 + + + + Parent: RightHandMiddle2 + Children: ['RightHandMiddle3_end'] +Bone: RightHandMiddle3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02217298257472352 + + + + Parent: RightHandMiddle3 + Children: [] +Bone: RightHandRing1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02824055589541246 + + + + Parent: RightHand + Children: ['RightHandRing2'] +Bone: RightHandRing2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.026119443766119885 + + + + Parent: RightHandRing1 + Children: ['RightHandRing3'] +Bone: RightHandRing3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.025662976201378793 + + + + Parent: RightHandRing2 + Children: ['RightHandRing3_end'] +Bone: RightHandRing3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01959367912247575 + + + + Parent: RightHandRing3 + Children: [] +Bone: RightHandPinky1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02606178578371245 + + + + Parent: RightHand + Children: ['RightHandPinky2'] +Bone: RightHandPinky2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.023017874331436206 + + + + Parent: RightHandPinky1 + Children: ['RightHandPinky3'] +Bone: RightHandPinky3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022463324798304887 + + + + Parent: RightHandPinky2 + Children: ['RightHandPinky3_end'] +Bone: RightHandPinky3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01734677299296374 + + + + Parent: RightHandPinky3 + Children: [] +Bone: LeftUpLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.3457044687537974 + + + + Parent: Hips + Children: ['LeftLeg'] +Bone: LeftLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.380034175614433 + + + + Parent: LeftUpLeg + Children: ['LeftFoot'] +Bone: LeftFoot + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.1334373005165752 + + + + Parent: LeftLeg + Children: ['LeftToeBase'] +Bone: LeftToeBase + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.13343730116493727 + + + + Parent: LeftFoot + Children: [] +Bone: RightUpLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.3457048513836104 + + + + Parent: Hips + Children: ['RightLeg'] +Bone: RightLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.3800342598547777 + + + + Parent: RightUpLeg + Children: ['RightFoot'] +Bone: RightFoot + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.13343732145500467 + + + + Parent: RightLeg + Children: ['RightToeBase'] +Bone: RightToeBase + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.13343732505038894 + + + + Parent: RightFoot + Children: [] +=== TOTAL MESHES TO EXPORT: 1 === +=== Mesh Object: Girl_Low === +===Vertices: 5400 +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: +Vertex 2660: +Vertex 2661: +Vertex 2662: +Vertex 2663: +Vertex 2664: +Vertex 2665: +Vertex 2666: +Vertex 2667: +Vertex 2668: +Vertex 2669: +Vertex 2670: +Vertex 2671: +Vertex 2672: +Vertex 2673: +Vertex 2674: +Vertex 2675: +Vertex 2676: +Vertex 2677: +Vertex 2678: +Vertex 2679: +Vertex 2680: +Vertex 2681: +Vertex 2682: +Vertex 2683: +Vertex 2684: +Vertex 2685: +Vertex 2686: +Vertex 2687: +Vertex 2688: +Vertex 2689: +Vertex 2690: +Vertex 2691: +Vertex 2692: +Vertex 2693: +Vertex 2694: +Vertex 2695: +Vertex 2696: +Vertex 2697: +Vertex 2698: +Vertex 2699: +Vertex 2700: +Vertex 2701: +Vertex 2702: +Vertex 2703: +Vertex 2704: +Vertex 2705: +Vertex 2706: +Vertex 2707: +Vertex 2708: +Vertex 2709: +Vertex 2710: +Vertex 2711: +Vertex 2712: +Vertex 2713: +Vertex 2714: +Vertex 2715: +Vertex 2716: +Vertex 2717: +Vertex 2718: +Vertex 2719: +Vertex 2720: +Vertex 2721: +Vertex 2722: +Vertex 2723: +Vertex 2724: +Vertex 2725: +Vertex 2726: +Vertex 2727: +Vertex 2728: +Vertex 2729: +Vertex 2730: +Vertex 2731: +Vertex 2732: +Vertex 2733: +Vertex 2734: +Vertex 2735: +Vertex 2736: +Vertex 2737: +Vertex 2738: +Vertex 2739: +Vertex 2740: +Vertex 2741: +Vertex 2742: +Vertex 2743: +Vertex 2744: +Vertex 2745: +Vertex 2746: +Vertex 2747: +Vertex 2748: +Vertex 2749: +Vertex 2750: +Vertex 2751: +Vertex 2752: +Vertex 2753: +Vertex 2754: +Vertex 2755: +Vertex 2756: +Vertex 2757: +Vertex 2758: +Vertex 2759: +Vertex 2760: +Vertex 2761: +Vertex 2762: +Vertex 2763: +Vertex 2764: +Vertex 2765: +Vertex 2766: +Vertex 2767: +Vertex 2768: +Vertex 2769: +Vertex 2770: +Vertex 2771: +Vertex 2772: +Vertex 2773: +Vertex 2774: +Vertex 2775: +Vertex 2776: +Vertex 2777: +Vertex 2778: +Vertex 2779: +Vertex 2780: +Vertex 2781: +Vertex 2782: +Vertex 2783: +Vertex 2784: +Vertex 2785: +Vertex 2786: +Vertex 2787: +Vertex 2788: +Vertex 2789: +Vertex 2790: +Vertex 2791: +Vertex 2792: +Vertex 2793: +Vertex 2794: +Vertex 2795: +Vertex 2796: +Vertex 2797: +Vertex 2798: +Vertex 2799: +Vertex 2800: +Vertex 2801: +Vertex 2802: +Vertex 2803: +Vertex 2804: +Vertex 2805: +Vertex 2806: +Vertex 2807: +Vertex 2808: +Vertex 2809: +Vertex 2810: +Vertex 2811: +Vertex 2812: +Vertex 2813: +Vertex 2814: +Vertex 2815: +Vertex 2816: +Vertex 2817: +Vertex 2818: +Vertex 2819: +Vertex 2820: +Vertex 2821: +Vertex 2822: +Vertex 2823: +Vertex 2824: +Vertex 2825: +Vertex 2826: +Vertex 2827: +Vertex 2828: +Vertex 2829: +Vertex 2830: +Vertex 2831: +Vertex 2832: +Vertex 2833: +Vertex 2834: +Vertex 2835: +Vertex 2836: +Vertex 2837: +Vertex 2838: +Vertex 2839: +Vertex 2840: +Vertex 2841: +Vertex 2842: +Vertex 2843: +Vertex 2844: +Vertex 2845: +Vertex 2846: +Vertex 2847: +Vertex 2848: +Vertex 2849: +Vertex 2850: +Vertex 2851: +Vertex 2852: +Vertex 2853: +Vertex 2854: +Vertex 2855: +Vertex 2856: +Vertex 2857: +Vertex 2858: +Vertex 2859: +Vertex 2860: +Vertex 2861: +Vertex 2862: +Vertex 2863: +Vertex 2864: +Vertex 2865: +Vertex 2866: +Vertex 2867: +Vertex 2868: +Vertex 2869: +Vertex 2870: +Vertex 2871: +Vertex 2872: +Vertex 2873: +Vertex 2874: +Vertex 2875: +Vertex 2876: +Vertex 2877: +Vertex 2878: +Vertex 2879: +Vertex 2880: +Vertex 2881: +Vertex 2882: +Vertex 2883: +Vertex 2884: +Vertex 2885: +Vertex 2886: +Vertex 2887: +Vertex 2888: +Vertex 2889: +Vertex 2890: +Vertex 2891: +Vertex 2892: +Vertex 2893: +Vertex 2894: +Vertex 2895: +Vertex 2896: +Vertex 2897: +Vertex 2898: +Vertex 2899: +Vertex 2900: +Vertex 2901: +Vertex 2902: +Vertex 2903: +Vertex 2904: +Vertex 2905: +Vertex 2906: +Vertex 2907: +Vertex 2908: +Vertex 2909: +Vertex 2910: +Vertex 2911: +Vertex 2912: +Vertex 2913: +Vertex 2914: +Vertex 2915: +Vertex 2916: +Vertex 2917: +Vertex 2918: +Vertex 2919: +Vertex 2920: +Vertex 2921: +Vertex 2922: +Vertex 2923: +Vertex 2924: +Vertex 2925: +Vertex 2926: +Vertex 2927: +Vertex 2928: +Vertex 2929: +Vertex 2930: +Vertex 2931: +Vertex 2932: +Vertex 2933: +Vertex 2934: +Vertex 2935: +Vertex 2936: +Vertex 2937: +Vertex 2938: +Vertex 2939: +Vertex 2940: +Vertex 2941: +Vertex 2942: +Vertex 2943: +Vertex 2944: +Vertex 2945: +Vertex 2946: +Vertex 2947: +Vertex 2948: +Vertex 2949: +Vertex 2950: +Vertex 2951: +Vertex 2952: +Vertex 2953: +Vertex 2954: +Vertex 2955: +Vertex 2956: +Vertex 2957: +Vertex 2958: +Vertex 2959: +Vertex 2960: +Vertex 2961: +Vertex 2962: +Vertex 2963: +Vertex 2964: +Vertex 2965: +Vertex 2966: +Vertex 2967: +Vertex 2968: +Vertex 2969: +Vertex 2970: +Vertex 2971: +Vertex 2972: +Vertex 2973: +Vertex 2974: +Vertex 2975: +Vertex 2976: +Vertex 2977: +Vertex 2978: +Vertex 2979: +Vertex 2980: +Vertex 2981: +Vertex 2982: +Vertex 2983: +Vertex 2984: +Vertex 2985: +Vertex 2986: +Vertex 2987: +Vertex 2988: +Vertex 2989: +Vertex 2990: +Vertex 2991: +Vertex 2992: +Vertex 2993: +Vertex 2994: +Vertex 2995: +Vertex 2996: +Vertex 2997: +Vertex 2998: +Vertex 2999: +Vertex 3000: +Vertex 3001: +Vertex 3002: +Vertex 3003: +Vertex 3004: +Vertex 3005: +Vertex 3006: +Vertex 3007: +Vertex 3008: +Vertex 3009: +Vertex 3010: +Vertex 3011: +Vertex 3012: +Vertex 3013: +Vertex 3014: +Vertex 3015: +Vertex 3016: +Vertex 3017: +Vertex 3018: +Vertex 3019: +Vertex 3020: +Vertex 3021: +Vertex 3022: +Vertex 3023: +Vertex 3024: +Vertex 3025: +Vertex 3026: +Vertex 3027: +Vertex 3028: +Vertex 3029: +Vertex 3030: +Vertex 3031: +Vertex 3032: +Vertex 3033: +Vertex 3034: +Vertex 3035: +Vertex 3036: +Vertex 3037: +Vertex 3038: +Vertex 3039: +Vertex 3040: +Vertex 3041: +Vertex 3042: +Vertex 3043: +Vertex 3044: +Vertex 3045: +Vertex 3046: +Vertex 3047: +Vertex 3048: +Vertex 3049: +Vertex 3050: +Vertex 3051: +Vertex 3052: +Vertex 3053: +Vertex 3054: +Vertex 3055: +Vertex 3056: +Vertex 3057: +Vertex 3058: +Vertex 3059: +Vertex 3060: +Vertex 3061: +Vertex 3062: +Vertex 3063: +Vertex 3064: +Vertex 3065: +Vertex 3066: +Vertex 3067: +Vertex 3068: +Vertex 3069: +Vertex 3070: +Vertex 3071: +Vertex 3072: +Vertex 3073: +Vertex 3074: +Vertex 3075: +Vertex 3076: +Vertex 3077: +Vertex 3078: +Vertex 3079: +Vertex 3080: +Vertex 3081: +Vertex 3082: +Vertex 3083: +Vertex 3084: +Vertex 3085: +Vertex 3086: +Vertex 3087: +Vertex 3088: +Vertex 3089: +Vertex 3090: +Vertex 3091: +Vertex 3092: +Vertex 3093: +Vertex 3094: +Vertex 3095: +Vertex 3096: +Vertex 3097: +Vertex 3098: +Vertex 3099: +Vertex 3100: +Vertex 3101: +Vertex 3102: +Vertex 3103: +Vertex 3104: +Vertex 3105: +Vertex 3106: +Vertex 3107: +Vertex 3108: +Vertex 3109: +Vertex 3110: +Vertex 3111: +Vertex 3112: +Vertex 3113: +Vertex 3114: +Vertex 3115: +Vertex 3116: +Vertex 3117: +Vertex 3118: +Vertex 3119: +Vertex 3120: +Vertex 3121: +Vertex 3122: +Vertex 3123: +Vertex 3124: +Vertex 3125: +Vertex 3126: +Vertex 3127: +Vertex 3128: +Vertex 3129: +Vertex 3130: +Vertex 3131: +Vertex 3132: +Vertex 3133: +Vertex 3134: +Vertex 3135: +Vertex 3136: +Vertex 3137: +Vertex 3138: +Vertex 3139: +Vertex 3140: +Vertex 3141: +Vertex 3142: +Vertex 3143: +Vertex 3144: +Vertex 3145: +Vertex 3146: +Vertex 3147: +Vertex 3148: +Vertex 3149: +Vertex 3150: +Vertex 3151: +Vertex 3152: +Vertex 3153: +Vertex 3154: +Vertex 3155: +Vertex 3156: +Vertex 3157: +Vertex 3158: +Vertex 3159: +Vertex 3160: +Vertex 3161: +Vertex 3162: +Vertex 3163: +Vertex 3164: +Vertex 3165: +Vertex 3166: +Vertex 3167: +Vertex 3168: +Vertex 3169: +Vertex 3170: +Vertex 3171: +Vertex 3172: +Vertex 3173: +Vertex 3174: +Vertex 3175: +Vertex 3176: +Vertex 3177: +Vertex 3178: +Vertex 3179: +Vertex 3180: +Vertex 3181: +Vertex 3182: +Vertex 3183: +Vertex 3184: +Vertex 3185: +Vertex 3186: +Vertex 3187: +Vertex 3188: +Vertex 3189: +Vertex 3190: +Vertex 3191: +Vertex 3192: +Vertex 3193: +Vertex 3194: +Vertex 3195: +Vertex 3196: +Vertex 3197: +Vertex 3198: +Vertex 3199: +Vertex 3200: +Vertex 3201: +Vertex 3202: +Vertex 3203: +Vertex 3204: +Vertex 3205: +Vertex 3206: +Vertex 3207: +Vertex 3208: +Vertex 3209: +Vertex 3210: +Vertex 3211: +Vertex 3212: +Vertex 3213: +Vertex 3214: +Vertex 3215: +Vertex 3216: +Vertex 3217: +Vertex 3218: +Vertex 3219: +Vertex 3220: +Vertex 3221: +Vertex 3222: +Vertex 3223: +Vertex 3224: +Vertex 3225: +Vertex 3226: +Vertex 3227: +Vertex 3228: +Vertex 3229: +Vertex 3230: +Vertex 3231: +Vertex 3232: +Vertex 3233: +Vertex 3234: +Vertex 3235: +Vertex 3236: +Vertex 3237: +Vertex 3238: +Vertex 3239: +Vertex 3240: +Vertex 3241: +Vertex 3242: +Vertex 3243: +Vertex 3244: +Vertex 3245: +Vertex 3246: +Vertex 3247: +Vertex 3248: +Vertex 3249: +Vertex 3250: +Vertex 3251: +Vertex 3252: +Vertex 3253: +Vertex 3254: +Vertex 3255: +Vertex 3256: +Vertex 3257: +Vertex 3258: +Vertex 3259: +Vertex 3260: +Vertex 3261: +Vertex 3262: +Vertex 3263: +Vertex 3264: +Vertex 3265: +Vertex 3266: +Vertex 3267: +Vertex 3268: +Vertex 3269: +Vertex 3270: +Vertex 3271: +Vertex 3272: +Vertex 3273: +Vertex 3274: +Vertex 3275: +Vertex 3276: +Vertex 3277: +Vertex 3278: +Vertex 3279: +Vertex 3280: +Vertex 3281: +Vertex 3282: +Vertex 3283: +Vertex 3284: +Vertex 3285: +Vertex 3286: +Vertex 3287: +Vertex 3288: +Vertex 3289: +Vertex 3290: +Vertex 3291: +Vertex 3292: +Vertex 3293: +Vertex 3294: +Vertex 3295: +Vertex 3296: +Vertex 3297: +Vertex 3298: +Vertex 3299: +Vertex 3300: +Vertex 3301: +Vertex 3302: +Vertex 3303: +Vertex 3304: +Vertex 3305: +Vertex 3306: +Vertex 3307: +Vertex 3308: +Vertex 3309: +Vertex 3310: +Vertex 3311: +Vertex 3312: +Vertex 3313: +Vertex 3314: +Vertex 3315: +Vertex 3316: +Vertex 3317: +Vertex 3318: +Vertex 3319: +Vertex 3320: +Vertex 3321: +Vertex 3322: +Vertex 3323: +Vertex 3324: +Vertex 3325: +Vertex 3326: +Vertex 3327: +Vertex 3328: +Vertex 3329: +Vertex 3330: +Vertex 3331: +Vertex 3332: +Vertex 3333: +Vertex 3334: +Vertex 3335: +Vertex 3336: +Vertex 3337: +Vertex 3338: +Vertex 3339: +Vertex 3340: +Vertex 3341: +Vertex 3342: +Vertex 3343: +Vertex 3344: +Vertex 3345: +Vertex 3346: +Vertex 3347: +Vertex 3348: +Vertex 3349: +Vertex 3350: +Vertex 3351: +Vertex 3352: +Vertex 3353: +Vertex 3354: +Vertex 3355: +Vertex 3356: +Vertex 3357: +Vertex 3358: +Vertex 3359: +Vertex 3360: +Vertex 3361: +Vertex 3362: +Vertex 3363: +Vertex 3364: +Vertex 3365: +Vertex 3366: +Vertex 3367: +Vertex 3368: +Vertex 3369: +Vertex 3370: +Vertex 3371: +Vertex 3372: +Vertex 3373: +Vertex 3374: +Vertex 3375: +Vertex 3376: +Vertex 3377: +Vertex 3378: +Vertex 3379: +Vertex 3380: +Vertex 3381: +Vertex 3382: +Vertex 3383: +Vertex 3384: +Vertex 3385: +Vertex 3386: +Vertex 3387: +Vertex 3388: +Vertex 3389: +Vertex 3390: +Vertex 3391: +Vertex 3392: +Vertex 3393: +Vertex 3394: +Vertex 3395: +Vertex 3396: +Vertex 3397: +Vertex 3398: +Vertex 3399: +Vertex 3400: +Vertex 3401: +Vertex 3402: +Vertex 3403: +Vertex 3404: +Vertex 3405: +Vertex 3406: +Vertex 3407: +Vertex 3408: +Vertex 3409: +Vertex 3410: +Vertex 3411: +Vertex 3412: +Vertex 3413: +Vertex 3414: +Vertex 3415: +Vertex 3416: +Vertex 3417: +Vertex 3418: +Vertex 3419: +Vertex 3420: +Vertex 3421: +Vertex 3422: +Vertex 3423: +Vertex 3424: +Vertex 3425: +Vertex 3426: +Vertex 3427: +Vertex 3428: +Vertex 3429: +Vertex 3430: +Vertex 3431: +Vertex 3432: +Vertex 3433: +Vertex 3434: +Vertex 3435: +Vertex 3436: +Vertex 3437: +Vertex 3438: +Vertex 3439: +Vertex 3440: +Vertex 3441: +Vertex 3442: +Vertex 3443: +Vertex 3444: +Vertex 3445: +Vertex 3446: +Vertex 3447: +Vertex 3448: +Vertex 3449: +Vertex 3450: +Vertex 3451: +Vertex 3452: +Vertex 3453: +Vertex 3454: +Vertex 3455: +Vertex 3456: +Vertex 3457: +Vertex 3458: +Vertex 3459: +Vertex 3460: +Vertex 3461: +Vertex 3462: +Vertex 3463: +Vertex 3464: +Vertex 3465: +Vertex 3466: +Vertex 3467: +Vertex 3468: +Vertex 3469: +Vertex 3470: +Vertex 3471: +Vertex 3472: +Vertex 3473: +Vertex 3474: +Vertex 3475: +Vertex 3476: +Vertex 3477: +Vertex 3478: +Vertex 3479: +Vertex 3480: +Vertex 3481: +Vertex 3482: +Vertex 3483: +Vertex 3484: +Vertex 3485: +Vertex 3486: +Vertex 3487: +Vertex 3488: +Vertex 3489: +Vertex 3490: +Vertex 3491: +Vertex 3492: +Vertex 3493: +Vertex 3494: +Vertex 3495: +Vertex 3496: +Vertex 3497: +Vertex 3498: +Vertex 3499: +Vertex 3500: +Vertex 3501: +Vertex 3502: +Vertex 3503: +Vertex 3504: +Vertex 3505: +Vertex 3506: +Vertex 3507: +Vertex 3508: +Vertex 3509: +Vertex 3510: +Vertex 3511: +Vertex 3512: +Vertex 3513: +Vertex 3514: +Vertex 3515: +Vertex 3516: +Vertex 3517: +Vertex 3518: +Vertex 3519: +Vertex 3520: +Vertex 3521: +Vertex 3522: +Vertex 3523: +Vertex 3524: +Vertex 3525: +Vertex 3526: +Vertex 3527: +Vertex 3528: +Vertex 3529: +Vertex 3530: +Vertex 3531: +Vertex 3532: +Vertex 3533: +Vertex 3534: +Vertex 3535: +Vertex 3536: +Vertex 3537: +Vertex 3538: +Vertex 3539: +Vertex 3540: +Vertex 3541: +Vertex 3542: +Vertex 3543: +Vertex 3544: +Vertex 3545: +Vertex 3546: +Vertex 3547: +Vertex 3548: +Vertex 3549: +Vertex 3550: +Vertex 3551: +Vertex 3552: +Vertex 3553: +Vertex 3554: +Vertex 3555: +Vertex 3556: +Vertex 3557: +Vertex 3558: +Vertex 3559: +Vertex 3560: +Vertex 3561: +Vertex 3562: +Vertex 3563: +Vertex 3564: +Vertex 3565: +Vertex 3566: +Vertex 3567: +Vertex 3568: +Vertex 3569: +Vertex 3570: +Vertex 3571: +Vertex 3572: +Vertex 3573: +Vertex 3574: +Vertex 3575: +Vertex 3576: +Vertex 3577: +Vertex 3578: +Vertex 3579: +Vertex 3580: +Vertex 3581: +Vertex 3582: +Vertex 3583: +Vertex 3584: +Vertex 3585: +Vertex 3586: +Vertex 3587: +Vertex 3588: +Vertex 3589: +Vertex 3590: +Vertex 3591: +Vertex 3592: +Vertex 3593: +Vertex 3594: +Vertex 3595: +Vertex 3596: +Vertex 3597: +Vertex 3598: +Vertex 3599: +Vertex 3600: +Vertex 3601: +Vertex 3602: +Vertex 3603: +Vertex 3604: +Vertex 3605: +Vertex 3606: +Vertex 3607: +Vertex 3608: +Vertex 3609: +Vertex 3610: +Vertex 3611: +Vertex 3612: +Vertex 3613: +Vertex 3614: +Vertex 3615: +Vertex 3616: +Vertex 3617: +Vertex 3618: +Vertex 3619: +Vertex 3620: +Vertex 3621: +Vertex 3622: +Vertex 3623: +Vertex 3624: +Vertex 3625: +Vertex 3626: +Vertex 3627: +Vertex 3628: +Vertex 3629: +Vertex 3630: +Vertex 3631: +Vertex 3632: +Vertex 3633: +Vertex 3634: +Vertex 3635: +Vertex 3636: +Vertex 3637: +Vertex 3638: +Vertex 3639: +Vertex 3640: +Vertex 3641: +Vertex 3642: +Vertex 3643: +Vertex 3644: +Vertex 3645: +Vertex 3646: +Vertex 3647: +Vertex 3648: +Vertex 3649: +Vertex 3650: +Vertex 3651: +Vertex 3652: +Vertex 3653: +Vertex 3654: +Vertex 3655: +Vertex 3656: +Vertex 3657: +Vertex 3658: +Vertex 3659: +Vertex 3660: +Vertex 3661: +Vertex 3662: +Vertex 3663: +Vertex 3664: +Vertex 3665: +Vertex 3666: +Vertex 3667: +Vertex 3668: +Vertex 3669: +Vertex 3670: +Vertex 3671: +Vertex 3672: +Vertex 3673: +Vertex 3674: +Vertex 3675: +Vertex 3676: +Vertex 3677: +Vertex 3678: +Vertex 3679: +Vertex 3680: +Vertex 3681: +Vertex 3682: +Vertex 3683: +Vertex 3684: +Vertex 3685: +Vertex 3686: +Vertex 3687: +Vertex 3688: +Vertex 3689: +Vertex 3690: +Vertex 3691: +Vertex 3692: +Vertex 3693: +Vertex 3694: +Vertex 3695: +Vertex 3696: +Vertex 3697: +Vertex 3698: +Vertex 3699: +Vertex 3700: +Vertex 3701: +Vertex 3702: +Vertex 3703: +Vertex 3704: +Vertex 3705: +Vertex 3706: +Vertex 3707: +Vertex 3708: +Vertex 3709: +Vertex 3710: +Vertex 3711: +Vertex 3712: +Vertex 3713: +Vertex 3714: +Vertex 3715: +Vertex 3716: +Vertex 3717: +Vertex 3718: +Vertex 3719: +Vertex 3720: +Vertex 3721: +Vertex 3722: +Vertex 3723: +Vertex 3724: +Vertex 3725: +Vertex 3726: +Vertex 3727: +Vertex 3728: +Vertex 3729: +Vertex 3730: +Vertex 3731: +Vertex 3732: +Vertex 3733: +Vertex 3734: +Vertex 3735: +Vertex 3736: +Vertex 3737: +Vertex 3738: +Vertex 3739: +Vertex 3740: +Vertex 3741: +Vertex 3742: +Vertex 3743: +Vertex 3744: +Vertex 3745: +Vertex 3746: +Vertex 3747: +Vertex 3748: +Vertex 3749: +Vertex 3750: +Vertex 3751: +Vertex 3752: +Vertex 3753: +Vertex 3754: +Vertex 3755: +Vertex 3756: +Vertex 3757: +Vertex 3758: +Vertex 3759: +Vertex 3760: +Vertex 3761: +Vertex 3762: +Vertex 3763: +Vertex 3764: +Vertex 3765: +Vertex 3766: +Vertex 3767: +Vertex 3768: +Vertex 3769: +Vertex 3770: +Vertex 3771: +Vertex 3772: +Vertex 3773: +Vertex 3774: +Vertex 3775: +Vertex 3776: +Vertex 3777: +Vertex 3778: +Vertex 3779: +Vertex 3780: +Vertex 3781: +Vertex 3782: +Vertex 3783: +Vertex 3784: +Vertex 3785: +Vertex 3786: +Vertex 3787: +Vertex 3788: +Vertex 3789: +Vertex 3790: +Vertex 3791: +Vertex 3792: +Vertex 3793: +Vertex 3794: +Vertex 3795: +Vertex 3796: +Vertex 3797: +Vertex 3798: +Vertex 3799: +Vertex 3800: +Vertex 3801: +Vertex 3802: +Vertex 3803: +Vertex 3804: +Vertex 3805: +Vertex 3806: +Vertex 3807: +Vertex 3808: +Vertex 3809: +Vertex 3810: +Vertex 3811: +Vertex 3812: +Vertex 3813: +Vertex 3814: +Vertex 3815: +Vertex 3816: +Vertex 3817: +Vertex 3818: +Vertex 3819: +Vertex 3820: +Vertex 3821: +Vertex 3822: +Vertex 3823: +Vertex 3824: +Vertex 3825: +Vertex 3826: +Vertex 3827: +Vertex 3828: +Vertex 3829: +Vertex 3830: +Vertex 3831: +Vertex 3832: +Vertex 3833: +Vertex 3834: +Vertex 3835: +Vertex 3836: +Vertex 3837: +Vertex 3838: +Vertex 3839: +Vertex 3840: +Vertex 3841: +Vertex 3842: +Vertex 3843: +Vertex 3844: +Vertex 3845: +Vertex 3846: +Vertex 3847: +Vertex 3848: +Vertex 3849: +Vertex 3850: +Vertex 3851: +Vertex 3852: +Vertex 3853: +Vertex 3854: +Vertex 3855: +Vertex 3856: +Vertex 3857: +Vertex 3858: +Vertex 3859: +Vertex 3860: +Vertex 3861: +Vertex 3862: +Vertex 3863: +Vertex 3864: +Vertex 3865: +Vertex 3866: +Vertex 3867: +Vertex 3868: +Vertex 3869: +Vertex 3870: +Vertex 3871: +Vertex 3872: +Vertex 3873: +Vertex 3874: +Vertex 3875: +Vertex 3876: +Vertex 3877: +Vertex 3878: +Vertex 3879: +Vertex 3880: +Vertex 3881: +Vertex 3882: +Vertex 3883: +Vertex 3884: +Vertex 3885: +Vertex 3886: +Vertex 3887: +Vertex 3888: +Vertex 3889: +Vertex 3890: +Vertex 3891: +Vertex 3892: +Vertex 3893: +Vertex 3894: +Vertex 3895: +Vertex 3896: +Vertex 3897: +Vertex 3898: +Vertex 3899: +Vertex 3900: +Vertex 3901: +Vertex 3902: +Vertex 3903: +Vertex 3904: +Vertex 3905: +Vertex 3906: +Vertex 3907: +Vertex 3908: +Vertex 3909: +Vertex 3910: +Vertex 3911: +Vertex 3912: +Vertex 3913: +Vertex 3914: +Vertex 3915: +Vertex 3916: +Vertex 3917: +Vertex 3918: +Vertex 3919: +Vertex 3920: +Vertex 3921: +Vertex 3922: +Vertex 3923: +Vertex 3924: +Vertex 3925: +Vertex 3926: +Vertex 3927: +Vertex 3928: +Vertex 3929: +Vertex 3930: +Vertex 3931: +Vertex 3932: +Vertex 3933: +Vertex 3934: +Vertex 3935: +Vertex 3936: +Vertex 3937: +Vertex 3938: +Vertex 3939: +Vertex 3940: +Vertex 3941: +Vertex 3942: +Vertex 3943: +Vertex 3944: +Vertex 3945: +Vertex 3946: +Vertex 3947: +Vertex 3948: +Vertex 3949: +Vertex 3950: +Vertex 3951: +Vertex 3952: +Vertex 3953: +Vertex 3954: +Vertex 3955: +Vertex 3956: +Vertex 3957: +Vertex 3958: +Vertex 3959: +Vertex 3960: +Vertex 3961: +Vertex 3962: +Vertex 3963: +Vertex 3964: +Vertex 3965: +Vertex 3966: +Vertex 3967: +Vertex 3968: +Vertex 3969: +Vertex 3970: +Vertex 3971: +Vertex 3972: +Vertex 3973: +Vertex 3974: +Vertex 3975: +Vertex 3976: +Vertex 3977: +Vertex 3978: +Vertex 3979: +Vertex 3980: +Vertex 3981: +Vertex 3982: +Vertex 3983: +Vertex 3984: +Vertex 3985: +Vertex 3986: +Vertex 3987: +Vertex 3988: +Vertex 3989: +Vertex 3990: +Vertex 3991: +Vertex 3992: +Vertex 3993: +Vertex 3994: +Vertex 3995: +Vertex 3996: +Vertex 3997: +Vertex 3998: +Vertex 3999: +Vertex 4000: +Vertex 4001: +Vertex 4002: +Vertex 4003: +Vertex 4004: +Vertex 4005: +Vertex 4006: +Vertex 4007: +Vertex 4008: +Vertex 4009: +Vertex 4010: +Vertex 4011: +Vertex 4012: +Vertex 4013: +Vertex 4014: +Vertex 4015: +Vertex 4016: +Vertex 4017: +Vertex 4018: +Vertex 4019: +Vertex 4020: +Vertex 4021: +Vertex 4022: +Vertex 4023: +Vertex 4024: +Vertex 4025: +Vertex 4026: +Vertex 4027: +Vertex 4028: +Vertex 4029: +Vertex 4030: +Vertex 4031: +Vertex 4032: +Vertex 4033: +Vertex 4034: +Vertex 4035: +Vertex 4036: +Vertex 4037: +Vertex 4038: +Vertex 4039: +Vertex 4040: +Vertex 4041: +Vertex 4042: +Vertex 4043: +Vertex 4044: +Vertex 4045: +Vertex 4046: +Vertex 4047: +Vertex 4048: +Vertex 4049: +Vertex 4050: +Vertex 4051: +Vertex 4052: +Vertex 4053: +Vertex 4054: +Vertex 4055: +Vertex 4056: +Vertex 4057: +Vertex 4058: +Vertex 4059: +Vertex 4060: +Vertex 4061: +Vertex 4062: +Vertex 4063: +Vertex 4064: +Vertex 4065: +Vertex 4066: +Vertex 4067: +Vertex 4068: +Vertex 4069: +Vertex 4070: +Vertex 4071: +Vertex 4072: +Vertex 4073: +Vertex 4074: +Vertex 4075: +Vertex 4076: +Vertex 4077: +Vertex 4078: +Vertex 4079: +Vertex 4080: +Vertex 4081: +Vertex 4082: +Vertex 4083: +Vertex 4084: +Vertex 4085: +Vertex 4086: +Vertex 4087: +Vertex 4088: +Vertex 4089: +Vertex 4090: +Vertex 4091: +Vertex 4092: +Vertex 4093: +Vertex 4094: +Vertex 4095: +Vertex 4096: +Vertex 4097: +Vertex 4098: +Vertex 4099: +Vertex 4100: +Vertex 4101: +Vertex 4102: +Vertex 4103: +Vertex 4104: +Vertex 4105: +Vertex 4106: +Vertex 4107: +Vertex 4108: +Vertex 4109: +Vertex 4110: +Vertex 4111: +Vertex 4112: +Vertex 4113: +Vertex 4114: +Vertex 4115: +Vertex 4116: +Vertex 4117: +Vertex 4118: +Vertex 4119: +Vertex 4120: +Vertex 4121: +Vertex 4122: +Vertex 4123: +Vertex 4124: +Vertex 4125: +Vertex 4126: +Vertex 4127: +Vertex 4128: +Vertex 4129: +Vertex 4130: +Vertex 4131: +Vertex 4132: +Vertex 4133: +Vertex 4134: +Vertex 4135: +Vertex 4136: +Vertex 4137: +Vertex 4138: +Vertex 4139: +Vertex 4140: +Vertex 4141: +Vertex 4142: +Vertex 4143: +Vertex 4144: +Vertex 4145: +Vertex 4146: +Vertex 4147: +Vertex 4148: +Vertex 4149: +Vertex 4150: +Vertex 4151: +Vertex 4152: +Vertex 4153: +Vertex 4154: +Vertex 4155: +Vertex 4156: +Vertex 4157: +Vertex 4158: +Vertex 4159: +Vertex 4160: +Vertex 4161: +Vertex 4162: +Vertex 4163: +Vertex 4164: +Vertex 4165: +Vertex 4166: +Vertex 4167: +Vertex 4168: +Vertex 4169: +Vertex 4170: +Vertex 4171: +Vertex 4172: +Vertex 4173: +Vertex 4174: +Vertex 4175: +Vertex 4176: +Vertex 4177: +Vertex 4178: +Vertex 4179: +Vertex 4180: +Vertex 4181: +Vertex 4182: +Vertex 4183: +Vertex 4184: +Vertex 4185: +Vertex 4186: +Vertex 4187: +Vertex 4188: +Vertex 4189: +Vertex 4190: +Vertex 4191: +Vertex 4192: +Vertex 4193: +Vertex 4194: +Vertex 4195: +Vertex 4196: +Vertex 4197: +Vertex 4198: +Vertex 4199: +Vertex 4200: +Vertex 4201: +Vertex 4202: +Vertex 4203: +Vertex 4204: +Vertex 4205: +Vertex 4206: +Vertex 4207: +Vertex 4208: +Vertex 4209: +Vertex 4210: +Vertex 4211: +Vertex 4212: +Vertex 4213: +Vertex 4214: +Vertex 4215: +Vertex 4216: +Vertex 4217: +Vertex 4218: +Vertex 4219: +Vertex 4220: +Vertex 4221: +Vertex 4222: +Vertex 4223: +Vertex 4224: +Vertex 4225: +Vertex 4226: +Vertex 4227: +Vertex 4228: +Vertex 4229: +Vertex 4230: +Vertex 4231: +Vertex 4232: +Vertex 4233: +Vertex 4234: +Vertex 4235: +Vertex 4236: +Vertex 4237: +Vertex 4238: +Vertex 4239: +Vertex 4240: +Vertex 4241: +Vertex 4242: +Vertex 4243: +Vertex 4244: +Vertex 4245: +Vertex 4246: +Vertex 4247: +Vertex 4248: +Vertex 4249: +Vertex 4250: +Vertex 4251: +Vertex 4252: +Vertex 4253: +Vertex 4254: +Vertex 4255: +Vertex 4256: +Vertex 4257: +Vertex 4258: +Vertex 4259: +Vertex 4260: +Vertex 4261: +Vertex 4262: +Vertex 4263: +Vertex 4264: +Vertex 4265: +Vertex 4266: +Vertex 4267: +Vertex 4268: +Vertex 4269: +Vertex 4270: +Vertex 4271: +Vertex 4272: +Vertex 4273: +Vertex 4274: +Vertex 4275: +Vertex 4276: +Vertex 4277: +Vertex 4278: +Vertex 4279: +Vertex 4280: +Vertex 4281: +Vertex 4282: +Vertex 4283: +Vertex 4284: +Vertex 4285: +Vertex 4286: +Vertex 4287: +Vertex 4288: +Vertex 4289: +Vertex 4290: +Vertex 4291: +Vertex 4292: +Vertex 4293: +Vertex 4294: +Vertex 4295: +Vertex 4296: +Vertex 4297: +Vertex 4298: +Vertex 4299: +Vertex 4300: +Vertex 4301: +Vertex 4302: +Vertex 4303: +Vertex 4304: +Vertex 4305: +Vertex 4306: +Vertex 4307: +Vertex 4308: +Vertex 4309: +Vertex 4310: +Vertex 4311: +Vertex 4312: +Vertex 4313: +Vertex 4314: +Vertex 4315: +Vertex 4316: +Vertex 4317: +Vertex 4318: +Vertex 4319: +Vertex 4320: +Vertex 4321: +Vertex 4322: +Vertex 4323: +Vertex 4324: +Vertex 4325: +Vertex 4326: +Vertex 4327: +Vertex 4328: +Vertex 4329: +Vertex 4330: +Vertex 4331: +Vertex 4332: +Vertex 4333: +Vertex 4334: +Vertex 4335: +Vertex 4336: +Vertex 4337: +Vertex 4338: +Vertex 4339: +Vertex 4340: +Vertex 4341: +Vertex 4342: +Vertex 4343: +Vertex 4344: +Vertex 4345: +Vertex 4346: +Vertex 4347: +Vertex 4348: +Vertex 4349: +Vertex 4350: +Vertex 4351: +Vertex 4352: +Vertex 4353: +Vertex 4354: +Vertex 4355: +Vertex 4356: +Vertex 4357: +Vertex 4358: +Vertex 4359: +Vertex 4360: +Vertex 4361: +Vertex 4362: +Vertex 4363: +Vertex 4364: +Vertex 4365: +Vertex 4366: +Vertex 4367: +Vertex 4368: +Vertex 4369: +Vertex 4370: +Vertex 4371: +Vertex 4372: +Vertex 4373: +Vertex 4374: +Vertex 4375: +Vertex 4376: +Vertex 4377: +Vertex 4378: +Vertex 4379: +Vertex 4380: +Vertex 4381: +Vertex 4382: +Vertex 4383: +Vertex 4384: +Vertex 4385: +Vertex 4386: +Vertex 4387: +Vertex 4388: +Vertex 4389: +Vertex 4390: +Vertex 4391: +Vertex 4392: +Vertex 4393: +Vertex 4394: +Vertex 4395: +Vertex 4396: +Vertex 4397: +Vertex 4398: +Vertex 4399: +Vertex 4400: +Vertex 4401: +Vertex 4402: +Vertex 4403: +Vertex 4404: +Vertex 4405: +Vertex 4406: +Vertex 4407: +Vertex 4408: +Vertex 4409: +Vertex 4410: +Vertex 4411: +Vertex 4412: +Vertex 4413: +Vertex 4414: +Vertex 4415: +Vertex 4416: +Vertex 4417: +Vertex 4418: +Vertex 4419: +Vertex 4420: +Vertex 4421: +Vertex 4422: +Vertex 4423: +Vertex 4424: +Vertex 4425: +Vertex 4426: +Vertex 4427: +Vertex 4428: +Vertex 4429: +Vertex 4430: +Vertex 4431: +Vertex 4432: +Vertex 4433: +Vertex 4434: +Vertex 4435: +Vertex 4436: +Vertex 4437: +Vertex 4438: +Vertex 4439: +Vertex 4440: +Vertex 4441: +Vertex 4442: +Vertex 4443: +Vertex 4444: +Vertex 4445: +Vertex 4446: +Vertex 4447: +Vertex 4448: +Vertex 4449: +Vertex 4450: +Vertex 4451: +Vertex 4452: +Vertex 4453: +Vertex 4454: +Vertex 4455: +Vertex 4456: +Vertex 4457: +Vertex 4458: +Vertex 4459: +Vertex 4460: +Vertex 4461: +Vertex 4462: +Vertex 4463: +Vertex 4464: +Vertex 4465: +Vertex 4466: +Vertex 4467: +Vertex 4468: +Vertex 4469: +Vertex 4470: +Vertex 4471: +Vertex 4472: +Vertex 4473: +Vertex 4474: +Vertex 4475: +Vertex 4476: +Vertex 4477: +Vertex 4478: +Vertex 4479: +Vertex 4480: +Vertex 4481: +Vertex 4482: +Vertex 4483: +Vertex 4484: +Vertex 4485: +Vertex 4486: +Vertex 4487: +Vertex 4488: +Vertex 4489: +Vertex 4490: +Vertex 4491: +Vertex 4492: +Vertex 4493: +Vertex 4494: +Vertex 4495: +Vertex 4496: +Vertex 4497: +Vertex 4498: +Vertex 4499: +Vertex 4500: +Vertex 4501: +Vertex 4502: +Vertex 4503: +Vertex 4504: +Vertex 4505: +Vertex 4506: +Vertex 4507: +Vertex 4508: +Vertex 4509: +Vertex 4510: +Vertex 4511: +Vertex 4512: +Vertex 4513: +Vertex 4514: +Vertex 4515: +Vertex 4516: +Vertex 4517: +Vertex 4518: +Vertex 4519: +Vertex 4520: +Vertex 4521: +Vertex 4522: +Vertex 4523: +Vertex 4524: +Vertex 4525: +Vertex 4526: +Vertex 4527: +Vertex 4528: +Vertex 4529: +Vertex 4530: +Vertex 4531: +Vertex 4532: +Vertex 4533: +Vertex 4534: +Vertex 4535: +Vertex 4536: +Vertex 4537: +Vertex 4538: +Vertex 4539: +Vertex 4540: +Vertex 4541: +Vertex 4542: +Vertex 4543: +Vertex 4544: +Vertex 4545: +Vertex 4546: +Vertex 4547: +Vertex 4548: +Vertex 4549: +Vertex 4550: +Vertex 4551: +Vertex 4552: +Vertex 4553: +Vertex 4554: +Vertex 4555: +Vertex 4556: +Vertex 4557: +Vertex 4558: +Vertex 4559: +Vertex 4560: +Vertex 4561: +Vertex 4562: +Vertex 4563: +Vertex 4564: +Vertex 4565: +Vertex 4566: +Vertex 4567: +Vertex 4568: +Vertex 4569: +Vertex 4570: +Vertex 4571: +Vertex 4572: +Vertex 4573: +Vertex 4574: +Vertex 4575: +Vertex 4576: +Vertex 4577: +Vertex 4578: +Vertex 4579: +Vertex 4580: +Vertex 4581: +Vertex 4582: +Vertex 4583: +Vertex 4584: +Vertex 4585: +Vertex 4586: +Vertex 4587: +Vertex 4588: +Vertex 4589: +Vertex 4590: +Vertex 4591: +Vertex 4592: +Vertex 4593: +Vertex 4594: +Vertex 4595: +Vertex 4596: +Vertex 4597: +Vertex 4598: +Vertex 4599: +Vertex 4600: +Vertex 4601: +Vertex 4602: +Vertex 4603: +Vertex 4604: +Vertex 4605: +Vertex 4606: +Vertex 4607: +Vertex 4608: +Vertex 4609: +Vertex 4610: +Vertex 4611: +Vertex 4612: +Vertex 4613: +Vertex 4614: +Vertex 4615: +Vertex 4616: +Vertex 4617: +Vertex 4618: +Vertex 4619: +Vertex 4620: +Vertex 4621: +Vertex 4622: +Vertex 4623: +Vertex 4624: +Vertex 4625: +Vertex 4626: +Vertex 4627: +Vertex 4628: +Vertex 4629: +Vertex 4630: +Vertex 4631: +Vertex 4632: +Vertex 4633: +Vertex 4634: +Vertex 4635: +Vertex 4636: +Vertex 4637: +Vertex 4638: +Vertex 4639: +Vertex 4640: +Vertex 4641: +Vertex 4642: +Vertex 4643: +Vertex 4644: +Vertex 4645: +Vertex 4646: +Vertex 4647: +Vertex 4648: +Vertex 4649: +Vertex 4650: +Vertex 4651: +Vertex 4652: +Vertex 4653: +Vertex 4654: +Vertex 4655: +Vertex 4656: +Vertex 4657: +Vertex 4658: +Vertex 4659: +Vertex 4660: +Vertex 4661: +Vertex 4662: +Vertex 4663: +Vertex 4664: +Vertex 4665: +Vertex 4666: +Vertex 4667: +Vertex 4668: +Vertex 4669: +Vertex 4670: +Vertex 4671: +Vertex 4672: +Vertex 4673: +Vertex 4674: +Vertex 4675: +Vertex 4676: +Vertex 4677: +Vertex 4678: +Vertex 4679: +Vertex 4680: +Vertex 4681: +Vertex 4682: +Vertex 4683: +Vertex 4684: +Vertex 4685: +Vertex 4686: +Vertex 4687: +Vertex 4688: +Vertex 4689: +Vertex 4690: +Vertex 4691: +Vertex 4692: +Vertex 4693: +Vertex 4694: +Vertex 4695: +Vertex 4696: +Vertex 4697: +Vertex 4698: +Vertex 4699: +Vertex 4700: +Vertex 4701: +Vertex 4702: +Vertex 4703: +Vertex 4704: +Vertex 4705: +Vertex 4706: +Vertex 4707: +Vertex 4708: +Vertex 4709: +Vertex 4710: +Vertex 4711: +Vertex 4712: +Vertex 4713: +Vertex 4714: +Vertex 4715: +Vertex 4716: +Vertex 4717: +Vertex 4718: +Vertex 4719: +Vertex 4720: +Vertex 4721: +Vertex 4722: +Vertex 4723: +Vertex 4724: +Vertex 4725: +Vertex 4726: +Vertex 4727: +Vertex 4728: +Vertex 4729: +Vertex 4730: +Vertex 4731: +Vertex 4732: +Vertex 4733: +Vertex 4734: +Vertex 4735: +Vertex 4736: +Vertex 4737: +Vertex 4738: +Vertex 4739: +Vertex 4740: +Vertex 4741: +Vertex 4742: +Vertex 4743: +Vertex 4744: +Vertex 4745: +Vertex 4746: +Vertex 4747: +Vertex 4748: +Vertex 4749: +Vertex 4750: +Vertex 4751: +Vertex 4752: +Vertex 4753: +Vertex 4754: +Vertex 4755: +Vertex 4756: +Vertex 4757: +Vertex 4758: +Vertex 4759: +Vertex 4760: +Vertex 4761: +Vertex 4762: +Vertex 4763: +Vertex 4764: +Vertex 4765: +Vertex 4766: +Vertex 4767: +Vertex 4768: +Vertex 4769: +Vertex 4770: +Vertex 4771: +Vertex 4772: +Vertex 4773: +Vertex 4774: +Vertex 4775: +Vertex 4776: +Vertex 4777: +Vertex 4778: +Vertex 4779: +Vertex 4780: +Vertex 4781: +Vertex 4782: +Vertex 4783: +Vertex 4784: +Vertex 4785: +Vertex 4786: +Vertex 4787: +Vertex 4788: +Vertex 4789: +Vertex 4790: +Vertex 4791: +Vertex 4792: +Vertex 4793: +Vertex 4794: +Vertex 4795: +Vertex 4796: +Vertex 4797: +Vertex 4798: +Vertex 4799: +Vertex 4800: +Vertex 4801: +Vertex 4802: +Vertex 4803: +Vertex 4804: +Vertex 4805: +Vertex 4806: +Vertex 4807: +Vertex 4808: +Vertex 4809: +Vertex 4810: +Vertex 4811: +Vertex 4812: +Vertex 4813: +Vertex 4814: +Vertex 4815: +Vertex 4816: +Vertex 4817: +Vertex 4818: +Vertex 4819: +Vertex 4820: +Vertex 4821: +Vertex 4822: +Vertex 4823: +Vertex 4824: +Vertex 4825: +Vertex 4826: +Vertex 4827: +Vertex 4828: +Vertex 4829: +Vertex 4830: +Vertex 4831: +Vertex 4832: +Vertex 4833: +Vertex 4834: +Vertex 4835: +Vertex 4836: +Vertex 4837: +Vertex 4838: +Vertex 4839: +Vertex 4840: +Vertex 4841: +Vertex 4842: +Vertex 4843: +Vertex 4844: +Vertex 4845: +Vertex 4846: +Vertex 4847: +Vertex 4848: +Vertex 4849: +Vertex 4850: +Vertex 4851: +Vertex 4852: +Vertex 4853: +Vertex 4854: +Vertex 4855: +Vertex 4856: +Vertex 4857: +Vertex 4858: +Vertex 4859: +Vertex 4860: +Vertex 4861: +Vertex 4862: +Vertex 4863: +Vertex 4864: +Vertex 4865: +Vertex 4866: +Vertex 4867: +Vertex 4868: +Vertex 4869: +Vertex 4870: +Vertex 4871: +Vertex 4872: +Vertex 4873: +Vertex 4874: +Vertex 4875: +Vertex 4876: +Vertex 4877: +Vertex 4878: +Vertex 4879: +Vertex 4880: +Vertex 4881: +Vertex 4882: +Vertex 4883: +Vertex 4884: +Vertex 4885: +Vertex 4886: +Vertex 4887: +Vertex 4888: +Vertex 4889: +Vertex 4890: +Vertex 4891: +Vertex 4892: +Vertex 4893: +Vertex 4894: +Vertex 4895: +Vertex 4896: +Vertex 4897: +Vertex 4898: +Vertex 4899: +Vertex 4900: +Vertex 4901: +Vertex 4902: +Vertex 4903: +Vertex 4904: +Vertex 4905: +Vertex 4906: +Vertex 4907: +Vertex 4908: +Vertex 4909: +Vertex 4910: +Vertex 4911: +Vertex 4912: +Vertex 4913: +Vertex 4914: +Vertex 4915: +Vertex 4916: +Vertex 4917: +Vertex 4918: +Vertex 4919: +Vertex 4920: +Vertex 4921: +Vertex 4922: +Vertex 4923: +Vertex 4924: +Vertex 4925: +Vertex 4926: +Vertex 4927: +Vertex 4928: +Vertex 4929: +Vertex 4930: +Vertex 4931: +Vertex 4932: +Vertex 4933: +Vertex 4934: +Vertex 4935: +Vertex 4936: +Vertex 4937: +Vertex 4938: +Vertex 4939: +Vertex 4940: +Vertex 4941: +Vertex 4942: +Vertex 4943: +Vertex 4944: +Vertex 4945: +Vertex 4946: +Vertex 4947: +Vertex 4948: +Vertex 4949: +Vertex 4950: +Vertex 4951: +Vertex 4952: +Vertex 4953: +Vertex 4954: +Vertex 4955: +Vertex 4956: +Vertex 4957: +Vertex 4958: +Vertex 4959: +Vertex 4960: +Vertex 4961: +Vertex 4962: +Vertex 4963: +Vertex 4964: +Vertex 4965: +Vertex 4966: +Vertex 4967: +Vertex 4968: +Vertex 4969: +Vertex 4970: +Vertex 4971: +Vertex 4972: +Vertex 4973: +Vertex 4974: +Vertex 4975: +Vertex 4976: +Vertex 4977: +Vertex 4978: +Vertex 4979: +Vertex 4980: +Vertex 4981: +Vertex 4982: +Vertex 4983: +Vertex 4984: +Vertex 4985: +Vertex 4986: +Vertex 4987: +Vertex 4988: +Vertex 4989: +Vertex 4990: +Vertex 4991: +Vertex 4992: +Vertex 4993: +Vertex 4994: +Vertex 4995: +Vertex 4996: +Vertex 4997: +Vertex 4998: +Vertex 4999: +Vertex 5000: +Vertex 5001: +Vertex 5002: +Vertex 5003: +Vertex 5004: +Vertex 5005: +Vertex 5006: +Vertex 5007: +Vertex 5008: +Vertex 5009: +Vertex 5010: +Vertex 5011: +Vertex 5012: +Vertex 5013: +Vertex 5014: +Vertex 5015: +Vertex 5016: +Vertex 5017: +Vertex 5018: +Vertex 5019: +Vertex 5020: +Vertex 5021: +Vertex 5022: +Vertex 5023: +Vertex 5024: +Vertex 5025: +Vertex 5026: +Vertex 5027: +Vertex 5028: +Vertex 5029: +Vertex 5030: +Vertex 5031: +Vertex 5032: +Vertex 5033: +Vertex 5034: +Vertex 5035: +Vertex 5036: +Vertex 5037: +Vertex 5038: +Vertex 5039: +Vertex 5040: +Vertex 5041: +Vertex 5042: +Vertex 5043: +Vertex 5044: +Vertex 5045: +Vertex 5046: +Vertex 5047: +Vertex 5048: +Vertex 5049: +Vertex 5050: +Vertex 5051: +Vertex 5052: +Vertex 5053: +Vertex 5054: +Vertex 5055: +Vertex 5056: +Vertex 5057: +Vertex 5058: +Vertex 5059: +Vertex 5060: +Vertex 5061: +Vertex 5062: +Vertex 5063: +Vertex 5064: +Vertex 5065: +Vertex 5066: +Vertex 5067: +Vertex 5068: +Vertex 5069: +Vertex 5070: +Vertex 5071: +Vertex 5072: +Vertex 5073: +Vertex 5074: +Vertex 5075: +Vertex 5076: +Vertex 5077: +Vertex 5078: +Vertex 5079: +Vertex 5080: +Vertex 5081: +Vertex 5082: +Vertex 5083: +Vertex 5084: +Vertex 5085: +Vertex 5086: +Vertex 5087: +Vertex 5088: +Vertex 5089: +Vertex 5090: +Vertex 5091: +Vertex 5092: +Vertex 5093: +Vertex 5094: +Vertex 5095: +Vertex 5096: +Vertex 5097: +Vertex 5098: +Vertex 5099: +Vertex 5100: +Vertex 5101: +Vertex 5102: +Vertex 5103: +Vertex 5104: +Vertex 5105: +Vertex 5106: +Vertex 5107: +Vertex 5108: +Vertex 5109: +Vertex 5110: +Vertex 5111: +Vertex 5112: +Vertex 5113: +Vertex 5114: +Vertex 5115: +Vertex 5116: +Vertex 5117: +Vertex 5118: +Vertex 5119: +Vertex 5120: +Vertex 5121: +Vertex 5122: +Vertex 5123: +Vertex 5124: +Vertex 5125: +Vertex 5126: +Vertex 5127: +Vertex 5128: +Vertex 5129: +Vertex 5130: +Vertex 5131: +Vertex 5132: +Vertex 5133: +Vertex 5134: +Vertex 5135: +Vertex 5136: +Vertex 5137: +Vertex 5138: +Vertex 5139: +Vertex 5140: +Vertex 5141: +Vertex 5142: +Vertex 5143: +Vertex 5144: +Vertex 5145: +Vertex 5146: +Vertex 5147: +Vertex 5148: +Vertex 5149: +Vertex 5150: +Vertex 5151: +Vertex 5152: +Vertex 5153: +Vertex 5154: +Vertex 5155: +Vertex 5156: +Vertex 5157: +Vertex 5158: +Vertex 5159: +Vertex 5160: +Vertex 5161: +Vertex 5162: +Vertex 5163: +Vertex 5164: +Vertex 5165: +Vertex 5166: +Vertex 5167: +Vertex 5168: +Vertex 5169: +Vertex 5170: +Vertex 5171: +Vertex 5172: +Vertex 5173: +Vertex 5174: +Vertex 5175: +Vertex 5176: +Vertex 5177: +Vertex 5178: +Vertex 5179: +Vertex 5180: +Vertex 5181: +Vertex 5182: +Vertex 5183: +Vertex 5184: +Vertex 5185: +Vertex 5186: +Vertex 5187: +Vertex 5188: +Vertex 5189: +Vertex 5190: +Vertex 5191: +Vertex 5192: +Vertex 5193: +Vertex 5194: +Vertex 5195: +Vertex 5196: +Vertex 5197: +Vertex 5198: +Vertex 5199: +Vertex 5200: +Vertex 5201: +Vertex 5202: +Vertex 5203: +Vertex 5204: +Vertex 5205: +Vertex 5206: +Vertex 5207: +Vertex 5208: +Vertex 5209: +Vertex 5210: +Vertex 5211: +Vertex 5212: +Vertex 5213: +Vertex 5214: +Vertex 5215: +Vertex 5216: +Vertex 5217: +Vertex 5218: +Vertex 5219: +Vertex 5220: +Vertex 5221: +Vertex 5222: +Vertex 5223: +Vertex 5224: +Vertex 5225: +Vertex 5226: +Vertex 5227: +Vertex 5228: +Vertex 5229: +Vertex 5230: +Vertex 5231: +Vertex 5232: +Vertex 5233: +Vertex 5234: +Vertex 5235: +Vertex 5236: +Vertex 5237: +Vertex 5238: +Vertex 5239: +Vertex 5240: +Vertex 5241: +Vertex 5242: +Vertex 5243: +Vertex 5244: +Vertex 5245: +Vertex 5246: +Vertex 5247: +Vertex 5248: +Vertex 5249: +Vertex 5250: +Vertex 5251: +Vertex 5252: +Vertex 5253: +Vertex 5254: +Vertex 5255: +Vertex 5256: +Vertex 5257: +Vertex 5258: +Vertex 5259: +Vertex 5260: +Vertex 5261: +Vertex 5262: +Vertex 5263: +Vertex 5264: +Vertex 5265: +Vertex 5266: +Vertex 5267: +Vertex 5268: +Vertex 5269: +Vertex 5270: +Vertex 5271: +Vertex 5272: +Vertex 5273: +Vertex 5274: +Vertex 5275: +Vertex 5276: +Vertex 5277: +Vertex 5278: +Vertex 5279: +Vertex 5280: +Vertex 5281: +Vertex 5282: +Vertex 5283: +Vertex 5284: +Vertex 5285: +Vertex 5286: +Vertex 5287: +Vertex 5288: +Vertex 5289: +Vertex 5290: +Vertex 5291: +Vertex 5292: +Vertex 5293: +Vertex 5294: +Vertex 5295: +Vertex 5296: +Vertex 5297: +Vertex 5298: +Vertex 5299: +Vertex 5300: +Vertex 5301: +Vertex 5302: +Vertex 5303: +Vertex 5304: +Vertex 5305: +Vertex 5306: +Vertex 5307: +Vertex 5308: +Vertex 5309: +Vertex 5310: +Vertex 5311: +Vertex 5312: +Vertex 5313: +Vertex 5314: +Vertex 5315: +Vertex 5316: +Vertex 5317: +Vertex 5318: +Vertex 5319: +Vertex 5320: +Vertex 5321: +Vertex 5322: +Vertex 5323: +Vertex 5324: +Vertex 5325: +Vertex 5326: +Vertex 5327: +Vertex 5328: +Vertex 5329: +Vertex 5330: +Vertex 5331: +Vertex 5332: +Vertex 5333: +Vertex 5334: +Vertex 5335: +Vertex 5336: +Vertex 5337: +Vertex 5338: +Vertex 5339: +Vertex 5340: +Vertex 5341: +Vertex 5342: +Vertex 5343: +Vertex 5344: +Vertex 5345: +Vertex 5346: +Vertex 5347: +Vertex 5348: +Vertex 5349: +Vertex 5350: +Vertex 5351: +Vertex 5352: +Vertex 5353: +Vertex 5354: +Vertex 5355: +Vertex 5356: +Vertex 5357: +Vertex 5358: +Vertex 5359: +Vertex 5360: +Vertex 5361: +Vertex 5362: +Vertex 5363: +Vertex 5364: +Vertex 5365: +Vertex 5366: +Vertex 5367: +Vertex 5368: +Vertex 5369: +Vertex 5370: +Vertex 5371: +Vertex 5372: +Vertex 5373: +Vertex 5374: +Vertex 5375: +Vertex 5376: +Vertex 5377: +Vertex 5378: +Vertex 5379: +Vertex 5380: +Vertex 5381: +Vertex 5382: +Vertex 5383: +Vertex 5384: +Vertex 5385: +Vertex 5386: +Vertex 5387: +Vertex 5388: +Vertex 5389: +Vertex 5390: +Vertex 5391: +Vertex 5392: +Vertex 5393: +Vertex 5394: +Vertex 5395: +Vertex 5396: +Vertex 5397: +Vertex 5398: +Vertex 5399: +===UV Coordinates: +Face count: 9390 +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 +Face 4480 +UV Count: 3 + UV + UV + UV +Face 4481 +UV Count: 3 + UV + UV + UV +Face 4482 +UV Count: 3 + UV + UV + UV +Face 4483 +UV Count: 3 + UV + UV + UV +Face 4484 +UV Count: 3 + UV + UV + UV +Face 4485 +UV Count: 3 + UV + UV + UV +Face 4486 +UV Count: 3 + UV + UV + UV +Face 4487 +UV Count: 3 + UV + UV + UV +Face 4488 +UV Count: 3 + UV + UV + UV +Face 4489 +UV Count: 3 + UV + UV + UV +Face 4490 +UV Count: 3 + UV + UV + UV +Face 4491 +UV Count: 3 + UV + UV + UV +Face 4492 +UV Count: 3 + UV + UV + UV +Face 4493 +UV Count: 3 + UV + UV + UV +Face 4494 +UV Count: 3 + UV + UV + UV +Face 4495 +UV Count: 3 + UV + UV + UV +Face 4496 +UV Count: 3 + UV + UV + UV +Face 4497 +UV Count: 3 + UV + UV + UV +Face 4498 +UV Count: 3 + UV + UV + UV +Face 4499 +UV Count: 3 + UV + UV + UV +Face 4500 +UV Count: 3 + UV + UV + UV +Face 4501 +UV Count: 3 + UV + UV + UV +Face 4502 +UV Count: 3 + UV + UV + UV +Face 4503 +UV Count: 3 + UV + UV + UV +Face 4504 +UV Count: 3 + UV + UV + UV +Face 4505 +UV Count: 3 + UV + UV + UV +Face 4506 +UV Count: 3 + UV + UV + UV +Face 4507 +UV Count: 3 + UV + UV + UV +Face 4508 +UV Count: 3 + UV + UV + UV +Face 4509 +UV Count: 3 + UV + UV + UV +Face 4510 +UV Count: 3 + UV + UV + UV +Face 4511 +UV Count: 3 + UV + UV + UV +Face 4512 +UV Count: 3 + UV + UV + UV +Face 4513 +UV Count: 3 + UV + UV + UV +Face 4514 +UV Count: 3 + UV + UV + UV +Face 4515 +UV Count: 3 + UV + UV + UV +Face 4516 +UV Count: 3 + UV + UV + UV +Face 4517 +UV Count: 3 + UV + UV + UV +Face 4518 +UV Count: 3 + UV + UV + UV +Face 4519 +UV Count: 3 + UV + UV + UV +Face 4520 +UV Count: 3 + UV + UV + UV +Face 4521 +UV Count: 3 + UV + UV + UV +Face 4522 +UV Count: 3 + UV + UV + UV +Face 4523 +UV Count: 3 + UV + UV + UV +Face 4524 +UV Count: 3 + UV + UV + UV +Face 4525 +UV Count: 3 + UV + UV + UV +Face 4526 +UV Count: 3 + UV + UV + UV +Face 4527 +UV Count: 3 + UV + UV + UV +Face 4528 +UV Count: 3 + UV + UV + UV +Face 4529 +UV Count: 3 + UV + UV + UV +Face 4530 +UV Count: 3 + UV + UV + UV +Face 4531 +UV Count: 3 + UV + UV + UV +Face 4532 +UV Count: 3 + UV + UV + UV +Face 4533 +UV Count: 3 + UV + UV + UV +Face 4534 +UV Count: 3 + UV + UV + UV +Face 4535 +UV Count: 3 + UV + UV + UV +Face 4536 +UV Count: 3 + UV + UV + UV +Face 4537 +UV Count: 3 + UV + UV + UV +Face 4538 +UV Count: 3 + UV + UV + UV +Face 4539 +UV Count: 3 + UV + UV + UV +Face 4540 +UV Count: 3 + UV + UV + UV +Face 4541 +UV Count: 3 + UV + UV + UV +Face 4542 +UV Count: 3 + UV + UV + UV +Face 4543 +UV Count: 3 + UV + UV + UV +Face 4544 +UV Count: 3 + UV + UV + UV +Face 4545 +UV Count: 3 + UV + UV + UV +Face 4546 +UV Count: 3 + UV + UV + UV +Face 4547 +UV Count: 3 + UV + UV + UV +Face 4548 +UV Count: 3 + UV + UV + UV +Face 4549 +UV Count: 3 + UV + UV + UV +Face 4550 +UV Count: 3 + UV + UV + UV +Face 4551 +UV Count: 3 + UV + UV + UV +Face 4552 +UV Count: 3 + UV + UV + UV +Face 4553 +UV Count: 3 + UV + UV + UV +Face 4554 +UV Count: 3 + UV + UV + UV +Face 4555 +UV Count: 3 + UV + UV + UV +Face 4556 +UV Count: 3 + UV + UV + UV +Face 4557 +UV Count: 3 + UV + UV + UV +Face 4558 +UV Count: 3 + UV + UV + UV +Face 4559 +UV Count: 3 + UV + UV + UV +Face 4560 +UV Count: 3 + UV + UV + UV +Face 4561 +UV Count: 3 + UV + UV + UV +Face 4562 +UV Count: 3 + UV + UV + UV +Face 4563 +UV Count: 3 + UV + UV + UV +Face 4564 +UV Count: 3 + UV + UV + UV +Face 4565 +UV Count: 3 + UV + UV + UV +Face 4566 +UV Count: 3 + UV + UV + UV +Face 4567 +UV Count: 3 + UV + UV + UV +Face 4568 +UV Count: 3 + UV + UV + UV +Face 4569 +UV Count: 3 + UV + UV + UV +Face 4570 +UV Count: 3 + UV + UV + UV +Face 4571 +UV Count: 3 + UV + UV + UV +Face 4572 +UV Count: 3 + UV + UV + UV +Face 4573 +UV Count: 3 + UV + UV + UV +Face 4574 +UV Count: 3 + UV + UV + UV +Face 4575 +UV Count: 3 + UV + UV + UV +Face 4576 +UV Count: 3 + UV + UV + UV +Face 4577 +UV Count: 3 + UV + UV + UV +Face 4578 +UV Count: 3 + UV + UV + UV +Face 4579 +UV Count: 3 + UV + UV + UV +Face 4580 +UV Count: 3 + UV + UV + UV +Face 4581 +UV Count: 3 + UV + UV + UV +Face 4582 +UV Count: 3 + UV + UV + UV +Face 4583 +UV Count: 3 + UV + UV + UV +Face 4584 +UV Count: 3 + UV + UV + UV +Face 4585 +UV Count: 3 + UV + UV + UV +Face 4586 +UV Count: 3 + UV + UV + UV +Face 4587 +UV Count: 3 + UV + UV + UV +Face 4588 +UV Count: 3 + UV + UV + UV +Face 4589 +UV Count: 3 + UV + UV + UV +Face 4590 +UV Count: 3 + UV + UV + UV +Face 4591 +UV Count: 3 + UV + UV + UV +Face 4592 +UV Count: 3 + UV + UV + UV +Face 4593 +UV Count: 3 + UV + UV + UV +Face 4594 +UV Count: 3 + UV + UV + UV +Face 4595 +UV Count: 3 + UV + UV + UV +Face 4596 +UV Count: 3 + UV + UV + UV +Face 4597 +UV Count: 3 + UV + UV + UV +Face 4598 +UV Count: 3 + UV + UV + UV +Face 4599 +UV Count: 3 + UV + UV + UV +Face 4600 +UV Count: 3 + UV + UV + UV +Face 4601 +UV Count: 3 + UV + UV + UV +Face 4602 +UV Count: 3 + UV + UV + UV +Face 4603 +UV Count: 3 + UV + UV + UV +Face 4604 +UV Count: 3 + UV + UV + UV +Face 4605 +UV Count: 3 + UV + UV + UV +Face 4606 +UV Count: 3 + UV + UV + UV +Face 4607 +UV Count: 3 + UV + UV + UV +Face 4608 +UV Count: 3 + UV + UV + UV +Face 4609 +UV Count: 3 + UV + UV + UV +Face 4610 +UV Count: 3 + UV + UV + UV +Face 4611 +UV Count: 3 + UV + UV + UV +Face 4612 +UV Count: 3 + UV + UV + UV +Face 4613 +UV Count: 3 + UV + UV + UV +Face 4614 +UV Count: 3 + UV + UV + UV +Face 4615 +UV Count: 3 + UV + UV + UV +Face 4616 +UV Count: 3 + UV + UV + UV +Face 4617 +UV Count: 3 + UV + UV + UV +Face 4618 +UV Count: 3 + UV + UV + UV +Face 4619 +UV Count: 3 + UV + UV + UV +Face 4620 +UV Count: 3 + UV + UV + UV +Face 4621 +UV Count: 3 + UV + UV + UV +Face 4622 +UV Count: 3 + UV + UV + UV +Face 4623 +UV Count: 3 + UV + UV + UV +Face 4624 +UV Count: 3 + UV + UV + UV +Face 4625 +UV Count: 3 + UV + UV + UV +Face 4626 +UV Count: 3 + UV + UV + UV +Face 4627 +UV Count: 3 + UV + UV + UV +Face 4628 +UV Count: 3 + UV + UV + UV +Face 4629 +UV Count: 3 + UV + UV + UV +Face 4630 +UV Count: 3 + UV + UV + UV +Face 4631 +UV Count: 3 + UV + UV + UV +Face 4632 +UV Count: 3 + UV + UV + UV +Face 4633 +UV Count: 3 + UV + UV + UV +Face 4634 +UV Count: 3 + UV + UV + UV +Face 4635 +UV Count: 3 + UV + UV + UV +Face 4636 +UV Count: 3 + UV + UV + UV +Face 4637 +UV Count: 3 + UV + UV + UV +Face 4638 +UV Count: 3 + UV + UV + UV +Face 4639 +UV Count: 3 + UV + UV + UV +Face 4640 +UV Count: 3 + UV + UV + UV +Face 4641 +UV Count: 3 + UV + UV + UV +Face 4642 +UV Count: 3 + UV + UV + UV +Face 4643 +UV Count: 3 + UV + UV + UV +Face 4644 +UV Count: 3 + UV + UV + UV +Face 4645 +UV Count: 3 + UV + UV + UV +Face 4646 +UV Count: 3 + UV + UV + UV +Face 4647 +UV Count: 3 + UV + UV + UV +Face 4648 +UV Count: 3 + UV + UV + UV +Face 4649 +UV Count: 3 + UV + UV + UV +Face 4650 +UV Count: 3 + UV + UV + UV +Face 4651 +UV Count: 3 + UV + UV + UV +Face 4652 +UV Count: 3 + UV + UV + UV +Face 4653 +UV Count: 3 + UV + UV + UV +Face 4654 +UV Count: 3 + UV + UV + UV +Face 4655 +UV Count: 3 + UV + UV + UV +Face 4656 +UV Count: 3 + UV + UV + UV +Face 4657 +UV Count: 3 + UV + UV + UV +Face 4658 +UV Count: 3 + UV + UV + UV +Face 4659 +UV Count: 3 + UV + UV + UV +Face 4660 +UV Count: 3 + UV + UV + UV +Face 4661 +UV Count: 3 + UV + UV + UV +Face 4662 +UV Count: 3 + UV + UV + UV +Face 4663 +UV Count: 3 + UV + UV + UV +Face 4664 +UV Count: 3 + UV + UV + UV +Face 4665 +UV Count: 3 + UV + UV + UV +Face 4666 +UV Count: 3 + UV + UV + UV +Face 4667 +UV Count: 3 + UV + UV + UV +Face 4668 +UV Count: 3 + UV + UV + UV +Face 4669 +UV Count: 3 + UV + UV + UV +Face 4670 +UV Count: 3 + UV + UV + UV +Face 4671 +UV Count: 3 + UV + UV + UV +Face 4672 +UV Count: 3 + UV + UV + UV +Face 4673 +UV Count: 3 + UV + UV + UV +Face 4674 +UV Count: 3 + UV + UV + UV +Face 4675 +UV Count: 3 + UV + UV + UV +Face 4676 +UV Count: 3 + UV + UV + UV +Face 4677 +UV Count: 3 + UV + UV + UV +Face 4678 +UV Count: 3 + UV + UV + UV +Face 4679 +UV Count: 3 + UV + UV + UV +Face 4680 +UV Count: 3 + UV + UV + UV +Face 4681 +UV Count: 3 + UV + UV + UV +Face 4682 +UV Count: 3 + UV + UV + UV +Face 4683 +UV Count: 3 + UV + UV + UV +Face 4684 +UV Count: 3 + UV + UV + UV +Face 4685 +UV Count: 3 + UV + UV + UV +Face 4686 +UV Count: 3 + UV + UV + UV +Face 4687 +UV Count: 3 + UV + UV + UV +Face 4688 +UV Count: 3 + UV + UV + UV +Face 4689 +UV Count: 3 + UV + UV + UV +Face 4690 +UV Count: 3 + UV + UV + UV +Face 4691 +UV Count: 3 + UV + UV + UV +Face 4692 +UV Count: 3 + UV + UV + UV +Face 4693 +UV Count: 3 + UV + UV + UV +Face 4694 +UV Count: 3 + UV + UV + UV +Face 4695 +UV Count: 3 + UV + UV + UV +Face 4696 +UV Count: 3 + UV + UV + UV +Face 4697 +UV Count: 3 + UV + UV + UV +Face 4698 +UV Count: 3 + UV + UV + UV +Face 4699 +UV Count: 3 + UV + UV + UV +Face 4700 +UV Count: 3 + UV + UV + UV +Face 4701 +UV Count: 3 + UV + UV + UV +Face 4702 +UV Count: 3 + UV + UV + UV +Face 4703 +UV Count: 3 + UV + UV + UV +Face 4704 +UV Count: 3 + UV + UV + UV +Face 4705 +UV Count: 3 + UV + UV + UV +Face 4706 +UV Count: 3 + UV + UV + UV +Face 4707 +UV Count: 3 + UV + UV + UV +Face 4708 +UV Count: 3 + UV + UV + UV +Face 4709 +UV Count: 3 + UV + UV + UV +Face 4710 +UV Count: 3 + UV + UV + UV +Face 4711 +UV Count: 3 + UV + UV + UV +Face 4712 +UV Count: 3 + UV + UV + UV +Face 4713 +UV Count: 3 + UV + UV + UV +Face 4714 +UV Count: 3 + UV + UV + UV +Face 4715 +UV Count: 3 + UV + UV + UV +Face 4716 +UV Count: 3 + UV + UV + UV +Face 4717 +UV Count: 3 + UV + UV + UV +Face 4718 +UV Count: 3 + UV + UV + UV +Face 4719 +UV Count: 3 + UV + UV + UV +Face 4720 +UV Count: 3 + UV + UV + UV +Face 4721 +UV Count: 3 + UV + UV + UV +Face 4722 +UV Count: 3 + UV + UV + UV +Face 4723 +UV Count: 3 + UV + UV + UV +Face 4724 +UV Count: 3 + UV + UV + UV +Face 4725 +UV Count: 3 + UV + UV + UV +Face 4726 +UV Count: 3 + UV + UV + UV +Face 4727 +UV Count: 3 + UV + UV + UV +Face 4728 +UV Count: 3 + UV + UV + UV +Face 4729 +UV Count: 3 + UV + UV + UV +Face 4730 +UV Count: 3 + UV + UV + UV +Face 4731 +UV Count: 3 + UV + UV + UV +Face 4732 +UV Count: 3 + UV + UV + UV +Face 4733 +UV Count: 3 + UV + UV + UV +Face 4734 +UV Count: 3 + UV + UV + UV +Face 4735 +UV Count: 3 + UV + UV + UV +Face 4736 +UV Count: 3 + UV + UV + UV +Face 4737 +UV Count: 3 + UV + UV + UV +Face 4738 +UV Count: 3 + UV + UV + UV +Face 4739 +UV Count: 3 + UV + UV + UV +Face 4740 +UV Count: 3 + UV + UV + UV +Face 4741 +UV Count: 3 + UV + UV + UV +Face 4742 +UV Count: 3 + UV + UV + UV +Face 4743 +UV Count: 3 + UV + UV + UV +Face 4744 +UV Count: 3 + UV + UV + UV +Face 4745 +UV Count: 3 + UV + UV + UV +Face 4746 +UV Count: 3 + UV + UV + UV +Face 4747 +UV Count: 3 + UV + UV + UV +Face 4748 +UV Count: 3 + UV + UV + UV +Face 4749 +UV Count: 3 + UV + UV + UV +Face 4750 +UV Count: 3 + UV + UV + UV +Face 4751 +UV Count: 3 + UV + UV + UV +Face 4752 +UV Count: 3 + UV + UV + UV +Face 4753 +UV Count: 3 + UV + UV + UV +Face 4754 +UV Count: 3 + UV + UV + UV +Face 4755 +UV Count: 3 + UV + UV + UV +Face 4756 +UV Count: 3 + UV + UV + UV +Face 4757 +UV Count: 3 + UV + UV + UV +Face 4758 +UV Count: 3 + UV + UV + UV +Face 4759 +UV Count: 3 + UV + UV + UV +Face 4760 +UV Count: 3 + UV + UV + UV +Face 4761 +UV Count: 3 + UV + UV + UV +Face 4762 +UV Count: 3 + UV + UV + UV +Face 4763 +UV Count: 3 + UV + UV + UV +Face 4764 +UV Count: 3 + UV + UV + UV +Face 4765 +UV Count: 3 + UV + UV + UV +Face 4766 +UV Count: 3 + UV + UV + UV +Face 4767 +UV Count: 3 + UV + UV + UV +Face 4768 +UV Count: 3 + UV + UV + UV +Face 4769 +UV Count: 3 + UV + UV + UV +Face 4770 +UV Count: 3 + UV + UV + UV +Face 4771 +UV Count: 3 + UV + UV + UV +Face 4772 +UV Count: 3 + UV + UV + UV +Face 4773 +UV Count: 3 + UV + UV + UV +Face 4774 +UV Count: 3 + UV + UV + UV +Face 4775 +UV Count: 3 + UV + UV + UV +Face 4776 +UV Count: 3 + UV + UV + UV +Face 4777 +UV Count: 3 + UV + UV + UV +Face 4778 +UV Count: 3 + UV + UV + UV +Face 4779 +UV Count: 3 + UV + UV + UV +Face 4780 +UV Count: 3 + UV + UV + UV +Face 4781 +UV Count: 3 + UV + UV + UV +Face 4782 +UV Count: 3 + UV + UV + UV +Face 4783 +UV Count: 3 + UV + UV + UV +Face 4784 +UV Count: 3 + UV + UV + UV +Face 4785 +UV Count: 3 + UV + UV + UV +Face 4786 +UV Count: 3 + UV + UV + UV +Face 4787 +UV Count: 3 + UV + UV + UV +Face 4788 +UV Count: 3 + UV + UV + UV +Face 4789 +UV Count: 3 + UV + UV + UV +Face 4790 +UV Count: 3 + UV + UV + UV +Face 4791 +UV Count: 3 + UV + UV + UV +Face 4792 +UV Count: 3 + UV + UV + UV +Face 4793 +UV Count: 3 + UV + UV + UV +Face 4794 +UV Count: 3 + UV + UV + UV +Face 4795 +UV Count: 3 + UV + UV + UV +Face 4796 +UV Count: 3 + UV + UV + UV +Face 4797 +UV Count: 3 + UV + UV + UV +Face 4798 +UV Count: 3 + UV + UV + UV +Face 4799 +UV Count: 3 + UV + UV + UV +Face 4800 +UV Count: 3 + UV + UV + UV +Face 4801 +UV Count: 3 + UV + UV + UV +Face 4802 +UV Count: 3 + UV + UV + UV +Face 4803 +UV Count: 3 + UV + UV + UV +Face 4804 +UV Count: 3 + UV + UV + UV +Face 4805 +UV Count: 3 + UV + UV + UV +Face 4806 +UV Count: 3 + UV + UV + UV +Face 4807 +UV Count: 3 + UV + UV + UV +Face 4808 +UV Count: 3 + UV + UV + UV +Face 4809 +UV Count: 3 + UV + UV + UV +Face 4810 +UV Count: 3 + UV + UV + UV +Face 4811 +UV Count: 3 + UV + UV + UV +Face 4812 +UV Count: 3 + UV + UV + UV +Face 4813 +UV Count: 3 + UV + UV + UV +Face 4814 +UV Count: 3 + UV + UV + UV +Face 4815 +UV Count: 3 + UV + UV + UV +Face 4816 +UV Count: 3 + UV + UV + UV +Face 4817 +UV Count: 3 + UV + UV + UV +Face 4818 +UV Count: 3 + UV + UV + UV +Face 4819 +UV Count: 3 + UV + UV + UV +Face 4820 +UV Count: 3 + UV + UV + UV +Face 4821 +UV Count: 3 + UV + UV + UV +Face 4822 +UV Count: 3 + UV + UV + UV +Face 4823 +UV Count: 3 + UV + UV + UV +Face 4824 +UV Count: 3 + UV + UV + UV +Face 4825 +UV Count: 3 + UV + UV + UV +Face 4826 +UV Count: 3 + UV + UV + UV +Face 4827 +UV Count: 3 + UV + UV + UV +Face 4828 +UV Count: 3 + UV + UV + UV +Face 4829 +UV Count: 3 + UV + UV + UV +Face 4830 +UV Count: 3 + UV + UV + UV +Face 4831 +UV Count: 3 + UV + UV + UV +Face 4832 +UV Count: 3 + UV + UV + UV +Face 4833 +UV Count: 3 + UV + UV + UV +Face 4834 +UV Count: 3 + UV + UV + UV +Face 4835 +UV Count: 3 + UV + UV + UV +Face 4836 +UV Count: 3 + UV + UV + UV +Face 4837 +UV Count: 3 + UV + UV + UV +Face 4838 +UV Count: 3 + UV + UV + UV +Face 4839 +UV Count: 3 + UV + UV + UV +Face 4840 +UV Count: 3 + UV + UV + UV +Face 4841 +UV Count: 3 + UV + UV + UV +Face 4842 +UV Count: 3 + UV + UV + UV +Face 4843 +UV Count: 3 + UV + UV + UV +Face 4844 +UV Count: 3 + UV + UV + UV +Face 4845 +UV Count: 3 + UV + UV + UV +Face 4846 +UV Count: 3 + UV + UV + UV +Face 4847 +UV Count: 3 + UV + UV + UV +Face 4848 +UV Count: 3 + UV + UV + UV +Face 4849 +UV Count: 3 + UV + UV + UV +Face 4850 +UV Count: 3 + UV + UV + UV +Face 4851 +UV Count: 3 + UV + UV + UV +Face 4852 +UV Count: 3 + UV + UV + UV +Face 4853 +UV Count: 3 + UV + UV + UV +Face 4854 +UV Count: 3 + UV + UV + UV +Face 4855 +UV Count: 3 + UV + UV + UV +Face 4856 +UV Count: 3 + UV + UV + UV +Face 4857 +UV Count: 3 + UV + UV + UV +Face 4858 +UV Count: 3 + UV + UV + UV +Face 4859 +UV Count: 3 + UV + UV + UV +Face 4860 +UV Count: 3 + UV + UV + UV +Face 4861 +UV Count: 3 + UV + UV + UV +Face 4862 +UV Count: 3 + UV + UV + UV +Face 4863 +UV Count: 3 + UV + UV + UV +Face 4864 +UV Count: 3 + UV + UV + UV +Face 4865 +UV Count: 3 + UV + UV + UV +Face 4866 +UV Count: 3 + UV + UV + UV +Face 4867 +UV Count: 3 + UV + UV + UV +Face 4868 +UV Count: 3 + UV + UV + UV +Face 4869 +UV Count: 3 + UV + UV + UV +Face 4870 +UV Count: 3 + UV + UV + UV +Face 4871 +UV Count: 3 + UV + UV + UV +Face 4872 +UV Count: 3 + UV + UV + UV +Face 4873 +UV Count: 3 + UV + UV + UV +Face 4874 +UV Count: 3 + UV + UV + UV +Face 4875 +UV Count: 3 + UV + UV + UV +Face 4876 +UV Count: 3 + UV + UV + UV +Face 4877 +UV Count: 3 + UV + UV + UV +Face 4878 +UV Count: 3 + UV + UV + UV +Face 4879 +UV Count: 3 + UV + UV + UV +Face 4880 +UV Count: 3 + UV + UV + UV +Face 4881 +UV Count: 3 + UV + UV + UV +Face 4882 +UV Count: 3 + UV + UV + UV +Face 4883 +UV Count: 3 + UV + UV + UV +Face 4884 +UV Count: 3 + UV + UV + UV +Face 4885 +UV Count: 3 + UV + UV + UV +Face 4886 +UV Count: 3 + UV + UV + UV +Face 4887 +UV Count: 3 + UV + UV + UV +Face 4888 +UV Count: 3 + UV + UV + UV +Face 4889 +UV Count: 3 + UV + UV + UV +Face 4890 +UV Count: 3 + UV + UV + UV +Face 4891 +UV Count: 3 + UV + UV + UV +Face 4892 +UV Count: 3 + UV + UV + UV +Face 4893 +UV Count: 3 + UV + UV + UV +Face 4894 +UV Count: 3 + UV + UV + UV +Face 4895 +UV Count: 3 + UV + UV + UV +Face 4896 +UV Count: 3 + UV + UV + UV +Face 4897 +UV Count: 3 + UV + UV + UV +Face 4898 +UV Count: 3 + UV + UV + UV +Face 4899 +UV Count: 3 + UV + UV + UV +Face 4900 +UV Count: 3 + UV + UV + UV +Face 4901 +UV Count: 3 + UV + UV + UV +Face 4902 +UV Count: 3 + UV + UV + UV +Face 4903 +UV Count: 3 + UV + UV + UV +Face 4904 +UV Count: 3 + UV + UV + UV +Face 4905 +UV Count: 3 + UV + UV + UV +Face 4906 +UV Count: 3 + UV + UV + UV +Face 4907 +UV Count: 3 + UV + UV + UV +Face 4908 +UV Count: 3 + UV + UV + UV +Face 4909 +UV Count: 3 + UV + UV + UV +Face 4910 +UV Count: 3 + UV + UV + UV +Face 4911 +UV Count: 3 + UV + UV + UV +Face 4912 +UV Count: 3 + UV + UV + UV +Face 4913 +UV Count: 3 + UV + UV + UV +Face 4914 +UV Count: 3 + UV + UV + UV +Face 4915 +UV Count: 3 + UV + UV + UV +Face 4916 +UV Count: 3 + UV + UV + UV +Face 4917 +UV Count: 3 + UV + UV + UV +Face 4918 +UV Count: 3 + UV + UV + UV +Face 4919 +UV Count: 3 + UV + UV + UV +Face 4920 +UV Count: 3 + UV + UV + UV +Face 4921 +UV Count: 3 + UV + UV + UV +Face 4922 +UV Count: 3 + UV + UV + UV +Face 4923 +UV Count: 3 + UV + UV + UV +Face 4924 +UV Count: 3 + UV + UV + UV +Face 4925 +UV Count: 3 + UV + UV + UV +Face 4926 +UV Count: 3 + UV + UV + UV +Face 4927 +UV Count: 3 + UV + UV + UV +Face 4928 +UV Count: 3 + UV + UV + UV +Face 4929 +UV Count: 3 + UV + UV + UV +Face 4930 +UV Count: 3 + UV + UV + UV +Face 4931 +UV Count: 3 + UV + UV + UV +Face 4932 +UV Count: 3 + UV + UV + UV +Face 4933 +UV Count: 3 + UV + UV + UV +Face 4934 +UV Count: 3 + UV + UV + UV +Face 4935 +UV Count: 3 + UV + UV + UV +Face 4936 +UV Count: 3 + UV + UV + UV +Face 4937 +UV Count: 3 + UV + UV + UV +Face 4938 +UV Count: 3 + UV + UV + UV +Face 4939 +UV Count: 3 + UV + UV + UV +Face 4940 +UV Count: 3 + UV + UV + UV +Face 4941 +UV Count: 3 + UV + UV + UV +Face 4942 +UV Count: 3 + UV + UV + UV +Face 4943 +UV Count: 3 + UV + UV + UV +Face 4944 +UV Count: 3 + UV + UV + UV +Face 4945 +UV Count: 3 + UV + UV + UV +Face 4946 +UV Count: 3 + UV + UV + UV +Face 4947 +UV Count: 3 + UV + UV + UV +Face 4948 +UV Count: 3 + UV + UV + UV +Face 4949 +UV Count: 3 + UV + UV + UV +Face 4950 +UV Count: 3 + UV + UV + UV +Face 4951 +UV Count: 3 + UV + UV + UV +Face 4952 +UV Count: 3 + UV + UV + UV +Face 4953 +UV Count: 3 + UV + UV + UV +Face 4954 +UV Count: 3 + UV + UV + UV +Face 4955 +UV Count: 3 + UV + UV + UV +Face 4956 +UV Count: 3 + UV + UV + UV +Face 4957 +UV Count: 3 + UV + UV + UV +Face 4958 +UV Count: 3 + UV + UV + UV +Face 4959 +UV Count: 3 + UV + UV + UV +Face 4960 +UV Count: 3 + UV + UV + UV +Face 4961 +UV Count: 3 + UV + UV + UV +Face 4962 +UV Count: 3 + UV + UV + UV +Face 4963 +UV Count: 3 + UV + UV + UV +Face 4964 +UV Count: 3 + UV + UV + UV +Face 4965 +UV Count: 3 + UV + UV + UV +Face 4966 +UV Count: 3 + UV + UV + UV +Face 4967 +UV Count: 3 + UV + UV + UV +Face 4968 +UV Count: 3 + UV + UV + UV +Face 4969 +UV Count: 3 + UV + UV + UV +Face 4970 +UV Count: 3 + UV + UV + UV +Face 4971 +UV Count: 3 + UV + UV + UV +Face 4972 +UV Count: 3 + UV + UV + UV +Face 4973 +UV Count: 3 + UV + UV + UV +Face 4974 +UV Count: 3 + UV + UV + UV +Face 4975 +UV Count: 3 + UV + UV + UV +Face 4976 +UV Count: 3 + UV + UV + UV +Face 4977 +UV Count: 3 + UV + UV + UV +Face 4978 +UV Count: 3 + UV + UV + UV +Face 4979 +UV Count: 3 + UV + UV + UV +Face 4980 +UV Count: 3 + UV + UV + UV +Face 4981 +UV Count: 3 + UV + UV + UV +Face 4982 +UV Count: 3 + UV + UV + UV +Face 4983 +UV Count: 3 + UV + UV + UV +Face 4984 +UV Count: 3 + UV + UV + UV +Face 4985 +UV Count: 3 + UV + UV + UV +Face 4986 +UV Count: 3 + UV + UV + UV +Face 4987 +UV Count: 3 + UV + UV + UV +Face 4988 +UV Count: 3 + UV + UV + UV +Face 4989 +UV Count: 3 + UV + UV + UV +Face 4990 +UV Count: 3 + UV + UV + UV +Face 4991 +UV Count: 3 + UV + UV + UV +Face 4992 +UV Count: 3 + UV + UV + UV +Face 4993 +UV Count: 3 + UV + UV + UV +Face 4994 +UV Count: 3 + UV + UV + UV +Face 4995 +UV Count: 3 + UV + UV + UV +Face 4996 +UV Count: 3 + UV + UV + UV +Face 4997 +UV Count: 3 + UV + UV + UV +Face 4998 +UV Count: 3 + UV + UV + UV +Face 4999 +UV Count: 3 + UV + UV + UV +Face 5000 +UV Count: 3 + UV + UV + UV +Face 5001 +UV Count: 3 + UV + UV + UV +Face 5002 +UV Count: 3 + UV + UV + UV +Face 5003 +UV Count: 3 + UV + UV + UV +Face 5004 +UV Count: 3 + UV + UV + UV +Face 5005 +UV Count: 3 + UV + UV + UV +Face 5006 +UV Count: 3 + UV + UV + UV +Face 5007 +UV Count: 3 + UV + UV + UV +Face 5008 +UV Count: 3 + UV + UV + UV +Face 5009 +UV Count: 3 + UV + UV + UV +Face 5010 +UV Count: 3 + UV + UV + UV +Face 5011 +UV Count: 3 + UV + UV + UV +Face 5012 +UV Count: 3 + UV + UV + UV +Face 5013 +UV Count: 3 + UV + UV + UV +Face 5014 +UV Count: 3 + UV + UV + UV +Face 5015 +UV Count: 3 + UV + UV + UV +Face 5016 +UV Count: 3 + UV + UV + UV +Face 5017 +UV Count: 3 + UV + UV + UV +Face 5018 +UV Count: 3 + UV + UV + UV +Face 5019 +UV Count: 3 + UV + UV + UV +Face 5020 +UV Count: 3 + UV + UV + UV +Face 5021 +UV Count: 3 + UV + UV + UV +Face 5022 +UV Count: 3 + UV + UV + UV +Face 5023 +UV Count: 3 + UV + UV + UV +Face 5024 +UV Count: 3 + UV + UV + UV +Face 5025 +UV Count: 3 + UV + UV + UV +Face 5026 +UV Count: 3 + UV + UV + UV +Face 5027 +UV Count: 3 + UV + UV + UV +Face 5028 +UV Count: 3 + UV + UV + UV +Face 5029 +UV Count: 3 + UV + UV + UV +Face 5030 +UV Count: 3 + UV + UV + UV +Face 5031 +UV Count: 3 + UV + UV + UV +Face 5032 +UV Count: 3 + UV + UV + UV +Face 5033 +UV Count: 3 + UV + UV + UV +Face 5034 +UV Count: 3 + UV + UV + UV +Face 5035 +UV Count: 3 + UV + UV + UV +Face 5036 +UV Count: 3 + UV + UV + UV +Face 5037 +UV Count: 3 + UV + UV + UV +Face 5038 +UV Count: 3 + UV + UV + UV +Face 5039 +UV Count: 3 + UV + UV + UV +Face 5040 +UV Count: 3 + UV + UV + UV +Face 5041 +UV Count: 3 + UV + UV + UV +Face 5042 +UV Count: 3 + UV + UV + UV +Face 5043 +UV Count: 3 + UV + UV + UV +Face 5044 +UV Count: 3 + UV + UV + UV +Face 5045 +UV Count: 3 + UV + UV + UV +Face 5046 +UV Count: 3 + UV + UV + UV +Face 5047 +UV Count: 3 + UV + UV + UV +Face 5048 +UV Count: 3 + UV + UV + UV +Face 5049 +UV Count: 3 + UV + UV + UV +Face 5050 +UV Count: 3 + UV + UV + UV +Face 5051 +UV Count: 3 + UV + UV + UV +Face 5052 +UV Count: 3 + UV + UV + UV +Face 5053 +UV Count: 3 + UV + UV + UV +Face 5054 +UV Count: 3 + UV + UV + UV +Face 5055 +UV Count: 3 + UV + UV + UV +Face 5056 +UV Count: 3 + UV + UV + UV +Face 5057 +UV Count: 3 + UV + UV + UV +Face 5058 +UV Count: 3 + UV + UV + UV +Face 5059 +UV Count: 3 + UV + UV + UV +Face 5060 +UV Count: 3 + UV + UV + UV +Face 5061 +UV Count: 3 + UV + UV + UV +Face 5062 +UV Count: 3 + UV + UV + UV +Face 5063 +UV Count: 3 + UV + UV + UV +Face 5064 +UV Count: 3 + UV + UV + UV +Face 5065 +UV Count: 3 + UV + UV + UV +Face 5066 +UV Count: 3 + UV + UV + UV +Face 5067 +UV Count: 3 + UV + UV + UV +Face 5068 +UV Count: 3 + UV + UV + UV +Face 5069 +UV Count: 3 + UV + UV + UV +Face 5070 +UV Count: 3 + UV + UV + UV +Face 5071 +UV Count: 3 + UV + UV + UV +Face 5072 +UV Count: 3 + UV + UV + UV +Face 5073 +UV Count: 3 + UV + UV + UV +Face 5074 +UV Count: 3 + UV + UV + UV +Face 5075 +UV Count: 3 + UV + UV + UV +Face 5076 +UV Count: 3 + UV + UV + UV +Face 5077 +UV Count: 3 + UV + UV + UV +Face 5078 +UV Count: 3 + UV + UV + UV +Face 5079 +UV Count: 3 + UV + UV + UV +Face 5080 +UV Count: 3 + UV + UV + UV +Face 5081 +UV Count: 3 + UV + UV + UV +Face 5082 +UV Count: 3 + UV + UV + UV +Face 5083 +UV Count: 3 + UV + UV + UV +Face 5084 +UV Count: 3 + UV + UV + UV +Face 5085 +UV Count: 3 + UV + UV + UV +Face 5086 +UV Count: 3 + UV + UV + UV +Face 5087 +UV Count: 3 + UV + UV + UV +Face 5088 +UV Count: 3 + UV + UV + UV +Face 5089 +UV Count: 3 + UV + UV + UV +Face 5090 +UV Count: 3 + UV + UV + UV +Face 5091 +UV Count: 3 + UV + UV + UV +Face 5092 +UV Count: 3 + UV + UV + UV +Face 5093 +UV Count: 3 + UV + UV + UV +Face 5094 +UV Count: 3 + UV + UV + UV +Face 5095 +UV Count: 3 + UV + UV + UV +Face 5096 +UV Count: 3 + UV + UV + UV +Face 5097 +UV Count: 3 + UV + UV + UV +Face 5098 +UV Count: 3 + UV + UV + UV +Face 5099 +UV Count: 3 + UV + UV + UV +Face 5100 +UV Count: 3 + UV + UV + UV +Face 5101 +UV Count: 3 + UV + UV + UV +Face 5102 +UV Count: 3 + UV + UV + UV +Face 5103 +UV Count: 3 + UV + UV + UV +Face 5104 +UV Count: 3 + UV + UV + UV +Face 5105 +UV Count: 3 + UV + UV + UV +Face 5106 +UV Count: 3 + UV + UV + UV +Face 5107 +UV Count: 3 + UV + UV + UV +Face 5108 +UV Count: 3 + UV + UV + UV +Face 5109 +UV Count: 3 + UV + UV + UV +Face 5110 +UV Count: 3 + UV + UV + UV +Face 5111 +UV Count: 3 + UV + UV + UV +Face 5112 +UV Count: 3 + UV + UV + UV +Face 5113 +UV Count: 3 + UV + UV + UV +Face 5114 +UV Count: 3 + UV + UV + UV +Face 5115 +UV Count: 3 + UV + UV + UV +Face 5116 +UV Count: 3 + UV + UV + UV +Face 5117 +UV Count: 3 + UV + UV + UV +Face 5118 +UV Count: 3 + UV + UV + UV +Face 5119 +UV Count: 3 + UV + UV + UV +Face 5120 +UV Count: 3 + UV + UV + UV +Face 5121 +UV Count: 3 + UV + UV + UV +Face 5122 +UV Count: 3 + UV + UV + UV +Face 5123 +UV Count: 3 + UV + UV + UV +Face 5124 +UV Count: 3 + UV + UV + UV +Face 5125 +UV Count: 3 + UV + UV + UV +Face 5126 +UV Count: 3 + UV + UV + UV +Face 5127 +UV Count: 3 + UV + UV + UV +Face 5128 +UV Count: 3 + UV + UV + UV +Face 5129 +UV Count: 3 + UV + UV + UV +Face 5130 +UV Count: 3 + UV + UV + UV +Face 5131 +UV Count: 3 + UV + UV + UV +Face 5132 +UV Count: 3 + UV + UV + UV +Face 5133 +UV Count: 3 + UV + UV + UV +Face 5134 +UV Count: 3 + UV + UV + UV +Face 5135 +UV Count: 3 + UV + UV + UV +Face 5136 +UV Count: 3 + UV + UV + UV +Face 5137 +UV Count: 3 + UV + UV + UV +Face 5138 +UV Count: 3 + UV + UV + UV +Face 5139 +UV Count: 3 + UV + UV + UV +Face 5140 +UV Count: 3 + UV + UV + UV +Face 5141 +UV Count: 3 + UV + UV + UV +Face 5142 +UV Count: 3 + UV + UV + UV +Face 5143 +UV Count: 3 + UV + UV + UV +Face 5144 +UV Count: 3 + UV + UV + UV +Face 5145 +UV Count: 3 + UV + UV + UV +Face 5146 +UV Count: 3 + UV + UV + UV +Face 5147 +UV Count: 3 + UV + UV + UV +Face 5148 +UV Count: 3 + UV + UV + UV +Face 5149 +UV Count: 3 + UV + UV + UV +Face 5150 +UV Count: 3 + UV + UV + UV +Face 5151 +UV Count: 3 + UV + UV + UV +Face 5152 +UV Count: 3 + UV + UV + UV +Face 5153 +UV Count: 3 + UV + UV + UV +Face 5154 +UV Count: 3 + UV + UV + UV +Face 5155 +UV Count: 3 + UV + UV + UV +Face 5156 +UV Count: 3 + UV + UV + UV +Face 5157 +UV Count: 3 + UV + UV + UV +Face 5158 +UV Count: 3 + UV + UV + UV +Face 5159 +UV Count: 3 + UV + UV + UV +Face 5160 +UV Count: 3 + UV + UV + UV +Face 5161 +UV Count: 3 + UV + UV + UV +Face 5162 +UV Count: 3 + UV + UV + UV +Face 5163 +UV Count: 3 + UV + UV + UV +Face 5164 +UV Count: 3 + UV + UV + UV +Face 5165 +UV Count: 3 + UV + UV + UV +Face 5166 +UV Count: 3 + UV + UV + UV +Face 5167 +UV Count: 3 + UV + UV + UV +Face 5168 +UV Count: 3 + UV + UV + UV +Face 5169 +UV Count: 3 + UV + UV + UV +Face 5170 +UV Count: 3 + UV + UV + UV +Face 5171 +UV Count: 3 + UV + UV + UV +Face 5172 +UV Count: 3 + UV + UV + UV +Face 5173 +UV Count: 3 + UV + UV + UV +Face 5174 +UV Count: 3 + UV + UV + UV +Face 5175 +UV Count: 3 + UV + UV + UV +Face 5176 +UV Count: 3 + UV + UV + UV +Face 5177 +UV Count: 3 + UV + UV + UV +Face 5178 +UV Count: 3 + UV + UV + UV +Face 5179 +UV Count: 3 + UV + UV + UV +Face 5180 +UV Count: 3 + UV + UV + UV +Face 5181 +UV Count: 3 + UV + UV + UV +Face 5182 +UV Count: 3 + UV + UV + UV +Face 5183 +UV Count: 3 + UV + UV + UV +Face 5184 +UV Count: 3 + UV + UV + UV +Face 5185 +UV Count: 3 + UV + UV + UV +Face 5186 +UV Count: 3 + UV + UV + UV +Face 5187 +UV Count: 3 + UV + UV + UV +Face 5188 +UV Count: 3 + UV + UV + UV +Face 5189 +UV Count: 3 + UV + UV + UV +Face 5190 +UV Count: 3 + UV + UV + UV +Face 5191 +UV Count: 3 + UV + UV + UV +Face 5192 +UV Count: 3 + UV + UV + UV +Face 5193 +UV Count: 3 + UV + UV + UV +Face 5194 +UV Count: 3 + UV + UV + UV +Face 5195 +UV Count: 3 + UV + UV + UV +Face 5196 +UV Count: 3 + UV + UV + UV +Face 5197 +UV Count: 3 + UV + UV + UV +Face 5198 +UV Count: 3 + UV + UV + UV +Face 5199 +UV Count: 3 + UV + UV + UV +Face 5200 +UV Count: 3 + UV + UV + UV +Face 5201 +UV Count: 3 + UV + UV + UV +Face 5202 +UV Count: 3 + UV + UV + UV +Face 5203 +UV Count: 3 + UV + UV + UV +Face 5204 +UV Count: 3 + UV + UV + UV +Face 5205 +UV Count: 3 + UV + UV + UV +Face 5206 +UV Count: 3 + UV + UV + UV +Face 5207 +UV Count: 3 + UV + UV + UV +Face 5208 +UV Count: 3 + UV + UV + UV +Face 5209 +UV Count: 3 + UV + UV + UV +Face 5210 +UV Count: 3 + UV + UV + UV +Face 5211 +UV Count: 3 + UV + UV + UV +Face 5212 +UV Count: 3 + UV + UV + UV +Face 5213 +UV Count: 3 + UV + UV + UV +Face 5214 +UV Count: 3 + UV + UV + UV +Face 5215 +UV Count: 3 + UV + UV + UV +Face 5216 +UV Count: 3 + UV + UV + UV +Face 5217 +UV Count: 3 + UV + UV + UV +Face 5218 +UV Count: 3 + UV + UV + UV +Face 5219 +UV Count: 3 + UV + UV + UV +Face 5220 +UV Count: 3 + UV + UV + UV +Face 5221 +UV Count: 3 + UV + UV + UV +Face 5222 +UV Count: 3 + UV + UV + UV +Face 5223 +UV Count: 3 + UV + UV + UV +Face 5224 +UV Count: 3 + UV + UV + UV +Face 5225 +UV Count: 3 + UV + UV + UV +Face 5226 +UV Count: 3 + UV + UV + UV +Face 5227 +UV Count: 3 + UV + UV + UV +Face 5228 +UV Count: 3 + UV + UV + UV +Face 5229 +UV Count: 3 + UV + UV + UV +Face 5230 +UV Count: 3 + UV + UV + UV +Face 5231 +UV Count: 3 + UV + UV + UV +Face 5232 +UV Count: 3 + UV + UV + UV +Face 5233 +UV Count: 3 + UV + UV + UV +Face 5234 +UV Count: 3 + UV + UV + UV +Face 5235 +UV Count: 3 + UV + UV + UV +Face 5236 +UV Count: 3 + UV + UV + UV +Face 5237 +UV Count: 3 + UV + UV + UV +Face 5238 +UV Count: 3 + UV + UV + UV +Face 5239 +UV Count: 3 + UV + UV + UV +Face 5240 +UV Count: 3 + UV + UV + UV +Face 5241 +UV Count: 3 + UV + UV + UV +Face 5242 +UV Count: 3 + UV + UV + UV +Face 5243 +UV Count: 3 + UV + UV + UV +Face 5244 +UV Count: 3 + UV + UV + UV +Face 5245 +UV Count: 3 + UV + UV + UV +Face 5246 +UV Count: 3 + UV + UV + UV +Face 5247 +UV Count: 3 + UV + UV + UV +Face 5248 +UV Count: 3 + UV + UV + UV +Face 5249 +UV Count: 3 + UV + UV + UV +Face 5250 +UV Count: 3 + UV + UV + UV +Face 5251 +UV Count: 3 + UV + UV + UV +Face 5252 +UV Count: 3 + UV + UV + UV +Face 5253 +UV Count: 3 + UV + UV + UV +Face 5254 +UV Count: 3 + UV + UV + UV +Face 5255 +UV Count: 3 + UV + UV + UV +Face 5256 +UV Count: 3 + UV + UV + UV +Face 5257 +UV Count: 3 + UV + UV + UV +Face 5258 +UV Count: 3 + UV + UV + UV +Face 5259 +UV Count: 3 + UV + UV + UV +Face 5260 +UV Count: 3 + UV + UV + UV +Face 5261 +UV Count: 3 + UV + UV + UV +Face 5262 +UV Count: 3 + UV + UV + UV +Face 5263 +UV Count: 3 + UV + UV + UV +Face 5264 +UV Count: 3 + UV + UV + UV +Face 5265 +UV Count: 3 + UV + UV + UV +Face 5266 +UV Count: 3 + UV + UV + UV +Face 5267 +UV Count: 3 + UV + UV + UV +Face 5268 +UV Count: 3 + UV + UV + UV +Face 5269 +UV Count: 3 + UV + UV + UV +Face 5270 +UV Count: 3 + UV + UV + UV +Face 5271 +UV Count: 3 + UV + UV + UV +Face 5272 +UV Count: 3 + UV + UV + UV +Face 5273 +UV Count: 3 + UV + UV + UV +Face 5274 +UV Count: 3 + UV + UV + UV +Face 5275 +UV Count: 3 + UV + UV + UV +Face 5276 +UV Count: 3 + UV + UV + UV +Face 5277 +UV Count: 3 + UV + UV + UV +Face 5278 +UV Count: 3 + UV + UV + UV +Face 5279 +UV Count: 3 + UV + UV + UV +Face 5280 +UV Count: 3 + UV + UV + UV +Face 5281 +UV Count: 3 + UV + UV + UV +Face 5282 +UV Count: 3 + UV + UV + UV +Face 5283 +UV Count: 3 + UV + UV + UV +Face 5284 +UV Count: 3 + UV + UV + UV +Face 5285 +UV Count: 3 + UV + UV + UV +Face 5286 +UV Count: 3 + UV + UV + UV +Face 5287 +UV Count: 3 + UV + UV + UV +Face 5288 +UV Count: 3 + UV + UV + UV +Face 5289 +UV Count: 3 + UV + UV + UV +Face 5290 +UV Count: 3 + UV + UV + UV +Face 5291 +UV Count: 3 + UV + UV + UV +Face 5292 +UV Count: 3 + UV + UV + UV +Face 5293 +UV Count: 3 + UV + UV + UV +Face 5294 +UV Count: 3 + UV + UV + UV +Face 5295 +UV Count: 3 + UV + UV + UV +Face 5296 +UV Count: 3 + UV + UV + UV +Face 5297 +UV Count: 3 + UV + UV + UV +Face 5298 +UV Count: 3 + UV + UV + UV +Face 5299 +UV Count: 3 + UV + UV + UV +Face 5300 +UV Count: 3 + UV + UV + UV +Face 5301 +UV Count: 3 + UV + UV + UV +Face 5302 +UV Count: 3 + UV + UV + UV +Face 5303 +UV Count: 3 + UV + UV + UV +Face 5304 +UV Count: 3 + UV + UV + UV +Face 5305 +UV Count: 3 + UV + UV + UV +Face 5306 +UV Count: 3 + UV + UV + UV +Face 5307 +UV Count: 3 + UV + UV + UV +Face 5308 +UV Count: 3 + UV + UV + UV +Face 5309 +UV Count: 3 + UV + UV + UV +Face 5310 +UV Count: 3 + UV + UV + UV +Face 5311 +UV Count: 3 + UV + UV + UV +Face 5312 +UV Count: 3 + UV + UV + UV +Face 5313 +UV Count: 3 + UV + UV + UV +Face 5314 +UV Count: 3 + UV + UV + UV +Face 5315 +UV Count: 3 + UV + UV + UV +Face 5316 +UV Count: 3 + UV + UV + UV +Face 5317 +UV Count: 3 + UV + UV + UV +Face 5318 +UV Count: 3 + UV + UV + UV +Face 5319 +UV Count: 3 + UV + UV + UV +Face 5320 +UV Count: 3 + UV + UV + UV +Face 5321 +UV Count: 3 + UV + UV + UV +Face 5322 +UV Count: 3 + UV + UV + UV +Face 5323 +UV Count: 3 + UV + UV + UV +Face 5324 +UV Count: 3 + UV + UV + UV +Face 5325 +UV Count: 3 + UV + UV + UV +Face 5326 +UV Count: 3 + UV + UV + UV +Face 5327 +UV Count: 3 + UV + UV + UV +Face 5328 +UV Count: 3 + UV + UV + UV +Face 5329 +UV Count: 3 + UV + UV + UV +Face 5330 +UV Count: 3 + UV + UV + UV +Face 5331 +UV Count: 3 + UV + UV + UV +Face 5332 +UV Count: 3 + UV + UV + UV +Face 5333 +UV Count: 3 + UV + UV + UV +Face 5334 +UV Count: 3 + UV + UV + UV +Face 5335 +UV Count: 3 + UV + UV + UV +Face 5336 +UV Count: 3 + UV + UV + UV +Face 5337 +UV Count: 3 + UV + UV + UV +Face 5338 +UV Count: 3 + UV + UV + UV +Face 5339 +UV Count: 3 + UV + UV + UV +Face 5340 +UV Count: 3 + UV + UV + UV +Face 5341 +UV Count: 3 + UV + UV + UV +Face 5342 +UV Count: 3 + UV + UV + UV +Face 5343 +UV Count: 3 + UV + UV + UV +Face 5344 +UV Count: 3 + UV + UV + UV +Face 5345 +UV Count: 3 + UV + UV + UV +Face 5346 +UV Count: 3 + UV + UV + UV +Face 5347 +UV Count: 3 + UV + UV + UV +Face 5348 +UV Count: 3 + UV + UV + UV +Face 5349 +UV Count: 3 + UV + UV + UV +Face 5350 +UV Count: 3 + UV + UV + UV +Face 5351 +UV Count: 3 + UV + UV + UV +Face 5352 +UV Count: 3 + UV + UV + UV +Face 5353 +UV Count: 3 + UV + UV + UV +Face 5354 +UV Count: 3 + UV + UV + UV +Face 5355 +UV Count: 3 + UV + UV + UV +Face 5356 +UV Count: 3 + UV + UV + UV +Face 5357 +UV Count: 3 + UV + UV + UV +Face 5358 +UV Count: 3 + UV + UV + UV +Face 5359 +UV Count: 3 + UV + UV + UV +Face 5360 +UV Count: 3 + UV + UV + UV +Face 5361 +UV Count: 3 + UV + UV + UV +Face 5362 +UV Count: 3 + UV + UV + UV +Face 5363 +UV Count: 3 + UV + UV + UV +Face 5364 +UV Count: 3 + UV + UV + UV +Face 5365 +UV Count: 3 + UV + UV + UV +Face 5366 +UV Count: 3 + UV + UV + UV +Face 5367 +UV Count: 3 + UV + UV + UV +Face 5368 +UV Count: 3 + UV + UV + UV +Face 5369 +UV Count: 3 + UV + UV + UV +Face 5370 +UV Count: 3 + UV + UV + UV +Face 5371 +UV Count: 3 + UV + UV + UV +Face 5372 +UV Count: 3 + UV + UV + UV +Face 5373 +UV Count: 3 + UV + UV + UV +Face 5374 +UV Count: 3 + UV + UV + UV +Face 5375 +UV Count: 3 + UV + UV + UV +Face 5376 +UV Count: 3 + UV + UV + UV +Face 5377 +UV Count: 3 + UV + UV + UV +Face 5378 +UV Count: 3 + UV + UV + UV +Face 5379 +UV Count: 3 + UV + UV + UV +Face 5380 +UV Count: 3 + UV + UV + UV +Face 5381 +UV Count: 3 + UV + UV + UV +Face 5382 +UV Count: 3 + UV + UV + UV +Face 5383 +UV Count: 3 + UV + UV + UV +Face 5384 +UV Count: 3 + UV + UV + UV +Face 5385 +UV Count: 3 + UV + UV + UV +Face 5386 +UV Count: 3 + UV + UV + UV +Face 5387 +UV Count: 3 + UV + UV + UV +Face 5388 +UV Count: 3 + UV + UV + UV +Face 5389 +UV Count: 3 + UV + UV + UV +Face 5390 +UV Count: 3 + UV + UV + UV +Face 5391 +UV Count: 3 + UV + UV + UV +Face 5392 +UV Count: 3 + UV + UV + UV +Face 5393 +UV Count: 3 + UV + UV + UV +Face 5394 +UV Count: 3 + UV + UV + UV +Face 5395 +UV Count: 3 + UV + UV + UV +Face 5396 +UV Count: 3 + UV + UV + UV +Face 5397 +UV Count: 3 + UV + UV + UV +Face 5398 +UV Count: 3 + UV + UV + UV +Face 5399 +UV Count: 3 + UV + UV + UV +Face 5400 +UV Count: 3 + UV + UV + UV +Face 5401 +UV Count: 3 + UV + UV + UV +Face 5402 +UV Count: 3 + UV + UV + UV +Face 5403 +UV Count: 3 + UV + UV + UV +Face 5404 +UV Count: 3 + UV + UV + UV +Face 5405 +UV Count: 3 + UV + UV + UV +Face 5406 +UV Count: 3 + UV + UV + UV +Face 5407 +UV Count: 3 + UV + UV + UV +Face 5408 +UV Count: 3 + UV + UV + UV +Face 5409 +UV Count: 3 + UV + UV + UV +Face 5410 +UV Count: 3 + UV + UV + UV +Face 5411 +UV Count: 3 + UV + UV + UV +Face 5412 +UV Count: 3 + UV + UV + UV +Face 5413 +UV Count: 3 + UV + UV + UV +Face 5414 +UV Count: 3 + UV + UV + UV +Face 5415 +UV Count: 3 + UV + UV + UV +Face 5416 +UV Count: 3 + UV + UV + UV +Face 5417 +UV Count: 3 + UV + UV + UV +Face 5418 +UV Count: 3 + UV + UV + UV +Face 5419 +UV Count: 3 + UV + UV + UV +Face 5420 +UV Count: 3 + UV + UV + UV +Face 5421 +UV Count: 3 + UV + UV + UV +Face 5422 +UV Count: 3 + UV + UV + UV +Face 5423 +UV Count: 3 + UV + UV + UV +Face 5424 +UV Count: 3 + UV + UV + UV +Face 5425 +UV Count: 3 + UV + UV + UV +Face 5426 +UV Count: 3 + UV + UV + UV +Face 5427 +UV Count: 3 + UV + UV + UV +Face 5428 +UV Count: 3 + UV + UV + UV +Face 5429 +UV Count: 3 + UV + UV + UV +Face 5430 +UV Count: 3 + UV + UV + UV +Face 5431 +UV Count: 3 + UV + UV + UV +Face 5432 +UV Count: 3 + UV + UV + UV +Face 5433 +UV Count: 3 + UV + UV + UV +Face 5434 +UV Count: 3 + UV + UV + UV +Face 5435 +UV Count: 3 + UV + UV + UV +Face 5436 +UV Count: 3 + UV + UV + UV +Face 5437 +UV Count: 3 + UV + UV + UV +Face 5438 +UV Count: 3 + UV + UV + UV +Face 5439 +UV Count: 3 + UV + UV + UV +Face 5440 +UV Count: 3 + UV + UV + UV +Face 5441 +UV Count: 3 + UV + UV + UV +Face 5442 +UV Count: 3 + UV + UV + UV +Face 5443 +UV Count: 3 + UV + UV + UV +Face 5444 +UV Count: 3 + UV + UV + UV +Face 5445 +UV Count: 3 + UV + UV + UV +Face 5446 +UV Count: 3 + UV + UV + UV +Face 5447 +UV Count: 3 + UV + UV + UV +Face 5448 +UV Count: 3 + UV + UV + UV +Face 5449 +UV Count: 3 + UV + UV + UV +Face 5450 +UV Count: 3 + UV + UV + UV +Face 5451 +UV Count: 3 + UV + UV + UV +Face 5452 +UV Count: 3 + UV + UV + UV +Face 5453 +UV Count: 3 + UV + UV + UV +Face 5454 +UV Count: 3 + UV + UV + UV +Face 5455 +UV Count: 3 + UV + UV + UV +Face 5456 +UV Count: 3 + UV + UV + UV +Face 5457 +UV Count: 3 + UV + UV + UV +Face 5458 +UV Count: 3 + UV + UV + UV +Face 5459 +UV Count: 3 + UV + UV + UV +Face 5460 +UV Count: 3 + UV + UV + UV +Face 5461 +UV Count: 3 + UV + UV + UV +Face 5462 +UV Count: 3 + UV + UV + UV +Face 5463 +UV Count: 3 + UV + UV + UV +Face 5464 +UV Count: 3 + UV + UV + UV +Face 5465 +UV Count: 3 + UV + UV + UV +Face 5466 +UV Count: 3 + UV + UV + UV +Face 5467 +UV Count: 3 + UV + UV + UV +Face 5468 +UV Count: 3 + UV + UV + UV +Face 5469 +UV Count: 3 + UV + UV + UV +Face 5470 +UV Count: 3 + UV + UV + UV +Face 5471 +UV Count: 3 + UV + UV + UV +Face 5472 +UV Count: 3 + UV + UV + UV +Face 5473 +UV Count: 3 + UV + UV + UV +Face 5474 +UV Count: 3 + UV + UV + UV +Face 5475 +UV Count: 3 + UV + UV + UV +Face 5476 +UV Count: 3 + UV + UV + UV +Face 5477 +UV Count: 3 + UV + UV + UV +Face 5478 +UV Count: 3 + UV + UV + UV +Face 5479 +UV Count: 3 + UV + UV + UV +Face 5480 +UV Count: 3 + UV + UV + UV +Face 5481 +UV Count: 3 + UV + UV + UV +Face 5482 +UV Count: 3 + UV + UV + UV +Face 5483 +UV Count: 3 + UV + UV + UV +Face 5484 +UV Count: 3 + UV + UV + UV +Face 5485 +UV Count: 3 + UV + UV + UV +Face 5486 +UV Count: 3 + UV + UV + UV +Face 5487 +UV Count: 3 + UV + UV + UV +Face 5488 +UV Count: 3 + UV + UV + UV +Face 5489 +UV Count: 3 + UV + UV + UV +Face 5490 +UV Count: 3 + UV + UV + UV +Face 5491 +UV Count: 3 + UV + UV + UV +Face 5492 +UV Count: 3 + UV + UV + UV +Face 5493 +UV Count: 3 + UV + UV + UV +Face 5494 +UV Count: 3 + UV + UV + UV +Face 5495 +UV Count: 3 + UV + UV + UV +Face 5496 +UV Count: 3 + UV + UV + UV +Face 5497 +UV Count: 3 + UV + UV + UV +Face 5498 +UV Count: 3 + UV + UV + UV +Face 5499 +UV Count: 3 + UV + UV + UV +Face 5500 +UV Count: 3 + UV + UV + UV +Face 5501 +UV Count: 3 + UV + UV + UV +Face 5502 +UV Count: 3 + UV + UV + UV +Face 5503 +UV Count: 3 + UV + UV + UV +Face 5504 +UV Count: 3 + UV + UV + UV +Face 5505 +UV Count: 3 + UV + UV + UV +Face 5506 +UV Count: 3 + UV + UV + UV +Face 5507 +UV Count: 3 + UV + UV + UV +Face 5508 +UV Count: 3 + UV + UV + UV +Face 5509 +UV Count: 3 + UV + UV + UV +Face 5510 +UV Count: 3 + UV + UV + UV +Face 5511 +UV Count: 3 + UV + UV + UV +Face 5512 +UV Count: 3 + UV + UV + UV +Face 5513 +UV Count: 3 + UV + UV + UV +Face 5514 +UV Count: 3 + UV + UV + UV +Face 5515 +UV Count: 3 + UV + UV + UV +Face 5516 +UV Count: 3 + UV + UV + UV +Face 5517 +UV Count: 3 + UV + UV + UV +Face 5518 +UV Count: 3 + UV + UV + UV +Face 5519 +UV Count: 3 + UV + UV + UV +Face 5520 +UV Count: 3 + UV + UV + UV +Face 5521 +UV Count: 3 + UV + UV + UV +Face 5522 +UV Count: 3 + UV + UV + UV +Face 5523 +UV Count: 3 + UV + UV + UV +Face 5524 +UV Count: 3 + UV + UV + UV +Face 5525 +UV Count: 3 + UV + UV + UV +Face 5526 +UV Count: 3 + UV + UV + UV +Face 5527 +UV Count: 3 + UV + UV + UV +Face 5528 +UV Count: 3 + UV + UV + UV +Face 5529 +UV Count: 3 + UV + UV + UV +Face 5530 +UV Count: 3 + UV + UV + UV +Face 5531 +UV Count: 3 + UV + UV + UV +Face 5532 +UV Count: 3 + UV + UV + UV +Face 5533 +UV Count: 3 + UV + UV + UV +Face 5534 +UV Count: 3 + UV + UV + UV +Face 5535 +UV Count: 3 + UV + UV + UV +Face 5536 +UV Count: 3 + UV + UV + UV +Face 5537 +UV Count: 3 + UV + UV + UV +Face 5538 +UV Count: 3 + UV + UV + UV +Face 5539 +UV Count: 3 + UV + UV + UV +Face 5540 +UV Count: 3 + UV + UV + UV +Face 5541 +UV Count: 3 + UV + UV + UV +Face 5542 +UV Count: 3 + UV + UV + UV +Face 5543 +UV Count: 3 + UV + UV + UV +Face 5544 +UV Count: 3 + UV + UV + UV +Face 5545 +UV Count: 3 + UV + UV + UV +Face 5546 +UV Count: 3 + UV + UV + UV +Face 5547 +UV Count: 3 + UV + UV + UV +Face 5548 +UV Count: 3 + UV + UV + UV +Face 5549 +UV Count: 3 + UV + UV + UV +Face 5550 +UV Count: 3 + UV + UV + UV +Face 5551 +UV Count: 3 + UV + UV + UV +Face 5552 +UV Count: 3 + UV + UV + UV +Face 5553 +UV Count: 3 + UV + UV + UV +Face 5554 +UV Count: 3 + UV + UV + UV +Face 5555 +UV Count: 3 + UV + UV + UV +Face 5556 +UV Count: 3 + UV + UV + UV +Face 5557 +UV Count: 3 + UV + UV + UV +Face 5558 +UV Count: 3 + UV + UV + UV +Face 5559 +UV Count: 3 + UV + UV + UV +Face 5560 +UV Count: 3 + UV + UV + UV +Face 5561 +UV Count: 3 + UV + UV + UV +Face 5562 +UV Count: 3 + UV + UV + UV +Face 5563 +UV Count: 3 + UV + UV + UV +Face 5564 +UV Count: 3 + UV + UV + UV +Face 5565 +UV Count: 3 + UV + UV + UV +Face 5566 +UV Count: 3 + UV + UV + UV +Face 5567 +UV Count: 3 + UV + UV + UV +Face 5568 +UV Count: 3 + UV + UV + UV +Face 5569 +UV Count: 3 + UV + UV + UV +Face 5570 +UV Count: 3 + UV + UV + UV +Face 5571 +UV Count: 3 + UV + UV + UV +Face 5572 +UV Count: 3 + UV + UV + UV +Face 5573 +UV Count: 3 + UV + UV + UV +Face 5574 +UV Count: 3 + UV + UV + UV +Face 5575 +UV Count: 3 + UV + UV + UV +Face 5576 +UV Count: 3 + UV + UV + UV +Face 5577 +UV Count: 3 + UV + UV + UV +Face 5578 +UV Count: 3 + UV + UV + UV +Face 5579 +UV Count: 3 + UV + UV + UV +Face 5580 +UV Count: 3 + UV + UV + UV +Face 5581 +UV Count: 3 + UV + UV + UV +Face 5582 +UV Count: 3 + UV + UV + UV +Face 5583 +UV Count: 3 + UV + UV + UV +Face 5584 +UV Count: 3 + UV + UV + UV +Face 5585 +UV Count: 3 + UV + UV + UV +Face 5586 +UV Count: 3 + UV + UV + UV +Face 5587 +UV Count: 3 + UV + UV + UV +Face 5588 +UV Count: 3 + UV + UV + UV +Face 5589 +UV Count: 3 + UV + UV + UV +Face 5590 +UV Count: 3 + UV + UV + UV +Face 5591 +UV Count: 3 + UV + UV + UV +Face 5592 +UV Count: 3 + UV + UV + UV +Face 5593 +UV Count: 3 + UV + UV + UV +Face 5594 +UV Count: 3 + UV + UV + UV +Face 5595 +UV Count: 3 + UV + UV + UV +Face 5596 +UV Count: 3 + UV + UV + UV +Face 5597 +UV Count: 3 + UV + UV + UV +Face 5598 +UV Count: 3 + UV + UV + UV +Face 5599 +UV Count: 3 + UV + UV + UV +Face 5600 +UV Count: 3 + UV + UV + UV +Face 5601 +UV Count: 3 + UV + UV + UV +Face 5602 +UV Count: 3 + UV + UV + UV +Face 5603 +UV Count: 3 + UV + UV + UV +Face 5604 +UV Count: 3 + UV + UV + UV +Face 5605 +UV Count: 3 + UV + UV + UV +Face 5606 +UV Count: 3 + UV + UV + UV +Face 5607 +UV Count: 3 + UV + UV + UV +Face 5608 +UV Count: 3 + UV + UV + UV +Face 5609 +UV Count: 3 + UV + UV + UV +Face 5610 +UV Count: 3 + UV + UV + UV +Face 5611 +UV Count: 3 + UV + UV + UV +Face 5612 +UV Count: 3 + UV + UV + UV +Face 5613 +UV Count: 3 + UV + UV + UV +Face 5614 +UV Count: 3 + UV + UV + UV +Face 5615 +UV Count: 3 + UV + UV + UV +Face 5616 +UV Count: 3 + UV + UV + UV +Face 5617 +UV Count: 3 + UV + UV + UV +Face 5618 +UV Count: 3 + UV + UV + UV +Face 5619 +UV Count: 3 + UV + UV + UV +Face 5620 +UV Count: 3 + UV + UV + UV +Face 5621 +UV Count: 3 + UV + UV + UV +Face 5622 +UV Count: 3 + UV + UV + UV +Face 5623 +UV Count: 3 + UV + UV + UV +Face 5624 +UV Count: 3 + UV + UV + UV +Face 5625 +UV Count: 3 + UV + UV + UV +Face 5626 +UV Count: 3 + UV + UV + UV +Face 5627 +UV Count: 3 + UV + UV + UV +Face 5628 +UV Count: 3 + UV + UV + UV +Face 5629 +UV Count: 3 + UV + UV + UV +Face 5630 +UV Count: 3 + UV + UV + UV +Face 5631 +UV Count: 3 + UV + UV + UV +Face 5632 +UV Count: 3 + UV + UV + UV +Face 5633 +UV Count: 3 + UV + UV + UV +Face 5634 +UV Count: 3 + UV + UV + UV +Face 5635 +UV Count: 3 + UV + UV + UV +Face 5636 +UV Count: 3 + UV + UV + UV +Face 5637 +UV Count: 3 + UV + UV + UV +Face 5638 +UV Count: 3 + UV + UV + UV +Face 5639 +UV Count: 3 + UV + UV + UV +Face 5640 +UV Count: 3 + UV + UV + UV +Face 5641 +UV Count: 3 + UV + UV + UV +Face 5642 +UV Count: 3 + UV + UV + UV +Face 5643 +UV Count: 3 + UV + UV + UV +Face 5644 +UV Count: 3 + UV + UV + UV +Face 5645 +UV Count: 3 + UV + UV + UV +Face 5646 +UV Count: 3 + UV + UV + UV +Face 5647 +UV Count: 3 + UV + UV + UV +Face 5648 +UV Count: 3 + UV + UV + UV +Face 5649 +UV Count: 3 + UV + UV + UV +Face 5650 +UV Count: 3 + UV + UV + UV +Face 5651 +UV Count: 3 + UV + UV + UV +Face 5652 +UV Count: 3 + UV + UV + UV +Face 5653 +UV Count: 3 + UV + UV + UV +Face 5654 +UV Count: 3 + UV + UV + UV +Face 5655 +UV Count: 3 + UV + UV + UV +Face 5656 +UV Count: 3 + UV + UV + UV +Face 5657 +UV Count: 3 + UV + UV + UV +Face 5658 +UV Count: 3 + UV + UV + UV +Face 5659 +UV Count: 3 + UV + UV + UV +Face 5660 +UV Count: 3 + UV + UV + UV +Face 5661 +UV Count: 3 + UV + UV + UV +Face 5662 +UV Count: 3 + UV + UV + UV +Face 5663 +UV Count: 3 + UV + UV + UV +Face 5664 +UV Count: 3 + UV + UV + UV +Face 5665 +UV Count: 3 + UV + UV + UV +Face 5666 +UV Count: 3 + UV + UV + UV +Face 5667 +UV Count: 3 + UV + UV + UV +Face 5668 +UV Count: 3 + UV + UV + UV +Face 5669 +UV Count: 3 + UV + UV + UV +Face 5670 +UV Count: 3 + UV + UV + UV +Face 5671 +UV Count: 3 + UV + UV + UV +Face 5672 +UV Count: 3 + UV + UV + UV +Face 5673 +UV Count: 3 + UV + UV + UV +Face 5674 +UV Count: 3 + UV + UV + UV +Face 5675 +UV Count: 3 + UV + UV + UV +Face 5676 +UV Count: 3 + UV + UV + UV +Face 5677 +UV Count: 3 + UV + UV + UV +Face 5678 +UV Count: 3 + UV + UV + UV +Face 5679 +UV Count: 3 + UV + UV + UV +Face 5680 +UV Count: 3 + UV + UV + UV +Face 5681 +UV Count: 3 + UV + UV + UV +Face 5682 +UV Count: 3 + UV + UV + UV +Face 5683 +UV Count: 3 + UV + UV + UV +Face 5684 +UV Count: 3 + UV + UV + UV +Face 5685 +UV Count: 3 + UV + UV + UV +Face 5686 +UV Count: 3 + UV + UV + UV +Face 5687 +UV Count: 3 + UV + UV + UV +Face 5688 +UV Count: 3 + UV + UV + UV +Face 5689 +UV Count: 3 + UV + UV + UV +Face 5690 +UV Count: 3 + UV + UV + UV +Face 5691 +UV Count: 3 + UV + UV + UV +Face 5692 +UV Count: 3 + UV + UV + UV +Face 5693 +UV Count: 3 + UV + UV + UV +Face 5694 +UV Count: 3 + UV + UV + UV +Face 5695 +UV Count: 3 + UV + UV + UV +Face 5696 +UV Count: 3 + UV + UV + UV +Face 5697 +UV Count: 3 + UV + UV + UV +Face 5698 +UV Count: 3 + UV + UV + UV +Face 5699 +UV Count: 3 + UV + UV + UV +Face 5700 +UV Count: 3 + UV + UV + UV +Face 5701 +UV Count: 3 + UV + UV + UV +Face 5702 +UV Count: 3 + UV + UV + UV +Face 5703 +UV Count: 3 + UV + UV + UV +Face 5704 +UV Count: 3 + UV + UV + UV +Face 5705 +UV Count: 3 + UV + UV + UV +Face 5706 +UV Count: 3 + UV + UV + UV +Face 5707 +UV Count: 3 + UV + UV + UV +Face 5708 +UV Count: 3 + UV + UV + UV +Face 5709 +UV Count: 3 + UV + UV + UV +Face 5710 +UV Count: 3 + UV + UV + UV +Face 5711 +UV Count: 3 + UV + UV + UV +Face 5712 +UV Count: 3 + UV + UV + UV +Face 5713 +UV Count: 3 + UV + UV + UV +Face 5714 +UV Count: 3 + UV + UV + UV +Face 5715 +UV Count: 3 + UV + UV + UV +Face 5716 +UV Count: 3 + UV + UV + UV +Face 5717 +UV Count: 3 + UV + UV + UV +Face 5718 +UV Count: 3 + UV + UV + UV +Face 5719 +UV Count: 3 + UV + UV + UV +Face 5720 +UV Count: 3 + UV + UV + UV +Face 5721 +UV Count: 3 + UV + UV + UV +Face 5722 +UV Count: 3 + UV + UV + UV +Face 5723 +UV Count: 3 + UV + UV + UV +Face 5724 +UV Count: 3 + UV + UV + UV +Face 5725 +UV Count: 3 + UV + UV + UV +Face 5726 +UV Count: 3 + UV + UV + UV +Face 5727 +UV Count: 3 + UV + UV + UV +Face 5728 +UV Count: 3 + UV + UV + UV +Face 5729 +UV Count: 3 + UV + UV + UV +Face 5730 +UV Count: 3 + UV + UV + UV +Face 5731 +UV Count: 3 + UV + UV + UV +Face 5732 +UV Count: 3 + UV + UV + UV +Face 5733 +UV Count: 3 + UV + UV + UV +Face 5734 +UV Count: 3 + UV + UV + UV +Face 5735 +UV Count: 3 + UV + UV + UV +Face 5736 +UV Count: 3 + UV + UV + UV +Face 5737 +UV Count: 3 + UV + UV + UV +Face 5738 +UV Count: 3 + UV + UV + UV +Face 5739 +UV Count: 3 + UV + UV + UV +Face 5740 +UV Count: 3 + UV + UV + UV +Face 5741 +UV Count: 3 + UV + UV + UV +Face 5742 +UV Count: 3 + UV + UV + UV +Face 5743 +UV Count: 3 + UV + UV + UV +Face 5744 +UV Count: 3 + UV + UV + UV +Face 5745 +UV Count: 3 + UV + UV + UV +Face 5746 +UV Count: 3 + UV + UV + UV +Face 5747 +UV Count: 3 + UV + UV + UV +Face 5748 +UV Count: 3 + UV + UV + UV +Face 5749 +UV Count: 3 + UV + UV + UV +Face 5750 +UV Count: 3 + UV + UV + UV +Face 5751 +UV Count: 3 + UV + UV + UV +Face 5752 +UV Count: 3 + UV + UV + UV +Face 5753 +UV Count: 3 + UV + UV + UV +Face 5754 +UV Count: 3 + UV + UV + UV +Face 5755 +UV Count: 3 + UV + UV + UV +Face 5756 +UV Count: 3 + UV + UV + UV +Face 5757 +UV Count: 3 + UV + UV + UV +Face 5758 +UV Count: 3 + UV + UV + UV +Face 5759 +UV Count: 3 + UV + UV + UV +Face 5760 +UV Count: 3 + UV + UV + UV +Face 5761 +UV Count: 3 + UV + UV + UV +Face 5762 +UV Count: 3 + UV + UV + UV +Face 5763 +UV Count: 3 + UV + UV + UV +Face 5764 +UV Count: 3 + UV + UV + UV +Face 5765 +UV Count: 3 + UV + UV + UV +Face 5766 +UV Count: 3 + UV + UV + UV +Face 5767 +UV Count: 3 + UV + UV + UV +Face 5768 +UV Count: 3 + UV + UV + UV +Face 5769 +UV Count: 3 + UV + UV + UV +Face 5770 +UV Count: 3 + UV + UV + UV +Face 5771 +UV Count: 3 + UV + UV + UV +Face 5772 +UV Count: 3 + UV + UV + UV +Face 5773 +UV Count: 3 + UV + UV + UV +Face 5774 +UV Count: 3 + UV + UV + UV +Face 5775 +UV Count: 3 + UV + UV + UV +Face 5776 +UV Count: 3 + UV + UV + UV +Face 5777 +UV Count: 3 + UV + UV + UV +Face 5778 +UV Count: 3 + UV + UV + UV +Face 5779 +UV Count: 3 + UV + UV + UV +Face 5780 +UV Count: 3 + UV + UV + UV +Face 5781 +UV Count: 3 + UV + UV + UV +Face 5782 +UV Count: 3 + UV + UV + UV +Face 5783 +UV Count: 3 + UV + UV + UV +Face 5784 +UV Count: 3 + UV + UV + UV +Face 5785 +UV Count: 3 + UV + UV + UV +Face 5786 +UV Count: 3 + UV + UV + UV +Face 5787 +UV Count: 3 + UV + UV + UV +Face 5788 +UV Count: 3 + UV + UV + UV +Face 5789 +UV Count: 3 + UV + UV + UV +Face 5790 +UV Count: 3 + UV + UV + UV +Face 5791 +UV Count: 3 + UV + UV + UV +Face 5792 +UV Count: 3 + UV + UV + UV +Face 5793 +UV Count: 3 + UV + UV + UV +Face 5794 +UV Count: 3 + UV + UV + UV +Face 5795 +UV Count: 3 + UV + UV + UV +Face 5796 +UV Count: 3 + UV + UV + UV +Face 5797 +UV Count: 3 + UV + UV + UV +Face 5798 +UV Count: 3 + UV + UV + UV +Face 5799 +UV Count: 3 + UV + UV + UV +Face 5800 +UV Count: 3 + UV + UV + UV +Face 5801 +UV Count: 3 + UV + UV + UV +Face 5802 +UV Count: 3 + UV + UV + UV +Face 5803 +UV Count: 3 + UV + UV + UV +Face 5804 +UV Count: 3 + UV + UV + UV +Face 5805 +UV Count: 3 + UV + UV + UV +Face 5806 +UV Count: 3 + UV + UV + UV +Face 5807 +UV Count: 3 + UV + UV + UV +Face 5808 +UV Count: 3 + UV + UV + UV +Face 5809 +UV Count: 3 + UV + UV + UV +Face 5810 +UV Count: 3 + UV + UV + UV +Face 5811 +UV Count: 3 + UV + UV + UV +Face 5812 +UV Count: 3 + UV + UV + UV +Face 5813 +UV Count: 3 + UV + UV + UV +Face 5814 +UV Count: 3 + UV + UV + UV +Face 5815 +UV Count: 3 + UV + UV + UV +Face 5816 +UV Count: 3 + UV + UV + UV +Face 5817 +UV Count: 3 + UV + UV + UV +Face 5818 +UV Count: 3 + UV + UV + UV +Face 5819 +UV Count: 3 + UV + UV + UV +Face 5820 +UV Count: 3 + UV + UV + UV +Face 5821 +UV Count: 3 + UV + UV + UV +Face 5822 +UV Count: 3 + UV + UV + UV +Face 5823 +UV Count: 3 + UV + UV + UV +Face 5824 +UV Count: 3 + UV + UV + UV +Face 5825 +UV Count: 3 + UV + UV + UV +Face 5826 +UV Count: 3 + UV + UV + UV +Face 5827 +UV Count: 3 + UV + UV + UV +Face 5828 +UV Count: 3 + UV + UV + UV +Face 5829 +UV Count: 3 + UV + UV + UV +Face 5830 +UV Count: 3 + UV + UV + UV +Face 5831 +UV Count: 3 + UV + UV + UV +Face 5832 +UV Count: 3 + UV + UV + UV +Face 5833 +UV Count: 3 + UV + UV + UV +Face 5834 +UV Count: 3 + UV + UV + UV +Face 5835 +UV Count: 3 + UV + UV + UV +Face 5836 +UV Count: 3 + UV + UV + UV +Face 5837 +UV Count: 3 + UV + UV + UV +Face 5838 +UV Count: 3 + UV + UV + UV +Face 5839 +UV Count: 3 + UV + UV + UV +Face 5840 +UV Count: 3 + UV + UV + UV +Face 5841 +UV Count: 3 + UV + UV + UV +Face 5842 +UV Count: 3 + UV + UV + UV +Face 5843 +UV Count: 3 + UV + UV + UV +Face 5844 +UV Count: 3 + UV + UV + UV +Face 5845 +UV Count: 3 + UV + UV + UV +Face 5846 +UV Count: 3 + UV + UV + UV +Face 5847 +UV Count: 3 + UV + UV + UV +Face 5848 +UV Count: 3 + UV + UV + UV +Face 5849 +UV Count: 3 + UV + UV + UV +Face 5850 +UV Count: 3 + UV + UV + UV +Face 5851 +UV Count: 3 + UV + UV + UV +Face 5852 +UV Count: 3 + UV + UV + UV +Face 5853 +UV Count: 3 + UV + UV + UV +Face 5854 +UV Count: 3 + UV + UV + UV +Face 5855 +UV Count: 3 + UV + UV + UV +Face 5856 +UV Count: 3 + UV + UV + UV +Face 5857 +UV Count: 3 + UV + UV + UV +Face 5858 +UV Count: 3 + UV + UV + UV +Face 5859 +UV Count: 3 + UV + UV + UV +Face 5860 +UV Count: 3 + UV + UV + UV +Face 5861 +UV Count: 3 + UV + UV + UV +Face 5862 +UV Count: 3 + UV + UV + UV +Face 5863 +UV Count: 3 + UV + UV + UV +Face 5864 +UV Count: 3 + UV + UV + UV +Face 5865 +UV Count: 3 + UV + UV + UV +Face 5866 +UV Count: 3 + UV + UV + UV +Face 5867 +UV Count: 3 + UV + UV + UV +Face 5868 +UV Count: 3 + UV + UV + UV +Face 5869 +UV Count: 3 + UV + UV + UV +Face 5870 +UV Count: 3 + UV + UV + UV +Face 5871 +UV Count: 3 + UV + UV + UV +Face 5872 +UV Count: 3 + UV + UV + UV +Face 5873 +UV Count: 3 + UV + UV + UV +Face 5874 +UV Count: 3 + UV + UV + UV +Face 5875 +UV Count: 3 + UV + UV + UV +Face 5876 +UV Count: 3 + UV + UV + UV +Face 5877 +UV Count: 3 + UV + UV + UV +Face 5878 +UV Count: 3 + UV + UV + UV +Face 5879 +UV Count: 3 + UV + UV + UV +Face 5880 +UV Count: 3 + UV + UV + UV +Face 5881 +UV Count: 3 + UV + UV + UV +Face 5882 +UV Count: 3 + UV + UV + UV +Face 5883 +UV Count: 3 + UV + UV + UV +Face 5884 +UV Count: 3 + UV + UV + UV +Face 5885 +UV Count: 3 + UV + UV + UV +Face 5886 +UV Count: 3 + UV + UV + UV +Face 5887 +UV Count: 3 + UV + UV + UV +Face 5888 +UV Count: 3 + UV + UV + UV +Face 5889 +UV Count: 3 + UV + UV + UV +Face 5890 +UV Count: 3 + UV + UV + UV +Face 5891 +UV Count: 3 + UV + UV + UV +Face 5892 +UV Count: 3 + UV + UV + UV +Face 5893 +UV Count: 3 + UV + UV + UV +Face 5894 +UV Count: 3 + UV + UV + UV +Face 5895 +UV Count: 3 + UV + UV + UV +Face 5896 +UV Count: 3 + UV + UV + UV +Face 5897 +UV Count: 3 + UV + UV + UV +Face 5898 +UV Count: 3 + UV + UV + UV +Face 5899 +UV Count: 3 + UV + UV + UV +Face 5900 +UV Count: 3 + UV + UV + UV +Face 5901 +UV Count: 3 + UV + UV + UV +Face 5902 +UV Count: 3 + UV + UV + UV +Face 5903 +UV Count: 3 + UV + UV + UV +Face 5904 +UV Count: 3 + UV + UV + UV +Face 5905 +UV Count: 3 + UV + UV + UV +Face 5906 +UV Count: 3 + UV + UV + UV +Face 5907 +UV Count: 3 + UV + UV + UV +Face 5908 +UV Count: 3 + UV + UV + UV +Face 5909 +UV Count: 3 + UV + UV + UV +Face 5910 +UV Count: 3 + UV + UV + UV +Face 5911 +UV Count: 3 + UV + UV + UV +Face 5912 +UV Count: 3 + UV + UV + UV +Face 5913 +UV Count: 3 + UV + UV + UV +Face 5914 +UV Count: 3 + UV + UV + UV +Face 5915 +UV Count: 3 + UV + UV + UV +Face 5916 +UV Count: 3 + UV + UV + UV +Face 5917 +UV Count: 3 + UV + UV + UV +Face 5918 +UV Count: 3 + UV + UV + UV +Face 5919 +UV Count: 3 + UV + UV + UV +Face 5920 +UV Count: 3 + UV + UV + UV +Face 5921 +UV Count: 3 + UV + UV + UV +Face 5922 +UV Count: 3 + UV + UV + UV +Face 5923 +UV Count: 3 + UV + UV + UV +Face 5924 +UV Count: 3 + UV + UV + UV +Face 5925 +UV Count: 3 + UV + UV + UV +Face 5926 +UV Count: 3 + UV + UV + UV +Face 5927 +UV Count: 3 + UV + UV + UV +Face 5928 +UV Count: 3 + UV + UV + UV +Face 5929 +UV Count: 3 + UV + UV + UV +Face 5930 +UV Count: 3 + UV + UV + UV +Face 5931 +UV Count: 3 + UV + UV + UV +Face 5932 +UV Count: 3 + UV + UV + UV +Face 5933 +UV Count: 3 + UV + UV + UV +Face 5934 +UV Count: 3 + UV + UV + UV +Face 5935 +UV Count: 3 + UV + UV + UV +Face 5936 +UV Count: 3 + UV + UV + UV +Face 5937 +UV Count: 3 + UV + UV + UV +Face 5938 +UV Count: 3 + UV + UV + UV +Face 5939 +UV Count: 3 + UV + UV + UV +Face 5940 +UV Count: 3 + UV + UV + UV +Face 5941 +UV Count: 3 + UV + UV + UV +Face 5942 +UV Count: 3 + UV + UV + UV +Face 5943 +UV Count: 3 + UV + UV + UV +Face 5944 +UV Count: 3 + UV + UV + UV +Face 5945 +UV Count: 3 + UV + UV + UV +Face 5946 +UV Count: 3 + UV + UV + UV +Face 5947 +UV Count: 3 + UV + UV + UV +Face 5948 +UV Count: 3 + UV + UV + UV +Face 5949 +UV Count: 3 + UV + UV + UV +Face 5950 +UV Count: 3 + UV + UV + UV +Face 5951 +UV Count: 3 + UV + UV + UV +Face 5952 +UV Count: 3 + UV + UV + UV +Face 5953 +UV Count: 3 + UV + UV + UV +Face 5954 +UV Count: 3 + UV + UV + UV +Face 5955 +UV Count: 3 + UV + UV + UV +Face 5956 +UV Count: 3 + UV + UV + UV +Face 5957 +UV Count: 3 + UV + UV + UV +Face 5958 +UV Count: 3 + UV + UV + UV +Face 5959 +UV Count: 3 + UV + UV + UV +Face 5960 +UV Count: 3 + UV + UV + UV +Face 5961 +UV Count: 3 + UV + UV + UV +Face 5962 +UV Count: 3 + UV + UV + UV +Face 5963 +UV Count: 3 + UV + UV + UV +Face 5964 +UV Count: 3 + UV + UV + UV +Face 5965 +UV Count: 3 + UV + UV + UV +Face 5966 +UV Count: 3 + UV + UV + UV +Face 5967 +UV Count: 3 + UV + UV + UV +Face 5968 +UV Count: 3 + UV + UV + UV +Face 5969 +UV Count: 3 + UV + UV + UV +Face 5970 +UV Count: 3 + UV + UV + UV +Face 5971 +UV Count: 3 + UV + UV + UV +Face 5972 +UV Count: 3 + UV + UV + UV +Face 5973 +UV Count: 3 + UV + UV + UV +Face 5974 +UV Count: 3 + UV + UV + UV +Face 5975 +UV Count: 3 + UV + UV + UV +Face 5976 +UV Count: 3 + UV + UV + UV +Face 5977 +UV Count: 3 + UV + UV + UV +Face 5978 +UV Count: 3 + UV + UV + UV +Face 5979 +UV Count: 3 + UV + UV + UV +Face 5980 +UV Count: 3 + UV + UV + UV +Face 5981 +UV Count: 3 + UV + UV + UV +Face 5982 +UV Count: 3 + UV + UV + UV +Face 5983 +UV Count: 3 + UV + UV + UV +Face 5984 +UV Count: 3 + UV + UV + UV +Face 5985 +UV Count: 3 + UV + UV + UV +Face 5986 +UV Count: 3 + UV + UV + UV +Face 5987 +UV Count: 3 + UV + UV + UV +Face 5988 +UV Count: 3 + UV + UV + UV +Face 5989 +UV Count: 3 + UV + UV + UV +Face 5990 +UV Count: 3 + UV + UV + UV +Face 5991 +UV Count: 3 + UV + UV + UV +Face 5992 +UV Count: 3 + UV + UV + UV +Face 5993 +UV Count: 3 + UV + UV + UV +Face 5994 +UV Count: 3 + UV + UV + UV +Face 5995 +UV Count: 3 + UV + UV + UV +Face 5996 +UV Count: 3 + UV + UV + UV +Face 5997 +UV Count: 3 + UV + UV + UV +Face 5998 +UV Count: 3 + UV + UV + UV +Face 5999 +UV Count: 3 + UV + UV + UV +Face 6000 +UV Count: 3 + UV + UV + UV +Face 6001 +UV Count: 3 + UV + UV + UV +Face 6002 +UV Count: 3 + UV + UV + UV +Face 6003 +UV Count: 3 + UV + UV + UV +Face 6004 +UV Count: 3 + UV + UV + UV +Face 6005 +UV Count: 3 + UV + UV + UV +Face 6006 +UV Count: 3 + UV + UV + UV +Face 6007 +UV Count: 3 + UV + UV + UV +Face 6008 +UV Count: 3 + UV + UV + UV +Face 6009 +UV Count: 3 + UV + UV + UV +Face 6010 +UV Count: 3 + UV + UV + UV +Face 6011 +UV Count: 3 + UV + UV + UV +Face 6012 +UV Count: 3 + UV + UV + UV +Face 6013 +UV Count: 3 + UV + UV + UV +Face 6014 +UV Count: 3 + UV + UV + UV +Face 6015 +UV Count: 3 + UV + UV + UV +Face 6016 +UV Count: 3 + UV + UV + UV +Face 6017 +UV Count: 3 + UV + UV + UV +Face 6018 +UV Count: 3 + UV + UV + UV +Face 6019 +UV Count: 3 + UV + UV + UV +Face 6020 +UV Count: 3 + UV + UV + UV +Face 6021 +UV Count: 3 + UV + UV + UV +Face 6022 +UV Count: 3 + UV + UV + UV +Face 6023 +UV Count: 3 + UV + UV + UV +Face 6024 +UV Count: 3 + UV + UV + UV +Face 6025 +UV Count: 3 + UV + UV + UV +Face 6026 +UV Count: 3 + UV + UV + UV +Face 6027 +UV Count: 3 + UV + UV + UV +Face 6028 +UV Count: 3 + UV + UV + UV +Face 6029 +UV Count: 3 + UV + UV + UV +Face 6030 +UV Count: 3 + UV + UV + UV +Face 6031 +UV Count: 3 + UV + UV + UV +Face 6032 +UV Count: 3 + UV + UV + UV +Face 6033 +UV Count: 3 + UV + UV + UV +Face 6034 +UV Count: 3 + UV + UV + UV +Face 6035 +UV Count: 3 + UV + UV + UV +Face 6036 +UV Count: 3 + UV + UV + UV +Face 6037 +UV Count: 3 + UV + UV + UV +Face 6038 +UV Count: 3 + UV + UV + UV +Face 6039 +UV Count: 3 + UV + UV + UV +Face 6040 +UV Count: 3 + UV + UV + UV +Face 6041 +UV Count: 3 + UV + UV + UV +Face 6042 +UV Count: 3 + UV + UV + UV +Face 6043 +UV Count: 3 + UV + UV + UV +Face 6044 +UV Count: 3 + UV + UV + UV +Face 6045 +UV Count: 3 + UV + UV + UV +Face 6046 +UV Count: 3 + UV + UV + UV +Face 6047 +UV Count: 3 + UV + UV + UV +Face 6048 +UV Count: 3 + UV + UV + UV +Face 6049 +UV Count: 3 + UV + UV + UV +Face 6050 +UV Count: 3 + UV + UV + UV +Face 6051 +UV Count: 3 + UV + UV + UV +Face 6052 +UV Count: 3 + UV + UV + UV +Face 6053 +UV Count: 3 + UV + UV + UV +Face 6054 +UV Count: 3 + UV + UV + UV +Face 6055 +UV Count: 3 + UV + UV + UV +Face 6056 +UV Count: 3 + UV + UV + UV +Face 6057 +UV Count: 3 + UV + UV + UV +Face 6058 +UV Count: 3 + UV + UV + UV +Face 6059 +UV Count: 3 + UV + UV + UV +Face 6060 +UV Count: 3 + UV + UV + UV +Face 6061 +UV Count: 3 + UV + UV + UV +Face 6062 +UV Count: 3 + UV + UV + UV +Face 6063 +UV Count: 3 + UV + UV + UV +Face 6064 +UV Count: 3 + UV + UV + UV +Face 6065 +UV Count: 3 + UV + UV + UV +Face 6066 +UV Count: 3 + UV + UV + UV +Face 6067 +UV Count: 3 + UV + UV + UV +Face 6068 +UV Count: 3 + UV + UV + UV +Face 6069 +UV Count: 3 + UV + UV + UV +Face 6070 +UV Count: 3 + UV + UV + UV +Face 6071 +UV Count: 3 + UV + UV + UV +Face 6072 +UV Count: 3 + UV + UV + UV +Face 6073 +UV Count: 3 + UV + UV + UV +Face 6074 +UV Count: 3 + UV + UV + UV +Face 6075 +UV Count: 3 + UV + UV + UV +Face 6076 +UV Count: 3 + UV + UV + UV +Face 6077 +UV Count: 3 + UV + UV + UV +Face 6078 +UV Count: 3 + UV + UV + UV +Face 6079 +UV Count: 3 + UV + UV + UV +Face 6080 +UV Count: 3 + UV + UV + UV +Face 6081 +UV Count: 3 + UV + UV + UV +Face 6082 +UV Count: 3 + UV + UV + UV +Face 6083 +UV Count: 3 + UV + UV + UV +Face 6084 +UV Count: 3 + UV + UV + UV +Face 6085 +UV Count: 3 + UV + UV + UV +Face 6086 +UV Count: 3 + UV + UV + UV +Face 6087 +UV Count: 3 + UV + UV + UV +Face 6088 +UV Count: 3 + UV + UV + UV +Face 6089 +UV Count: 3 + UV + UV + UV +Face 6090 +UV Count: 3 + UV + UV + UV +Face 6091 +UV Count: 3 + UV + UV + UV +Face 6092 +UV Count: 3 + UV + UV + UV +Face 6093 +UV Count: 3 + UV + UV + UV +Face 6094 +UV Count: 3 + UV + UV + UV +Face 6095 +UV Count: 3 + UV + UV + UV +Face 6096 +UV Count: 3 + UV + UV + UV +Face 6097 +UV Count: 3 + UV + UV + UV +Face 6098 +UV Count: 3 + UV + UV + UV +Face 6099 +UV Count: 3 + UV + UV + UV +Face 6100 +UV Count: 3 + UV + UV + UV +Face 6101 +UV Count: 3 + UV + UV + UV +Face 6102 +UV Count: 3 + UV + UV + UV +Face 6103 +UV Count: 3 + UV + UV + UV +Face 6104 +UV Count: 3 + UV + UV + UV +Face 6105 +UV Count: 3 + UV + UV + UV +Face 6106 +UV Count: 3 + UV + UV + UV +Face 6107 +UV Count: 3 + UV + UV + UV +Face 6108 +UV Count: 3 + UV + UV + UV +Face 6109 +UV Count: 3 + UV + UV + UV +Face 6110 +UV Count: 3 + UV + UV + UV +Face 6111 +UV Count: 3 + UV + UV + UV +Face 6112 +UV Count: 3 + UV + UV + UV +Face 6113 +UV Count: 3 + UV + UV + UV +Face 6114 +UV Count: 3 + UV + UV + UV +Face 6115 +UV Count: 3 + UV + UV + UV +Face 6116 +UV Count: 3 + UV + UV + UV +Face 6117 +UV Count: 3 + UV + UV + UV +Face 6118 +UV Count: 3 + UV + UV + UV +Face 6119 +UV Count: 3 + UV + UV + UV +Face 6120 +UV Count: 3 + UV + UV + UV +Face 6121 +UV Count: 3 + UV + UV + UV +Face 6122 +UV Count: 3 + UV + UV + UV +Face 6123 +UV Count: 3 + UV + UV + UV +Face 6124 +UV Count: 3 + UV + UV + UV +Face 6125 +UV Count: 3 + UV + UV + UV +Face 6126 +UV Count: 3 + UV + UV + UV +Face 6127 +UV Count: 3 + UV + UV + UV +Face 6128 +UV Count: 3 + UV + UV + UV +Face 6129 +UV Count: 3 + UV + UV + UV +Face 6130 +UV Count: 3 + UV + UV + UV +Face 6131 +UV Count: 3 + UV + UV + UV +Face 6132 +UV Count: 3 + UV + UV + UV +Face 6133 +UV Count: 3 + UV + UV + UV +Face 6134 +UV Count: 3 + UV + UV + UV +Face 6135 +UV Count: 3 + UV + UV + UV +Face 6136 +UV Count: 3 + UV + UV + UV +Face 6137 +UV Count: 3 + UV + UV + UV +Face 6138 +UV Count: 3 + UV + UV + UV +Face 6139 +UV Count: 3 + UV + UV + UV +Face 6140 +UV Count: 3 + UV + UV + UV +Face 6141 +UV Count: 3 + UV + UV + UV +Face 6142 +UV Count: 3 + UV + UV + UV +Face 6143 +UV Count: 3 + UV + UV + UV +Face 6144 +UV Count: 3 + UV + UV + UV +Face 6145 +UV Count: 3 + UV + UV + UV +Face 6146 +UV Count: 3 + UV + UV + UV +Face 6147 +UV Count: 3 + UV + UV + UV +Face 6148 +UV Count: 3 + UV + UV + UV +Face 6149 +UV Count: 3 + UV + UV + UV +Face 6150 +UV Count: 3 + UV + UV + UV +Face 6151 +UV Count: 3 + UV + UV + UV +Face 6152 +UV Count: 3 + UV + UV + UV +Face 6153 +UV Count: 3 + UV + UV + UV +Face 6154 +UV Count: 3 + UV + UV + UV +Face 6155 +UV Count: 3 + UV + UV + UV +Face 6156 +UV Count: 3 + UV + UV + UV +Face 6157 +UV Count: 3 + UV + UV + UV +Face 6158 +UV Count: 3 + UV + UV + UV +Face 6159 +UV Count: 3 + UV + UV + UV +Face 6160 +UV Count: 3 + UV + UV + UV +Face 6161 +UV Count: 3 + UV + UV + UV +Face 6162 +UV Count: 3 + UV + UV + UV +Face 6163 +UV Count: 3 + UV + UV + UV +Face 6164 +UV Count: 3 + UV + UV + UV +Face 6165 +UV Count: 3 + UV + UV + UV +Face 6166 +UV Count: 3 + UV + UV + UV +Face 6167 +UV Count: 3 + UV + UV + UV +Face 6168 +UV Count: 3 + UV + UV + UV +Face 6169 +UV Count: 3 + UV + UV + UV +Face 6170 +UV Count: 3 + UV + UV + UV +Face 6171 +UV Count: 3 + UV + UV + UV +Face 6172 +UV Count: 3 + UV + UV + UV +Face 6173 +UV Count: 3 + UV + UV + UV +Face 6174 +UV Count: 3 + UV + UV + UV +Face 6175 +UV Count: 3 + UV + UV + UV +Face 6176 +UV Count: 3 + UV + UV + UV +Face 6177 +UV Count: 3 + UV + UV + UV +Face 6178 +UV Count: 3 + UV + UV + UV +Face 6179 +UV Count: 3 + UV + UV + UV +Face 6180 +UV Count: 3 + UV + UV + UV +Face 6181 +UV Count: 3 + UV + UV + UV +Face 6182 +UV Count: 3 + UV + UV + UV +Face 6183 +UV Count: 3 + UV + UV + UV +Face 6184 +UV Count: 3 + UV + UV + UV +Face 6185 +UV Count: 3 + UV + UV + UV +Face 6186 +UV Count: 3 + UV + UV + UV +Face 6187 +UV Count: 3 + UV + UV + UV +Face 6188 +UV Count: 3 + UV + UV + UV +Face 6189 +UV Count: 3 + UV + UV + UV +Face 6190 +UV Count: 3 + UV + UV + UV +Face 6191 +UV Count: 3 + UV + UV + UV +Face 6192 +UV Count: 3 + UV + UV + UV +Face 6193 +UV Count: 3 + UV + UV + UV +Face 6194 +UV Count: 3 + UV + UV + UV +Face 6195 +UV Count: 3 + UV + UV + UV +Face 6196 +UV Count: 3 + UV + UV + UV +Face 6197 +UV Count: 3 + UV + UV + UV +Face 6198 +UV Count: 3 + UV + UV + UV +Face 6199 +UV Count: 3 + UV + UV + UV +Face 6200 +UV Count: 3 + UV + UV + UV +Face 6201 +UV Count: 3 + UV + UV + UV +Face 6202 +UV Count: 3 + UV + UV + UV +Face 6203 +UV Count: 3 + UV + UV + UV +Face 6204 +UV Count: 3 + UV + UV + UV +Face 6205 +UV Count: 3 + UV + UV + UV +Face 6206 +UV Count: 3 + UV + UV + UV +Face 6207 +UV Count: 3 + UV + UV + UV +Face 6208 +UV Count: 3 + UV + UV + UV +Face 6209 +UV Count: 3 + UV + UV + UV +Face 6210 +UV Count: 3 + UV + UV + UV +Face 6211 +UV Count: 3 + UV + UV + UV +Face 6212 +UV Count: 3 + UV + UV + UV +Face 6213 +UV Count: 3 + UV + UV + UV +Face 6214 +UV Count: 3 + UV + UV + UV +Face 6215 +UV Count: 3 + UV + UV + UV +Face 6216 +UV Count: 3 + UV + UV + UV +Face 6217 +UV Count: 3 + UV + UV + UV +Face 6218 +UV Count: 3 + UV + UV + UV +Face 6219 +UV Count: 3 + UV + UV + UV +Face 6220 +UV Count: 3 + UV + UV + UV +Face 6221 +UV Count: 3 + UV + UV + UV +Face 6222 +UV Count: 3 + UV + UV + UV +Face 6223 +UV Count: 3 + UV + UV + UV +Face 6224 +UV Count: 3 + UV + UV + UV +Face 6225 +UV Count: 3 + UV + UV + UV +Face 6226 +UV Count: 3 + UV + UV + UV +Face 6227 +UV Count: 3 + UV + UV + UV +Face 6228 +UV Count: 3 + UV + UV + UV +Face 6229 +UV Count: 3 + UV + UV + UV +Face 6230 +UV Count: 3 + UV + UV + UV +Face 6231 +UV Count: 3 + UV + UV + UV +Face 6232 +UV Count: 3 + UV + UV + UV +Face 6233 +UV Count: 3 + UV + UV + UV +Face 6234 +UV Count: 3 + UV + UV + UV +Face 6235 +UV Count: 3 + UV + UV + UV +Face 6236 +UV Count: 3 + UV + UV + UV +Face 6237 +UV Count: 3 + UV + UV + UV +Face 6238 +UV Count: 3 + UV + UV + UV +Face 6239 +UV Count: 3 + UV + UV + UV +Face 6240 +UV Count: 3 + UV + UV + UV +Face 6241 +UV Count: 3 + UV + UV + UV +Face 6242 +UV Count: 3 + UV + UV + UV +Face 6243 +UV Count: 3 + UV + UV + UV +Face 6244 +UV Count: 3 + UV + UV + UV +Face 6245 +UV Count: 3 + UV + UV + UV +Face 6246 +UV Count: 3 + UV + UV + UV +Face 6247 +UV Count: 3 + UV + UV + UV +Face 6248 +UV Count: 3 + UV + UV + UV +Face 6249 +UV Count: 3 + UV + UV + UV +Face 6250 +UV Count: 3 + UV + UV + UV +Face 6251 +UV Count: 3 + UV + UV + UV +Face 6252 +UV Count: 3 + UV + UV + UV +Face 6253 +UV Count: 3 + UV + UV + UV +Face 6254 +UV Count: 3 + UV + UV + UV +Face 6255 +UV Count: 3 + UV + UV + UV +Face 6256 +UV Count: 3 + UV + UV + UV +Face 6257 +UV Count: 3 + UV + UV + UV +Face 6258 +UV Count: 3 + UV + UV + UV +Face 6259 +UV Count: 3 + UV + UV + UV +Face 6260 +UV Count: 3 + UV + UV + UV +Face 6261 +UV Count: 3 + UV + UV + UV +Face 6262 +UV Count: 3 + UV + UV + UV +Face 6263 +UV Count: 3 + UV + UV + UV +Face 6264 +UV Count: 3 + UV + UV + UV +Face 6265 +UV Count: 3 + UV + UV + UV +Face 6266 +UV Count: 3 + UV + UV + UV +Face 6267 +UV Count: 3 + UV + UV + UV +Face 6268 +UV Count: 3 + UV + UV + UV +Face 6269 +UV Count: 3 + UV + UV + UV +Face 6270 +UV Count: 3 + UV + UV + UV +Face 6271 +UV Count: 3 + UV + UV + UV +Face 6272 +UV Count: 3 + UV + UV + UV +Face 6273 +UV Count: 3 + UV + UV + UV +Face 6274 +UV Count: 3 + UV + UV + UV +Face 6275 +UV Count: 3 + UV + UV + UV +Face 6276 +UV Count: 3 + UV + UV + UV +Face 6277 +UV Count: 3 + UV + UV + UV +Face 6278 +UV Count: 3 + UV + UV + UV +Face 6279 +UV Count: 3 + UV + UV + UV +Face 6280 +UV Count: 3 + UV + UV + UV +Face 6281 +UV Count: 3 + UV + UV + UV +Face 6282 +UV Count: 3 + UV + UV + UV +Face 6283 +UV Count: 3 + UV + UV + UV +Face 6284 +UV Count: 3 + UV + UV + UV +Face 6285 +UV Count: 3 + UV + UV + UV +Face 6286 +UV Count: 3 + UV + UV + UV +Face 6287 +UV Count: 3 + UV + UV + UV +Face 6288 +UV Count: 3 + UV + UV + UV +Face 6289 +UV Count: 3 + UV + UV + UV +Face 6290 +UV Count: 3 + UV + UV + UV +Face 6291 +UV Count: 3 + UV + UV + UV +Face 6292 +UV Count: 3 + UV + UV + UV +Face 6293 +UV Count: 3 + UV + UV + UV +Face 6294 +UV Count: 3 + UV + UV + UV +Face 6295 +UV Count: 3 + UV + UV + UV +Face 6296 +UV Count: 3 + UV + UV + UV +Face 6297 +UV Count: 3 + UV + UV + UV +Face 6298 +UV Count: 3 + UV + UV + UV +Face 6299 +UV Count: 3 + UV + UV + UV +Face 6300 +UV Count: 3 + UV + UV + UV +Face 6301 +UV Count: 3 + UV + UV + UV +Face 6302 +UV Count: 3 + UV + UV + UV +Face 6303 +UV Count: 3 + UV + UV + UV +Face 6304 +UV Count: 3 + UV + UV + UV +Face 6305 +UV Count: 3 + UV + UV + UV +Face 6306 +UV Count: 3 + UV + UV + UV +Face 6307 +UV Count: 3 + UV + UV + UV +Face 6308 +UV Count: 3 + UV + UV + UV +Face 6309 +UV Count: 3 + UV + UV + UV +Face 6310 +UV Count: 3 + UV + UV + UV +Face 6311 +UV Count: 3 + UV + UV + UV +Face 6312 +UV Count: 3 + UV + UV + UV +Face 6313 +UV Count: 3 + UV + UV + UV +Face 6314 +UV Count: 3 + UV + UV + UV +Face 6315 +UV Count: 3 + UV + UV + UV +Face 6316 +UV Count: 3 + UV + UV + UV +Face 6317 +UV Count: 3 + UV + UV + UV +Face 6318 +UV Count: 3 + UV + UV + UV +Face 6319 +UV Count: 3 + UV + UV + UV +Face 6320 +UV Count: 3 + UV + UV + UV +Face 6321 +UV Count: 3 + UV + UV + UV +Face 6322 +UV Count: 3 + UV + UV + UV +Face 6323 +UV Count: 3 + UV + UV + UV +Face 6324 +UV Count: 3 + UV + UV + UV +Face 6325 +UV Count: 3 + UV + UV + UV +Face 6326 +UV Count: 3 + UV + UV + UV +Face 6327 +UV Count: 3 + UV + UV + UV +Face 6328 +UV Count: 3 + UV + UV + UV +Face 6329 +UV Count: 3 + UV + UV + UV +Face 6330 +UV Count: 3 + UV + UV + UV +Face 6331 +UV Count: 3 + UV + UV + UV +Face 6332 +UV Count: 3 + UV + UV + UV +Face 6333 +UV Count: 3 + UV + UV + UV +Face 6334 +UV Count: 3 + UV + UV + UV +Face 6335 +UV Count: 3 + UV + UV + UV +Face 6336 +UV Count: 3 + UV + UV + UV +Face 6337 +UV Count: 3 + UV + UV + UV +Face 6338 +UV Count: 3 + UV + UV + UV +Face 6339 +UV Count: 3 + UV + UV + UV +Face 6340 +UV Count: 3 + UV + UV + UV +Face 6341 +UV Count: 3 + UV + UV + UV +Face 6342 +UV Count: 3 + UV + UV + UV +Face 6343 +UV Count: 3 + UV + UV + UV +Face 6344 +UV Count: 3 + UV + UV + UV +Face 6345 +UV Count: 3 + UV + UV + UV +Face 6346 +UV Count: 3 + UV + UV + UV +Face 6347 +UV Count: 3 + UV + UV + UV +Face 6348 +UV Count: 3 + UV + UV + UV +Face 6349 +UV Count: 3 + UV + UV + UV +Face 6350 +UV Count: 3 + UV + UV + UV +Face 6351 +UV Count: 3 + UV + UV + UV +Face 6352 +UV Count: 3 + UV + UV + UV +Face 6353 +UV Count: 3 + UV + UV + UV +Face 6354 +UV Count: 3 + UV + UV + UV +Face 6355 +UV Count: 3 + UV + UV + UV +Face 6356 +UV Count: 3 + UV + UV + UV +Face 6357 +UV Count: 3 + UV + UV + UV +Face 6358 +UV Count: 3 + UV + UV + UV +Face 6359 +UV Count: 3 + UV + UV + UV +Face 6360 +UV Count: 3 + UV + UV + UV +Face 6361 +UV Count: 3 + UV + UV + UV +Face 6362 +UV Count: 3 + UV + UV + UV +Face 6363 +UV Count: 3 + UV + UV + UV +Face 6364 +UV Count: 3 + UV + UV + UV +Face 6365 +UV Count: 3 + UV + UV + UV +Face 6366 +UV Count: 3 + UV + UV + UV +Face 6367 +UV Count: 3 + UV + UV + UV +Face 6368 +UV Count: 3 + UV + UV + UV +Face 6369 +UV Count: 3 + UV + UV + UV +Face 6370 +UV Count: 3 + UV + UV + UV +Face 6371 +UV Count: 3 + UV + UV + UV +Face 6372 +UV Count: 3 + UV + UV + UV +Face 6373 +UV Count: 3 + UV + UV + UV +Face 6374 +UV Count: 3 + UV + UV + UV +Face 6375 +UV Count: 3 + UV + UV + UV +Face 6376 +UV Count: 3 + UV + UV + UV +Face 6377 +UV Count: 3 + UV + UV + UV +Face 6378 +UV Count: 3 + UV + UV + UV +Face 6379 +UV Count: 3 + UV + UV + UV +Face 6380 +UV Count: 3 + UV + UV + UV +Face 6381 +UV Count: 3 + UV + UV + UV +Face 6382 +UV Count: 3 + UV + UV + UV +Face 6383 +UV Count: 3 + UV + UV + UV +Face 6384 +UV Count: 3 + UV + UV + UV +Face 6385 +UV Count: 3 + UV + UV + UV +Face 6386 +UV Count: 3 + UV + UV + UV +Face 6387 +UV Count: 3 + UV + UV + UV +Face 6388 +UV Count: 3 + UV + UV + UV +Face 6389 +UV Count: 3 + UV + UV + UV +Face 6390 +UV Count: 3 + UV + UV + UV +Face 6391 +UV Count: 3 + UV + UV + UV +Face 6392 +UV Count: 3 + UV + UV + UV +Face 6393 +UV Count: 3 + UV + UV + UV +Face 6394 +UV Count: 3 + UV + UV + UV +Face 6395 +UV Count: 3 + UV + UV + UV +Face 6396 +UV Count: 3 + UV + UV + UV +Face 6397 +UV Count: 3 + UV + UV + UV +Face 6398 +UV Count: 3 + UV + UV + UV +Face 6399 +UV Count: 3 + UV + UV + UV +Face 6400 +UV Count: 3 + UV + UV + UV +Face 6401 +UV Count: 3 + UV + UV + UV +Face 6402 +UV Count: 3 + UV + UV + UV +Face 6403 +UV Count: 3 + UV + UV + UV +Face 6404 +UV Count: 3 + UV + UV + UV +Face 6405 +UV Count: 3 + UV + UV + UV +Face 6406 +UV Count: 3 + UV + UV + UV +Face 6407 +UV Count: 3 + UV + UV + UV +Face 6408 +UV Count: 3 + UV + UV + UV +Face 6409 +UV Count: 3 + UV + UV + UV +Face 6410 +UV Count: 3 + UV + UV + UV +Face 6411 +UV Count: 3 + UV + UV + UV +Face 6412 +UV Count: 3 + UV + UV + UV +Face 6413 +UV Count: 3 + UV + UV + UV +Face 6414 +UV Count: 3 + UV + UV + UV +Face 6415 +UV Count: 3 + UV + UV + UV +Face 6416 +UV Count: 3 + UV + UV + UV +Face 6417 +UV Count: 3 + UV + UV + UV +Face 6418 +UV Count: 3 + UV + UV + UV +Face 6419 +UV Count: 3 + UV + UV + UV +Face 6420 +UV Count: 3 + UV + UV + UV +Face 6421 +UV Count: 3 + UV + UV + UV +Face 6422 +UV Count: 3 + UV + UV + UV +Face 6423 +UV Count: 3 + UV + UV + UV +Face 6424 +UV Count: 3 + UV + UV + UV +Face 6425 +UV Count: 3 + UV + UV + UV +Face 6426 +UV Count: 3 + UV + UV + UV +Face 6427 +UV Count: 3 + UV + UV + UV +Face 6428 +UV Count: 3 + UV + UV + UV +Face 6429 +UV Count: 3 + UV + UV + UV +Face 6430 +UV Count: 3 + UV + UV + UV +Face 6431 +UV Count: 3 + UV + UV + UV +Face 6432 +UV Count: 3 + UV + UV + UV +Face 6433 +UV Count: 3 + UV + UV + UV +Face 6434 +UV Count: 3 + UV + UV + UV +Face 6435 +UV Count: 3 + UV + UV + UV +Face 6436 +UV Count: 3 + UV + UV + UV +Face 6437 +UV Count: 3 + UV + UV + UV +Face 6438 +UV Count: 3 + UV + UV + UV +Face 6439 +UV Count: 3 + UV + UV + UV +Face 6440 +UV Count: 3 + UV + UV + UV +Face 6441 +UV Count: 3 + UV + UV + UV +Face 6442 +UV Count: 3 + UV + UV + UV +Face 6443 +UV Count: 3 + UV + UV + UV +Face 6444 +UV Count: 3 + UV + UV + UV +Face 6445 +UV Count: 3 + UV + UV + UV +Face 6446 +UV Count: 3 + UV + UV + UV +Face 6447 +UV Count: 3 + UV + UV + UV +Face 6448 +UV Count: 3 + UV + UV + UV +Face 6449 +UV Count: 3 + UV + UV + UV +Face 6450 +UV Count: 3 + UV + UV + UV +Face 6451 +UV Count: 3 + UV + UV + UV +Face 6452 +UV Count: 3 + UV + UV + UV +Face 6453 +UV Count: 3 + UV + UV + UV +Face 6454 +UV Count: 3 + UV + UV + UV +Face 6455 +UV Count: 3 + UV + UV + UV +Face 6456 +UV Count: 3 + UV + UV + UV +Face 6457 +UV Count: 3 + UV + UV + UV +Face 6458 +UV Count: 3 + UV + UV + UV +Face 6459 +UV Count: 3 + UV + UV + UV +Face 6460 +UV Count: 3 + UV + UV + UV +Face 6461 +UV Count: 3 + UV + UV + UV +Face 6462 +UV Count: 3 + UV + UV + UV +Face 6463 +UV Count: 3 + UV + UV + UV +Face 6464 +UV Count: 3 + UV + UV + UV +Face 6465 +UV Count: 3 + UV + UV + UV +Face 6466 +UV Count: 3 + UV + UV + UV +Face 6467 +UV Count: 3 + UV + UV + UV +Face 6468 +UV Count: 3 + UV + UV + UV +Face 6469 +UV Count: 3 + UV + UV + UV +Face 6470 +UV Count: 3 + UV + UV + UV +Face 6471 +UV Count: 3 + UV + UV + UV +Face 6472 +UV Count: 3 + UV + UV + UV +Face 6473 +UV Count: 3 + UV + UV + UV +Face 6474 +UV Count: 3 + UV + UV + UV +Face 6475 +UV Count: 3 + UV + UV + UV +Face 6476 +UV Count: 3 + UV + UV + UV +Face 6477 +UV Count: 3 + UV + UV + UV +Face 6478 +UV Count: 3 + UV + UV + UV +Face 6479 +UV Count: 3 + UV + UV + UV +Face 6480 +UV Count: 3 + UV + UV + UV +Face 6481 +UV Count: 3 + UV + UV + UV +Face 6482 +UV Count: 3 + UV + UV + UV +Face 6483 +UV Count: 3 + UV + UV + UV +Face 6484 +UV Count: 3 + UV + UV + UV +Face 6485 +UV Count: 3 + UV + UV + UV +Face 6486 +UV Count: 3 + UV + UV + UV +Face 6487 +UV Count: 3 + UV + UV + UV +Face 6488 +UV Count: 3 + UV + UV + UV +Face 6489 +UV Count: 3 + UV + UV + UV +Face 6490 +UV Count: 3 + UV + UV + UV +Face 6491 +UV Count: 3 + UV + UV + UV +Face 6492 +UV Count: 3 + UV + UV + UV +Face 6493 +UV Count: 3 + UV + UV + UV +Face 6494 +UV Count: 3 + UV + UV + UV +Face 6495 +UV Count: 3 + UV + UV + UV +Face 6496 +UV Count: 3 + UV + UV + UV +Face 6497 +UV Count: 3 + UV + UV + UV +Face 6498 +UV Count: 3 + UV + UV + UV +Face 6499 +UV Count: 3 + UV + UV + UV +Face 6500 +UV Count: 3 + UV + UV + UV +Face 6501 +UV Count: 3 + UV + UV + UV +Face 6502 +UV Count: 3 + UV + UV + UV +Face 6503 +UV Count: 3 + UV + UV + UV +Face 6504 +UV Count: 3 + UV + UV + UV +Face 6505 +UV Count: 3 + UV + UV + UV +Face 6506 +UV Count: 3 + UV + UV + UV +Face 6507 +UV Count: 3 + UV + UV + UV +Face 6508 +UV Count: 3 + UV + UV + UV +Face 6509 +UV Count: 3 + UV + UV + UV +Face 6510 +UV Count: 3 + UV + UV + UV +Face 6511 +UV Count: 3 + UV + UV + UV +Face 6512 +UV Count: 3 + UV + UV + UV +Face 6513 +UV Count: 3 + UV + UV + UV +Face 6514 +UV Count: 3 + UV + UV + UV +Face 6515 +UV Count: 3 + UV + UV + UV +Face 6516 +UV Count: 3 + UV + UV + UV +Face 6517 +UV Count: 3 + UV + UV + UV +Face 6518 +UV Count: 3 + UV + UV + UV +Face 6519 +UV Count: 3 + UV + UV + UV +Face 6520 +UV Count: 3 + UV + UV + UV +Face 6521 +UV Count: 3 + UV + UV + UV +Face 6522 +UV Count: 3 + UV + UV + UV +Face 6523 +UV Count: 3 + UV + UV + UV +Face 6524 +UV Count: 3 + UV + UV + UV +Face 6525 +UV Count: 3 + UV + UV + UV +Face 6526 +UV Count: 3 + UV + UV + UV +Face 6527 +UV Count: 3 + UV + UV + UV +Face 6528 +UV Count: 3 + UV + UV + UV +Face 6529 +UV Count: 3 + UV + UV + UV +Face 6530 +UV Count: 3 + UV + UV + UV +Face 6531 +UV Count: 3 + UV + UV + UV +Face 6532 +UV Count: 3 + UV + UV + UV +Face 6533 +UV Count: 3 + UV + UV + UV +Face 6534 +UV Count: 3 + UV + UV + UV +Face 6535 +UV Count: 3 + UV + UV + UV +Face 6536 +UV Count: 3 + UV + UV + UV +Face 6537 +UV Count: 3 + UV + UV + UV +Face 6538 +UV Count: 3 + UV + UV + UV +Face 6539 +UV Count: 3 + UV + UV + UV +Face 6540 +UV Count: 3 + UV + UV + UV +Face 6541 +UV Count: 3 + UV + UV + UV +Face 6542 +UV Count: 3 + UV + UV + UV +Face 6543 +UV Count: 3 + UV + UV + UV +Face 6544 +UV Count: 3 + UV + UV + UV +Face 6545 +UV Count: 3 + UV + UV + UV +Face 6546 +UV Count: 3 + UV + UV + UV +Face 6547 +UV Count: 3 + UV + UV + UV +Face 6548 +UV Count: 3 + UV + UV + UV +Face 6549 +UV Count: 3 + UV + UV + UV +Face 6550 +UV Count: 3 + UV + UV + UV +Face 6551 +UV Count: 3 + UV + UV + UV +Face 6552 +UV Count: 3 + UV + UV + UV +Face 6553 +UV Count: 3 + UV + UV + UV +Face 6554 +UV Count: 3 + UV + UV + UV +Face 6555 +UV Count: 3 + UV + UV + UV +Face 6556 +UV Count: 3 + UV + UV + UV +Face 6557 +UV Count: 3 + UV + UV + UV +Face 6558 +UV Count: 3 + UV + UV + UV +Face 6559 +UV Count: 3 + UV + UV + UV +Face 6560 +UV Count: 3 + UV + UV + UV +Face 6561 +UV Count: 3 + UV + UV + UV +Face 6562 +UV Count: 3 + UV + UV + UV +Face 6563 +UV Count: 3 + UV + UV + UV +Face 6564 +UV Count: 3 + UV + UV + UV +Face 6565 +UV Count: 3 + UV + UV + UV +Face 6566 +UV Count: 3 + UV + UV + UV +Face 6567 +UV Count: 3 + UV + UV + UV +Face 6568 +UV Count: 3 + UV + UV + UV +Face 6569 +UV Count: 3 + UV + UV + UV +Face 6570 +UV Count: 3 + UV + UV + UV +Face 6571 +UV Count: 3 + UV + UV + UV +Face 6572 +UV Count: 3 + UV + UV + UV +Face 6573 +UV Count: 3 + UV + UV + UV +Face 6574 +UV Count: 3 + UV + UV + UV +Face 6575 +UV Count: 3 + UV + UV + UV +Face 6576 +UV Count: 3 + UV + UV + UV +Face 6577 +UV Count: 3 + UV + UV + UV +Face 6578 +UV Count: 3 + UV + UV + UV +Face 6579 +UV Count: 3 + UV + UV + UV +Face 6580 +UV Count: 3 + UV + UV + UV +Face 6581 +UV Count: 3 + UV + UV + UV +Face 6582 +UV Count: 3 + UV + UV + UV +Face 6583 +UV Count: 3 + UV + UV + UV +Face 6584 +UV Count: 3 + UV + UV + UV +Face 6585 +UV Count: 3 + UV + UV + UV +Face 6586 +UV Count: 3 + UV + UV + UV +Face 6587 +UV Count: 3 + UV + UV + UV +Face 6588 +UV Count: 3 + UV + UV + UV +Face 6589 +UV Count: 3 + UV + UV + UV +Face 6590 +UV Count: 3 + UV + UV + UV +Face 6591 +UV Count: 3 + UV + UV + UV +Face 6592 +UV Count: 3 + UV + UV + UV +Face 6593 +UV Count: 3 + UV + UV + UV +Face 6594 +UV Count: 3 + UV + UV + UV +Face 6595 +UV Count: 3 + UV + UV + UV +Face 6596 +UV Count: 3 + UV + UV + UV +Face 6597 +UV Count: 3 + UV + UV + UV +Face 6598 +UV Count: 3 + UV + UV + UV +Face 6599 +UV Count: 3 + UV + UV + UV +Face 6600 +UV Count: 3 + UV + UV + UV +Face 6601 +UV Count: 3 + UV + UV + UV +Face 6602 +UV Count: 3 + UV + UV + UV +Face 6603 +UV Count: 3 + UV + UV + UV +Face 6604 +UV Count: 3 + UV + UV + UV +Face 6605 +UV Count: 3 + UV + UV + UV +Face 6606 +UV Count: 3 + UV + UV + UV +Face 6607 +UV Count: 3 + UV + UV + UV +Face 6608 +UV Count: 3 + UV + UV + UV +Face 6609 +UV Count: 3 + UV + UV + UV +Face 6610 +UV Count: 3 + UV + UV + UV +Face 6611 +UV Count: 3 + UV + UV + UV +Face 6612 +UV Count: 3 + UV + UV + UV +Face 6613 +UV Count: 3 + UV + UV + UV +Face 6614 +UV Count: 3 + UV + UV + UV +Face 6615 +UV Count: 3 + UV + UV + UV +Face 6616 +UV Count: 3 + UV + UV + UV +Face 6617 +UV Count: 3 + UV + UV + UV +Face 6618 +UV Count: 3 + UV + UV + UV +Face 6619 +UV Count: 3 + UV + UV + UV +Face 6620 +UV Count: 3 + UV + UV + UV +Face 6621 +UV Count: 3 + UV + UV + UV +Face 6622 +UV Count: 3 + UV + UV + UV +Face 6623 +UV Count: 3 + UV + UV + UV +Face 6624 +UV Count: 3 + UV + UV + UV +Face 6625 +UV Count: 3 + UV + UV + UV +Face 6626 +UV Count: 3 + UV + UV + UV +Face 6627 +UV Count: 3 + UV + UV + UV +Face 6628 +UV Count: 3 + UV + UV + UV +Face 6629 +UV Count: 3 + UV + UV + UV +Face 6630 +UV Count: 3 + UV + UV + UV +Face 6631 +UV Count: 3 + UV + UV + UV +Face 6632 +UV Count: 3 + UV + UV + UV +Face 6633 +UV Count: 3 + UV + UV + UV +Face 6634 +UV Count: 3 + UV + UV + UV +Face 6635 +UV Count: 3 + UV + UV + UV +Face 6636 +UV Count: 3 + UV + UV + UV +Face 6637 +UV Count: 3 + UV + UV + UV +Face 6638 +UV Count: 3 + UV + UV + UV +Face 6639 +UV Count: 3 + UV + UV + UV +Face 6640 +UV Count: 3 + UV + UV + UV +Face 6641 +UV Count: 3 + UV + UV + UV +Face 6642 +UV Count: 3 + UV + UV + UV +Face 6643 +UV Count: 3 + UV + UV + UV +Face 6644 +UV Count: 3 + UV + UV + UV +Face 6645 +UV Count: 3 + UV + UV + UV +Face 6646 +UV Count: 3 + UV + UV + UV +Face 6647 +UV Count: 3 + UV + UV + UV +Face 6648 +UV Count: 3 + UV + UV + UV +Face 6649 +UV Count: 3 + UV + UV + UV +Face 6650 +UV Count: 3 + UV + UV + UV +Face 6651 +UV Count: 3 + UV + UV + UV +Face 6652 +UV Count: 3 + UV + UV + UV +Face 6653 +UV Count: 3 + UV + UV + UV +Face 6654 +UV Count: 3 + UV + UV + UV +Face 6655 +UV Count: 3 + UV + UV + UV +Face 6656 +UV Count: 3 + UV + UV + UV +Face 6657 +UV Count: 3 + UV + UV + UV +Face 6658 +UV Count: 3 + UV + UV + UV +Face 6659 +UV Count: 3 + UV + UV + UV +Face 6660 +UV Count: 3 + UV + UV + UV +Face 6661 +UV Count: 3 + UV + UV + UV +Face 6662 +UV Count: 3 + UV + UV + UV +Face 6663 +UV Count: 3 + UV + UV + UV +Face 6664 +UV Count: 3 + UV + UV + UV +Face 6665 +UV Count: 3 + UV + UV + UV +Face 6666 +UV Count: 3 + UV + UV + UV +Face 6667 +UV Count: 3 + UV + UV + UV +Face 6668 +UV Count: 3 + UV + UV + UV +Face 6669 +UV Count: 3 + UV + UV + UV +Face 6670 +UV Count: 3 + UV + UV + UV +Face 6671 +UV Count: 3 + UV + UV + UV +Face 6672 +UV Count: 3 + UV + UV + UV +Face 6673 +UV Count: 3 + UV + UV + UV +Face 6674 +UV Count: 3 + UV + UV + UV +Face 6675 +UV Count: 3 + UV + UV + UV +Face 6676 +UV Count: 3 + UV + UV + UV +Face 6677 +UV Count: 3 + UV + UV + UV +Face 6678 +UV Count: 3 + UV + UV + UV +Face 6679 +UV Count: 3 + UV + UV + UV +Face 6680 +UV Count: 3 + UV + UV + UV +Face 6681 +UV Count: 3 + UV + UV + UV +Face 6682 +UV Count: 3 + UV + UV + UV +Face 6683 +UV Count: 3 + UV + UV + UV +Face 6684 +UV Count: 3 + UV + UV + UV +Face 6685 +UV Count: 3 + UV + UV + UV +Face 6686 +UV Count: 3 + UV + UV + UV +Face 6687 +UV Count: 3 + UV + UV + UV +Face 6688 +UV Count: 3 + UV + UV + UV +Face 6689 +UV Count: 3 + UV + UV + UV +Face 6690 +UV Count: 3 + UV + UV + UV +Face 6691 +UV Count: 3 + UV + UV + UV +Face 6692 +UV Count: 3 + UV + UV + UV +Face 6693 +UV Count: 3 + UV + UV + UV +Face 6694 +UV Count: 3 + UV + UV + UV +Face 6695 +UV Count: 3 + UV + UV + UV +Face 6696 +UV Count: 3 + UV + UV + UV +Face 6697 +UV Count: 3 + UV + UV + UV +Face 6698 +UV Count: 3 + UV + UV + UV +Face 6699 +UV Count: 3 + UV + UV + UV +Face 6700 +UV Count: 3 + UV + UV + UV +Face 6701 +UV Count: 3 + UV + UV + UV +Face 6702 +UV Count: 3 + UV + UV + UV +Face 6703 +UV Count: 3 + UV + UV + UV +Face 6704 +UV Count: 3 + UV + UV + UV +Face 6705 +UV Count: 3 + UV + UV + UV +Face 6706 +UV Count: 3 + UV + UV + UV +Face 6707 +UV Count: 3 + UV + UV + UV +Face 6708 +UV Count: 3 + UV + UV + UV +Face 6709 +UV Count: 3 + UV + UV + UV +Face 6710 +UV Count: 3 + UV + UV + UV +Face 6711 +UV Count: 3 + UV + UV + UV +Face 6712 +UV Count: 3 + UV + UV + UV +Face 6713 +UV Count: 3 + UV + UV + UV +Face 6714 +UV Count: 3 + UV + UV + UV +Face 6715 +UV Count: 3 + UV + UV + UV +Face 6716 +UV Count: 3 + UV + UV + UV +Face 6717 +UV Count: 3 + UV + UV + UV +Face 6718 +UV Count: 3 + UV + UV + UV +Face 6719 +UV Count: 3 + UV + UV + UV +Face 6720 +UV Count: 3 + UV + UV + UV +Face 6721 +UV Count: 3 + UV + UV + UV +Face 6722 +UV Count: 3 + UV + UV + UV +Face 6723 +UV Count: 3 + UV + UV + UV +Face 6724 +UV Count: 3 + UV + UV + UV +Face 6725 +UV Count: 3 + UV + UV + UV +Face 6726 +UV Count: 3 + UV + UV + UV +Face 6727 +UV Count: 3 + UV + UV + UV +Face 6728 +UV Count: 3 + UV + UV + UV +Face 6729 +UV Count: 3 + UV + UV + UV +Face 6730 +UV Count: 3 + UV + UV + UV +Face 6731 +UV Count: 3 + UV + UV + UV +Face 6732 +UV Count: 3 + UV + UV + UV +Face 6733 +UV Count: 3 + UV + UV + UV +Face 6734 +UV Count: 3 + UV + UV + UV +Face 6735 +UV Count: 3 + UV + UV + UV +Face 6736 +UV Count: 3 + UV + UV + UV +Face 6737 +UV Count: 3 + UV + UV + UV +Face 6738 +UV Count: 3 + UV + UV + UV +Face 6739 +UV Count: 3 + UV + UV + UV +Face 6740 +UV Count: 3 + UV + UV + UV +Face 6741 +UV Count: 3 + UV + UV + UV +Face 6742 +UV Count: 3 + UV + UV + UV +Face 6743 +UV Count: 3 + UV + UV + UV +Face 6744 +UV Count: 3 + UV + UV + UV +Face 6745 +UV Count: 3 + UV + UV + UV +Face 6746 +UV Count: 3 + UV + UV + UV +Face 6747 +UV Count: 3 + UV + UV + UV +Face 6748 +UV Count: 3 + UV + UV + UV +Face 6749 +UV Count: 3 + UV + UV + UV +Face 6750 +UV Count: 3 + UV + UV + UV +Face 6751 +UV Count: 3 + UV + UV + UV +Face 6752 +UV Count: 3 + UV + UV + UV +Face 6753 +UV Count: 3 + UV + UV + UV +Face 6754 +UV Count: 3 + UV + UV + UV +Face 6755 +UV Count: 3 + UV + UV + UV +Face 6756 +UV Count: 3 + UV + UV + UV +Face 6757 +UV Count: 3 + UV + UV + UV +Face 6758 +UV Count: 3 + UV + UV + UV +Face 6759 +UV Count: 3 + UV + UV + UV +Face 6760 +UV Count: 3 + UV + UV + UV +Face 6761 +UV Count: 3 + UV + UV + UV +Face 6762 +UV Count: 3 + UV + UV + UV +Face 6763 +UV Count: 3 + UV + UV + UV +Face 6764 +UV Count: 3 + UV + UV + UV +Face 6765 +UV Count: 3 + UV + UV + UV +Face 6766 +UV Count: 3 + UV + UV + UV +Face 6767 +UV Count: 3 + UV + UV + UV +Face 6768 +UV Count: 3 + UV + UV + UV +Face 6769 +UV Count: 3 + UV + UV + UV +Face 6770 +UV Count: 3 + UV + UV + UV +Face 6771 +UV Count: 3 + UV + UV + UV +Face 6772 +UV Count: 3 + UV + UV + UV +Face 6773 +UV Count: 3 + UV + UV + UV +Face 6774 +UV Count: 3 + UV + UV + UV +Face 6775 +UV Count: 3 + UV + UV + UV +Face 6776 +UV Count: 3 + UV + UV + UV +Face 6777 +UV Count: 3 + UV + UV + UV +Face 6778 +UV Count: 3 + UV + UV + UV +Face 6779 +UV Count: 3 + UV + UV + UV +Face 6780 +UV Count: 3 + UV + UV + UV +Face 6781 +UV Count: 3 + UV + UV + UV +Face 6782 +UV Count: 3 + UV + UV + UV +Face 6783 +UV Count: 3 + UV + UV + UV +Face 6784 +UV Count: 3 + UV + UV + UV +Face 6785 +UV Count: 3 + UV + UV + UV +Face 6786 +UV Count: 3 + UV + UV + UV +Face 6787 +UV Count: 3 + UV + UV + UV +Face 6788 +UV Count: 3 + UV + UV + UV +Face 6789 +UV Count: 3 + UV + UV + UV +Face 6790 +UV Count: 3 + UV + UV + UV +Face 6791 +UV Count: 3 + UV + UV + UV +Face 6792 +UV Count: 3 + UV + UV + UV +Face 6793 +UV Count: 3 + UV + UV + UV +Face 6794 +UV Count: 3 + UV + UV + UV +Face 6795 +UV Count: 3 + UV + UV + UV +Face 6796 +UV Count: 3 + UV + UV + UV +Face 6797 +UV Count: 3 + UV + UV + UV +Face 6798 +UV Count: 3 + UV + UV + UV +Face 6799 +UV Count: 3 + UV + UV + UV +Face 6800 +UV Count: 3 + UV + UV + UV +Face 6801 +UV Count: 3 + UV + UV + UV +Face 6802 +UV Count: 3 + UV + UV + UV +Face 6803 +UV Count: 3 + UV + UV + UV +Face 6804 +UV Count: 3 + UV + UV + UV +Face 6805 +UV Count: 3 + UV + UV + UV +Face 6806 +UV Count: 3 + UV + UV + UV +Face 6807 +UV Count: 3 + UV + UV + UV +Face 6808 +UV Count: 3 + UV + UV + UV +Face 6809 +UV Count: 3 + UV + UV + UV +Face 6810 +UV Count: 3 + UV + UV + UV +Face 6811 +UV Count: 3 + UV + UV + UV +Face 6812 +UV Count: 3 + UV + UV + UV +Face 6813 +UV Count: 3 + UV + UV + UV +Face 6814 +UV Count: 3 + UV + UV + UV +Face 6815 +UV Count: 3 + UV + UV + UV +Face 6816 +UV Count: 3 + UV + UV + UV +Face 6817 +UV Count: 3 + UV + UV + UV +Face 6818 +UV Count: 3 + UV + UV + UV +Face 6819 +UV Count: 3 + UV + UV + UV +Face 6820 +UV Count: 3 + UV + UV + UV +Face 6821 +UV Count: 3 + UV + UV + UV +Face 6822 +UV Count: 3 + UV + UV + UV +Face 6823 +UV Count: 3 + UV + UV + UV +Face 6824 +UV Count: 3 + UV + UV + UV +Face 6825 +UV Count: 3 + UV + UV + UV +Face 6826 +UV Count: 3 + UV + UV + UV +Face 6827 +UV Count: 3 + UV + UV + UV +Face 6828 +UV Count: 3 + UV + UV + UV +Face 6829 +UV Count: 3 + UV + UV + UV +Face 6830 +UV Count: 3 + UV + UV + UV +Face 6831 +UV Count: 3 + UV + UV + UV +Face 6832 +UV Count: 3 + UV + UV + UV +Face 6833 +UV Count: 3 + UV + UV + UV +Face 6834 +UV Count: 3 + UV + UV + UV +Face 6835 +UV Count: 3 + UV + UV + UV +Face 6836 +UV Count: 3 + UV + UV + UV +Face 6837 +UV Count: 3 + UV + UV + UV +Face 6838 +UV Count: 3 + UV + UV + UV +Face 6839 +UV Count: 3 + UV + UV + UV +Face 6840 +UV Count: 3 + UV + UV + UV +Face 6841 +UV Count: 3 + UV + UV + UV +Face 6842 +UV Count: 3 + UV + UV + UV +Face 6843 +UV Count: 3 + UV + UV + UV +Face 6844 +UV Count: 3 + UV + UV + UV +Face 6845 +UV Count: 3 + UV + UV + UV +Face 6846 +UV Count: 3 + UV + UV + UV +Face 6847 +UV Count: 3 + UV + UV + UV +Face 6848 +UV Count: 3 + UV + UV + UV +Face 6849 +UV Count: 3 + UV + UV + UV +Face 6850 +UV Count: 3 + UV + UV + UV +Face 6851 +UV Count: 3 + UV + UV + UV +Face 6852 +UV Count: 3 + UV + UV + UV +Face 6853 +UV Count: 3 + UV + UV + UV +Face 6854 +UV Count: 3 + UV + UV + UV +Face 6855 +UV Count: 3 + UV + UV + UV +Face 6856 +UV Count: 3 + UV + UV + UV +Face 6857 +UV Count: 3 + UV + UV + UV +Face 6858 +UV Count: 3 + UV + UV + UV +Face 6859 +UV Count: 3 + UV + UV + UV +Face 6860 +UV Count: 3 + UV + UV + UV +Face 6861 +UV Count: 3 + UV + UV + UV +Face 6862 +UV Count: 3 + UV + UV + UV +Face 6863 +UV Count: 3 + UV + UV + UV +Face 6864 +UV Count: 3 + UV + UV + UV +Face 6865 +UV Count: 3 + UV + UV + UV +Face 6866 +UV Count: 3 + UV + UV + UV +Face 6867 +UV Count: 3 + UV + UV + UV +Face 6868 +UV Count: 3 + UV + UV + UV +Face 6869 +UV Count: 3 + UV + UV + UV +Face 6870 +UV Count: 3 + UV + UV + UV +Face 6871 +UV Count: 3 + UV + UV + UV +Face 6872 +UV Count: 3 + UV + UV + UV +Face 6873 +UV Count: 3 + UV + UV + UV +Face 6874 +UV Count: 3 + UV + UV + UV +Face 6875 +UV Count: 3 + UV + UV + UV +Face 6876 +UV Count: 3 + UV + UV + UV +Face 6877 +UV Count: 3 + UV + UV + UV +Face 6878 +UV Count: 3 + UV + UV + UV +Face 6879 +UV Count: 3 + UV + UV + UV +Face 6880 +UV Count: 3 + UV + UV + UV +Face 6881 +UV Count: 3 + UV + UV + UV +Face 6882 +UV Count: 3 + UV + UV + UV +Face 6883 +UV Count: 3 + UV + UV + UV +Face 6884 +UV Count: 3 + UV + UV + UV +Face 6885 +UV Count: 3 + UV + UV + UV +Face 6886 +UV Count: 3 + UV + UV + UV +Face 6887 +UV Count: 3 + UV + UV + UV +Face 6888 +UV Count: 3 + UV + UV + UV +Face 6889 +UV Count: 3 + UV + UV + UV +Face 6890 +UV Count: 3 + UV + UV + UV +Face 6891 +UV Count: 3 + UV + UV + UV +Face 6892 +UV Count: 3 + UV + UV + UV +Face 6893 +UV Count: 3 + UV + UV + UV +Face 6894 +UV Count: 3 + UV + UV + UV +Face 6895 +UV Count: 3 + UV + UV + UV +Face 6896 +UV Count: 3 + UV + UV + UV +Face 6897 +UV Count: 3 + UV + UV + UV +Face 6898 +UV Count: 3 + UV + UV + UV +Face 6899 +UV Count: 3 + UV + UV + UV +Face 6900 +UV Count: 3 + UV + UV + UV +Face 6901 +UV Count: 3 + UV + UV + UV +Face 6902 +UV Count: 3 + UV + UV + UV +Face 6903 +UV Count: 3 + UV + UV + UV +Face 6904 +UV Count: 3 + UV + UV + UV +Face 6905 +UV Count: 3 + UV + UV + UV +Face 6906 +UV Count: 3 + UV + UV + UV +Face 6907 +UV Count: 3 + UV + UV + UV +Face 6908 +UV Count: 3 + UV + UV + UV +Face 6909 +UV Count: 3 + UV + UV + UV +Face 6910 +UV Count: 3 + UV + UV + UV +Face 6911 +UV Count: 3 + UV + UV + UV +Face 6912 +UV Count: 3 + UV + UV + UV +Face 6913 +UV Count: 3 + UV + UV + UV +Face 6914 +UV Count: 3 + UV + UV + UV +Face 6915 +UV Count: 3 + UV + UV + UV +Face 6916 +UV Count: 3 + UV + UV + UV +Face 6917 +UV Count: 3 + UV + UV + UV +Face 6918 +UV Count: 3 + UV + UV + UV +Face 6919 +UV Count: 3 + UV + UV + UV +Face 6920 +UV Count: 3 + UV + UV + UV +Face 6921 +UV Count: 3 + UV + UV + UV +Face 6922 +UV Count: 3 + UV + UV + UV +Face 6923 +UV Count: 3 + UV + UV + UV +Face 6924 +UV Count: 3 + UV + UV + UV +Face 6925 +UV Count: 3 + UV + UV + UV +Face 6926 +UV Count: 3 + UV + UV + UV +Face 6927 +UV Count: 3 + UV + UV + UV +Face 6928 +UV Count: 3 + UV + UV + UV +Face 6929 +UV Count: 3 + UV + UV + UV +Face 6930 +UV Count: 3 + UV + UV + UV +Face 6931 +UV Count: 3 + UV + UV + UV +Face 6932 +UV Count: 3 + UV + UV + UV +Face 6933 +UV Count: 3 + UV + UV + UV +Face 6934 +UV Count: 3 + UV + UV + UV +Face 6935 +UV Count: 3 + UV + UV + UV +Face 6936 +UV Count: 3 + UV + UV + UV +Face 6937 +UV Count: 3 + UV + UV + UV +Face 6938 +UV Count: 3 + UV + UV + UV +Face 6939 +UV Count: 3 + UV + UV + UV +Face 6940 +UV Count: 3 + UV + UV + UV +Face 6941 +UV Count: 3 + UV + UV + UV +Face 6942 +UV Count: 3 + UV + UV + UV +Face 6943 +UV Count: 3 + UV + UV + UV +Face 6944 +UV Count: 3 + UV + UV + UV +Face 6945 +UV Count: 3 + UV + UV + UV +Face 6946 +UV Count: 3 + UV + UV + UV +Face 6947 +UV Count: 3 + UV + UV + UV +Face 6948 +UV Count: 3 + UV + UV + UV +Face 6949 +UV Count: 3 + UV + UV + UV +Face 6950 +UV Count: 3 + UV + UV + UV +Face 6951 +UV Count: 3 + UV + UV + UV +Face 6952 +UV Count: 3 + UV + UV + UV +Face 6953 +UV Count: 3 + UV + UV + UV +Face 6954 +UV Count: 3 + UV + UV + UV +Face 6955 +UV Count: 3 + UV + UV + UV +Face 6956 +UV Count: 3 + UV + UV + UV +Face 6957 +UV Count: 3 + UV + UV + UV +Face 6958 +UV Count: 3 + UV + UV + UV +Face 6959 +UV Count: 3 + UV + UV + UV +Face 6960 +UV Count: 3 + UV + UV + UV +Face 6961 +UV Count: 3 + UV + UV + UV +Face 6962 +UV Count: 3 + UV + UV + UV +Face 6963 +UV Count: 3 + UV + UV + UV +Face 6964 +UV Count: 3 + UV + UV + UV +Face 6965 +UV Count: 3 + UV + UV + UV +Face 6966 +UV Count: 3 + UV + UV + UV +Face 6967 +UV Count: 3 + UV + UV + UV +Face 6968 +UV Count: 3 + UV + UV + UV +Face 6969 +UV Count: 3 + UV + UV + UV +Face 6970 +UV Count: 3 + UV + UV + UV +Face 6971 +UV Count: 3 + UV + UV + UV +Face 6972 +UV Count: 3 + UV + UV + UV +Face 6973 +UV Count: 3 + UV + UV + UV +Face 6974 +UV Count: 3 + UV + UV + UV +Face 6975 +UV Count: 3 + UV + UV + UV +Face 6976 +UV Count: 3 + UV + UV + UV +Face 6977 +UV Count: 3 + UV + UV + UV +Face 6978 +UV Count: 3 + UV + UV + UV +Face 6979 +UV Count: 3 + UV + UV + UV +Face 6980 +UV Count: 3 + UV + UV + UV +Face 6981 +UV Count: 3 + UV + UV + UV +Face 6982 +UV Count: 3 + UV + UV + UV +Face 6983 +UV Count: 3 + UV + UV + UV +Face 6984 +UV Count: 3 + UV + UV + UV +Face 6985 +UV Count: 3 + UV + UV + UV +Face 6986 +UV Count: 3 + UV + UV + UV +Face 6987 +UV Count: 3 + UV + UV + UV +Face 6988 +UV Count: 3 + UV + UV + UV +Face 6989 +UV Count: 3 + UV + UV + UV +Face 6990 +UV Count: 3 + UV + UV + UV +Face 6991 +UV Count: 3 + UV + UV + UV +Face 6992 +UV Count: 3 + UV + UV + UV +Face 6993 +UV Count: 3 + UV + UV + UV +Face 6994 +UV Count: 3 + UV + UV + UV +Face 6995 +UV Count: 3 + UV + UV + UV +Face 6996 +UV Count: 3 + UV + UV + UV +Face 6997 +UV Count: 3 + UV + UV + UV +Face 6998 +UV Count: 3 + UV + UV + UV +Face 6999 +UV Count: 3 + UV + UV + UV +Face 7000 +UV Count: 3 + UV + UV + UV +Face 7001 +UV Count: 3 + UV + UV + UV +Face 7002 +UV Count: 3 + UV + UV + UV +Face 7003 +UV Count: 3 + UV + UV + UV +Face 7004 +UV Count: 3 + UV + UV + UV +Face 7005 +UV Count: 3 + UV + UV + UV +Face 7006 +UV Count: 3 + UV + UV + UV +Face 7007 +UV Count: 3 + UV + UV + UV +Face 7008 +UV Count: 3 + UV + UV + UV +Face 7009 +UV Count: 3 + UV + UV + UV +Face 7010 +UV Count: 3 + UV + UV + UV +Face 7011 +UV Count: 3 + UV + UV + UV +Face 7012 +UV Count: 3 + UV + UV + UV +Face 7013 +UV Count: 3 + UV + UV + UV +Face 7014 +UV Count: 3 + UV + UV + UV +Face 7015 +UV Count: 3 + UV + UV + UV +Face 7016 +UV Count: 3 + UV + UV + UV +Face 7017 +UV Count: 3 + UV + UV + UV +Face 7018 +UV Count: 3 + UV + UV + UV +Face 7019 +UV Count: 3 + UV + UV + UV +Face 7020 +UV Count: 3 + UV + UV + UV +Face 7021 +UV Count: 3 + UV + UV + UV +Face 7022 +UV Count: 3 + UV + UV + UV +Face 7023 +UV Count: 3 + UV + UV + UV +Face 7024 +UV Count: 3 + UV + UV + UV +Face 7025 +UV Count: 3 + UV + UV + UV +Face 7026 +UV Count: 3 + UV + UV + UV +Face 7027 +UV Count: 3 + UV + UV + UV +Face 7028 +UV Count: 3 + UV + UV + UV +Face 7029 +UV Count: 3 + UV + UV + UV +Face 7030 +UV Count: 3 + UV + UV + UV +Face 7031 +UV Count: 3 + UV + UV + UV +Face 7032 +UV Count: 3 + UV + UV + UV +Face 7033 +UV Count: 3 + UV + UV + UV +Face 7034 +UV Count: 3 + UV + UV + UV +Face 7035 +UV Count: 3 + UV + UV + UV +Face 7036 +UV Count: 3 + UV + UV + UV +Face 7037 +UV Count: 3 + UV + UV + UV +Face 7038 +UV Count: 3 + UV + UV + UV +Face 7039 +UV Count: 3 + UV + UV + UV +Face 7040 +UV Count: 3 + UV + UV + UV +Face 7041 +UV Count: 3 + UV + UV + UV +Face 7042 +UV Count: 3 + UV + UV + UV +Face 7043 +UV Count: 3 + UV + UV + UV +Face 7044 +UV Count: 3 + UV + UV + UV +Face 7045 +UV Count: 3 + UV + UV + UV +Face 7046 +UV Count: 3 + UV + UV + UV +Face 7047 +UV Count: 3 + UV + UV + UV +Face 7048 +UV Count: 3 + UV + UV + UV +Face 7049 +UV Count: 3 + UV + UV + UV +Face 7050 +UV Count: 3 + UV + UV + UV +Face 7051 +UV Count: 3 + UV + UV + UV +Face 7052 +UV Count: 3 + UV + UV + UV +Face 7053 +UV Count: 3 + UV + UV + UV +Face 7054 +UV Count: 3 + UV + UV + UV +Face 7055 +UV Count: 3 + UV + UV + UV +Face 7056 +UV Count: 3 + UV + UV + UV +Face 7057 +UV Count: 3 + UV + UV + UV +Face 7058 +UV Count: 3 + UV + UV + UV +Face 7059 +UV Count: 3 + UV + UV + UV +Face 7060 +UV Count: 3 + UV + UV + UV +Face 7061 +UV Count: 3 + UV + UV + UV +Face 7062 +UV Count: 3 + UV + UV + UV +Face 7063 +UV Count: 3 + UV + UV + UV +Face 7064 +UV Count: 3 + UV + UV + UV +Face 7065 +UV Count: 3 + UV + UV + UV +Face 7066 +UV Count: 3 + UV + UV + UV +Face 7067 +UV Count: 3 + UV + UV + UV +Face 7068 +UV Count: 3 + UV + UV + UV +Face 7069 +UV Count: 3 + UV + UV + UV +Face 7070 +UV Count: 3 + UV + UV + UV +Face 7071 +UV Count: 3 + UV + UV + UV +Face 7072 +UV Count: 3 + UV + UV + UV +Face 7073 +UV Count: 3 + UV + UV + UV +Face 7074 +UV Count: 3 + UV + UV + UV +Face 7075 +UV Count: 3 + UV + UV + UV +Face 7076 +UV Count: 3 + UV + UV + UV +Face 7077 +UV Count: 3 + UV + UV + UV +Face 7078 +UV Count: 3 + UV + UV + UV +Face 7079 +UV Count: 3 + UV + UV + UV +Face 7080 +UV Count: 3 + UV + UV + UV +Face 7081 +UV Count: 3 + UV + UV + UV +Face 7082 +UV Count: 3 + UV + UV + UV +Face 7083 +UV Count: 3 + UV + UV + UV +Face 7084 +UV Count: 3 + UV + UV + UV +Face 7085 +UV Count: 3 + UV + UV + UV +Face 7086 +UV Count: 3 + UV + UV + UV +Face 7087 +UV Count: 3 + UV + UV + UV +Face 7088 +UV Count: 3 + UV + UV + UV +Face 7089 +UV Count: 3 + UV + UV + UV +Face 7090 +UV Count: 3 + UV + UV + UV +Face 7091 +UV Count: 3 + UV + UV + UV +Face 7092 +UV Count: 3 + UV + UV + UV +Face 7093 +UV Count: 3 + UV + UV + UV +Face 7094 +UV Count: 3 + UV + UV + UV +Face 7095 +UV Count: 3 + UV + UV + UV +Face 7096 +UV Count: 3 + UV + UV + UV +Face 7097 +UV Count: 3 + UV + UV + UV +Face 7098 +UV Count: 3 + UV + UV + UV +Face 7099 +UV Count: 3 + UV + UV + UV +Face 7100 +UV Count: 3 + UV + UV + UV +Face 7101 +UV Count: 3 + UV + UV + UV +Face 7102 +UV Count: 3 + UV + UV + UV +Face 7103 +UV Count: 3 + UV + UV + UV +Face 7104 +UV Count: 3 + UV + UV + UV +Face 7105 +UV Count: 3 + UV + UV + UV +Face 7106 +UV Count: 3 + UV + UV + UV +Face 7107 +UV Count: 3 + UV + UV + UV +Face 7108 +UV Count: 3 + UV + UV + UV +Face 7109 +UV Count: 3 + UV + UV + UV +Face 7110 +UV Count: 3 + UV + UV + UV +Face 7111 +UV Count: 3 + UV + UV + UV +Face 7112 +UV Count: 3 + UV + UV + UV +Face 7113 +UV Count: 3 + UV + UV + UV +Face 7114 +UV Count: 3 + UV + UV + UV +Face 7115 +UV Count: 3 + UV + UV + UV +Face 7116 +UV Count: 3 + UV + UV + UV +Face 7117 +UV Count: 3 + UV + UV + UV +Face 7118 +UV Count: 3 + UV + UV + UV +Face 7119 +UV Count: 3 + UV + UV + UV +Face 7120 +UV Count: 3 + UV + UV + UV +Face 7121 +UV Count: 3 + UV + UV + UV +Face 7122 +UV Count: 3 + UV + UV + UV +Face 7123 +UV Count: 3 + UV + UV + UV +Face 7124 +UV Count: 3 + UV + UV + UV +Face 7125 +UV Count: 3 + UV + UV + UV +Face 7126 +UV Count: 3 + UV + UV + UV +Face 7127 +UV Count: 3 + UV + UV + UV +Face 7128 +UV Count: 3 + UV + UV + UV +Face 7129 +UV Count: 3 + UV + UV + UV +Face 7130 +UV Count: 3 + UV + UV + UV +Face 7131 +UV Count: 3 + UV + UV + UV +Face 7132 +UV Count: 3 + UV + UV + UV +Face 7133 +UV Count: 3 + UV + UV + UV +Face 7134 +UV Count: 3 + UV + UV + UV +Face 7135 +UV Count: 3 + UV + UV + UV +Face 7136 +UV Count: 3 + UV + UV + UV +Face 7137 +UV Count: 3 + UV + UV + UV +Face 7138 +UV Count: 3 + UV + UV + UV +Face 7139 +UV Count: 3 + UV + UV + UV +Face 7140 +UV Count: 3 + UV + UV + UV +Face 7141 +UV Count: 3 + UV + UV + UV +Face 7142 +UV Count: 3 + UV + UV + UV +Face 7143 +UV Count: 3 + UV + UV + UV +Face 7144 +UV Count: 3 + UV + UV + UV +Face 7145 +UV Count: 3 + UV + UV + UV +Face 7146 +UV Count: 3 + UV + UV + UV +Face 7147 +UV Count: 3 + UV + UV + UV +Face 7148 +UV Count: 3 + UV + UV + UV +Face 7149 +UV Count: 3 + UV + UV + UV +Face 7150 +UV Count: 3 + UV + UV + UV +Face 7151 +UV Count: 3 + UV + UV + UV +Face 7152 +UV Count: 3 + UV + UV + UV +Face 7153 +UV Count: 3 + UV + UV + UV +Face 7154 +UV Count: 3 + UV + UV + UV +Face 7155 +UV Count: 3 + UV + UV + UV +Face 7156 +UV Count: 3 + UV + UV + UV +Face 7157 +UV Count: 3 + UV + UV + UV +Face 7158 +UV Count: 3 + UV + UV + UV +Face 7159 +UV Count: 3 + UV + UV + UV +Face 7160 +UV Count: 3 + UV + UV + UV +Face 7161 +UV Count: 3 + UV + UV + UV +Face 7162 +UV Count: 3 + UV + UV + UV +Face 7163 +UV Count: 3 + UV + UV + UV +Face 7164 +UV Count: 3 + UV + UV + UV +Face 7165 +UV Count: 3 + UV + UV + UV +Face 7166 +UV Count: 3 + UV + UV + UV +Face 7167 +UV Count: 3 + UV + UV + UV +Face 7168 +UV Count: 3 + UV + UV + UV +Face 7169 +UV Count: 3 + UV + UV + UV +Face 7170 +UV Count: 3 + UV + UV + UV +Face 7171 +UV Count: 3 + UV + UV + UV +Face 7172 +UV Count: 3 + UV + UV + UV +Face 7173 +UV Count: 3 + UV + UV + UV +Face 7174 +UV Count: 3 + UV + UV + UV +Face 7175 +UV Count: 3 + UV + UV + UV +Face 7176 +UV Count: 3 + UV + UV + UV +Face 7177 +UV Count: 3 + UV + UV + UV +Face 7178 +UV Count: 3 + UV + UV + UV +Face 7179 +UV Count: 3 + UV + UV + UV +Face 7180 +UV Count: 3 + UV + UV + UV +Face 7181 +UV Count: 3 + UV + UV + UV +Face 7182 +UV Count: 3 + UV + UV + UV +Face 7183 +UV Count: 3 + UV + UV + UV +Face 7184 +UV Count: 3 + UV + UV + UV +Face 7185 +UV Count: 3 + UV + UV + UV +Face 7186 +UV Count: 3 + UV + UV + UV +Face 7187 +UV Count: 3 + UV + UV + UV +Face 7188 +UV Count: 3 + UV + UV + UV +Face 7189 +UV Count: 3 + UV + UV + UV +Face 7190 +UV Count: 3 + UV + UV + UV +Face 7191 +UV Count: 3 + UV + UV + UV +Face 7192 +UV Count: 3 + UV + UV + UV +Face 7193 +UV Count: 3 + UV + UV + UV +Face 7194 +UV Count: 3 + UV + UV + UV +Face 7195 +UV Count: 3 + UV + UV + UV +Face 7196 +UV Count: 3 + UV + UV + UV +Face 7197 +UV Count: 3 + UV + UV + UV +Face 7198 +UV Count: 3 + UV + UV + UV +Face 7199 +UV Count: 3 + UV + UV + UV +Face 7200 +UV Count: 3 + UV + UV + UV +Face 7201 +UV Count: 3 + UV + UV + UV +Face 7202 +UV Count: 3 + UV + UV + UV +Face 7203 +UV Count: 3 + UV + UV + UV +Face 7204 +UV Count: 3 + UV + UV + UV +Face 7205 +UV Count: 3 + UV + UV + UV +Face 7206 +UV Count: 3 + UV + UV + UV +Face 7207 +UV Count: 3 + UV + UV + UV +Face 7208 +UV Count: 3 + UV + UV + UV +Face 7209 +UV Count: 3 + UV + UV + UV +Face 7210 +UV Count: 3 + UV + UV + UV +Face 7211 +UV Count: 3 + UV + UV + UV +Face 7212 +UV Count: 3 + UV + UV + UV +Face 7213 +UV Count: 3 + UV + UV + UV +Face 7214 +UV Count: 3 + UV + UV + UV +Face 7215 +UV Count: 3 + UV + UV + UV +Face 7216 +UV Count: 3 + UV + UV + UV +Face 7217 +UV Count: 3 + UV + UV + UV +Face 7218 +UV Count: 3 + UV + UV + UV +Face 7219 +UV Count: 3 + UV + UV + UV +Face 7220 +UV Count: 3 + UV + UV + UV +Face 7221 +UV Count: 3 + UV + UV + UV +Face 7222 +UV Count: 3 + UV + UV + UV +Face 7223 +UV Count: 3 + UV + UV + UV +Face 7224 +UV Count: 3 + UV + UV + UV +Face 7225 +UV Count: 3 + UV + UV + UV +Face 7226 +UV Count: 3 + UV + UV + UV +Face 7227 +UV Count: 3 + UV + UV + UV +Face 7228 +UV Count: 3 + UV + UV + UV +Face 7229 +UV Count: 3 + UV + UV + UV +Face 7230 +UV Count: 3 + UV + UV + UV +Face 7231 +UV Count: 3 + UV + UV + UV +Face 7232 +UV Count: 3 + UV + UV + UV +Face 7233 +UV Count: 3 + UV + UV + UV +Face 7234 +UV Count: 3 + UV + UV + UV +Face 7235 +UV Count: 3 + UV + UV + UV +Face 7236 +UV Count: 3 + UV + UV + UV +Face 7237 +UV Count: 3 + UV + UV + UV +Face 7238 +UV Count: 3 + UV + UV + UV +Face 7239 +UV Count: 3 + UV + UV + UV +Face 7240 +UV Count: 3 + UV + UV + UV +Face 7241 +UV Count: 3 + UV + UV + UV +Face 7242 +UV Count: 3 + UV + UV + UV +Face 7243 +UV Count: 3 + UV + UV + UV +Face 7244 +UV Count: 3 + UV + UV + UV +Face 7245 +UV Count: 3 + UV + UV + UV +Face 7246 +UV Count: 3 + UV + UV + UV +Face 7247 +UV Count: 3 + UV + UV + UV +Face 7248 +UV Count: 3 + UV + UV + UV +Face 7249 +UV Count: 3 + UV + UV + UV +Face 7250 +UV Count: 3 + UV + UV + UV +Face 7251 +UV Count: 3 + UV + UV + UV +Face 7252 +UV Count: 3 + UV + UV + UV +Face 7253 +UV Count: 3 + UV + UV + UV +Face 7254 +UV Count: 3 + UV + UV + UV +Face 7255 +UV Count: 3 + UV + UV + UV +Face 7256 +UV Count: 3 + UV + UV + UV +Face 7257 +UV Count: 3 + UV + UV + UV +Face 7258 +UV Count: 3 + UV + UV + UV +Face 7259 +UV Count: 3 + UV + UV + UV +Face 7260 +UV Count: 3 + UV + UV + UV +Face 7261 +UV Count: 3 + UV + UV + UV +Face 7262 +UV Count: 3 + UV + UV + UV +Face 7263 +UV Count: 3 + UV + UV + UV +Face 7264 +UV Count: 3 + UV + UV + UV +Face 7265 +UV Count: 3 + UV + UV + UV +Face 7266 +UV Count: 3 + UV + UV + UV +Face 7267 +UV Count: 3 + UV + UV + UV +Face 7268 +UV Count: 3 + UV + UV + UV +Face 7269 +UV Count: 3 + UV + UV + UV +Face 7270 +UV Count: 3 + UV + UV + UV +Face 7271 +UV Count: 3 + UV + UV + UV +Face 7272 +UV Count: 3 + UV + UV + UV +Face 7273 +UV Count: 3 + UV + UV + UV +Face 7274 +UV Count: 3 + UV + UV + UV +Face 7275 +UV Count: 3 + UV + UV + UV +Face 7276 +UV Count: 3 + UV + UV + UV +Face 7277 +UV Count: 3 + UV + UV + UV +Face 7278 +UV Count: 3 + UV + UV + UV +Face 7279 +UV Count: 3 + UV + UV + UV +Face 7280 +UV Count: 3 + UV + UV + UV +Face 7281 +UV Count: 3 + UV + UV + UV +Face 7282 +UV Count: 3 + UV + UV + UV +Face 7283 +UV Count: 3 + UV + UV + UV +Face 7284 +UV Count: 3 + UV + UV + UV +Face 7285 +UV Count: 3 + UV + UV + UV +Face 7286 +UV Count: 3 + UV + UV + UV +Face 7287 +UV Count: 3 + UV + UV + UV +Face 7288 +UV Count: 3 + UV + UV + UV +Face 7289 +UV Count: 3 + UV + UV + UV +Face 7290 +UV Count: 3 + UV + UV + UV +Face 7291 +UV Count: 3 + UV + UV + UV +Face 7292 +UV Count: 3 + UV + UV + UV +Face 7293 +UV Count: 3 + UV + UV + UV +Face 7294 +UV Count: 3 + UV + UV + UV +Face 7295 +UV Count: 3 + UV + UV + UV +Face 7296 +UV Count: 3 + UV + UV + UV +Face 7297 +UV Count: 3 + UV + UV + UV +Face 7298 +UV Count: 3 + UV + UV + UV +Face 7299 +UV Count: 3 + UV + UV + UV +Face 7300 +UV Count: 3 + UV + UV + UV +Face 7301 +UV Count: 3 + UV + UV + UV +Face 7302 +UV Count: 3 + UV + UV + UV +Face 7303 +UV Count: 3 + UV + UV + UV +Face 7304 +UV Count: 3 + UV + UV + UV +Face 7305 +UV Count: 3 + UV + UV + UV +Face 7306 +UV Count: 3 + UV + UV + UV +Face 7307 +UV Count: 3 + UV + UV + UV +Face 7308 +UV Count: 3 + UV + UV + UV +Face 7309 +UV Count: 3 + UV + UV + UV +Face 7310 +UV Count: 3 + UV + UV + UV +Face 7311 +UV Count: 3 + UV + UV + UV +Face 7312 +UV Count: 3 + UV + UV + UV +Face 7313 +UV Count: 3 + UV + UV + UV +Face 7314 +UV Count: 3 + UV + UV + UV +Face 7315 +UV Count: 3 + UV + UV + UV +Face 7316 +UV Count: 3 + UV + UV + UV +Face 7317 +UV Count: 3 + UV + UV + UV +Face 7318 +UV Count: 3 + UV + UV + UV +Face 7319 +UV Count: 3 + UV + UV + UV +Face 7320 +UV Count: 3 + UV + UV + UV +Face 7321 +UV Count: 3 + UV + UV + UV +Face 7322 +UV Count: 3 + UV + UV + UV +Face 7323 +UV Count: 3 + UV + UV + UV +Face 7324 +UV Count: 3 + UV + UV + UV +Face 7325 +UV Count: 3 + UV + UV + UV +Face 7326 +UV Count: 3 + UV + UV + UV +Face 7327 +UV Count: 3 + UV + UV + UV +Face 7328 +UV Count: 3 + UV + UV + UV +Face 7329 +UV Count: 3 + UV + UV + UV +Face 7330 +UV Count: 3 + UV + UV + UV +Face 7331 +UV Count: 3 + UV + UV + UV +Face 7332 +UV Count: 3 + UV + UV + UV +Face 7333 +UV Count: 3 + UV + UV + UV +Face 7334 +UV Count: 3 + UV + UV + UV +Face 7335 +UV Count: 3 + UV + UV + UV +Face 7336 +UV Count: 3 + UV + UV + UV +Face 7337 +UV Count: 3 + UV + UV + UV +Face 7338 +UV Count: 3 + UV + UV + UV +Face 7339 +UV Count: 3 + UV + UV + UV +Face 7340 +UV Count: 3 + UV + UV + UV +Face 7341 +UV Count: 3 + UV + UV + UV +Face 7342 +UV Count: 3 + UV + UV + UV +Face 7343 +UV Count: 3 + UV + UV + UV +Face 7344 +UV Count: 3 + UV + UV + UV +Face 7345 +UV Count: 3 + UV + UV + UV +Face 7346 +UV Count: 3 + UV + UV + UV +Face 7347 +UV Count: 3 + UV + UV + UV +Face 7348 +UV Count: 3 + UV + UV + UV +Face 7349 +UV Count: 3 + UV + UV + UV +Face 7350 +UV Count: 3 + UV + UV + UV +Face 7351 +UV Count: 3 + UV + UV + UV +Face 7352 +UV Count: 3 + UV + UV + UV +Face 7353 +UV Count: 3 + UV + UV + UV +Face 7354 +UV Count: 3 + UV + UV + UV +Face 7355 +UV Count: 3 + UV + UV + UV +Face 7356 +UV Count: 3 + UV + UV + UV +Face 7357 +UV Count: 3 + UV + UV + UV +Face 7358 +UV Count: 3 + UV + UV + UV +Face 7359 +UV Count: 3 + UV + UV + UV +Face 7360 +UV Count: 3 + UV + UV + UV +Face 7361 +UV Count: 3 + UV + UV + UV +Face 7362 +UV Count: 3 + UV + UV + UV +Face 7363 +UV Count: 3 + UV + UV + UV +Face 7364 +UV Count: 3 + UV + UV + UV +Face 7365 +UV Count: 3 + UV + UV + UV +Face 7366 +UV Count: 3 + UV + UV + UV +Face 7367 +UV Count: 3 + UV + UV + UV +Face 7368 +UV Count: 3 + UV + UV + UV +Face 7369 +UV Count: 3 + UV + UV + UV +Face 7370 +UV Count: 3 + UV + UV + UV +Face 7371 +UV Count: 3 + UV + UV + UV +Face 7372 +UV Count: 3 + UV + UV + UV +Face 7373 +UV Count: 3 + UV + UV + UV +Face 7374 +UV Count: 3 + UV + UV + UV +Face 7375 +UV Count: 3 + UV + UV + UV +Face 7376 +UV Count: 3 + UV + UV + UV +Face 7377 +UV Count: 3 + UV + UV + UV +Face 7378 +UV Count: 3 + UV + UV + UV +Face 7379 +UV Count: 3 + UV + UV + UV +Face 7380 +UV Count: 3 + UV + UV + UV +Face 7381 +UV Count: 3 + UV + UV + UV +Face 7382 +UV Count: 3 + UV + UV + UV +Face 7383 +UV Count: 3 + UV + UV + UV +Face 7384 +UV Count: 3 + UV + UV + UV +Face 7385 +UV Count: 3 + UV + UV + UV +Face 7386 +UV Count: 3 + UV + UV + UV +Face 7387 +UV Count: 3 + UV + UV + UV +Face 7388 +UV Count: 3 + UV + UV + UV +Face 7389 +UV Count: 3 + UV + UV + UV +Face 7390 +UV Count: 3 + UV + UV + UV +Face 7391 +UV Count: 3 + UV + UV + UV +Face 7392 +UV Count: 3 + UV + UV + UV +Face 7393 +UV Count: 3 + UV + UV + UV +Face 7394 +UV Count: 3 + UV + UV + UV +Face 7395 +UV Count: 3 + UV + UV + UV +Face 7396 +UV Count: 3 + UV + UV + UV +Face 7397 +UV Count: 3 + UV + UV + UV +Face 7398 +UV Count: 3 + UV + UV + UV +Face 7399 +UV Count: 3 + UV + UV + UV +Face 7400 +UV Count: 3 + UV + UV + UV +Face 7401 +UV Count: 3 + UV + UV + UV +Face 7402 +UV Count: 3 + UV + UV + UV +Face 7403 +UV Count: 3 + UV + UV + UV +Face 7404 +UV Count: 3 + UV + UV + UV +Face 7405 +UV Count: 3 + UV + UV + UV +Face 7406 +UV Count: 3 + UV + UV + UV +Face 7407 +UV Count: 3 + UV + UV + UV +Face 7408 +UV Count: 3 + UV + UV + UV +Face 7409 +UV Count: 3 + UV + UV + UV +Face 7410 +UV Count: 3 + UV + UV + UV +Face 7411 +UV Count: 3 + UV + UV + UV +Face 7412 +UV Count: 3 + UV + UV + UV +Face 7413 +UV Count: 3 + UV + UV + UV +Face 7414 +UV Count: 3 + UV + UV + UV +Face 7415 +UV Count: 3 + UV + UV + UV +Face 7416 +UV Count: 3 + UV + UV + UV +Face 7417 +UV Count: 3 + UV + UV + UV +Face 7418 +UV Count: 3 + UV + UV + UV +Face 7419 +UV Count: 3 + UV + UV + UV +Face 7420 +UV Count: 3 + UV + UV + UV +Face 7421 +UV Count: 3 + UV + UV + UV +Face 7422 +UV Count: 3 + UV + UV + UV +Face 7423 +UV Count: 3 + UV + UV + UV +Face 7424 +UV Count: 3 + UV + UV + UV +Face 7425 +UV Count: 3 + UV + UV + UV +Face 7426 +UV Count: 3 + UV + UV + UV +Face 7427 +UV Count: 3 + UV + UV + UV +Face 7428 +UV Count: 3 + UV + UV + UV +Face 7429 +UV Count: 3 + UV + UV + UV +Face 7430 +UV Count: 3 + UV + UV + UV +Face 7431 +UV Count: 3 + UV + UV + UV +Face 7432 +UV Count: 3 + UV + UV + UV +Face 7433 +UV Count: 3 + UV + UV + UV +Face 7434 +UV Count: 3 + UV + UV + UV +Face 7435 +UV Count: 3 + UV + UV + UV +Face 7436 +UV Count: 3 + UV + UV + UV +Face 7437 +UV Count: 3 + UV + UV + UV +Face 7438 +UV Count: 3 + UV + UV + UV +Face 7439 +UV Count: 3 + UV + UV + UV +Face 7440 +UV Count: 3 + UV + UV + UV +Face 7441 +UV Count: 3 + UV + UV + UV +Face 7442 +UV Count: 3 + UV + UV + UV +Face 7443 +UV Count: 3 + UV + UV + UV +Face 7444 +UV Count: 3 + UV + UV + UV +Face 7445 +UV Count: 3 + UV + UV + UV +Face 7446 +UV Count: 3 + UV + UV + UV +Face 7447 +UV Count: 3 + UV + UV + UV +Face 7448 +UV Count: 3 + UV + UV + UV +Face 7449 +UV Count: 3 + UV + UV + UV +Face 7450 +UV Count: 3 + UV + UV + UV +Face 7451 +UV Count: 3 + UV + UV + UV +Face 7452 +UV Count: 3 + UV + UV + UV +Face 7453 +UV Count: 3 + UV + UV + UV +Face 7454 +UV Count: 3 + UV + UV + UV +Face 7455 +UV Count: 3 + UV + UV + UV +Face 7456 +UV Count: 3 + UV + UV + UV +Face 7457 +UV Count: 3 + UV + UV + UV +Face 7458 +UV Count: 3 + UV + UV + UV +Face 7459 +UV Count: 3 + UV + UV + UV +Face 7460 +UV Count: 3 + UV + UV + UV +Face 7461 +UV Count: 3 + UV + UV + UV +Face 7462 +UV Count: 3 + UV + UV + UV +Face 7463 +UV Count: 3 + UV + UV + UV +Face 7464 +UV Count: 3 + UV + UV + UV +Face 7465 +UV Count: 3 + UV + UV + UV +Face 7466 +UV Count: 3 + UV + UV + UV +Face 7467 +UV Count: 3 + UV + UV + UV +Face 7468 +UV Count: 3 + UV + UV + UV +Face 7469 +UV Count: 3 + UV + UV + UV +Face 7470 +UV Count: 3 + UV + UV + UV +Face 7471 +UV Count: 3 + UV + UV + UV +Face 7472 +UV Count: 3 + UV + UV + UV +Face 7473 +UV Count: 3 + UV + UV + UV +Face 7474 +UV Count: 3 + UV + UV + UV +Face 7475 +UV Count: 3 + UV + UV + UV +Face 7476 +UV Count: 3 + UV + UV + UV +Face 7477 +UV Count: 3 + UV + UV + UV +Face 7478 +UV Count: 3 + UV + UV + UV +Face 7479 +UV Count: 3 + UV + UV + UV +Face 7480 +UV Count: 3 + UV + UV + UV +Face 7481 +UV Count: 3 + UV + UV + UV +Face 7482 +UV Count: 3 + UV + UV + UV +Face 7483 +UV Count: 3 + UV + UV + UV +Face 7484 +UV Count: 3 + UV + UV + UV +Face 7485 +UV Count: 3 + UV + UV + UV +Face 7486 +UV Count: 3 + UV + UV + UV +Face 7487 +UV Count: 3 + UV + UV + UV +Face 7488 +UV Count: 3 + UV + UV + UV +Face 7489 +UV Count: 3 + UV + UV + UV +Face 7490 +UV Count: 3 + UV + UV + UV +Face 7491 +UV Count: 3 + UV + UV + UV +Face 7492 +UV Count: 3 + UV + UV + UV +Face 7493 +UV Count: 3 + UV + UV + UV +Face 7494 +UV Count: 3 + UV + UV + UV +Face 7495 +UV Count: 3 + UV + UV + UV +Face 7496 +UV Count: 3 + UV + UV + UV +Face 7497 +UV Count: 3 + UV + UV + UV +Face 7498 +UV Count: 3 + UV + UV + UV +Face 7499 +UV Count: 3 + UV + UV + UV +Face 7500 +UV Count: 3 + UV + UV + UV +Face 7501 +UV Count: 3 + UV + UV + UV +Face 7502 +UV Count: 3 + UV + UV + UV +Face 7503 +UV Count: 3 + UV + UV + UV +Face 7504 +UV Count: 3 + UV + UV + UV +Face 7505 +UV Count: 3 + UV + UV + UV +Face 7506 +UV Count: 3 + UV + UV + UV +Face 7507 +UV Count: 3 + UV + UV + UV +Face 7508 +UV Count: 3 + UV + UV + UV +Face 7509 +UV Count: 3 + UV + UV + UV +Face 7510 +UV Count: 3 + UV + UV + UV +Face 7511 +UV Count: 3 + UV + UV + UV +Face 7512 +UV Count: 3 + UV + UV + UV +Face 7513 +UV Count: 3 + UV + UV + UV +Face 7514 +UV Count: 3 + UV + UV + UV +Face 7515 +UV Count: 3 + UV + UV + UV +Face 7516 +UV Count: 3 + UV + UV + UV +Face 7517 +UV Count: 3 + UV + UV + UV +Face 7518 +UV Count: 3 + UV + UV + UV +Face 7519 +UV Count: 3 + UV + UV + UV +Face 7520 +UV Count: 3 + UV + UV + UV +Face 7521 +UV Count: 3 + UV + UV + UV +Face 7522 +UV Count: 3 + UV + UV + UV +Face 7523 +UV Count: 3 + UV + UV + UV +Face 7524 +UV Count: 3 + UV + UV + UV +Face 7525 +UV Count: 3 + UV + UV + UV +Face 7526 +UV Count: 3 + UV + UV + UV +Face 7527 +UV Count: 3 + UV + UV + UV +Face 7528 +UV Count: 3 + UV + UV + UV +Face 7529 +UV Count: 3 + UV + UV + UV +Face 7530 +UV Count: 3 + UV + UV + UV +Face 7531 +UV Count: 3 + UV + UV + UV +Face 7532 +UV Count: 3 + UV + UV + UV +Face 7533 +UV Count: 3 + UV + UV + UV +Face 7534 +UV Count: 3 + UV + UV + UV +Face 7535 +UV Count: 3 + UV + UV + UV +Face 7536 +UV Count: 3 + UV + UV + UV +Face 7537 +UV Count: 3 + UV + UV + UV +Face 7538 +UV Count: 3 + UV + UV + UV +Face 7539 +UV Count: 3 + UV + UV + UV +Face 7540 +UV Count: 3 + UV + UV + UV +Face 7541 +UV Count: 3 + UV + UV + UV +Face 7542 +UV Count: 3 + UV + UV + UV +Face 7543 +UV Count: 3 + UV + UV + UV +Face 7544 +UV Count: 3 + UV + UV + UV +Face 7545 +UV Count: 3 + UV + UV + UV +Face 7546 +UV Count: 3 + UV + UV + UV +Face 7547 +UV Count: 3 + UV + UV + UV +Face 7548 +UV Count: 3 + UV + UV + UV +Face 7549 +UV Count: 3 + UV + UV + UV +Face 7550 +UV Count: 3 + UV + UV + UV +Face 7551 +UV Count: 3 + UV + UV + UV +Face 7552 +UV Count: 3 + UV + UV + UV +Face 7553 +UV Count: 3 + UV + UV + UV +Face 7554 +UV Count: 3 + UV + UV + UV +Face 7555 +UV Count: 3 + UV + UV + UV +Face 7556 +UV Count: 3 + UV + UV + UV +Face 7557 +UV Count: 3 + UV + UV + UV +Face 7558 +UV Count: 3 + UV + UV + UV +Face 7559 +UV Count: 3 + UV + UV + UV +Face 7560 +UV Count: 3 + UV + UV + UV +Face 7561 +UV Count: 3 + UV + UV + UV +Face 7562 +UV Count: 3 + UV + UV + UV +Face 7563 +UV Count: 3 + UV + UV + UV +Face 7564 +UV Count: 3 + UV + UV + UV +Face 7565 +UV Count: 3 + UV + UV + UV +Face 7566 +UV Count: 3 + UV + UV + UV +Face 7567 +UV Count: 3 + UV + UV + UV +Face 7568 +UV Count: 3 + UV + UV + UV +Face 7569 +UV Count: 3 + UV + UV + UV +Face 7570 +UV Count: 3 + UV + UV + UV +Face 7571 +UV Count: 3 + UV + UV + UV +Face 7572 +UV Count: 3 + UV + UV + UV +Face 7573 +UV Count: 3 + UV + UV + UV +Face 7574 +UV Count: 3 + UV + UV + UV +Face 7575 +UV Count: 3 + UV + UV + UV +Face 7576 +UV Count: 3 + UV + UV + UV +Face 7577 +UV Count: 3 + UV + UV + UV +Face 7578 +UV Count: 3 + UV + UV + UV +Face 7579 +UV Count: 3 + UV + UV + UV +Face 7580 +UV Count: 3 + UV + UV + UV +Face 7581 +UV Count: 3 + UV + UV + UV +Face 7582 +UV Count: 3 + UV + UV + UV +Face 7583 +UV Count: 3 + UV + UV + UV +Face 7584 +UV Count: 3 + UV + UV + UV +Face 7585 +UV Count: 3 + UV + UV + UV +Face 7586 +UV Count: 3 + UV + UV + UV +Face 7587 +UV Count: 3 + UV + UV + UV +Face 7588 +UV Count: 3 + UV + UV + UV +Face 7589 +UV Count: 3 + UV + UV + UV +Face 7590 +UV Count: 3 + UV + UV + UV +Face 7591 +UV Count: 3 + UV + UV + UV +Face 7592 +UV Count: 3 + UV + UV + UV +Face 7593 +UV Count: 3 + UV + UV + UV +Face 7594 +UV Count: 3 + UV + UV + UV +Face 7595 +UV Count: 3 + UV + UV + UV +Face 7596 +UV Count: 3 + UV + UV + UV +Face 7597 +UV Count: 3 + UV + UV + UV +Face 7598 +UV Count: 3 + UV + UV + UV +Face 7599 +UV Count: 3 + UV + UV + UV +Face 7600 +UV Count: 3 + UV + UV + UV +Face 7601 +UV Count: 3 + UV + UV + UV +Face 7602 +UV Count: 3 + UV + UV + UV +Face 7603 +UV Count: 3 + UV + UV + UV +Face 7604 +UV Count: 3 + UV + UV + UV +Face 7605 +UV Count: 3 + UV + UV + UV +Face 7606 +UV Count: 3 + UV + UV + UV +Face 7607 +UV Count: 3 + UV + UV + UV +Face 7608 +UV Count: 3 + UV + UV + UV +Face 7609 +UV Count: 3 + UV + UV + UV +Face 7610 +UV Count: 3 + UV + UV + UV +Face 7611 +UV Count: 3 + UV + UV + UV +Face 7612 +UV Count: 3 + UV + UV + UV +Face 7613 +UV Count: 3 + UV + UV + UV +Face 7614 +UV Count: 3 + UV + UV + UV +Face 7615 +UV Count: 3 + UV + UV + UV +Face 7616 +UV Count: 3 + UV + UV + UV +Face 7617 +UV Count: 3 + UV + UV + UV +Face 7618 +UV Count: 3 + UV + UV + UV +Face 7619 +UV Count: 3 + UV + UV + UV +Face 7620 +UV Count: 3 + UV + UV + UV +Face 7621 +UV Count: 3 + UV + UV + UV +Face 7622 +UV Count: 3 + UV + UV + UV +Face 7623 +UV Count: 3 + UV + UV + UV +Face 7624 +UV Count: 3 + UV + UV + UV +Face 7625 +UV Count: 3 + UV + UV + UV +Face 7626 +UV Count: 3 + UV + UV + UV +Face 7627 +UV Count: 3 + UV + UV + UV +Face 7628 +UV Count: 3 + UV + UV + UV +Face 7629 +UV Count: 3 + UV + UV + UV +Face 7630 +UV Count: 3 + UV + UV + UV +Face 7631 +UV Count: 3 + UV + UV + UV +Face 7632 +UV Count: 3 + UV + UV + UV +Face 7633 +UV Count: 3 + UV + UV + UV +Face 7634 +UV Count: 3 + UV + UV + UV +Face 7635 +UV Count: 3 + UV + UV + UV +Face 7636 +UV Count: 3 + UV + UV + UV +Face 7637 +UV Count: 3 + UV + UV + UV +Face 7638 +UV Count: 3 + UV + UV + UV +Face 7639 +UV Count: 3 + UV + UV + UV +Face 7640 +UV Count: 3 + UV + UV + UV +Face 7641 +UV Count: 3 + UV + UV + UV +Face 7642 +UV Count: 3 + UV + UV + UV +Face 7643 +UV Count: 3 + UV + UV + UV +Face 7644 +UV Count: 3 + UV + UV + UV +Face 7645 +UV Count: 3 + UV + UV + UV +Face 7646 +UV Count: 3 + UV + UV + UV +Face 7647 +UV Count: 3 + UV + UV + UV +Face 7648 +UV Count: 3 + UV + UV + UV +Face 7649 +UV Count: 3 + UV + UV + UV +Face 7650 +UV Count: 3 + UV + UV + UV +Face 7651 +UV Count: 3 + UV + UV + UV +Face 7652 +UV Count: 3 + UV + UV + UV +Face 7653 +UV Count: 3 + UV + UV + UV +Face 7654 +UV Count: 3 + UV + UV + UV +Face 7655 +UV Count: 3 + UV + UV + UV +Face 7656 +UV Count: 3 + UV + UV + UV +Face 7657 +UV Count: 3 + UV + UV + UV +Face 7658 +UV Count: 3 + UV + UV + UV +Face 7659 +UV Count: 3 + UV + UV + UV +Face 7660 +UV Count: 3 + UV + UV + UV +Face 7661 +UV Count: 3 + UV + UV + UV +Face 7662 +UV Count: 3 + UV + UV + UV +Face 7663 +UV Count: 3 + UV + UV + UV +Face 7664 +UV Count: 3 + UV + UV + UV +Face 7665 +UV Count: 3 + UV + UV + UV +Face 7666 +UV Count: 3 + UV + UV + UV +Face 7667 +UV Count: 3 + UV + UV + UV +Face 7668 +UV Count: 3 + UV + UV + UV +Face 7669 +UV Count: 3 + UV + UV + UV +Face 7670 +UV Count: 3 + UV + UV + UV +Face 7671 +UV Count: 3 + UV + UV + UV +Face 7672 +UV Count: 3 + UV + UV + UV +Face 7673 +UV Count: 3 + UV + UV + UV +Face 7674 +UV Count: 3 + UV + UV + UV +Face 7675 +UV Count: 3 + UV + UV + UV +Face 7676 +UV Count: 3 + UV + UV + UV +Face 7677 +UV Count: 3 + UV + UV + UV +Face 7678 +UV Count: 3 + UV + UV + UV +Face 7679 +UV Count: 3 + UV + UV + UV +Face 7680 +UV Count: 3 + UV + UV + UV +Face 7681 +UV Count: 3 + UV + UV + UV +Face 7682 +UV Count: 3 + UV + UV + UV +Face 7683 +UV Count: 3 + UV + UV + UV +Face 7684 +UV Count: 3 + UV + UV + UV +Face 7685 +UV Count: 3 + UV + UV + UV +Face 7686 +UV Count: 3 + UV + UV + UV +Face 7687 +UV Count: 3 + UV + UV + UV +Face 7688 +UV Count: 3 + UV + UV + UV +Face 7689 +UV Count: 3 + UV + UV + UV +Face 7690 +UV Count: 3 + UV + UV + UV +Face 7691 +UV Count: 3 + UV + UV + UV +Face 7692 +UV Count: 3 + UV + UV + UV +Face 7693 +UV Count: 3 + UV + UV + UV +Face 7694 +UV Count: 3 + UV + UV + UV +Face 7695 +UV Count: 3 + UV + UV + UV +Face 7696 +UV Count: 3 + UV + UV + UV +Face 7697 +UV Count: 3 + UV + UV + UV +Face 7698 +UV Count: 3 + UV + UV + UV +Face 7699 +UV Count: 3 + UV + UV + UV +Face 7700 +UV Count: 3 + UV + UV + UV +Face 7701 +UV Count: 3 + UV + UV + UV +Face 7702 +UV Count: 3 + UV + UV + UV +Face 7703 +UV Count: 3 + UV + UV + UV +Face 7704 +UV Count: 3 + UV + UV + UV +Face 7705 +UV Count: 3 + UV + UV + UV +Face 7706 +UV Count: 3 + UV + UV + UV +Face 7707 +UV Count: 3 + UV + UV + UV +Face 7708 +UV Count: 3 + UV + UV + UV +Face 7709 +UV Count: 3 + UV + UV + UV +Face 7710 +UV Count: 3 + UV + UV + UV +Face 7711 +UV Count: 3 + UV + UV + UV +Face 7712 +UV Count: 3 + UV + UV + UV +Face 7713 +UV Count: 3 + UV + UV + UV +Face 7714 +UV Count: 3 + UV + UV + UV +Face 7715 +UV Count: 3 + UV + UV + UV +Face 7716 +UV Count: 3 + UV + UV + UV +Face 7717 +UV Count: 3 + UV + UV + UV +Face 7718 +UV Count: 3 + UV + UV + UV +Face 7719 +UV Count: 3 + UV + UV + UV +Face 7720 +UV Count: 3 + UV + UV + UV +Face 7721 +UV Count: 3 + UV + UV + UV +Face 7722 +UV Count: 3 + UV + UV + UV +Face 7723 +UV Count: 3 + UV + UV + UV +Face 7724 +UV Count: 3 + UV + UV + UV +Face 7725 +UV Count: 3 + UV + UV + UV +Face 7726 +UV Count: 3 + UV + UV + UV +Face 7727 +UV Count: 3 + UV + UV + UV +Face 7728 +UV Count: 3 + UV + UV + UV +Face 7729 +UV Count: 3 + UV + UV + UV +Face 7730 +UV Count: 3 + UV + UV + UV +Face 7731 +UV Count: 3 + UV + UV + UV +Face 7732 +UV Count: 3 + UV + UV + UV +Face 7733 +UV Count: 3 + UV + UV + UV +Face 7734 +UV Count: 3 + UV + UV + UV +Face 7735 +UV Count: 3 + UV + UV + UV +Face 7736 +UV Count: 3 + UV + UV + UV +Face 7737 +UV Count: 3 + UV + UV + UV +Face 7738 +UV Count: 3 + UV + UV + UV +Face 7739 +UV Count: 3 + UV + UV + UV +Face 7740 +UV Count: 3 + UV + UV + UV +Face 7741 +UV Count: 3 + UV + UV + UV +Face 7742 +UV Count: 3 + UV + UV + UV +Face 7743 +UV Count: 3 + UV + UV + UV +Face 7744 +UV Count: 3 + UV + UV + UV +Face 7745 +UV Count: 3 + UV + UV + UV +Face 7746 +UV Count: 3 + UV + UV + UV +Face 7747 +UV Count: 3 + UV + UV + UV +Face 7748 +UV Count: 3 + UV + UV + UV +Face 7749 +UV Count: 3 + UV + UV + UV +Face 7750 +UV Count: 3 + UV + UV + UV +Face 7751 +UV Count: 3 + UV + UV + UV +Face 7752 +UV Count: 3 + UV + UV + UV +Face 7753 +UV Count: 3 + UV + UV + UV +Face 7754 +UV Count: 3 + UV + UV + UV +Face 7755 +UV Count: 3 + UV + UV + UV +Face 7756 +UV Count: 3 + UV + UV + UV +Face 7757 +UV Count: 3 + UV + UV + UV +Face 7758 +UV Count: 3 + UV + UV + UV +Face 7759 +UV Count: 3 + UV + UV + UV +Face 7760 +UV Count: 3 + UV + UV + UV +Face 7761 +UV Count: 3 + UV + UV + UV +Face 7762 +UV Count: 3 + UV + UV + UV +Face 7763 +UV Count: 3 + UV + UV + UV +Face 7764 +UV Count: 3 + UV + UV + UV +Face 7765 +UV Count: 3 + UV + UV + UV +Face 7766 +UV Count: 3 + UV + UV + UV +Face 7767 +UV Count: 3 + UV + UV + UV +Face 7768 +UV Count: 3 + UV + UV + UV +Face 7769 +UV Count: 3 + UV + UV + UV +Face 7770 +UV Count: 3 + UV + UV + UV +Face 7771 +UV Count: 3 + UV + UV + UV +Face 7772 +UV Count: 3 + UV + UV + UV +Face 7773 +UV Count: 3 + UV + UV + UV +Face 7774 +UV Count: 3 + UV + UV + UV +Face 7775 +UV Count: 3 + UV + UV + UV +Face 7776 +UV Count: 3 + UV + UV + UV +Face 7777 +UV Count: 3 + UV + UV + UV +Face 7778 +UV Count: 3 + UV + UV + UV +Face 7779 +UV Count: 3 + UV + UV + UV +Face 7780 +UV Count: 3 + UV + UV + UV +Face 7781 +UV Count: 3 + UV + UV + UV +Face 7782 +UV Count: 3 + UV + UV + UV +Face 7783 +UV Count: 3 + UV + UV + UV +Face 7784 +UV Count: 3 + UV + UV + UV +Face 7785 +UV Count: 3 + UV + UV + UV +Face 7786 +UV Count: 3 + UV + UV + UV +Face 7787 +UV Count: 3 + UV + UV + UV +Face 7788 +UV Count: 3 + UV + UV + UV +Face 7789 +UV Count: 3 + UV + UV + UV +Face 7790 +UV Count: 3 + UV + UV + UV +Face 7791 +UV Count: 3 + UV + UV + UV +Face 7792 +UV Count: 3 + UV + UV + UV +Face 7793 +UV Count: 3 + UV + UV + UV +Face 7794 +UV Count: 3 + UV + UV + UV +Face 7795 +UV Count: 3 + UV + UV + UV +Face 7796 +UV Count: 3 + UV + UV + UV +Face 7797 +UV Count: 3 + UV + UV + UV +Face 7798 +UV Count: 3 + UV + UV + UV +Face 7799 +UV Count: 3 + UV + UV + UV +Face 7800 +UV Count: 3 + UV + UV + UV +Face 7801 +UV Count: 3 + UV + UV + UV +Face 7802 +UV Count: 3 + UV + UV + UV +Face 7803 +UV Count: 3 + UV + UV + UV +Face 7804 +UV Count: 3 + UV + UV + UV +Face 7805 +UV Count: 3 + UV + UV + UV +Face 7806 +UV Count: 3 + UV + UV + UV +Face 7807 +UV Count: 3 + UV + UV + UV +Face 7808 +UV Count: 3 + UV + UV + UV +Face 7809 +UV Count: 3 + UV + UV + UV +Face 7810 +UV Count: 3 + UV + UV + UV +Face 7811 +UV Count: 3 + UV + UV + UV +Face 7812 +UV Count: 3 + UV + UV + UV +Face 7813 +UV Count: 3 + UV + UV + UV +Face 7814 +UV Count: 3 + UV + UV + UV +Face 7815 +UV Count: 3 + UV + UV + UV +Face 7816 +UV Count: 3 + UV + UV + UV +Face 7817 +UV Count: 3 + UV + UV + UV +Face 7818 +UV Count: 3 + UV + UV + UV +Face 7819 +UV Count: 3 + UV + UV + UV +Face 7820 +UV Count: 3 + UV + UV + UV +Face 7821 +UV Count: 3 + UV + UV + UV +Face 7822 +UV Count: 3 + UV + UV + UV +Face 7823 +UV Count: 3 + UV + UV + UV +Face 7824 +UV Count: 3 + UV + UV + UV +Face 7825 +UV Count: 3 + UV + UV + UV +Face 7826 +UV Count: 3 + UV + UV + UV +Face 7827 +UV Count: 3 + UV + UV + UV +Face 7828 +UV Count: 3 + UV + UV + UV +Face 7829 +UV Count: 3 + UV + UV + UV +Face 7830 +UV Count: 3 + UV + UV + UV +Face 7831 +UV Count: 3 + UV + UV + UV +Face 7832 +UV Count: 3 + UV + UV + UV +Face 7833 +UV Count: 3 + UV + UV + UV +Face 7834 +UV Count: 3 + UV + UV + UV +Face 7835 +UV Count: 3 + UV + UV + UV +Face 7836 +UV Count: 3 + UV + UV + UV +Face 7837 +UV Count: 3 + UV + UV + UV +Face 7838 +UV Count: 3 + UV + UV + UV +Face 7839 +UV Count: 3 + UV + UV + UV +Face 7840 +UV Count: 3 + UV + UV + UV +Face 7841 +UV Count: 3 + UV + UV + UV +Face 7842 +UV Count: 3 + UV + UV + UV +Face 7843 +UV Count: 3 + UV + UV + UV +Face 7844 +UV Count: 3 + UV + UV + UV +Face 7845 +UV Count: 3 + UV + UV + UV +Face 7846 +UV Count: 3 + UV + UV + UV +Face 7847 +UV Count: 3 + UV + UV + UV +Face 7848 +UV Count: 3 + UV + UV + UV +Face 7849 +UV Count: 3 + UV + UV + UV +Face 7850 +UV Count: 3 + UV + UV + UV +Face 7851 +UV Count: 3 + UV + UV + UV +Face 7852 +UV Count: 3 + UV + UV + UV +Face 7853 +UV Count: 3 + UV + UV + UV +Face 7854 +UV Count: 3 + UV + UV + UV +Face 7855 +UV Count: 3 + UV + UV + UV +Face 7856 +UV Count: 3 + UV + UV + UV +Face 7857 +UV Count: 3 + UV + UV + UV +Face 7858 +UV Count: 3 + UV + UV + UV +Face 7859 +UV Count: 3 + UV + UV + UV +Face 7860 +UV Count: 3 + UV + UV + UV +Face 7861 +UV Count: 3 + UV + UV + UV +Face 7862 +UV Count: 3 + UV + UV + UV +Face 7863 +UV Count: 3 + UV + UV + UV +Face 7864 +UV Count: 3 + UV + UV + UV +Face 7865 +UV Count: 3 + UV + UV + UV +Face 7866 +UV Count: 3 + UV + UV + UV +Face 7867 +UV Count: 3 + UV + UV + UV +Face 7868 +UV Count: 3 + UV + UV + UV +Face 7869 +UV Count: 3 + UV + UV + UV +Face 7870 +UV Count: 3 + UV + UV + UV +Face 7871 +UV Count: 3 + UV + UV + UV +Face 7872 +UV Count: 3 + UV + UV + UV +Face 7873 +UV Count: 3 + UV + UV + UV +Face 7874 +UV Count: 3 + UV + UV + UV +Face 7875 +UV Count: 3 + UV + UV + UV +Face 7876 +UV Count: 3 + UV + UV + UV +Face 7877 +UV Count: 3 + UV + UV + UV +Face 7878 +UV Count: 3 + UV + UV + UV +Face 7879 +UV Count: 3 + UV + UV + UV +Face 7880 +UV Count: 3 + UV + UV + UV +Face 7881 +UV Count: 3 + UV + UV + UV +Face 7882 +UV Count: 3 + UV + UV + UV +Face 7883 +UV Count: 3 + UV + UV + UV +Face 7884 +UV Count: 3 + UV + UV + UV +Face 7885 +UV Count: 3 + UV + UV + UV +Face 7886 +UV Count: 3 + UV + UV + UV +Face 7887 +UV Count: 3 + UV + UV + UV +Face 7888 +UV Count: 3 + UV + UV + UV +Face 7889 +UV Count: 3 + UV + UV + UV +Face 7890 +UV Count: 3 + UV + UV + UV +Face 7891 +UV Count: 3 + UV + UV + UV +Face 7892 +UV Count: 3 + UV + UV + UV +Face 7893 +UV Count: 3 + UV + UV + UV +Face 7894 +UV Count: 3 + UV + UV + UV +Face 7895 +UV Count: 3 + UV + UV + UV +Face 7896 +UV Count: 3 + UV + UV + UV +Face 7897 +UV Count: 3 + UV + UV + UV +Face 7898 +UV Count: 3 + UV + UV + UV +Face 7899 +UV Count: 3 + UV + UV + UV +Face 7900 +UV Count: 3 + UV + UV + UV +Face 7901 +UV Count: 3 + UV + UV + UV +Face 7902 +UV Count: 3 + UV + UV + UV +Face 7903 +UV Count: 3 + UV + UV + UV +Face 7904 +UV Count: 3 + UV + UV + UV +Face 7905 +UV Count: 3 + UV + UV + UV +Face 7906 +UV Count: 3 + UV + UV + UV +Face 7907 +UV Count: 3 + UV + UV + UV +Face 7908 +UV Count: 3 + UV + UV + UV +Face 7909 +UV Count: 3 + UV + UV + UV +Face 7910 +UV Count: 3 + UV + UV + UV +Face 7911 +UV Count: 3 + UV + UV + UV +Face 7912 +UV Count: 3 + UV + UV + UV +Face 7913 +UV Count: 3 + UV + UV + UV +Face 7914 +UV Count: 3 + UV + UV + UV +Face 7915 +UV Count: 3 + UV + UV + UV +Face 7916 +UV Count: 3 + UV + UV + UV +Face 7917 +UV Count: 3 + UV + UV + UV +Face 7918 +UV Count: 3 + UV + UV + UV +Face 7919 +UV Count: 3 + UV + UV + UV +Face 7920 +UV Count: 3 + UV + UV + UV +Face 7921 +UV Count: 3 + UV + UV + UV +Face 7922 +UV Count: 3 + UV + UV + UV +Face 7923 +UV Count: 3 + UV + UV + UV +Face 7924 +UV Count: 3 + UV + UV + UV +Face 7925 +UV Count: 3 + UV + UV + UV +Face 7926 +UV Count: 3 + UV + UV + UV +Face 7927 +UV Count: 3 + UV + UV + UV +Face 7928 +UV Count: 3 + UV + UV + UV +Face 7929 +UV Count: 3 + UV + UV + UV +Face 7930 +UV Count: 3 + UV + UV + UV +Face 7931 +UV Count: 3 + UV + UV + UV +Face 7932 +UV Count: 3 + UV + UV + UV +Face 7933 +UV Count: 3 + UV + UV + UV +Face 7934 +UV Count: 3 + UV + UV + UV +Face 7935 +UV Count: 3 + UV + UV + UV +Face 7936 +UV Count: 3 + UV + UV + UV +Face 7937 +UV Count: 3 + UV + UV + UV +Face 7938 +UV Count: 3 + UV + UV + UV +Face 7939 +UV Count: 3 + UV + UV + UV +Face 7940 +UV Count: 3 + UV + UV + UV +Face 7941 +UV Count: 3 + UV + UV + UV +Face 7942 +UV Count: 3 + UV + UV + UV +Face 7943 +UV Count: 3 + UV + UV + UV +Face 7944 +UV Count: 3 + UV + UV + UV +Face 7945 +UV Count: 3 + UV + UV + UV +Face 7946 +UV Count: 3 + UV + UV + UV +Face 7947 +UV Count: 3 + UV + UV + UV +Face 7948 +UV Count: 3 + UV + UV + UV +Face 7949 +UV Count: 3 + UV + UV + UV +Face 7950 +UV Count: 3 + UV + UV + UV +Face 7951 +UV Count: 3 + UV + UV + UV +Face 7952 +UV Count: 3 + UV + UV + UV +Face 7953 +UV Count: 3 + UV + UV + UV +Face 7954 +UV Count: 3 + UV + UV + UV +Face 7955 +UV Count: 3 + UV + UV + UV +Face 7956 +UV Count: 3 + UV + UV + UV +Face 7957 +UV Count: 3 + UV + UV + UV +Face 7958 +UV Count: 3 + UV + UV + UV +Face 7959 +UV Count: 3 + UV + UV + UV +Face 7960 +UV Count: 3 + UV + UV + UV +Face 7961 +UV Count: 3 + UV + UV + UV +Face 7962 +UV Count: 3 + UV + UV + UV +Face 7963 +UV Count: 3 + UV + UV + UV +Face 7964 +UV Count: 3 + UV + UV + UV +Face 7965 +UV Count: 3 + UV + UV + UV +Face 7966 +UV Count: 3 + UV + UV + UV +Face 7967 +UV Count: 3 + UV + UV + UV +Face 7968 +UV Count: 3 + UV + UV + UV +Face 7969 +UV Count: 3 + UV + UV + UV +Face 7970 +UV Count: 3 + UV + UV + UV +Face 7971 +UV Count: 3 + UV + UV + UV +Face 7972 +UV Count: 3 + UV + UV + UV +Face 7973 +UV Count: 3 + UV + UV + UV +Face 7974 +UV Count: 3 + UV + UV + UV +Face 7975 +UV Count: 3 + UV + UV + UV +Face 7976 +UV Count: 3 + UV + UV + UV +Face 7977 +UV Count: 3 + UV + UV + UV +Face 7978 +UV Count: 3 + UV + UV + UV +Face 7979 +UV Count: 3 + UV + UV + UV +Face 7980 +UV Count: 3 + UV + UV + UV +Face 7981 +UV Count: 3 + UV + UV + UV +Face 7982 +UV Count: 3 + UV + UV + UV +Face 7983 +UV Count: 3 + UV + UV + UV +Face 7984 +UV Count: 3 + UV + UV + UV +Face 7985 +UV Count: 3 + UV + UV + UV +Face 7986 +UV Count: 3 + UV + UV + UV +Face 7987 +UV Count: 3 + UV + UV + UV +Face 7988 +UV Count: 3 + UV + UV + UV +Face 7989 +UV Count: 3 + UV + UV + UV +Face 7990 +UV Count: 3 + UV + UV + UV +Face 7991 +UV Count: 3 + UV + UV + UV +Face 7992 +UV Count: 3 + UV + UV + UV +Face 7993 +UV Count: 3 + UV + UV + UV +Face 7994 +UV Count: 3 + UV + UV + UV +Face 7995 +UV Count: 3 + UV + UV + UV +Face 7996 +UV Count: 3 + UV + UV + UV +Face 7997 +UV Count: 3 + UV + UV + UV +Face 7998 +UV Count: 3 + UV + UV + UV +Face 7999 +UV Count: 3 + UV + UV + UV +Face 8000 +UV Count: 3 + UV + UV + UV +Face 8001 +UV Count: 3 + UV + UV + UV +Face 8002 +UV Count: 3 + UV + UV + UV +Face 8003 +UV Count: 3 + UV + UV + UV +Face 8004 +UV Count: 3 + UV + UV + UV +Face 8005 +UV Count: 3 + UV + UV + UV +Face 8006 +UV Count: 3 + UV + UV + UV +Face 8007 +UV Count: 3 + UV + UV + UV +Face 8008 +UV Count: 3 + UV + UV + UV +Face 8009 +UV Count: 3 + UV + UV + UV +Face 8010 +UV Count: 3 + UV + UV + UV +Face 8011 +UV Count: 3 + UV + UV + UV +Face 8012 +UV Count: 3 + UV + UV + UV +Face 8013 +UV Count: 3 + UV + UV + UV +Face 8014 +UV Count: 3 + UV + UV + UV +Face 8015 +UV Count: 3 + UV + UV + UV +Face 8016 +UV Count: 3 + UV + UV + UV +Face 8017 +UV Count: 3 + UV + UV + UV +Face 8018 +UV Count: 3 + UV + UV + UV +Face 8019 +UV Count: 3 + UV + UV + UV +Face 8020 +UV Count: 3 + UV + UV + UV +Face 8021 +UV Count: 3 + UV + UV + UV +Face 8022 +UV Count: 3 + UV + UV + UV +Face 8023 +UV Count: 3 + UV + UV + UV +Face 8024 +UV Count: 3 + UV + UV + UV +Face 8025 +UV Count: 3 + UV + UV + UV +Face 8026 +UV Count: 3 + UV + UV + UV +Face 8027 +UV Count: 3 + UV + UV + UV +Face 8028 +UV Count: 3 + UV + UV + UV +Face 8029 +UV Count: 3 + UV + UV + UV +Face 8030 +UV Count: 3 + UV + UV + UV +Face 8031 +UV Count: 3 + UV + UV + UV +Face 8032 +UV Count: 3 + UV + UV + UV +Face 8033 +UV Count: 3 + UV + UV + UV +Face 8034 +UV Count: 3 + UV + UV + UV +Face 8035 +UV Count: 3 + UV + UV + UV +Face 8036 +UV Count: 3 + UV + UV + UV +Face 8037 +UV Count: 3 + UV + UV + UV +Face 8038 +UV Count: 3 + UV + UV + UV +Face 8039 +UV Count: 3 + UV + UV + UV +Face 8040 +UV Count: 3 + UV + UV + UV +Face 8041 +UV Count: 3 + UV + UV + UV +Face 8042 +UV Count: 3 + UV + UV + UV +Face 8043 +UV Count: 3 + UV + UV + UV +Face 8044 +UV Count: 3 + UV + UV + UV +Face 8045 +UV Count: 3 + UV + UV + UV +Face 8046 +UV Count: 3 + UV + UV + UV +Face 8047 +UV Count: 3 + UV + UV + UV +Face 8048 +UV Count: 3 + UV + UV + UV +Face 8049 +UV Count: 3 + UV + UV + UV +Face 8050 +UV Count: 3 + UV + UV + UV +Face 8051 +UV Count: 3 + UV + UV + UV +Face 8052 +UV Count: 3 + UV + UV + UV +Face 8053 +UV Count: 3 + UV + UV + UV +Face 8054 +UV Count: 3 + UV + UV + UV +Face 8055 +UV Count: 3 + UV + UV + UV +Face 8056 +UV Count: 3 + UV + UV + UV +Face 8057 +UV Count: 3 + UV + UV + UV +Face 8058 +UV Count: 3 + UV + UV + UV +Face 8059 +UV Count: 3 + UV + UV + UV +Face 8060 +UV Count: 3 + UV + UV + UV +Face 8061 +UV Count: 3 + UV + UV + UV +Face 8062 +UV Count: 3 + UV + UV + UV +Face 8063 +UV Count: 3 + UV + UV + UV +Face 8064 +UV Count: 3 + UV + UV + UV +Face 8065 +UV Count: 3 + UV + UV + UV +Face 8066 +UV Count: 3 + UV + UV + UV +Face 8067 +UV Count: 3 + UV + UV + UV +Face 8068 +UV Count: 3 + UV + UV + UV +Face 8069 +UV Count: 3 + UV + UV + UV +Face 8070 +UV Count: 3 + UV + UV + UV +Face 8071 +UV Count: 3 + UV + UV + UV +Face 8072 +UV Count: 3 + UV + UV + UV +Face 8073 +UV Count: 3 + UV + UV + UV +Face 8074 +UV Count: 3 + UV + UV + UV +Face 8075 +UV Count: 3 + UV + UV + UV +Face 8076 +UV Count: 3 + UV + UV + UV +Face 8077 +UV Count: 3 + UV + UV + UV +Face 8078 +UV Count: 3 + UV + UV + UV +Face 8079 +UV Count: 3 + UV + UV + UV +Face 8080 +UV Count: 3 + UV + UV + UV +Face 8081 +UV Count: 3 + UV + UV + UV +Face 8082 +UV Count: 3 + UV + UV + UV +Face 8083 +UV Count: 3 + UV + UV + UV +Face 8084 +UV Count: 3 + UV + UV + UV +Face 8085 +UV Count: 3 + UV + UV + UV +Face 8086 +UV Count: 3 + UV + UV + UV +Face 8087 +UV Count: 3 + UV + UV + UV +Face 8088 +UV Count: 3 + UV + UV + UV +Face 8089 +UV Count: 3 + UV + UV + UV +Face 8090 +UV Count: 3 + UV + UV + UV +Face 8091 +UV Count: 3 + UV + UV + UV +Face 8092 +UV Count: 3 + UV + UV + UV +Face 8093 +UV Count: 3 + UV + UV + UV +Face 8094 +UV Count: 3 + UV + UV + UV +Face 8095 +UV Count: 3 + UV + UV + UV +Face 8096 +UV Count: 3 + UV + UV + UV +Face 8097 +UV Count: 3 + UV + UV + UV +Face 8098 +UV Count: 3 + UV + UV + UV +Face 8099 +UV Count: 3 + UV + UV + UV +Face 8100 +UV Count: 3 + UV + UV + UV +Face 8101 +UV Count: 3 + UV + UV + UV +Face 8102 +UV Count: 3 + UV + UV + UV +Face 8103 +UV Count: 3 + UV + UV + UV +Face 8104 +UV Count: 3 + UV + UV + UV +Face 8105 +UV Count: 3 + UV + UV + UV +Face 8106 +UV Count: 3 + UV + UV + UV +Face 8107 +UV Count: 3 + UV + UV + UV +Face 8108 +UV Count: 3 + UV + UV + UV +Face 8109 +UV Count: 3 + UV + UV + UV +Face 8110 +UV Count: 3 + UV + UV + UV +Face 8111 +UV Count: 3 + UV + UV + UV +Face 8112 +UV Count: 3 + UV + UV + UV +Face 8113 +UV Count: 3 + UV + UV + UV +Face 8114 +UV Count: 3 + UV + UV + UV +Face 8115 +UV Count: 3 + UV + UV + UV +Face 8116 +UV Count: 3 + UV + UV + UV +Face 8117 +UV Count: 3 + UV + UV + UV +Face 8118 +UV Count: 3 + UV + UV + UV +Face 8119 +UV Count: 3 + UV + UV + UV +Face 8120 +UV Count: 3 + UV + UV + UV +Face 8121 +UV Count: 3 + UV + UV + UV +Face 8122 +UV Count: 3 + UV + UV + UV +Face 8123 +UV Count: 3 + UV + UV + UV +Face 8124 +UV Count: 3 + UV + UV + UV +Face 8125 +UV Count: 3 + UV + UV + UV +Face 8126 +UV Count: 3 + UV + UV + UV +Face 8127 +UV Count: 3 + UV + UV + UV +Face 8128 +UV Count: 3 + UV + UV + UV +Face 8129 +UV Count: 3 + UV + UV + UV +Face 8130 +UV Count: 3 + UV + UV + UV +Face 8131 +UV Count: 3 + UV + UV + UV +Face 8132 +UV Count: 3 + UV + UV + UV +Face 8133 +UV Count: 3 + UV + UV + UV +Face 8134 +UV Count: 3 + UV + UV + UV +Face 8135 +UV Count: 3 + UV + UV + UV +Face 8136 +UV Count: 3 + UV + UV + UV +Face 8137 +UV Count: 3 + UV + UV + UV +Face 8138 +UV Count: 3 + UV + UV + UV +Face 8139 +UV Count: 3 + UV + UV + UV +Face 8140 +UV Count: 3 + UV + UV + UV +Face 8141 +UV Count: 3 + UV + UV + UV +Face 8142 +UV Count: 3 + UV + UV + UV +Face 8143 +UV Count: 3 + UV + UV + UV +Face 8144 +UV Count: 3 + UV + UV + UV +Face 8145 +UV Count: 3 + UV + UV + UV +Face 8146 +UV Count: 3 + UV + UV + UV +Face 8147 +UV Count: 3 + UV + UV + UV +Face 8148 +UV Count: 3 + UV + UV + UV +Face 8149 +UV Count: 3 + UV + UV + UV +Face 8150 +UV Count: 3 + UV + UV + UV +Face 8151 +UV Count: 3 + UV + UV + UV +Face 8152 +UV Count: 3 + UV + UV + UV +Face 8153 +UV Count: 3 + UV + UV + UV +Face 8154 +UV Count: 3 + UV + UV + UV +Face 8155 +UV Count: 3 + UV + UV + UV +Face 8156 +UV Count: 3 + UV + UV + UV +Face 8157 +UV Count: 3 + UV + UV + UV +Face 8158 +UV Count: 3 + UV + UV + UV +Face 8159 +UV Count: 3 + UV + UV + UV +Face 8160 +UV Count: 3 + UV + UV + UV +Face 8161 +UV Count: 3 + UV + UV + UV +Face 8162 +UV Count: 3 + UV + UV + UV +Face 8163 +UV Count: 3 + UV + UV + UV +Face 8164 +UV Count: 3 + UV + UV + UV +Face 8165 +UV Count: 3 + UV + UV + UV +Face 8166 +UV Count: 3 + UV + UV + UV +Face 8167 +UV Count: 3 + UV + UV + UV +Face 8168 +UV Count: 3 + UV + UV + UV +Face 8169 +UV Count: 3 + UV + UV + UV +Face 8170 +UV Count: 3 + UV + UV + UV +Face 8171 +UV Count: 3 + UV + UV + UV +Face 8172 +UV Count: 3 + UV + UV + UV +Face 8173 +UV Count: 3 + UV + UV + UV +Face 8174 +UV Count: 3 + UV + UV + UV +Face 8175 +UV Count: 3 + UV + UV + UV +Face 8176 +UV Count: 3 + UV + UV + UV +Face 8177 +UV Count: 3 + UV + UV + UV +Face 8178 +UV Count: 3 + UV + UV + UV +Face 8179 +UV Count: 3 + UV + UV + UV +Face 8180 +UV Count: 3 + UV + UV + UV +Face 8181 +UV Count: 3 + UV + UV + UV +Face 8182 +UV Count: 3 + UV + UV + UV +Face 8183 +UV Count: 3 + UV + UV + UV +Face 8184 +UV Count: 3 + UV + UV + UV +Face 8185 +UV Count: 3 + UV + UV + UV +Face 8186 +UV Count: 3 + UV + UV + UV +Face 8187 +UV Count: 3 + UV + UV + UV +Face 8188 +UV Count: 3 + UV + UV + UV +Face 8189 +UV Count: 3 + UV + UV + UV +Face 8190 +UV Count: 3 + UV + UV + UV +Face 8191 +UV Count: 3 + UV + UV + UV +Face 8192 +UV Count: 3 + UV + UV + UV +Face 8193 +UV Count: 3 + UV + UV + UV +Face 8194 +UV Count: 3 + UV + UV + UV +Face 8195 +UV Count: 3 + UV + UV + UV +Face 8196 +UV Count: 3 + UV + UV + UV +Face 8197 +UV Count: 3 + UV + UV + UV +Face 8198 +UV Count: 3 + UV + UV + UV +Face 8199 +UV Count: 3 + UV + UV + UV +Face 8200 +UV Count: 3 + UV + UV + UV +Face 8201 +UV Count: 3 + UV + UV + UV +Face 8202 +UV Count: 3 + UV + UV + UV +Face 8203 +UV Count: 3 + UV + UV + UV +Face 8204 +UV Count: 3 + UV + UV + UV +Face 8205 +UV Count: 3 + UV + UV + UV +Face 8206 +UV Count: 3 + UV + UV + UV +Face 8207 +UV Count: 3 + UV + UV + UV +Face 8208 +UV Count: 3 + UV + UV + UV +Face 8209 +UV Count: 3 + UV + UV + UV +Face 8210 +UV Count: 3 + UV + UV + UV +Face 8211 +UV Count: 3 + UV + UV + UV +Face 8212 +UV Count: 3 + UV + UV + UV +Face 8213 +UV Count: 3 + UV + UV + UV +Face 8214 +UV Count: 3 + UV + UV + UV +Face 8215 +UV Count: 3 + UV + UV + UV +Face 8216 +UV Count: 3 + UV + UV + UV +Face 8217 +UV Count: 3 + UV + UV + UV +Face 8218 +UV Count: 3 + UV + UV + UV +Face 8219 +UV Count: 3 + UV + UV + UV +Face 8220 +UV Count: 3 + UV + UV + UV +Face 8221 +UV Count: 3 + UV + UV + UV +Face 8222 +UV Count: 3 + UV + UV + UV +Face 8223 +UV Count: 3 + UV + UV + UV +Face 8224 +UV Count: 3 + UV + UV + UV +Face 8225 +UV Count: 3 + UV + UV + UV +Face 8226 +UV Count: 3 + UV + UV + UV +Face 8227 +UV Count: 3 + UV + UV + UV +Face 8228 +UV Count: 3 + UV + UV + UV +Face 8229 +UV Count: 3 + UV + UV + UV +Face 8230 +UV Count: 3 + UV + UV + UV +Face 8231 +UV Count: 3 + UV + UV + UV +Face 8232 +UV Count: 3 + UV + UV + UV +Face 8233 +UV Count: 3 + UV + UV + UV +Face 8234 +UV Count: 3 + UV + UV + UV +Face 8235 +UV Count: 3 + UV + UV + UV +Face 8236 +UV Count: 3 + UV + UV + UV +Face 8237 +UV Count: 3 + UV + UV + UV +Face 8238 +UV Count: 3 + UV + UV + UV +Face 8239 +UV Count: 3 + UV + UV + UV +Face 8240 +UV Count: 3 + UV + UV + UV +Face 8241 +UV Count: 3 + UV + UV + UV +Face 8242 +UV Count: 3 + UV + UV + UV +Face 8243 +UV Count: 3 + UV + UV + UV +Face 8244 +UV Count: 3 + UV + UV + UV +Face 8245 +UV Count: 3 + UV + UV + UV +Face 8246 +UV Count: 3 + UV + UV + UV +Face 8247 +UV Count: 3 + UV + UV + UV +Face 8248 +UV Count: 3 + UV + UV + UV +Face 8249 +UV Count: 3 + UV + UV + UV +Face 8250 +UV Count: 3 + UV + UV + UV +Face 8251 +UV Count: 3 + UV + UV + UV +Face 8252 +UV Count: 3 + UV + UV + UV +Face 8253 +UV Count: 3 + UV + UV + UV +Face 8254 +UV Count: 3 + UV + UV + UV +Face 8255 +UV Count: 3 + UV + UV + UV +Face 8256 +UV Count: 3 + UV + UV + UV +Face 8257 +UV Count: 3 + UV + UV + UV +Face 8258 +UV Count: 3 + UV + UV + UV +Face 8259 +UV Count: 3 + UV + UV + UV +Face 8260 +UV Count: 3 + UV + UV + UV +Face 8261 +UV Count: 3 + UV + UV + UV +Face 8262 +UV Count: 3 + UV + UV + UV +Face 8263 +UV Count: 3 + UV + UV + UV +Face 8264 +UV Count: 3 + UV + UV + UV +Face 8265 +UV Count: 3 + UV + UV + UV +Face 8266 +UV Count: 3 + UV + UV + UV +Face 8267 +UV Count: 3 + UV + UV + UV +Face 8268 +UV Count: 3 + UV + UV + UV +Face 8269 +UV Count: 3 + UV + UV + UV +Face 8270 +UV Count: 3 + UV + UV + UV +Face 8271 +UV Count: 3 + UV + UV + UV +Face 8272 +UV Count: 3 + UV + UV + UV +Face 8273 +UV Count: 3 + UV + UV + UV +Face 8274 +UV Count: 3 + UV + UV + UV +Face 8275 +UV Count: 3 + UV + UV + UV +Face 8276 +UV Count: 3 + UV + UV + UV +Face 8277 +UV Count: 3 + UV + UV + UV +Face 8278 +UV Count: 3 + UV + UV + UV +Face 8279 +UV Count: 3 + UV + UV + UV +Face 8280 +UV Count: 3 + UV + UV + UV +Face 8281 +UV Count: 3 + UV + UV + UV +Face 8282 +UV Count: 3 + UV + UV + UV +Face 8283 +UV Count: 3 + UV + UV + UV +Face 8284 +UV Count: 3 + UV + UV + UV +Face 8285 +UV Count: 3 + UV + UV + UV +Face 8286 +UV Count: 3 + UV + UV + UV +Face 8287 +UV Count: 3 + UV + UV + UV +Face 8288 +UV Count: 3 + UV + UV + UV +Face 8289 +UV Count: 3 + UV + UV + UV +Face 8290 +UV Count: 3 + UV + UV + UV +Face 8291 +UV Count: 3 + UV + UV + UV +Face 8292 +UV Count: 3 + UV + UV + UV +Face 8293 +UV Count: 3 + UV + UV + UV +Face 8294 +UV Count: 3 + UV + UV + UV +Face 8295 +UV Count: 3 + UV + UV + UV +Face 8296 +UV Count: 3 + UV + UV + UV +Face 8297 +UV Count: 3 + UV + UV + UV +Face 8298 +UV Count: 3 + UV + UV + UV +Face 8299 +UV Count: 3 + UV + UV + UV +Face 8300 +UV Count: 3 + UV + UV + UV +Face 8301 +UV Count: 3 + UV + UV + UV +Face 8302 +UV Count: 3 + UV + UV + UV +Face 8303 +UV Count: 3 + UV + UV + UV +Face 8304 +UV Count: 3 + UV + UV + UV +Face 8305 +UV Count: 3 + UV + UV + UV +Face 8306 +UV Count: 3 + UV + UV + UV +Face 8307 +UV Count: 3 + UV + UV + UV +Face 8308 +UV Count: 3 + UV + UV + UV +Face 8309 +UV Count: 3 + UV + UV + UV +Face 8310 +UV Count: 3 + UV + UV + UV +Face 8311 +UV Count: 3 + UV + UV + UV +Face 8312 +UV Count: 3 + UV + UV + UV +Face 8313 +UV Count: 3 + UV + UV + UV +Face 8314 +UV Count: 3 + UV + UV + UV +Face 8315 +UV Count: 3 + UV + UV + UV +Face 8316 +UV Count: 3 + UV + UV + UV +Face 8317 +UV Count: 3 + UV + UV + UV +Face 8318 +UV Count: 3 + UV + UV + UV +Face 8319 +UV Count: 3 + UV + UV + UV +Face 8320 +UV Count: 3 + UV + UV + UV +Face 8321 +UV Count: 3 + UV + UV + UV +Face 8322 +UV Count: 3 + UV + UV + UV +Face 8323 +UV Count: 3 + UV + UV + UV +Face 8324 +UV Count: 3 + UV + UV + UV +Face 8325 +UV Count: 3 + UV + UV + UV +Face 8326 +UV Count: 3 + UV + UV + UV +Face 8327 +UV Count: 3 + UV + UV + UV +Face 8328 +UV Count: 3 + UV + UV + UV +Face 8329 +UV Count: 3 + UV + UV + UV +Face 8330 +UV Count: 3 + UV + UV + UV +Face 8331 +UV Count: 3 + UV + UV + UV +Face 8332 +UV Count: 3 + UV + UV + UV +Face 8333 +UV Count: 3 + UV + UV + UV +Face 8334 +UV Count: 3 + UV + UV + UV +Face 8335 +UV Count: 3 + UV + UV + UV +Face 8336 +UV Count: 3 + UV + UV + UV +Face 8337 +UV Count: 3 + UV + UV + UV +Face 8338 +UV Count: 3 + UV + UV + UV +Face 8339 +UV Count: 3 + UV + UV + UV +Face 8340 +UV Count: 3 + UV + UV + UV +Face 8341 +UV Count: 3 + UV + UV + UV +Face 8342 +UV Count: 3 + UV + UV + UV +Face 8343 +UV Count: 3 + UV + UV + UV +Face 8344 +UV Count: 3 + UV + UV + UV +Face 8345 +UV Count: 3 + UV + UV + UV +Face 8346 +UV Count: 3 + UV + UV + UV +Face 8347 +UV Count: 3 + UV + UV + UV +Face 8348 +UV Count: 3 + UV + UV + UV +Face 8349 +UV Count: 3 + UV + UV + UV +Face 8350 +UV Count: 3 + UV + UV + UV +Face 8351 +UV Count: 3 + UV + UV + UV +Face 8352 +UV Count: 3 + UV + UV + UV +Face 8353 +UV Count: 3 + UV + UV + UV +Face 8354 +UV Count: 3 + UV + UV + UV +Face 8355 +UV Count: 3 + UV + UV + UV +Face 8356 +UV Count: 3 + UV + UV + UV +Face 8357 +UV Count: 3 + UV + UV + UV +Face 8358 +UV Count: 3 + UV + UV + UV +Face 8359 +UV Count: 3 + UV + UV + UV +Face 8360 +UV Count: 3 + UV + UV + UV +Face 8361 +UV Count: 3 + UV + UV + UV +Face 8362 +UV Count: 3 + UV + UV + UV +Face 8363 +UV Count: 3 + UV + UV + UV +Face 8364 +UV Count: 3 + UV + UV + UV +Face 8365 +UV Count: 3 + UV + UV + UV +Face 8366 +UV Count: 3 + UV + UV + UV +Face 8367 +UV Count: 3 + UV + UV + UV +Face 8368 +UV Count: 3 + UV + UV + UV +Face 8369 +UV Count: 3 + UV + UV + UV +Face 8370 +UV Count: 3 + UV + UV + UV +Face 8371 +UV Count: 3 + UV + UV + UV +Face 8372 +UV Count: 3 + UV + UV + UV +Face 8373 +UV Count: 3 + UV + UV + UV +Face 8374 +UV Count: 3 + UV + UV + UV +Face 8375 +UV Count: 3 + UV + UV + UV +Face 8376 +UV Count: 3 + UV + UV + UV +Face 8377 +UV Count: 3 + UV + UV + UV +Face 8378 +UV Count: 3 + UV + UV + UV +Face 8379 +UV Count: 3 + UV + UV + UV +Face 8380 +UV Count: 3 + UV + UV + UV +Face 8381 +UV Count: 3 + UV + UV + UV +Face 8382 +UV Count: 3 + UV + UV + UV +Face 8383 +UV Count: 3 + UV + UV + UV +Face 8384 +UV Count: 3 + UV + UV + UV +Face 8385 +UV Count: 3 + UV + UV + UV +Face 8386 +UV Count: 3 + UV + UV + UV +Face 8387 +UV Count: 3 + UV + UV + UV +Face 8388 +UV Count: 3 + UV + UV + UV +Face 8389 +UV Count: 3 + UV + UV + UV +Face 8390 +UV Count: 3 + UV + UV + UV +Face 8391 +UV Count: 3 + UV + UV + UV +Face 8392 +UV Count: 3 + UV + UV + UV +Face 8393 +UV Count: 3 + UV + UV + UV +Face 8394 +UV Count: 3 + UV + UV + UV +Face 8395 +UV Count: 3 + UV + UV + UV +Face 8396 +UV Count: 3 + UV + UV + UV +Face 8397 +UV Count: 3 + UV + UV + UV +Face 8398 +UV Count: 3 + UV + UV + UV +Face 8399 +UV Count: 3 + UV + UV + UV +Face 8400 +UV Count: 3 + UV + UV + UV +Face 8401 +UV Count: 3 + UV + UV + UV +Face 8402 +UV Count: 3 + UV + UV + UV +Face 8403 +UV Count: 3 + UV + UV + UV +Face 8404 +UV Count: 3 + UV + UV + UV +Face 8405 +UV Count: 3 + UV + UV + UV +Face 8406 +UV Count: 3 + UV + UV + UV +Face 8407 +UV Count: 3 + UV + UV + UV +Face 8408 +UV Count: 3 + UV + UV + UV +Face 8409 +UV Count: 3 + UV + UV + UV +Face 8410 +UV Count: 3 + UV + UV + UV +Face 8411 +UV Count: 3 + UV + UV + UV +Face 8412 +UV Count: 3 + UV + UV + UV +Face 8413 +UV Count: 3 + UV + UV + UV +Face 8414 +UV Count: 3 + UV + UV + UV +Face 8415 +UV Count: 3 + UV + UV + UV +Face 8416 +UV Count: 3 + UV + UV + UV +Face 8417 +UV Count: 3 + UV + UV + UV +Face 8418 +UV Count: 3 + UV + UV + UV +Face 8419 +UV Count: 3 + UV + UV + UV +Face 8420 +UV Count: 3 + UV + UV + UV +Face 8421 +UV Count: 3 + UV + UV + UV +Face 8422 +UV Count: 3 + UV + UV + UV +Face 8423 +UV Count: 3 + UV + UV + UV +Face 8424 +UV Count: 3 + UV + UV + UV +Face 8425 +UV Count: 3 + UV + UV + UV +Face 8426 +UV Count: 3 + UV + UV + UV +Face 8427 +UV Count: 3 + UV + UV + UV +Face 8428 +UV Count: 3 + UV + UV + UV +Face 8429 +UV Count: 3 + UV + UV + UV +Face 8430 +UV Count: 3 + UV + UV + UV +Face 8431 +UV Count: 3 + UV + UV + UV +Face 8432 +UV Count: 3 + UV + UV + UV +Face 8433 +UV Count: 3 + UV + UV + UV +Face 8434 +UV Count: 3 + UV + UV + UV +Face 8435 +UV Count: 3 + UV + UV + UV +Face 8436 +UV Count: 3 + UV + UV + UV +Face 8437 +UV Count: 3 + UV + UV + UV +Face 8438 +UV Count: 3 + UV + UV + UV +Face 8439 +UV Count: 3 + UV + UV + UV +Face 8440 +UV Count: 3 + UV + UV + UV +Face 8441 +UV Count: 3 + UV + UV + UV +Face 8442 +UV Count: 3 + UV + UV + UV +Face 8443 +UV Count: 3 + UV + UV + UV +Face 8444 +UV Count: 3 + UV + UV + UV +Face 8445 +UV Count: 3 + UV + UV + UV +Face 8446 +UV Count: 3 + UV + UV + UV +Face 8447 +UV Count: 3 + UV + UV + UV +Face 8448 +UV Count: 3 + UV + UV + UV +Face 8449 +UV Count: 3 + UV + UV + UV +Face 8450 +UV Count: 3 + UV + UV + UV +Face 8451 +UV Count: 3 + UV + UV + UV +Face 8452 +UV Count: 3 + UV + UV + UV +Face 8453 +UV Count: 3 + UV + UV + UV +Face 8454 +UV Count: 3 + UV + UV + UV +Face 8455 +UV Count: 3 + UV + UV + UV +Face 8456 +UV Count: 3 + UV + UV + UV +Face 8457 +UV Count: 3 + UV + UV + UV +Face 8458 +UV Count: 3 + UV + UV + UV +Face 8459 +UV Count: 3 + UV + UV + UV +Face 8460 +UV Count: 3 + UV + UV + UV +Face 8461 +UV Count: 3 + UV + UV + UV +Face 8462 +UV Count: 3 + UV + UV + UV +Face 8463 +UV Count: 3 + UV + UV + UV +Face 8464 +UV Count: 3 + UV + UV + UV +Face 8465 +UV Count: 3 + UV + UV + UV +Face 8466 +UV Count: 3 + UV + UV + UV +Face 8467 +UV Count: 3 + UV + UV + UV +Face 8468 +UV Count: 3 + UV + UV + UV +Face 8469 +UV Count: 3 + UV + UV + UV +Face 8470 +UV Count: 3 + UV + UV + UV +Face 8471 +UV Count: 3 + UV + UV + UV +Face 8472 +UV Count: 3 + UV + UV + UV +Face 8473 +UV Count: 3 + UV + UV + UV +Face 8474 +UV Count: 3 + UV + UV + UV +Face 8475 +UV Count: 3 + UV + UV + UV +Face 8476 +UV Count: 3 + UV + UV + UV +Face 8477 +UV Count: 3 + UV + UV + UV +Face 8478 +UV Count: 3 + UV + UV + UV +Face 8479 +UV Count: 3 + UV + UV + UV +Face 8480 +UV Count: 3 + UV + UV + UV +Face 8481 +UV Count: 3 + UV + UV + UV +Face 8482 +UV Count: 3 + UV + UV + UV +Face 8483 +UV Count: 3 + UV + UV + UV +Face 8484 +UV Count: 3 + UV + UV + UV +Face 8485 +UV Count: 3 + UV + UV + UV +Face 8486 +UV Count: 3 + UV + UV + UV +Face 8487 +UV Count: 3 + UV + UV + UV +Face 8488 +UV Count: 3 + UV + UV + UV +Face 8489 +UV Count: 3 + UV + UV + UV +Face 8490 +UV Count: 3 + UV + UV + UV +Face 8491 +UV Count: 3 + UV + UV + UV +Face 8492 +UV Count: 3 + UV + UV + UV +Face 8493 +UV Count: 3 + UV + UV + UV +Face 8494 +UV Count: 3 + UV + UV + UV +Face 8495 +UV Count: 3 + UV + UV + UV +Face 8496 +UV Count: 3 + UV + UV + UV +Face 8497 +UV Count: 3 + UV + UV + UV +Face 8498 +UV Count: 3 + UV + UV + UV +Face 8499 +UV Count: 3 + UV + UV + UV +Face 8500 +UV Count: 3 + UV + UV + UV +Face 8501 +UV Count: 3 + UV + UV + UV +Face 8502 +UV Count: 3 + UV + UV + UV +Face 8503 +UV Count: 3 + UV + UV + UV +Face 8504 +UV Count: 3 + UV + UV + UV +Face 8505 +UV Count: 3 + UV + UV + UV +Face 8506 +UV Count: 3 + UV + UV + UV +Face 8507 +UV Count: 3 + UV + UV + UV +Face 8508 +UV Count: 3 + UV + UV + UV +Face 8509 +UV Count: 3 + UV + UV + UV +Face 8510 +UV Count: 3 + UV + UV + UV +Face 8511 +UV Count: 3 + UV + UV + UV +Face 8512 +UV Count: 3 + UV + UV + UV +Face 8513 +UV Count: 3 + UV + UV + UV +Face 8514 +UV Count: 3 + UV + UV + UV +Face 8515 +UV Count: 3 + UV + UV + UV +Face 8516 +UV Count: 3 + UV + UV + UV +Face 8517 +UV Count: 3 + UV + UV + UV +Face 8518 +UV Count: 3 + UV + UV + UV +Face 8519 +UV Count: 3 + UV + UV + UV +Face 8520 +UV Count: 3 + UV + UV + UV +Face 8521 +UV Count: 3 + UV + UV + UV +Face 8522 +UV Count: 3 + UV + UV + UV +Face 8523 +UV Count: 3 + UV + UV + UV +Face 8524 +UV Count: 3 + UV + UV + UV +Face 8525 +UV Count: 3 + UV + UV + UV +Face 8526 +UV Count: 3 + UV + UV + UV +Face 8527 +UV Count: 3 + UV + UV + UV +Face 8528 +UV Count: 3 + UV + UV + UV +Face 8529 +UV Count: 3 + UV + UV + UV +Face 8530 +UV Count: 3 + UV + UV + UV +Face 8531 +UV Count: 3 + UV + UV + UV +Face 8532 +UV Count: 3 + UV + UV + UV +Face 8533 +UV Count: 3 + UV + UV + UV +Face 8534 +UV Count: 3 + UV + UV + UV +Face 8535 +UV Count: 3 + UV + UV + UV +Face 8536 +UV Count: 3 + UV + UV + UV +Face 8537 +UV Count: 3 + UV + UV + UV +Face 8538 +UV Count: 3 + UV + UV + UV +Face 8539 +UV Count: 3 + UV + UV + UV +Face 8540 +UV Count: 3 + UV + UV + UV +Face 8541 +UV Count: 3 + UV + UV + UV +Face 8542 +UV Count: 3 + UV + UV + UV +Face 8543 +UV Count: 3 + UV + UV + UV +Face 8544 +UV Count: 3 + UV + UV + UV +Face 8545 +UV Count: 3 + UV + UV + UV +Face 8546 +UV Count: 3 + UV + UV + UV +Face 8547 +UV Count: 3 + UV + UV + UV +Face 8548 +UV Count: 3 + UV + UV + UV +Face 8549 +UV Count: 3 + UV + UV + UV +Face 8550 +UV Count: 3 + UV + UV + UV +Face 8551 +UV Count: 3 + UV + UV + UV +Face 8552 +UV Count: 3 + UV + UV + UV +Face 8553 +UV Count: 3 + UV + UV + UV +Face 8554 +UV Count: 3 + UV + UV + UV +Face 8555 +UV Count: 3 + UV + UV + UV +Face 8556 +UV Count: 3 + UV + UV + UV +Face 8557 +UV Count: 3 + UV + UV + UV +Face 8558 +UV Count: 3 + UV + UV + UV +Face 8559 +UV Count: 3 + UV + UV + UV +Face 8560 +UV Count: 3 + UV + UV + UV +Face 8561 +UV Count: 3 + UV + UV + UV +Face 8562 +UV Count: 3 + UV + UV + UV +Face 8563 +UV Count: 3 + UV + UV + UV +Face 8564 +UV Count: 3 + UV + UV + UV +Face 8565 +UV Count: 3 + UV + UV + UV +Face 8566 +UV Count: 3 + UV + UV + UV +Face 8567 +UV Count: 3 + UV + UV + UV +Face 8568 +UV Count: 3 + UV + UV + UV +Face 8569 +UV Count: 3 + UV + UV + UV +Face 8570 +UV Count: 3 + UV + UV + UV +Face 8571 +UV Count: 3 + UV + UV + UV +Face 8572 +UV Count: 3 + UV + UV + UV +Face 8573 +UV Count: 3 + UV + UV + UV +Face 8574 +UV Count: 3 + UV + UV + UV +Face 8575 +UV Count: 3 + UV + UV + UV +Face 8576 +UV Count: 3 + UV + UV + UV +Face 8577 +UV Count: 3 + UV + UV + UV +Face 8578 +UV Count: 3 + UV + UV + UV +Face 8579 +UV Count: 3 + UV + UV + UV +Face 8580 +UV Count: 3 + UV + UV + UV +Face 8581 +UV Count: 3 + UV + UV + UV +Face 8582 +UV Count: 3 + UV + UV + UV +Face 8583 +UV Count: 3 + UV + UV + UV +Face 8584 +UV Count: 3 + UV + UV + UV +Face 8585 +UV Count: 3 + UV + UV + UV +Face 8586 +UV Count: 3 + UV + UV + UV +Face 8587 +UV Count: 3 + UV + UV + UV +Face 8588 +UV Count: 3 + UV + UV + UV +Face 8589 +UV Count: 3 + UV + UV + UV +Face 8590 +UV Count: 3 + UV + UV + UV +Face 8591 +UV Count: 3 + UV + UV + UV +Face 8592 +UV Count: 3 + UV + UV + UV +Face 8593 +UV Count: 3 + UV + UV + UV +Face 8594 +UV Count: 3 + UV + UV + UV +Face 8595 +UV Count: 3 + UV + UV + UV +Face 8596 +UV Count: 3 + UV + UV + UV +Face 8597 +UV Count: 3 + UV + UV + UV +Face 8598 +UV Count: 3 + UV + UV + UV +Face 8599 +UV Count: 3 + UV + UV + UV +Face 8600 +UV Count: 3 + UV + UV + UV +Face 8601 +UV Count: 3 + UV + UV + UV +Face 8602 +UV Count: 3 + UV + UV + UV +Face 8603 +UV Count: 3 + UV + UV + UV +Face 8604 +UV Count: 3 + UV + UV + UV +Face 8605 +UV Count: 3 + UV + UV + UV +Face 8606 +UV Count: 3 + UV + UV + UV +Face 8607 +UV Count: 3 + UV + UV + UV +Face 8608 +UV Count: 3 + UV + UV + UV +Face 8609 +UV Count: 3 + UV + UV + UV +Face 8610 +UV Count: 3 + UV + UV + UV +Face 8611 +UV Count: 3 + UV + UV + UV +Face 8612 +UV Count: 3 + UV + UV + UV +Face 8613 +UV Count: 3 + UV + UV + UV +Face 8614 +UV Count: 3 + UV + UV + UV +Face 8615 +UV Count: 3 + UV + UV + UV +Face 8616 +UV Count: 3 + UV + UV + UV +Face 8617 +UV Count: 3 + UV + UV + UV +Face 8618 +UV Count: 3 + UV + UV + UV +Face 8619 +UV Count: 3 + UV + UV + UV +Face 8620 +UV Count: 3 + UV + UV + UV +Face 8621 +UV Count: 3 + UV + UV + UV +Face 8622 +UV Count: 3 + UV + UV + UV +Face 8623 +UV Count: 3 + UV + UV + UV +Face 8624 +UV Count: 3 + UV + UV + UV +Face 8625 +UV Count: 3 + UV + UV + UV +Face 8626 +UV Count: 3 + UV + UV + UV +Face 8627 +UV Count: 3 + UV + UV + UV +Face 8628 +UV Count: 3 + UV + UV + UV +Face 8629 +UV Count: 3 + UV + UV + UV +Face 8630 +UV Count: 3 + UV + UV + UV +Face 8631 +UV Count: 3 + UV + UV + UV +Face 8632 +UV Count: 3 + UV + UV + UV +Face 8633 +UV Count: 3 + UV + UV + UV +Face 8634 +UV Count: 3 + UV + UV + UV +Face 8635 +UV Count: 3 + UV + UV + UV +Face 8636 +UV Count: 3 + UV + UV + UV +Face 8637 +UV Count: 3 + UV + UV + UV +Face 8638 +UV Count: 3 + UV + UV + UV +Face 8639 +UV Count: 3 + UV + UV + UV +Face 8640 +UV Count: 3 + UV + UV + UV +Face 8641 +UV Count: 3 + UV + UV + UV +Face 8642 +UV Count: 3 + UV + UV + UV +Face 8643 +UV Count: 3 + UV + UV + UV +Face 8644 +UV Count: 3 + UV + UV + UV +Face 8645 +UV Count: 3 + UV + UV + UV +Face 8646 +UV Count: 3 + UV + UV + UV +Face 8647 +UV Count: 3 + UV + UV + UV +Face 8648 +UV Count: 3 + UV + UV + UV +Face 8649 +UV Count: 3 + UV + UV + UV +Face 8650 +UV Count: 3 + UV + UV + UV +Face 8651 +UV Count: 3 + UV + UV + UV +Face 8652 +UV Count: 3 + UV + UV + UV +Face 8653 +UV Count: 3 + UV + UV + UV +Face 8654 +UV Count: 3 + UV + UV + UV +Face 8655 +UV Count: 3 + UV + UV + UV +Face 8656 +UV Count: 3 + UV + UV + UV +Face 8657 +UV Count: 3 + UV + UV + UV +Face 8658 +UV Count: 3 + UV + UV + UV +Face 8659 +UV Count: 3 + UV + UV + UV +Face 8660 +UV Count: 3 + UV + UV + UV +Face 8661 +UV Count: 3 + UV + UV + UV +Face 8662 +UV Count: 3 + UV + UV + UV +Face 8663 +UV Count: 3 + UV + UV + UV +Face 8664 +UV Count: 3 + UV + UV + UV +Face 8665 +UV Count: 3 + UV + UV + UV +Face 8666 +UV Count: 3 + UV + UV + UV +Face 8667 +UV Count: 3 + UV + UV + UV +Face 8668 +UV Count: 3 + UV + UV + UV +Face 8669 +UV Count: 3 + UV + UV + UV +Face 8670 +UV Count: 3 + UV + UV + UV +Face 8671 +UV Count: 3 + UV + UV + UV +Face 8672 +UV Count: 3 + UV + UV + UV +Face 8673 +UV Count: 3 + UV + UV + UV +Face 8674 +UV Count: 3 + UV + UV + UV +Face 8675 +UV Count: 3 + UV + UV + UV +Face 8676 +UV Count: 3 + UV + UV + UV +Face 8677 +UV Count: 3 + UV + UV + UV +Face 8678 +UV Count: 3 + UV + UV + UV +Face 8679 +UV Count: 3 + UV + UV + UV +Face 8680 +UV Count: 3 + UV + UV + UV +Face 8681 +UV Count: 3 + UV + UV + UV +Face 8682 +UV Count: 3 + UV + UV + UV +Face 8683 +UV Count: 3 + UV + UV + UV +Face 8684 +UV Count: 3 + UV + UV + UV +Face 8685 +UV Count: 3 + UV + UV + UV +Face 8686 +UV Count: 3 + UV + UV + UV +Face 8687 +UV Count: 3 + UV + UV + UV +Face 8688 +UV Count: 3 + UV + UV + UV +Face 8689 +UV Count: 3 + UV + UV + UV +Face 8690 +UV Count: 3 + UV + UV + UV +Face 8691 +UV Count: 3 + UV + UV + UV +Face 8692 +UV Count: 3 + UV + UV + UV +Face 8693 +UV Count: 3 + UV + UV + UV +Face 8694 +UV Count: 3 + UV + UV + UV +Face 8695 +UV Count: 3 + UV + UV + UV +Face 8696 +UV Count: 3 + UV + UV + UV +Face 8697 +UV Count: 3 + UV + UV + UV +Face 8698 +UV Count: 3 + UV + UV + UV +Face 8699 +UV Count: 3 + UV + UV + UV +Face 8700 +UV Count: 3 + UV + UV + UV +Face 8701 +UV Count: 3 + UV + UV + UV +Face 8702 +UV Count: 3 + UV + UV + UV +Face 8703 +UV Count: 3 + UV + UV + UV +Face 8704 +UV Count: 3 + UV + UV + UV +Face 8705 +UV Count: 3 + UV + UV + UV +Face 8706 +UV Count: 3 + UV + UV + UV +Face 8707 +UV Count: 3 + UV + UV + UV +Face 8708 +UV Count: 3 + UV + UV + UV +Face 8709 +UV Count: 3 + UV + UV + UV +Face 8710 +UV Count: 3 + UV + UV + UV +Face 8711 +UV Count: 3 + UV + UV + UV +Face 8712 +UV Count: 3 + UV + UV + UV +Face 8713 +UV Count: 3 + UV + UV + UV +Face 8714 +UV Count: 3 + UV + UV + UV +Face 8715 +UV Count: 3 + UV + UV + UV +Face 8716 +UV Count: 3 + UV + UV + UV +Face 8717 +UV Count: 3 + UV + UV + UV +Face 8718 +UV Count: 3 + UV + UV + UV +Face 8719 +UV Count: 3 + UV + UV + UV +Face 8720 +UV Count: 3 + UV + UV + UV +Face 8721 +UV Count: 3 + UV + UV + UV +Face 8722 +UV Count: 3 + UV + UV + UV +Face 8723 +UV Count: 3 + UV + UV + UV +Face 8724 +UV Count: 3 + UV + UV + UV +Face 8725 +UV Count: 3 + UV + UV + UV +Face 8726 +UV Count: 3 + UV + UV + UV +Face 8727 +UV Count: 3 + UV + UV + UV +Face 8728 +UV Count: 3 + UV + UV + UV +Face 8729 +UV Count: 3 + UV + UV + UV +Face 8730 +UV Count: 3 + UV + UV + UV +Face 8731 +UV Count: 3 + UV + UV + UV +Face 8732 +UV Count: 3 + UV + UV + UV +Face 8733 +UV Count: 3 + UV + UV + UV +Face 8734 +UV Count: 3 + UV + UV + UV +Face 8735 +UV Count: 3 + UV + UV + UV +Face 8736 +UV Count: 3 + UV + UV + UV +Face 8737 +UV Count: 3 + UV + UV + UV +Face 8738 +UV Count: 3 + UV + UV + UV +Face 8739 +UV Count: 3 + UV + UV + UV +Face 8740 +UV Count: 3 + UV + UV + UV +Face 8741 +UV Count: 3 + UV + UV + UV +Face 8742 +UV Count: 3 + UV + UV + UV +Face 8743 +UV Count: 3 + UV + UV + UV +Face 8744 +UV Count: 3 + UV + UV + UV +Face 8745 +UV Count: 3 + UV + UV + UV +Face 8746 +UV Count: 3 + UV + UV + UV +Face 8747 +UV Count: 3 + UV + UV + UV +Face 8748 +UV Count: 3 + UV + UV + UV +Face 8749 +UV Count: 3 + UV + UV + UV +Face 8750 +UV Count: 3 + UV + UV + UV +Face 8751 +UV Count: 3 + UV + UV + UV +Face 8752 +UV Count: 3 + UV + UV + UV +Face 8753 +UV Count: 3 + UV + UV + UV +Face 8754 +UV Count: 3 + UV + UV + UV +Face 8755 +UV Count: 3 + UV + UV + UV +Face 8756 +UV Count: 3 + UV + UV + UV +Face 8757 +UV Count: 3 + UV + UV + UV +Face 8758 +UV Count: 3 + UV + UV + UV +Face 8759 +UV Count: 3 + UV + UV + UV +Face 8760 +UV Count: 3 + UV + UV + UV +Face 8761 +UV Count: 3 + UV + UV + UV +Face 8762 +UV Count: 3 + UV + UV + UV +Face 8763 +UV Count: 3 + UV + UV + UV +Face 8764 +UV Count: 3 + UV + UV + UV +Face 8765 +UV Count: 3 + UV + UV + UV +Face 8766 +UV Count: 3 + UV + UV + UV +Face 8767 +UV Count: 3 + UV + UV + UV +Face 8768 +UV Count: 3 + UV + UV + UV +Face 8769 +UV Count: 3 + UV + UV + UV +Face 8770 +UV Count: 3 + UV + UV + UV +Face 8771 +UV Count: 3 + UV + UV + UV +Face 8772 +UV Count: 3 + UV + UV + UV +Face 8773 +UV Count: 3 + UV + UV + UV +Face 8774 +UV Count: 3 + UV + UV + UV +Face 8775 +UV Count: 3 + UV + UV + UV +Face 8776 +UV Count: 3 + UV + UV + UV +Face 8777 +UV Count: 3 + UV + UV + UV +Face 8778 +UV Count: 3 + UV + UV + UV +Face 8779 +UV Count: 3 + UV + UV + UV +Face 8780 +UV Count: 3 + UV + UV + UV +Face 8781 +UV Count: 3 + UV + UV + UV +Face 8782 +UV Count: 3 + UV + UV + UV +Face 8783 +UV Count: 3 + UV + UV + UV +Face 8784 +UV Count: 3 + UV + UV + UV +Face 8785 +UV Count: 3 + UV + UV + UV +Face 8786 +UV Count: 3 + UV + UV + UV +Face 8787 +UV Count: 3 + UV + UV + UV +Face 8788 +UV Count: 3 + UV + UV + UV +Face 8789 +UV Count: 3 + UV + UV + UV +Face 8790 +UV Count: 3 + UV + UV + UV +Face 8791 +UV Count: 3 + UV + UV + UV +Face 8792 +UV Count: 3 + UV + UV + UV +Face 8793 +UV Count: 3 + UV + UV + UV +Face 8794 +UV Count: 3 + UV + UV + UV +Face 8795 +UV Count: 3 + UV + UV + UV +Face 8796 +UV Count: 3 + UV + UV + UV +Face 8797 +UV Count: 3 + UV + UV + UV +Face 8798 +UV Count: 3 + UV + UV + UV +Face 8799 +UV Count: 3 + UV + UV + UV +Face 8800 +UV Count: 3 + UV + UV + UV +Face 8801 +UV Count: 3 + UV + UV + UV +Face 8802 +UV Count: 3 + UV + UV + UV +Face 8803 +UV Count: 3 + UV + UV + UV +Face 8804 +UV Count: 3 + UV + UV + UV +Face 8805 +UV Count: 3 + UV + UV + UV +Face 8806 +UV Count: 3 + UV + UV + UV +Face 8807 +UV Count: 3 + UV + UV + UV +Face 8808 +UV Count: 3 + UV + UV + UV +Face 8809 +UV Count: 3 + UV + UV + UV +Face 8810 +UV Count: 3 + UV + UV + UV +Face 8811 +UV Count: 3 + UV + UV + UV +Face 8812 +UV Count: 3 + UV + UV + UV +Face 8813 +UV Count: 3 + UV + UV + UV +Face 8814 +UV Count: 3 + UV + UV + UV +Face 8815 +UV Count: 3 + UV + UV + UV +Face 8816 +UV Count: 3 + UV + UV + UV +Face 8817 +UV Count: 3 + UV + UV + UV +Face 8818 +UV Count: 3 + UV + UV + UV +Face 8819 +UV Count: 3 + UV + UV + UV +Face 8820 +UV Count: 3 + UV + UV + UV +Face 8821 +UV Count: 3 + UV + UV + UV +Face 8822 +UV Count: 3 + UV + UV + UV +Face 8823 +UV Count: 3 + UV + UV + UV +Face 8824 +UV Count: 3 + UV + UV + UV +Face 8825 +UV Count: 3 + UV + UV + UV +Face 8826 +UV Count: 3 + UV + UV + UV +Face 8827 +UV Count: 3 + UV + UV + UV +Face 8828 +UV Count: 3 + UV + UV + UV +Face 8829 +UV Count: 3 + UV + UV + UV +Face 8830 +UV Count: 3 + UV + UV + UV +Face 8831 +UV Count: 3 + UV + UV + UV +Face 8832 +UV Count: 3 + UV + UV + UV +Face 8833 +UV Count: 3 + UV + UV + UV +Face 8834 +UV Count: 3 + UV + UV + UV +Face 8835 +UV Count: 3 + UV + UV + UV +Face 8836 +UV Count: 3 + UV + UV + UV +Face 8837 +UV Count: 3 + UV + UV + UV +Face 8838 +UV Count: 3 + UV + UV + UV +Face 8839 +UV Count: 3 + UV + UV + UV +Face 8840 +UV Count: 3 + UV + UV + UV +Face 8841 +UV Count: 3 + UV + UV + UV +Face 8842 +UV Count: 3 + UV + UV + UV +Face 8843 +UV Count: 3 + UV + UV + UV +Face 8844 +UV Count: 3 + UV + UV + UV +Face 8845 +UV Count: 3 + UV + UV + UV +Face 8846 +UV Count: 3 + UV + UV + UV +Face 8847 +UV Count: 3 + UV + UV + UV +Face 8848 +UV Count: 3 + UV + UV + UV +Face 8849 +UV Count: 3 + UV + UV + UV +Face 8850 +UV Count: 3 + UV + UV + UV +Face 8851 +UV Count: 3 + UV + UV + UV +Face 8852 +UV Count: 3 + UV + UV + UV +Face 8853 +UV Count: 3 + UV + UV + UV +Face 8854 +UV Count: 3 + UV + UV + UV +Face 8855 +UV Count: 3 + UV + UV + UV +Face 8856 +UV Count: 3 + UV + UV + UV +Face 8857 +UV Count: 3 + UV + UV + UV +Face 8858 +UV Count: 3 + UV + UV + UV +Face 8859 +UV Count: 3 + UV + UV + UV +Face 8860 +UV Count: 3 + UV + UV + UV +Face 8861 +UV Count: 3 + UV + UV + UV +Face 8862 +UV Count: 3 + UV + UV + UV +Face 8863 +UV Count: 3 + UV + UV + UV +Face 8864 +UV Count: 3 + UV + UV + UV +Face 8865 +UV Count: 3 + UV + UV + UV +Face 8866 +UV Count: 3 + UV + UV + UV +Face 8867 +UV Count: 3 + UV + UV + UV +Face 8868 +UV Count: 3 + UV + UV + UV +Face 8869 +UV Count: 3 + UV + UV + UV +Face 8870 +UV Count: 3 + UV + UV + UV +Face 8871 +UV Count: 3 + UV + UV + UV +Face 8872 +UV Count: 3 + UV + UV + UV +Face 8873 +UV Count: 3 + UV + UV + UV +Face 8874 +UV Count: 3 + UV + UV + UV +Face 8875 +UV Count: 3 + UV + UV + UV +Face 8876 +UV Count: 3 + UV + UV + UV +Face 8877 +UV Count: 3 + UV + UV + UV +Face 8878 +UV Count: 3 + UV + UV + UV +Face 8879 +UV Count: 3 + UV + UV + UV +Face 8880 +UV Count: 3 + UV + UV + UV +Face 8881 +UV Count: 3 + UV + UV + UV +Face 8882 +UV Count: 3 + UV + UV + UV +Face 8883 +UV Count: 3 + UV + UV + UV +Face 8884 +UV Count: 3 + UV + UV + UV +Face 8885 +UV Count: 3 + UV + UV + UV +Face 8886 +UV Count: 3 + UV + UV + UV +Face 8887 +UV Count: 3 + UV + UV + UV +Face 8888 +UV Count: 3 + UV + UV + UV +Face 8889 +UV Count: 3 + UV + UV + UV +Face 8890 +UV Count: 3 + UV + UV + UV +Face 8891 +UV Count: 3 + UV + UV + UV +Face 8892 +UV Count: 3 + UV + UV + UV +Face 8893 +UV Count: 3 + UV + UV + UV +Face 8894 +UV Count: 3 + UV + UV + UV +Face 8895 +UV Count: 3 + UV + UV + UV +Face 8896 +UV Count: 3 + UV + UV + UV +Face 8897 +UV Count: 3 + UV + UV + UV +Face 8898 +UV Count: 3 + UV + UV + UV +Face 8899 +UV Count: 3 + UV + UV + UV +Face 8900 +UV Count: 3 + UV + UV + UV +Face 8901 +UV Count: 3 + UV + UV + UV +Face 8902 +UV Count: 3 + UV + UV + UV +Face 8903 +UV Count: 3 + UV + UV + UV +Face 8904 +UV Count: 3 + UV + UV + UV +Face 8905 +UV Count: 3 + UV + UV + UV +Face 8906 +UV Count: 3 + UV + UV + UV +Face 8907 +UV Count: 3 + UV + UV + UV +Face 8908 +UV Count: 3 + UV + UV + UV +Face 8909 +UV Count: 3 + UV + UV + UV +Face 8910 +UV Count: 3 + UV + UV + UV +Face 8911 +UV Count: 3 + UV + UV + UV +Face 8912 +UV Count: 3 + UV + UV + UV +Face 8913 +UV Count: 3 + UV + UV + UV +Face 8914 +UV Count: 3 + UV + UV + UV +Face 8915 +UV Count: 3 + UV + UV + UV +Face 8916 +UV Count: 3 + UV + UV + UV +Face 8917 +UV Count: 3 + UV + UV + UV +Face 8918 +UV Count: 3 + UV + UV + UV +Face 8919 +UV Count: 3 + UV + UV + UV +Face 8920 +UV Count: 3 + UV + UV + UV +Face 8921 +UV Count: 3 + UV + UV + UV +Face 8922 +UV Count: 3 + UV + UV + UV +Face 8923 +UV Count: 3 + UV + UV + UV +Face 8924 +UV Count: 3 + UV + UV + UV +Face 8925 +UV Count: 3 + UV + UV + UV +Face 8926 +UV Count: 3 + UV + UV + UV +Face 8927 +UV Count: 3 + UV + UV + UV +Face 8928 +UV Count: 3 + UV + UV + UV +Face 8929 +UV Count: 3 + UV + UV + UV +Face 8930 +UV Count: 3 + UV + UV + UV +Face 8931 +UV Count: 3 + UV + UV + UV +Face 8932 +UV Count: 3 + UV + UV + UV +Face 8933 +UV Count: 3 + UV + UV + UV +Face 8934 +UV Count: 3 + UV + UV + UV +Face 8935 +UV Count: 3 + UV + UV + UV +Face 8936 +UV Count: 3 + UV + UV + UV +Face 8937 +UV Count: 3 + UV + UV + UV +Face 8938 +UV Count: 3 + UV + UV + UV +Face 8939 +UV Count: 3 + UV + UV + UV +Face 8940 +UV Count: 3 + UV + UV + UV +Face 8941 +UV Count: 3 + UV + UV + UV +Face 8942 +UV Count: 3 + UV + UV + UV +Face 8943 +UV Count: 3 + UV + UV + UV +Face 8944 +UV Count: 3 + UV + UV + UV +Face 8945 +UV Count: 3 + UV + UV + UV +Face 8946 +UV Count: 3 + UV + UV + UV +Face 8947 +UV Count: 3 + UV + UV + UV +Face 8948 +UV Count: 3 + UV + UV + UV +Face 8949 +UV Count: 3 + UV + UV + UV +Face 8950 +UV Count: 3 + UV + UV + UV +Face 8951 +UV Count: 3 + UV + UV + UV +Face 8952 +UV Count: 3 + UV + UV + UV +Face 8953 +UV Count: 3 + UV + UV + UV +Face 8954 +UV Count: 3 + UV + UV + UV +Face 8955 +UV Count: 3 + UV + UV + UV +Face 8956 +UV Count: 3 + UV + UV + UV +Face 8957 +UV Count: 3 + UV + UV + UV +Face 8958 +UV Count: 3 + UV + UV + UV +Face 8959 +UV Count: 3 + UV + UV + UV +Face 8960 +UV Count: 3 + UV + UV + UV +Face 8961 +UV Count: 3 + UV + UV + UV +Face 8962 +UV Count: 3 + UV + UV + UV +Face 8963 +UV Count: 3 + UV + UV + UV +Face 8964 +UV Count: 3 + UV + UV + UV +Face 8965 +UV Count: 3 + UV + UV + UV +Face 8966 +UV Count: 3 + UV + UV + UV +Face 8967 +UV Count: 3 + UV + UV + UV +Face 8968 +UV Count: 3 + UV + UV + UV +Face 8969 +UV Count: 3 + UV + UV + UV +Face 8970 +UV Count: 3 + UV + UV + UV +Face 8971 +UV Count: 3 + UV + UV + UV +Face 8972 +UV Count: 3 + UV + UV + UV +Face 8973 +UV Count: 3 + UV + UV + UV +Face 8974 +UV Count: 3 + UV + UV + UV +Face 8975 +UV Count: 3 + UV + UV + UV +Face 8976 +UV Count: 3 + UV + UV + UV +Face 8977 +UV Count: 3 + UV + UV + UV +Face 8978 +UV Count: 3 + UV + UV + UV +Face 8979 +UV Count: 3 + UV + UV + UV +Face 8980 +UV Count: 3 + UV + UV + UV +Face 8981 +UV Count: 3 + UV + UV + UV +Face 8982 +UV Count: 3 + UV + UV + UV +Face 8983 +UV Count: 3 + UV + UV + UV +Face 8984 +UV Count: 3 + UV + UV + UV +Face 8985 +UV Count: 3 + UV + UV + UV +Face 8986 +UV Count: 3 + UV + UV + UV +Face 8987 +UV Count: 3 + UV + UV + UV +Face 8988 +UV Count: 3 + UV + UV + UV +Face 8989 +UV Count: 3 + UV + UV + UV +Face 8990 +UV Count: 3 + UV + UV + UV +Face 8991 +UV Count: 3 + UV + UV + UV +Face 8992 +UV Count: 3 + UV + UV + UV +Face 8993 +UV Count: 3 + UV + UV + UV +Face 8994 +UV Count: 3 + UV + UV + UV +Face 8995 +UV Count: 3 + UV + UV + UV +Face 8996 +UV Count: 3 + UV + UV + UV +Face 8997 +UV Count: 3 + UV + UV + UV +Face 8998 +UV Count: 3 + UV + UV + UV +Face 8999 +UV Count: 3 + UV + UV + UV +Face 9000 +UV Count: 3 + UV + UV + UV +Face 9001 +UV Count: 3 + UV + UV + UV +Face 9002 +UV Count: 3 + UV + UV + UV +Face 9003 +UV Count: 3 + UV + UV + UV +Face 9004 +UV Count: 3 + UV + UV + UV +Face 9005 +UV Count: 3 + UV + UV + UV +Face 9006 +UV Count: 3 + UV + UV + UV +Face 9007 +UV Count: 3 + UV + UV + UV +Face 9008 +UV Count: 3 + UV + UV + UV +Face 9009 +UV Count: 3 + UV + UV + UV +Face 9010 +UV Count: 3 + UV + UV + UV +Face 9011 +UV Count: 3 + UV + UV + UV +Face 9012 +UV Count: 3 + UV + UV + UV +Face 9013 +UV Count: 3 + UV + UV + UV +Face 9014 +UV Count: 3 + UV + UV + UV +Face 9015 +UV Count: 3 + UV + UV + UV +Face 9016 +UV Count: 3 + UV + UV + UV +Face 9017 +UV Count: 3 + UV + UV + UV +Face 9018 +UV Count: 3 + UV + UV + UV +Face 9019 +UV Count: 3 + UV + UV + UV +Face 9020 +UV Count: 3 + UV + UV + UV +Face 9021 +UV Count: 3 + UV + UV + UV +Face 9022 +UV Count: 3 + UV + UV + UV +Face 9023 +UV Count: 3 + UV + UV + UV +Face 9024 +UV Count: 3 + UV + UV + UV +Face 9025 +UV Count: 3 + UV + UV + UV +Face 9026 +UV Count: 3 + UV + UV + UV +Face 9027 +UV Count: 3 + UV + UV + UV +Face 9028 +UV Count: 3 + UV + UV + UV +Face 9029 +UV Count: 3 + UV + UV + UV +Face 9030 +UV Count: 3 + UV + UV + UV +Face 9031 +UV Count: 3 + UV + UV + UV +Face 9032 +UV Count: 3 + UV + UV + UV +Face 9033 +UV Count: 3 + UV + UV + UV +Face 9034 +UV Count: 3 + UV + UV + UV +Face 9035 +UV Count: 3 + UV + UV + UV +Face 9036 +UV Count: 3 + UV + UV + UV +Face 9037 +UV Count: 3 + UV + UV + UV +Face 9038 +UV Count: 3 + UV + UV + UV +Face 9039 +UV Count: 3 + UV + UV + UV +Face 9040 +UV Count: 3 + UV + UV + UV +Face 9041 +UV Count: 3 + UV + UV + UV +Face 9042 +UV Count: 3 + UV + UV + UV +Face 9043 +UV Count: 3 + UV + UV + UV +Face 9044 +UV Count: 3 + UV + UV + UV +Face 9045 +UV Count: 3 + UV + UV + UV +Face 9046 +UV Count: 3 + UV + UV + UV +Face 9047 +UV Count: 3 + UV + UV + UV +Face 9048 +UV Count: 3 + UV + UV + UV +Face 9049 +UV Count: 3 + UV + UV + UV +Face 9050 +UV Count: 3 + UV + UV + UV +Face 9051 +UV Count: 3 + UV + UV + UV +Face 9052 +UV Count: 3 + UV + UV + UV +Face 9053 +UV Count: 3 + UV + UV + UV +Face 9054 +UV Count: 3 + UV + UV + UV +Face 9055 +UV Count: 3 + UV + UV + UV +Face 9056 +UV Count: 3 + UV + UV + UV +Face 9057 +UV Count: 3 + UV + UV + UV +Face 9058 +UV Count: 3 + UV + UV + UV +Face 9059 +UV Count: 3 + UV + UV + UV +Face 9060 +UV Count: 3 + UV + UV + UV +Face 9061 +UV Count: 3 + UV + UV + UV +Face 9062 +UV Count: 3 + UV + UV + UV +Face 9063 +UV Count: 3 + UV + UV + UV +Face 9064 +UV Count: 3 + UV + UV + UV +Face 9065 +UV Count: 3 + UV + UV + UV +Face 9066 +UV Count: 3 + UV + UV + UV +Face 9067 +UV Count: 3 + UV + UV + UV +Face 9068 +UV Count: 3 + UV + UV + UV +Face 9069 +UV Count: 3 + UV + UV + UV +Face 9070 +UV Count: 3 + UV + UV + UV +Face 9071 +UV Count: 3 + UV + UV + UV +Face 9072 +UV Count: 3 + UV + UV + UV +Face 9073 +UV Count: 3 + UV + UV + UV +Face 9074 +UV Count: 3 + UV + UV + UV +Face 9075 +UV Count: 3 + UV + UV + UV +Face 9076 +UV Count: 3 + UV + UV + UV +Face 9077 +UV Count: 3 + UV + UV + UV +Face 9078 +UV Count: 3 + UV + UV + UV +Face 9079 +UV Count: 3 + UV + UV + UV +Face 9080 +UV Count: 3 + UV + UV + UV +Face 9081 +UV Count: 3 + UV + UV + UV +Face 9082 +UV Count: 3 + UV + UV + UV +Face 9083 +UV Count: 3 + UV + UV + UV +Face 9084 +UV Count: 3 + UV + UV + UV +Face 9085 +UV Count: 3 + UV + UV + UV +Face 9086 +UV Count: 3 + UV + UV + UV +Face 9087 +UV Count: 3 + UV + UV + UV +Face 9088 +UV Count: 3 + UV + UV + UV +Face 9089 +UV Count: 3 + UV + UV + UV +Face 9090 +UV Count: 3 + UV + UV + UV +Face 9091 +UV Count: 3 + UV + UV + UV +Face 9092 +UV Count: 3 + UV + UV + UV +Face 9093 +UV Count: 3 + UV + UV + UV +Face 9094 +UV Count: 3 + UV + UV + UV +Face 9095 +UV Count: 3 + UV + UV + UV +Face 9096 +UV Count: 3 + UV + UV + UV +Face 9097 +UV Count: 3 + UV + UV + UV +Face 9098 +UV Count: 3 + UV + UV + UV +Face 9099 +UV Count: 3 + UV + UV + UV +Face 9100 +UV Count: 3 + UV + UV + UV +Face 9101 +UV Count: 3 + UV + UV + UV +Face 9102 +UV Count: 3 + UV + UV + UV +Face 9103 +UV Count: 3 + UV + UV + UV +Face 9104 +UV Count: 3 + UV + UV + UV +Face 9105 +UV Count: 3 + UV + UV + UV +Face 9106 +UV Count: 3 + UV + UV + UV +Face 9107 +UV Count: 3 + UV + UV + UV +Face 9108 +UV Count: 3 + UV + UV + UV +Face 9109 +UV Count: 3 + UV + UV + UV +Face 9110 +UV Count: 3 + UV + UV + UV +Face 9111 +UV Count: 3 + UV + UV + UV +Face 9112 +UV Count: 3 + UV + UV + UV +Face 9113 +UV Count: 3 + UV + UV + UV +Face 9114 +UV Count: 3 + UV + UV + UV +Face 9115 +UV Count: 3 + UV + UV + UV +Face 9116 +UV Count: 3 + UV + UV + UV +Face 9117 +UV Count: 3 + UV + UV + UV +Face 9118 +UV Count: 3 + UV + UV + UV +Face 9119 +UV Count: 3 + UV + UV + UV +Face 9120 +UV Count: 3 + UV + UV + UV +Face 9121 +UV Count: 3 + UV + UV + UV +Face 9122 +UV Count: 3 + UV + UV + UV +Face 9123 +UV Count: 3 + UV + UV + UV +Face 9124 +UV Count: 3 + UV + UV + UV +Face 9125 +UV Count: 3 + UV + UV + UV +Face 9126 +UV Count: 3 + UV + UV + UV +Face 9127 +UV Count: 3 + UV + UV + UV +Face 9128 +UV Count: 3 + UV + UV + UV +Face 9129 +UV Count: 3 + UV + UV + UV +Face 9130 +UV Count: 3 + UV + UV + UV +Face 9131 +UV Count: 3 + UV + UV + UV +Face 9132 +UV Count: 3 + UV + UV + UV +Face 9133 +UV Count: 3 + UV + UV + UV +Face 9134 +UV Count: 3 + UV + UV + UV +Face 9135 +UV Count: 3 + UV + UV + UV +Face 9136 +UV Count: 3 + UV + UV + UV +Face 9137 +UV Count: 3 + UV + UV + UV +Face 9138 +UV Count: 3 + UV + UV + UV +Face 9139 +UV Count: 3 + UV + UV + UV +Face 9140 +UV Count: 3 + UV + UV + UV +Face 9141 +UV Count: 3 + UV + UV + UV +Face 9142 +UV Count: 3 + UV + UV + UV +Face 9143 +UV Count: 3 + UV + UV + UV +Face 9144 +UV Count: 3 + UV + UV + UV +Face 9145 +UV Count: 3 + UV + UV + UV +Face 9146 +UV Count: 3 + UV + UV + UV +Face 9147 +UV Count: 3 + UV + UV + UV +Face 9148 +UV Count: 3 + UV + UV + UV +Face 9149 +UV Count: 3 + UV + UV + UV +Face 9150 +UV Count: 3 + UV + UV + UV +Face 9151 +UV Count: 3 + UV + UV + UV +Face 9152 +UV Count: 3 + UV + UV + UV +Face 9153 +UV Count: 3 + UV + UV + UV +Face 9154 +UV Count: 3 + UV + UV + UV +Face 9155 +UV Count: 3 + UV + UV + UV +Face 9156 +UV Count: 3 + UV + UV + UV +Face 9157 +UV Count: 3 + UV + UV + UV +Face 9158 +UV Count: 3 + UV + UV + UV +Face 9159 +UV Count: 3 + UV + UV + UV +Face 9160 +UV Count: 3 + UV + UV + UV +Face 9161 +UV Count: 3 + UV + UV + UV +Face 9162 +UV Count: 3 + UV + UV + UV +Face 9163 +UV Count: 3 + UV + UV + UV +Face 9164 +UV Count: 3 + UV + UV + UV +Face 9165 +UV Count: 3 + UV + UV + UV +Face 9166 +UV Count: 3 + UV + UV + UV +Face 9167 +UV Count: 3 + UV + UV + UV +Face 9168 +UV Count: 3 + UV + UV + UV +Face 9169 +UV Count: 3 + UV + UV + UV +Face 9170 +UV Count: 3 + UV + UV + UV +Face 9171 +UV Count: 3 + UV + UV + UV +Face 9172 +UV Count: 3 + UV + UV + UV +Face 9173 +UV Count: 3 + UV + UV + UV +Face 9174 +UV Count: 3 + UV + UV + UV +Face 9175 +UV Count: 3 + UV + UV + UV +Face 9176 +UV Count: 3 + UV + UV + UV +Face 9177 +UV Count: 3 + UV + UV + UV +Face 9178 +UV Count: 3 + UV + UV + UV +Face 9179 +UV Count: 3 + UV + UV + UV +Face 9180 +UV Count: 3 + UV + UV + UV +Face 9181 +UV Count: 3 + UV + UV + UV +Face 9182 +UV Count: 3 + UV + UV + UV +Face 9183 +UV Count: 3 + UV + UV + UV +Face 9184 +UV Count: 3 + UV + UV + UV +Face 9185 +UV Count: 3 + UV + UV + UV +Face 9186 +UV Count: 3 + UV + UV + UV +Face 9187 +UV Count: 3 + UV + UV + UV +Face 9188 +UV Count: 3 + UV + UV + UV +Face 9189 +UV Count: 3 + UV + UV + UV +Face 9190 +UV Count: 3 + UV + UV + UV +Face 9191 +UV Count: 3 + UV + UV + UV +Face 9192 +UV Count: 3 + UV + UV + UV +Face 9193 +UV Count: 3 + UV + UV + UV +Face 9194 +UV Count: 3 + UV + UV + UV +Face 9195 +UV Count: 3 + UV + UV + UV +Face 9196 +UV Count: 3 + UV + UV + UV +Face 9197 +UV Count: 3 + UV + UV + UV +Face 9198 +UV Count: 3 + UV + UV + UV +Face 9199 +UV Count: 3 + UV + UV + UV +Face 9200 +UV Count: 3 + UV + UV + UV +Face 9201 +UV Count: 3 + UV + UV + UV +Face 9202 +UV Count: 3 + UV + UV + UV +Face 9203 +UV Count: 3 + UV + UV + UV +Face 9204 +UV Count: 3 + UV + UV + UV +Face 9205 +UV Count: 3 + UV + UV + UV +Face 9206 +UV Count: 3 + UV + UV + UV +Face 9207 +UV Count: 3 + UV + UV + UV +Face 9208 +UV Count: 3 + UV + UV + UV +Face 9209 +UV Count: 3 + UV + UV + UV +Face 9210 +UV Count: 3 + UV + UV + UV +Face 9211 +UV Count: 3 + UV + UV + UV +Face 9212 +UV Count: 3 + UV + UV + UV +Face 9213 +UV Count: 3 + UV + UV + UV +Face 9214 +UV Count: 3 + UV + UV + UV +Face 9215 +UV Count: 3 + UV + UV + UV +Face 9216 +UV Count: 3 + UV + UV + UV +Face 9217 +UV Count: 3 + UV + UV + UV +Face 9218 +UV Count: 3 + UV + UV + UV +Face 9219 +UV Count: 3 + UV + UV + UV +Face 9220 +UV Count: 3 + UV + UV + UV +Face 9221 +UV Count: 3 + UV + UV + UV +Face 9222 +UV Count: 3 + UV + UV + UV +Face 9223 +UV Count: 3 + UV + UV + UV +Face 9224 +UV Count: 3 + UV + UV + UV +Face 9225 +UV Count: 3 + UV + UV + UV +Face 9226 +UV Count: 3 + UV + UV + UV +Face 9227 +UV Count: 3 + UV + UV + UV +Face 9228 +UV Count: 3 + UV + UV + UV +Face 9229 +UV Count: 3 + UV + UV + UV +Face 9230 +UV Count: 3 + UV + UV + UV +Face 9231 +UV Count: 3 + UV + UV + UV +Face 9232 +UV Count: 3 + UV + UV + UV +Face 9233 +UV Count: 3 + UV + UV + UV +Face 9234 +UV Count: 3 + UV + UV + UV +Face 9235 +UV Count: 3 + UV + UV + UV +Face 9236 +UV Count: 3 + UV + UV + UV +Face 9237 +UV Count: 3 + UV + UV + UV +Face 9238 +UV Count: 3 + UV + UV + UV +Face 9239 +UV Count: 3 + UV + UV + UV +Face 9240 +UV Count: 3 + UV + UV + UV +Face 9241 +UV Count: 3 + UV + UV + UV +Face 9242 +UV Count: 3 + UV + UV + UV +Face 9243 +UV Count: 3 + UV + UV + UV +Face 9244 +UV Count: 3 + UV + UV + UV +Face 9245 +UV Count: 3 + UV + UV + UV +Face 9246 +UV Count: 3 + UV + UV + UV +Face 9247 +UV Count: 3 + UV + UV + UV +Face 9248 +UV Count: 3 + UV + UV + UV +Face 9249 +UV Count: 3 + UV + UV + UV +Face 9250 +UV Count: 3 + UV + UV + UV +Face 9251 +UV Count: 3 + UV + UV + UV +Face 9252 +UV Count: 3 + UV + UV + UV +Face 9253 +UV Count: 3 + UV + UV + UV +Face 9254 +UV Count: 3 + UV + UV + UV +Face 9255 +UV Count: 3 + UV + UV + UV +Face 9256 +UV Count: 3 + UV + UV + UV +Face 9257 +UV Count: 3 + UV + UV + UV +Face 9258 +UV Count: 3 + UV + UV + UV +Face 9259 +UV Count: 3 + UV + UV + UV +Face 9260 +UV Count: 3 + UV + UV + UV +Face 9261 +UV Count: 3 + UV + UV + UV +Face 9262 +UV Count: 3 + UV + UV + UV +Face 9263 +UV Count: 3 + UV + UV + UV +Face 9264 +UV Count: 3 + UV + UV + UV +Face 9265 +UV Count: 3 + UV + UV + UV +Face 9266 +UV Count: 3 + UV + UV + UV +Face 9267 +UV Count: 3 + UV + UV + UV +Face 9268 +UV Count: 3 + UV + UV + UV +Face 9269 +UV Count: 3 + UV + UV + UV +Face 9270 +UV Count: 3 + UV + UV + UV +Face 9271 +UV Count: 3 + UV + UV + UV +Face 9272 +UV Count: 3 + UV + UV + UV +Face 9273 +UV Count: 3 + UV + UV + UV +Face 9274 +UV Count: 3 + UV + UV + UV +Face 9275 +UV Count: 3 + UV + UV + UV +Face 9276 +UV Count: 3 + UV + UV + UV +Face 9277 +UV Count: 3 + UV + UV + UV +Face 9278 +UV Count: 3 + UV + UV + UV +Face 9279 +UV Count: 3 + UV + UV + UV +Face 9280 +UV Count: 3 + UV + UV + UV +Face 9281 +UV Count: 3 + UV + UV + UV +Face 9282 +UV Count: 3 + UV + UV + UV +Face 9283 +UV Count: 3 + UV + UV + UV +Face 9284 +UV Count: 3 + UV + UV + UV +Face 9285 +UV Count: 3 + UV + UV + UV +Face 9286 +UV Count: 3 + UV + UV + UV +Face 9287 +UV Count: 3 + UV + UV + UV +Face 9288 +UV Count: 3 + UV + UV + UV +Face 9289 +UV Count: 3 + UV + UV + UV +Face 9290 +UV Count: 3 + UV + UV + UV +Face 9291 +UV Count: 3 + UV + UV + UV +Face 9292 +UV Count: 3 + UV + UV + UV +Face 9293 +UV Count: 3 + UV + UV + UV +Face 9294 +UV Count: 3 + UV + UV + UV +Face 9295 +UV Count: 3 + UV + UV + UV +Face 9296 +UV Count: 3 + UV + UV + UV +Face 9297 +UV Count: 3 + UV + UV + UV +Face 9298 +UV Count: 3 + UV + UV + UV +Face 9299 +UV Count: 3 + UV + UV + UV +Face 9300 +UV Count: 3 + UV + UV + UV +Face 9301 +UV Count: 3 + UV + UV + UV +Face 9302 +UV Count: 3 + UV + UV + UV +Face 9303 +UV Count: 3 + UV + UV + UV +Face 9304 +UV Count: 3 + UV + UV + UV +Face 9305 +UV Count: 3 + UV + UV + UV +Face 9306 +UV Count: 3 + UV + UV + UV +Face 9307 +UV Count: 3 + UV + UV + UV +Face 9308 +UV Count: 3 + UV + UV + UV +Face 9309 +UV Count: 3 + UV + UV + UV +Face 9310 +UV Count: 3 + UV + UV + UV +Face 9311 +UV Count: 3 + UV + UV + UV +Face 9312 +UV Count: 3 + UV + UV + UV +Face 9313 +UV Count: 3 + UV + UV + UV +Face 9314 +UV Count: 3 + UV + UV + UV +Face 9315 +UV Count: 3 + UV + UV + UV +Face 9316 +UV Count: 3 + UV + UV + UV +Face 9317 +UV Count: 3 + UV + UV + UV +Face 9318 +UV Count: 3 + UV + UV + UV +Face 9319 +UV Count: 3 + UV + UV + UV +Face 9320 +UV Count: 3 + UV + UV + UV +Face 9321 +UV Count: 3 + UV + UV + UV +Face 9322 +UV Count: 3 + UV + UV + UV +Face 9323 +UV Count: 3 + UV + UV + UV +Face 9324 +UV Count: 3 + UV + UV + UV +Face 9325 +UV Count: 3 + UV + UV + UV +Face 9326 +UV Count: 3 + UV + UV + UV +Face 9327 +UV Count: 3 + UV + UV + UV +Face 9328 +UV Count: 3 + UV + UV + UV +Face 9329 +UV Count: 3 + UV + UV + UV +Face 9330 +UV Count: 3 + UV + UV + UV +Face 9331 +UV Count: 3 + UV + UV + UV +Face 9332 +UV Count: 3 + UV + UV + UV +Face 9333 +UV Count: 3 + UV + UV + UV +Face 9334 +UV Count: 3 + UV + UV + UV +Face 9335 +UV Count: 3 + UV + UV + UV +Face 9336 +UV Count: 3 + UV + UV + UV +Face 9337 +UV Count: 3 + UV + UV + UV +Face 9338 +UV Count: 3 + UV + UV + UV +Face 9339 +UV Count: 3 + UV + UV + UV +Face 9340 +UV Count: 3 + UV + UV + UV +Face 9341 +UV Count: 3 + UV + UV + UV +Face 9342 +UV Count: 3 + UV + UV + UV +Face 9343 +UV Count: 3 + UV + UV + UV +Face 9344 +UV Count: 3 + UV + UV + UV +Face 9345 +UV Count: 3 + UV + UV + UV +Face 9346 +UV Count: 3 + UV + UV + UV +Face 9347 +UV Count: 3 + UV + UV + UV +Face 9348 +UV Count: 3 + UV + UV + UV +Face 9349 +UV Count: 3 + UV + UV + UV +Face 9350 +UV Count: 3 + UV + UV + UV +Face 9351 +UV Count: 3 + UV + UV + UV +Face 9352 +UV Count: 3 + UV + UV + UV +Face 9353 +UV Count: 3 + UV + UV + UV +Face 9354 +UV Count: 3 + UV + UV + UV +Face 9355 +UV Count: 3 + UV + UV + UV +Face 9356 +UV Count: 3 + UV + UV + UV +Face 9357 +UV Count: 3 + UV + UV + UV +Face 9358 +UV Count: 3 + UV + UV + UV +Face 9359 +UV Count: 3 + UV + UV + UV +Face 9360 +UV Count: 3 + UV + UV + UV +Face 9361 +UV Count: 3 + UV + UV + UV +Face 9362 +UV Count: 3 + UV + UV + UV +Face 9363 +UV Count: 3 + UV + UV + UV +Face 9364 +UV Count: 3 + UV + UV + UV +Face 9365 +UV Count: 3 + UV + UV + UV +Face 9366 +UV Count: 3 + UV + UV + UV +Face 9367 +UV Count: 3 + UV + UV + UV +Face 9368 +UV Count: 3 + UV + UV + UV +Face 9369 +UV Count: 3 + UV + UV + UV +Face 9370 +UV Count: 3 + UV + UV + UV +Face 9371 +UV Count: 3 + UV + UV + UV +Face 9372 +UV Count: 3 + UV + UV + UV +Face 9373 +UV Count: 3 + UV + UV + UV +Face 9374 +UV Count: 3 + UV + UV + UV +Face 9375 +UV Count: 3 + UV + UV + UV +Face 9376 +UV Count: 3 + UV + UV + UV +Face 9377 +UV Count: 3 + UV + UV + UV +Face 9378 +UV Count: 3 + UV + UV + UV +Face 9379 +UV Count: 3 + UV + UV + UV +Face 9380 +UV Count: 3 + UV + UV + UV +Face 9381 +UV Count: 3 + UV + UV + UV +Face 9382 +UV Count: 3 + UV + UV + UV +Face 9383 +UV Count: 3 + UV + UV + UV +Face 9384 +UV Count: 3 + UV + UV + UV +Face 9385 +UV Count: 3 + UV + UV + UV +Face 9386 +UV Count: 3 + UV + UV + UV +Face 9387 +UV Count: 3 + UV + UV + UV +Face 9388 +UV Count: 3 + UV + UV + UV +Face 9389 +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 +Vertex 2660: Normal +Vertex 2661: Normal +Vertex 2662: Normal +Vertex 2663: Normal +Vertex 2664: Normal +Vertex 2665: Normal +Vertex 2666: Normal +Vertex 2667: Normal +Vertex 2668: Normal +Vertex 2669: Normal +Vertex 2670: Normal +Vertex 2671: Normal +Vertex 2672: Normal +Vertex 2673: Normal +Vertex 2674: Normal +Vertex 2675: Normal +Vertex 2676: Normal +Vertex 2677: Normal +Vertex 2678: Normal +Vertex 2679: Normal +Vertex 2680: Normal +Vertex 2681: Normal +Vertex 2682: Normal +Vertex 2683: Normal +Vertex 2684: Normal +Vertex 2685: Normal +Vertex 2686: Normal +Vertex 2687: Normal +Vertex 2688: Normal +Vertex 2689: Normal +Vertex 2690: Normal +Vertex 2691: Normal +Vertex 2692: Normal +Vertex 2693: Normal +Vertex 2694: Normal +Vertex 2695: Normal +Vertex 2696: Normal +Vertex 2697: Normal +Vertex 2698: Normal +Vertex 2699: Normal +Vertex 2700: Normal +Vertex 2701: Normal +Vertex 2702: Normal +Vertex 2703: Normal +Vertex 2704: Normal +Vertex 2705: Normal +Vertex 2706: Normal +Vertex 2707: Normal +Vertex 2708: Normal +Vertex 2709: Normal +Vertex 2710: Normal +Vertex 2711: Normal +Vertex 2712: Normal +Vertex 2713: Normal +Vertex 2714: Normal +Vertex 2715: Normal +Vertex 2716: Normal +Vertex 2717: Normal +Vertex 2718: Normal +Vertex 2719: Normal +Vertex 2720: Normal +Vertex 2721: Normal +Vertex 2722: Normal +Vertex 2723: Normal +Vertex 2724: Normal +Vertex 2725: Normal +Vertex 2726: Normal +Vertex 2727: Normal +Vertex 2728: Normal +Vertex 2729: Normal +Vertex 2730: Normal +Vertex 2731: Normal +Vertex 2732: Normal +Vertex 2733: Normal +Vertex 2734: Normal +Vertex 2735: Normal +Vertex 2736: Normal +Vertex 2737: Normal +Vertex 2738: Normal +Vertex 2739: Normal +Vertex 2740: Normal +Vertex 2741: Normal +Vertex 2742: Normal +Vertex 2743: Normal +Vertex 2744: Normal +Vertex 2745: Normal +Vertex 2746: Normal +Vertex 2747: Normal +Vertex 2748: Normal +Vertex 2749: Normal +Vertex 2750: Normal +Vertex 2751: Normal +Vertex 2752: Normal +Vertex 2753: Normal +Vertex 2754: Normal +Vertex 2755: Normal +Vertex 2756: Normal +Vertex 2757: Normal +Vertex 2758: Normal +Vertex 2759: Normal +Vertex 2760: Normal +Vertex 2761: Normal +Vertex 2762: Normal +Vertex 2763: Normal +Vertex 2764: Normal +Vertex 2765: Normal +Vertex 2766: Normal +Vertex 2767: Normal +Vertex 2768: Normal +Vertex 2769: Normal +Vertex 2770: Normal +Vertex 2771: Normal +Vertex 2772: Normal +Vertex 2773: Normal +Vertex 2774: Normal +Vertex 2775: Normal +Vertex 2776: Normal +Vertex 2777: Normal +Vertex 2778: Normal +Vertex 2779: Normal +Vertex 2780: Normal +Vertex 2781: Normal +Vertex 2782: Normal +Vertex 2783: Normal +Vertex 2784: Normal +Vertex 2785: Normal +Vertex 2786: Normal +Vertex 2787: Normal +Vertex 2788: Normal +Vertex 2789: Normal +Vertex 2790: Normal +Vertex 2791: Normal +Vertex 2792: Normal +Vertex 2793: Normal +Vertex 2794: Normal +Vertex 2795: Normal +Vertex 2796: Normal +Vertex 2797: Normal +Vertex 2798: Normal +Vertex 2799: Normal +Vertex 2800: Normal +Vertex 2801: Normal +Vertex 2802: Normal +Vertex 2803: Normal +Vertex 2804: Normal +Vertex 2805: Normal +Vertex 2806: Normal +Vertex 2807: Normal +Vertex 2808: Normal +Vertex 2809: Normal +Vertex 2810: Normal +Vertex 2811: Normal +Vertex 2812: Normal +Vertex 2813: Normal +Vertex 2814: Normal +Vertex 2815: Normal +Vertex 2816: Normal +Vertex 2817: Normal +Vertex 2818: Normal +Vertex 2819: Normal +Vertex 2820: Normal +Vertex 2821: Normal +Vertex 2822: Normal +Vertex 2823: Normal +Vertex 2824: Normal +Vertex 2825: Normal +Vertex 2826: Normal +Vertex 2827: Normal +Vertex 2828: Normal +Vertex 2829: Normal +Vertex 2830: Normal +Vertex 2831: Normal +Vertex 2832: Normal +Vertex 2833: Normal +Vertex 2834: Normal +Vertex 2835: Normal +Vertex 2836: Normal +Vertex 2837: Normal +Vertex 2838: Normal +Vertex 2839: Normal +Vertex 2840: Normal +Vertex 2841: Normal +Vertex 2842: Normal +Vertex 2843: Normal +Vertex 2844: Normal +Vertex 2845: Normal +Vertex 2846: Normal +Vertex 2847: Normal +Vertex 2848: Normal +Vertex 2849: Normal +Vertex 2850: Normal +Vertex 2851: Normal +Vertex 2852: Normal +Vertex 2853: Normal +Vertex 2854: Normal +Vertex 2855: Normal +Vertex 2856: Normal +Vertex 2857: Normal +Vertex 2858: Normal +Vertex 2859: Normal +Vertex 2860: Normal +Vertex 2861: Normal +Vertex 2862: Normal +Vertex 2863: Normal +Vertex 2864: Normal +Vertex 2865: Normal +Vertex 2866: Normal +Vertex 2867: Normal +Vertex 2868: Normal +Vertex 2869: Normal +Vertex 2870: Normal +Vertex 2871: Normal +Vertex 2872: Normal +Vertex 2873: Normal +Vertex 2874: Normal +Vertex 2875: Normal +Vertex 2876: Normal +Vertex 2877: Normal +Vertex 2878: Normal +Vertex 2879: Normal +Vertex 2880: Normal +Vertex 2881: Normal +Vertex 2882: Normal +Vertex 2883: Normal +Vertex 2884: Normal +Vertex 2885: Normal +Vertex 2886: Normal +Vertex 2887: Normal +Vertex 2888: Normal +Vertex 2889: Normal +Vertex 2890: Normal +Vertex 2891: Normal +Vertex 2892: Normal +Vertex 2893: Normal +Vertex 2894: Normal +Vertex 2895: Normal +Vertex 2896: Normal +Vertex 2897: Normal +Vertex 2898: Normal +Vertex 2899: Normal +Vertex 2900: Normal +Vertex 2901: Normal +Vertex 2902: Normal +Vertex 2903: Normal +Vertex 2904: Normal +Vertex 2905: Normal +Vertex 2906: Normal +Vertex 2907: Normal +Vertex 2908: Normal +Vertex 2909: Normal +Vertex 2910: Normal +Vertex 2911: Normal +Vertex 2912: Normal +Vertex 2913: Normal +Vertex 2914: Normal +Vertex 2915: Normal +Vertex 2916: Normal +Vertex 2917: Normal +Vertex 2918: Normal +Vertex 2919: Normal +Vertex 2920: Normal +Vertex 2921: Normal +Vertex 2922: Normal +Vertex 2923: Normal +Vertex 2924: Normal +Vertex 2925: Normal +Vertex 2926: Normal +Vertex 2927: Normal +Vertex 2928: Normal +Vertex 2929: Normal +Vertex 2930: Normal +Vertex 2931: Normal +Vertex 2932: Normal +Vertex 2933: Normal +Vertex 2934: Normal +Vertex 2935: Normal +Vertex 2936: Normal +Vertex 2937: Normal +Vertex 2938: Normal +Vertex 2939: Normal +Vertex 2940: Normal +Vertex 2941: Normal +Vertex 2942: Normal +Vertex 2943: Normal +Vertex 2944: Normal +Vertex 2945: Normal +Vertex 2946: Normal +Vertex 2947: Normal +Vertex 2948: Normal +Vertex 2949: Normal +Vertex 2950: Normal +Vertex 2951: Normal +Vertex 2952: Normal +Vertex 2953: Normal +Vertex 2954: Normal +Vertex 2955: Normal +Vertex 2956: Normal +Vertex 2957: Normal +Vertex 2958: Normal +Vertex 2959: Normal +Vertex 2960: Normal +Vertex 2961: Normal +Vertex 2962: Normal +Vertex 2963: Normal +Vertex 2964: Normal +Vertex 2965: Normal +Vertex 2966: Normal +Vertex 2967: Normal +Vertex 2968: Normal +Vertex 2969: Normal +Vertex 2970: Normal +Vertex 2971: Normal +Vertex 2972: Normal +Vertex 2973: Normal +Vertex 2974: Normal +Vertex 2975: Normal +Vertex 2976: Normal +Vertex 2977: Normal +Vertex 2978: Normal +Vertex 2979: Normal +Vertex 2980: Normal +Vertex 2981: Normal +Vertex 2982: Normal +Vertex 2983: Normal +Vertex 2984: Normal +Vertex 2985: Normal +Vertex 2986: Normal +Vertex 2987: Normal +Vertex 2988: Normal +Vertex 2989: Normal +Vertex 2990: Normal +Vertex 2991: Normal +Vertex 2992: Normal +Vertex 2993: Normal +Vertex 2994: Normal +Vertex 2995: Normal +Vertex 2996: Normal +Vertex 2997: Normal +Vertex 2998: Normal +Vertex 2999: Normal +Vertex 3000: Normal +Vertex 3001: Normal +Vertex 3002: Normal +Vertex 3003: Normal +Vertex 3004: Normal +Vertex 3005: Normal +Vertex 3006: Normal +Vertex 3007: Normal +Vertex 3008: Normal +Vertex 3009: Normal +Vertex 3010: Normal +Vertex 3011: Normal +Vertex 3012: Normal +Vertex 3013: Normal +Vertex 3014: Normal +Vertex 3015: Normal +Vertex 3016: Normal +Vertex 3017: Normal +Vertex 3018: Normal +Vertex 3019: Normal +Vertex 3020: Normal +Vertex 3021: Normal +Vertex 3022: Normal +Vertex 3023: Normal +Vertex 3024: Normal +Vertex 3025: Normal +Vertex 3026: Normal +Vertex 3027: Normal +Vertex 3028: Normal +Vertex 3029: Normal +Vertex 3030: Normal +Vertex 3031: Normal +Vertex 3032: Normal +Vertex 3033: Normal +Vertex 3034: Normal +Vertex 3035: Normal +Vertex 3036: Normal +Vertex 3037: Normal +Vertex 3038: Normal +Vertex 3039: Normal +Vertex 3040: Normal +Vertex 3041: Normal +Vertex 3042: Normal +Vertex 3043: Normal +Vertex 3044: Normal +Vertex 3045: Normal +Vertex 3046: Normal +Vertex 3047: Normal +Vertex 3048: Normal +Vertex 3049: Normal +Vertex 3050: Normal +Vertex 3051: Normal +Vertex 3052: Normal +Vertex 3053: Normal +Vertex 3054: Normal +Vertex 3055: Normal +Vertex 3056: Normal +Vertex 3057: Normal +Vertex 3058: Normal +Vertex 3059: Normal +Vertex 3060: Normal +Vertex 3061: Normal +Vertex 3062: Normal +Vertex 3063: Normal +Vertex 3064: Normal +Vertex 3065: Normal +Vertex 3066: Normal +Vertex 3067: Normal +Vertex 3068: Normal +Vertex 3069: Normal +Vertex 3070: Normal +Vertex 3071: Normal +Vertex 3072: Normal +Vertex 3073: Normal +Vertex 3074: Normal +Vertex 3075: Normal +Vertex 3076: Normal +Vertex 3077: Normal +Vertex 3078: Normal +Vertex 3079: Normal +Vertex 3080: Normal +Vertex 3081: Normal +Vertex 3082: Normal +Vertex 3083: Normal +Vertex 3084: Normal +Vertex 3085: Normal +Vertex 3086: Normal +Vertex 3087: Normal +Vertex 3088: Normal +Vertex 3089: Normal +Vertex 3090: Normal +Vertex 3091: Normal +Vertex 3092: Normal +Vertex 3093: Normal +Vertex 3094: Normal +Vertex 3095: Normal +Vertex 3096: Normal +Vertex 3097: Normal +Vertex 3098: Normal +Vertex 3099: Normal +Vertex 3100: Normal +Vertex 3101: Normal +Vertex 3102: Normal +Vertex 3103: Normal +Vertex 3104: Normal +Vertex 3105: Normal +Vertex 3106: Normal +Vertex 3107: Normal +Vertex 3108: Normal +Vertex 3109: Normal +Vertex 3110: Normal +Vertex 3111: Normal +Vertex 3112: Normal +Vertex 3113: Normal +Vertex 3114: Normal +Vertex 3115: Normal +Vertex 3116: Normal +Vertex 3117: Normal +Vertex 3118: Normal +Vertex 3119: Normal +Vertex 3120: Normal +Vertex 3121: Normal +Vertex 3122: Normal +Vertex 3123: Normal +Vertex 3124: Normal +Vertex 3125: Normal +Vertex 3126: Normal +Vertex 3127: Normal +Vertex 3128: Normal +Vertex 3129: Normal +Vertex 3130: Normal +Vertex 3131: Normal +Vertex 3132: Normal +Vertex 3133: Normal +Vertex 3134: Normal +Vertex 3135: Normal +Vertex 3136: Normal +Vertex 3137: Normal +Vertex 3138: Normal +Vertex 3139: Normal +Vertex 3140: Normal +Vertex 3141: Normal +Vertex 3142: Normal +Vertex 3143: Normal +Vertex 3144: Normal +Vertex 3145: Normal +Vertex 3146: Normal +Vertex 3147: Normal +Vertex 3148: Normal +Vertex 3149: Normal +Vertex 3150: Normal +Vertex 3151: Normal +Vertex 3152: Normal +Vertex 3153: Normal +Vertex 3154: Normal +Vertex 3155: Normal +Vertex 3156: Normal +Vertex 3157: Normal +Vertex 3158: Normal +Vertex 3159: Normal +Vertex 3160: Normal +Vertex 3161: Normal +Vertex 3162: Normal +Vertex 3163: Normal +Vertex 3164: Normal +Vertex 3165: Normal +Vertex 3166: Normal +Vertex 3167: Normal +Vertex 3168: Normal +Vertex 3169: Normal +Vertex 3170: Normal +Vertex 3171: Normal +Vertex 3172: Normal +Vertex 3173: Normal +Vertex 3174: Normal +Vertex 3175: Normal +Vertex 3176: Normal +Vertex 3177: Normal +Vertex 3178: Normal +Vertex 3179: Normal +Vertex 3180: Normal +Vertex 3181: Normal +Vertex 3182: Normal +Vertex 3183: Normal +Vertex 3184: Normal +Vertex 3185: Normal +Vertex 3186: Normal +Vertex 3187: Normal +Vertex 3188: Normal +Vertex 3189: Normal +Vertex 3190: Normal +Vertex 3191: Normal +Vertex 3192: Normal +Vertex 3193: Normal +Vertex 3194: Normal +Vertex 3195: Normal +Vertex 3196: Normal +Vertex 3197: Normal +Vertex 3198: Normal +Vertex 3199: Normal +Vertex 3200: Normal +Vertex 3201: Normal +Vertex 3202: Normal +Vertex 3203: Normal +Vertex 3204: Normal +Vertex 3205: Normal +Vertex 3206: Normal +Vertex 3207: Normal +Vertex 3208: Normal +Vertex 3209: Normal +Vertex 3210: Normal +Vertex 3211: Normal +Vertex 3212: Normal +Vertex 3213: Normal +Vertex 3214: Normal +Vertex 3215: Normal +Vertex 3216: Normal +Vertex 3217: Normal +Vertex 3218: Normal +Vertex 3219: Normal +Vertex 3220: Normal +Vertex 3221: Normal +Vertex 3222: Normal +Vertex 3223: Normal +Vertex 3224: Normal +Vertex 3225: Normal +Vertex 3226: Normal +Vertex 3227: Normal +Vertex 3228: Normal +Vertex 3229: Normal +Vertex 3230: Normal +Vertex 3231: Normal +Vertex 3232: Normal +Vertex 3233: Normal +Vertex 3234: Normal +Vertex 3235: Normal +Vertex 3236: Normal +Vertex 3237: Normal +Vertex 3238: Normal +Vertex 3239: Normal +Vertex 3240: Normal +Vertex 3241: Normal +Vertex 3242: Normal +Vertex 3243: Normal +Vertex 3244: Normal +Vertex 3245: Normal +Vertex 3246: Normal +Vertex 3247: Normal +Vertex 3248: Normal +Vertex 3249: Normal +Vertex 3250: Normal +Vertex 3251: Normal +Vertex 3252: Normal +Vertex 3253: Normal +Vertex 3254: Normal +Vertex 3255: Normal +Vertex 3256: Normal +Vertex 3257: Normal +Vertex 3258: Normal +Vertex 3259: Normal +Vertex 3260: Normal +Vertex 3261: Normal +Vertex 3262: Normal +Vertex 3263: Normal +Vertex 3264: Normal +Vertex 3265: Normal +Vertex 3266: Normal +Vertex 3267: Normal +Vertex 3268: Normal +Vertex 3269: Normal +Vertex 3270: Normal +Vertex 3271: Normal +Vertex 3272: Normal +Vertex 3273: Normal +Vertex 3274: Normal +Vertex 3275: Normal +Vertex 3276: Normal +Vertex 3277: Normal +Vertex 3278: Normal +Vertex 3279: Normal +Vertex 3280: Normal +Vertex 3281: Normal +Vertex 3282: Normal +Vertex 3283: Normal +Vertex 3284: Normal +Vertex 3285: Normal +Vertex 3286: Normal +Vertex 3287: Normal +Vertex 3288: Normal +Vertex 3289: Normal +Vertex 3290: Normal +Vertex 3291: Normal +Vertex 3292: Normal +Vertex 3293: Normal +Vertex 3294: Normal +Vertex 3295: Normal +Vertex 3296: Normal +Vertex 3297: Normal +Vertex 3298: Normal +Vertex 3299: Normal +Vertex 3300: Normal +Vertex 3301: Normal +Vertex 3302: Normal +Vertex 3303: Normal +Vertex 3304: Normal +Vertex 3305: Normal +Vertex 3306: Normal +Vertex 3307: Normal +Vertex 3308: Normal +Vertex 3309: Normal +Vertex 3310: Normal +Vertex 3311: Normal +Vertex 3312: Normal +Vertex 3313: Normal +Vertex 3314: Normal +Vertex 3315: Normal +Vertex 3316: Normal +Vertex 3317: Normal +Vertex 3318: Normal +Vertex 3319: Normal +Vertex 3320: Normal +Vertex 3321: Normal +Vertex 3322: Normal +Vertex 3323: Normal +Vertex 3324: Normal +Vertex 3325: Normal +Vertex 3326: Normal +Vertex 3327: Normal +Vertex 3328: Normal +Vertex 3329: Normal +Vertex 3330: Normal +Vertex 3331: Normal +Vertex 3332: Normal +Vertex 3333: Normal +Vertex 3334: Normal +Vertex 3335: Normal +Vertex 3336: Normal +Vertex 3337: Normal +Vertex 3338: Normal +Vertex 3339: Normal +Vertex 3340: Normal +Vertex 3341: Normal +Vertex 3342: Normal +Vertex 3343: Normal +Vertex 3344: Normal +Vertex 3345: Normal +Vertex 3346: Normal +Vertex 3347: Normal +Vertex 3348: Normal +Vertex 3349: Normal +Vertex 3350: Normal +Vertex 3351: Normal +Vertex 3352: Normal +Vertex 3353: Normal +Vertex 3354: Normal +Vertex 3355: Normal +Vertex 3356: Normal +Vertex 3357: Normal +Vertex 3358: Normal +Vertex 3359: Normal +Vertex 3360: Normal +Vertex 3361: Normal +Vertex 3362: Normal +Vertex 3363: Normal +Vertex 3364: Normal +Vertex 3365: Normal +Vertex 3366: Normal +Vertex 3367: Normal +Vertex 3368: Normal +Vertex 3369: Normal +Vertex 3370: Normal +Vertex 3371: Normal +Vertex 3372: Normal +Vertex 3373: Normal +Vertex 3374: Normal +Vertex 3375: Normal +Vertex 3376: Normal +Vertex 3377: Normal +Vertex 3378: Normal +Vertex 3379: Normal +Vertex 3380: Normal +Vertex 3381: Normal +Vertex 3382: Normal +Vertex 3383: Normal +Vertex 3384: Normal +Vertex 3385: Normal +Vertex 3386: Normal +Vertex 3387: Normal +Vertex 3388: Normal +Vertex 3389: Normal +Vertex 3390: Normal +Vertex 3391: Normal +Vertex 3392: Normal +Vertex 3393: Normal +Vertex 3394: Normal +Vertex 3395: Normal +Vertex 3396: Normal +Vertex 3397: Normal +Vertex 3398: Normal +Vertex 3399: Normal +Vertex 3400: Normal +Vertex 3401: Normal +Vertex 3402: Normal +Vertex 3403: Normal +Vertex 3404: Normal +Vertex 3405: Normal +Vertex 3406: Normal +Vertex 3407: Normal +Vertex 3408: Normal +Vertex 3409: Normal +Vertex 3410: Normal +Vertex 3411: Normal +Vertex 3412: Normal +Vertex 3413: Normal +Vertex 3414: Normal +Vertex 3415: Normal +Vertex 3416: Normal +Vertex 3417: Normal +Vertex 3418: Normal +Vertex 3419: Normal +Vertex 3420: Normal +Vertex 3421: Normal +Vertex 3422: Normal +Vertex 3423: Normal +Vertex 3424: Normal +Vertex 3425: Normal +Vertex 3426: Normal +Vertex 3427: Normal +Vertex 3428: Normal +Vertex 3429: Normal +Vertex 3430: Normal +Vertex 3431: Normal +Vertex 3432: Normal +Vertex 3433: Normal +Vertex 3434: Normal +Vertex 3435: Normal +Vertex 3436: Normal +Vertex 3437: Normal +Vertex 3438: Normal +Vertex 3439: Normal +Vertex 3440: Normal +Vertex 3441: Normal +Vertex 3442: Normal +Vertex 3443: Normal +Vertex 3444: Normal +Vertex 3445: Normal +Vertex 3446: Normal +Vertex 3447: Normal +Vertex 3448: Normal +Vertex 3449: Normal +Vertex 3450: Normal +Vertex 3451: Normal +Vertex 3452: Normal +Vertex 3453: Normal +Vertex 3454: Normal +Vertex 3455: Normal +Vertex 3456: Normal +Vertex 3457: Normal +Vertex 3458: Normal +Vertex 3459: Normal +Vertex 3460: Normal +Vertex 3461: Normal +Vertex 3462: Normal +Vertex 3463: Normal +Vertex 3464: Normal +Vertex 3465: Normal +Vertex 3466: Normal +Vertex 3467: Normal +Vertex 3468: Normal +Vertex 3469: Normal +Vertex 3470: Normal +Vertex 3471: Normal +Vertex 3472: Normal +Vertex 3473: Normal +Vertex 3474: Normal +Vertex 3475: Normal +Vertex 3476: Normal +Vertex 3477: Normal +Vertex 3478: Normal +Vertex 3479: Normal +Vertex 3480: Normal +Vertex 3481: Normal +Vertex 3482: Normal +Vertex 3483: Normal +Vertex 3484: Normal +Vertex 3485: Normal +Vertex 3486: Normal +Vertex 3487: Normal +Vertex 3488: Normal +Vertex 3489: Normal +Vertex 3490: Normal +Vertex 3491: Normal +Vertex 3492: Normal +Vertex 3493: Normal +Vertex 3494: Normal +Vertex 3495: Normal +Vertex 3496: Normal +Vertex 3497: Normal +Vertex 3498: Normal +Vertex 3499: Normal +Vertex 3500: Normal +Vertex 3501: Normal +Vertex 3502: Normal +Vertex 3503: Normal +Vertex 3504: Normal +Vertex 3505: Normal +Vertex 3506: Normal +Vertex 3507: Normal +Vertex 3508: Normal +Vertex 3509: Normal +Vertex 3510: Normal +Vertex 3511: Normal +Vertex 3512: Normal +Vertex 3513: Normal +Vertex 3514: Normal +Vertex 3515: Normal +Vertex 3516: Normal +Vertex 3517: Normal +Vertex 3518: Normal +Vertex 3519: Normal +Vertex 3520: Normal +Vertex 3521: Normal +Vertex 3522: Normal +Vertex 3523: Normal +Vertex 3524: Normal +Vertex 3525: Normal +Vertex 3526: Normal +Vertex 3527: Normal +Vertex 3528: Normal +Vertex 3529: Normal +Vertex 3530: Normal +Vertex 3531: Normal +Vertex 3532: Normal +Vertex 3533: Normal +Vertex 3534: Normal +Vertex 3535: Normal +Vertex 3536: Normal +Vertex 3537: Normal +Vertex 3538: Normal +Vertex 3539: Normal +Vertex 3540: Normal +Vertex 3541: Normal +Vertex 3542: Normal +Vertex 3543: Normal +Vertex 3544: Normal +Vertex 3545: Normal +Vertex 3546: Normal +Vertex 3547: Normal +Vertex 3548: Normal +Vertex 3549: Normal +Vertex 3550: Normal +Vertex 3551: Normal +Vertex 3552: Normal +Vertex 3553: Normal +Vertex 3554: Normal +Vertex 3555: Normal +Vertex 3556: Normal +Vertex 3557: Normal +Vertex 3558: Normal +Vertex 3559: Normal +Vertex 3560: Normal +Vertex 3561: Normal +Vertex 3562: Normal +Vertex 3563: Normal +Vertex 3564: Normal +Vertex 3565: Normal +Vertex 3566: Normal +Vertex 3567: Normal +Vertex 3568: Normal +Vertex 3569: Normal +Vertex 3570: Normal +Vertex 3571: Normal +Vertex 3572: Normal +Vertex 3573: Normal +Vertex 3574: Normal +Vertex 3575: Normal +Vertex 3576: Normal +Vertex 3577: Normal +Vertex 3578: Normal +Vertex 3579: Normal +Vertex 3580: Normal +Vertex 3581: Normal +Vertex 3582: Normal +Vertex 3583: Normal +Vertex 3584: Normal +Vertex 3585: Normal +Vertex 3586: Normal +Vertex 3587: Normal +Vertex 3588: Normal +Vertex 3589: Normal +Vertex 3590: Normal +Vertex 3591: Normal +Vertex 3592: Normal +Vertex 3593: Normal +Vertex 3594: Normal +Vertex 3595: Normal +Vertex 3596: Normal +Vertex 3597: Normal +Vertex 3598: Normal +Vertex 3599: Normal +Vertex 3600: Normal +Vertex 3601: Normal +Vertex 3602: Normal +Vertex 3603: Normal +Vertex 3604: Normal +Vertex 3605: Normal +Vertex 3606: Normal +Vertex 3607: Normal +Vertex 3608: Normal +Vertex 3609: Normal +Vertex 3610: Normal +Vertex 3611: Normal +Vertex 3612: Normal +Vertex 3613: Normal +Vertex 3614: Normal +Vertex 3615: Normal +Vertex 3616: Normal +Vertex 3617: Normal +Vertex 3618: Normal +Vertex 3619: Normal +Vertex 3620: Normal +Vertex 3621: Normal +Vertex 3622: Normal +Vertex 3623: Normal +Vertex 3624: Normal +Vertex 3625: Normal +Vertex 3626: Normal +Vertex 3627: Normal +Vertex 3628: Normal +Vertex 3629: Normal +Vertex 3630: Normal +Vertex 3631: Normal +Vertex 3632: Normal +Vertex 3633: Normal +Vertex 3634: Normal +Vertex 3635: Normal +Vertex 3636: Normal +Vertex 3637: Normal +Vertex 3638: Normal +Vertex 3639: Normal +Vertex 3640: Normal +Vertex 3641: Normal +Vertex 3642: Normal +Vertex 3643: Normal +Vertex 3644: Normal +Vertex 3645: Normal +Vertex 3646: Normal +Vertex 3647: Normal +Vertex 3648: Normal +Vertex 3649: Normal +Vertex 3650: Normal +Vertex 3651: Normal +Vertex 3652: Normal +Vertex 3653: Normal +Vertex 3654: Normal +Vertex 3655: Normal +Vertex 3656: Normal +Vertex 3657: Normal +Vertex 3658: Normal +Vertex 3659: Normal +Vertex 3660: Normal +Vertex 3661: Normal +Vertex 3662: Normal +Vertex 3663: Normal +Vertex 3664: Normal +Vertex 3665: Normal +Vertex 3666: Normal +Vertex 3667: Normal +Vertex 3668: Normal +Vertex 3669: Normal +Vertex 3670: Normal +Vertex 3671: Normal +Vertex 3672: Normal +Vertex 3673: Normal +Vertex 3674: Normal +Vertex 3675: Normal +Vertex 3676: Normal +Vertex 3677: Normal +Vertex 3678: Normal +Vertex 3679: Normal +Vertex 3680: Normal +Vertex 3681: Normal +Vertex 3682: Normal +Vertex 3683: Normal +Vertex 3684: Normal +Vertex 3685: Normal +Vertex 3686: Normal +Vertex 3687: Normal +Vertex 3688: Normal +Vertex 3689: Normal +Vertex 3690: Normal +Vertex 3691: Normal +Vertex 3692: Normal +Vertex 3693: Normal +Vertex 3694: Normal +Vertex 3695: Normal +Vertex 3696: Normal +Vertex 3697: Normal +Vertex 3698: Normal +Vertex 3699: Normal +Vertex 3700: Normal +Vertex 3701: Normal +Vertex 3702: Normal +Vertex 3703: Normal +Vertex 3704: Normal +Vertex 3705: Normal +Vertex 3706: Normal +Vertex 3707: Normal +Vertex 3708: Normal +Vertex 3709: Normal +Vertex 3710: Normal +Vertex 3711: Normal +Vertex 3712: Normal +Vertex 3713: Normal +Vertex 3714: Normal +Vertex 3715: Normal +Vertex 3716: Normal +Vertex 3717: Normal +Vertex 3718: Normal +Vertex 3719: Normal +Vertex 3720: Normal +Vertex 3721: Normal +Vertex 3722: Normal +Vertex 3723: Normal +Vertex 3724: Normal +Vertex 3725: Normal +Vertex 3726: Normal +Vertex 3727: Normal +Vertex 3728: Normal +Vertex 3729: Normal +Vertex 3730: Normal +Vertex 3731: Normal +Vertex 3732: Normal +Vertex 3733: Normal +Vertex 3734: Normal +Vertex 3735: Normal +Vertex 3736: Normal +Vertex 3737: Normal +Vertex 3738: Normal +Vertex 3739: Normal +Vertex 3740: Normal +Vertex 3741: Normal +Vertex 3742: Normal +Vertex 3743: Normal +Vertex 3744: Normal +Vertex 3745: Normal +Vertex 3746: Normal +Vertex 3747: Normal +Vertex 3748: Normal +Vertex 3749: Normal +Vertex 3750: Normal +Vertex 3751: Normal +Vertex 3752: Normal +Vertex 3753: Normal +Vertex 3754: Normal +Vertex 3755: Normal +Vertex 3756: Normal +Vertex 3757: Normal +Vertex 3758: Normal +Vertex 3759: Normal +Vertex 3760: Normal +Vertex 3761: Normal +Vertex 3762: Normal +Vertex 3763: Normal +Vertex 3764: Normal +Vertex 3765: Normal +Vertex 3766: Normal +Vertex 3767: Normal +Vertex 3768: Normal +Vertex 3769: Normal +Vertex 3770: Normal +Vertex 3771: Normal +Vertex 3772: Normal +Vertex 3773: Normal +Vertex 3774: Normal +Vertex 3775: Normal +Vertex 3776: Normal +Vertex 3777: Normal +Vertex 3778: Normal +Vertex 3779: Normal +Vertex 3780: Normal +Vertex 3781: Normal +Vertex 3782: Normal +Vertex 3783: Normal +Vertex 3784: Normal +Vertex 3785: Normal +Vertex 3786: Normal +Vertex 3787: Normal +Vertex 3788: Normal +Vertex 3789: Normal +Vertex 3790: Normal +Vertex 3791: Normal +Vertex 3792: Normal +Vertex 3793: Normal +Vertex 3794: Normal +Vertex 3795: Normal +Vertex 3796: Normal +Vertex 3797: Normal +Vertex 3798: Normal +Vertex 3799: Normal +Vertex 3800: Normal +Vertex 3801: Normal +Vertex 3802: Normal +Vertex 3803: Normal +Vertex 3804: Normal +Vertex 3805: Normal +Vertex 3806: Normal +Vertex 3807: Normal +Vertex 3808: Normal +Vertex 3809: Normal +Vertex 3810: Normal +Vertex 3811: Normal +Vertex 3812: Normal +Vertex 3813: Normal +Vertex 3814: Normal +Vertex 3815: Normal +Vertex 3816: Normal +Vertex 3817: Normal +Vertex 3818: Normal +Vertex 3819: Normal +Vertex 3820: Normal +Vertex 3821: Normal +Vertex 3822: Normal +Vertex 3823: Normal +Vertex 3824: Normal +Vertex 3825: Normal +Vertex 3826: Normal +Vertex 3827: Normal +Vertex 3828: Normal +Vertex 3829: Normal +Vertex 3830: Normal +Vertex 3831: Normal +Vertex 3832: Normal +Vertex 3833: Normal +Vertex 3834: Normal +Vertex 3835: Normal +Vertex 3836: Normal +Vertex 3837: Normal +Vertex 3838: Normal +Vertex 3839: Normal +Vertex 3840: Normal +Vertex 3841: Normal +Vertex 3842: Normal +Vertex 3843: Normal +Vertex 3844: Normal +Vertex 3845: Normal +Vertex 3846: Normal +Vertex 3847: Normal +Vertex 3848: Normal +Vertex 3849: Normal +Vertex 3850: Normal +Vertex 3851: Normal +Vertex 3852: Normal +Vertex 3853: Normal +Vertex 3854: Normal +Vertex 3855: Normal +Vertex 3856: Normal +Vertex 3857: Normal +Vertex 3858: Normal +Vertex 3859: Normal +Vertex 3860: Normal +Vertex 3861: Normal +Vertex 3862: Normal +Vertex 3863: Normal +Vertex 3864: Normal +Vertex 3865: Normal +Vertex 3866: Normal +Vertex 3867: Normal +Vertex 3868: Normal +Vertex 3869: Normal +Vertex 3870: Normal +Vertex 3871: Normal +Vertex 3872: Normal +Vertex 3873: Normal +Vertex 3874: Normal +Vertex 3875: Normal +Vertex 3876: Normal +Vertex 3877: Normal +Vertex 3878: Normal +Vertex 3879: Normal +Vertex 3880: Normal +Vertex 3881: Normal +Vertex 3882: Normal +Vertex 3883: Normal +Vertex 3884: Normal +Vertex 3885: Normal +Vertex 3886: Normal +Vertex 3887: Normal +Vertex 3888: Normal +Vertex 3889: Normal +Vertex 3890: Normal +Vertex 3891: Normal +Vertex 3892: Normal +Vertex 3893: Normal +Vertex 3894: Normal +Vertex 3895: Normal +Vertex 3896: Normal +Vertex 3897: Normal +Vertex 3898: Normal +Vertex 3899: Normal +Vertex 3900: Normal +Vertex 3901: Normal +Vertex 3902: Normal +Vertex 3903: Normal +Vertex 3904: Normal +Vertex 3905: Normal +Vertex 3906: Normal +Vertex 3907: Normal +Vertex 3908: Normal +Vertex 3909: Normal +Vertex 3910: Normal +Vertex 3911: Normal +Vertex 3912: Normal +Vertex 3913: Normal +Vertex 3914: Normal +Vertex 3915: Normal +Vertex 3916: Normal +Vertex 3917: Normal +Vertex 3918: Normal +Vertex 3919: Normal +Vertex 3920: Normal +Vertex 3921: Normal +Vertex 3922: Normal +Vertex 3923: Normal +Vertex 3924: Normal +Vertex 3925: Normal +Vertex 3926: Normal +Vertex 3927: Normal +Vertex 3928: Normal +Vertex 3929: Normal +Vertex 3930: Normal +Vertex 3931: Normal +Vertex 3932: Normal +Vertex 3933: Normal +Vertex 3934: Normal +Vertex 3935: Normal +Vertex 3936: Normal +Vertex 3937: Normal +Vertex 3938: Normal +Vertex 3939: Normal +Vertex 3940: Normal +Vertex 3941: Normal +Vertex 3942: Normal +Vertex 3943: Normal +Vertex 3944: Normal +Vertex 3945: Normal +Vertex 3946: Normal +Vertex 3947: Normal +Vertex 3948: Normal +Vertex 3949: Normal +Vertex 3950: Normal +Vertex 3951: Normal +Vertex 3952: Normal +Vertex 3953: Normal +Vertex 3954: Normal +Vertex 3955: Normal +Vertex 3956: Normal +Vertex 3957: Normal +Vertex 3958: Normal +Vertex 3959: Normal +Vertex 3960: Normal +Vertex 3961: Normal +Vertex 3962: Normal +Vertex 3963: Normal +Vertex 3964: Normal +Vertex 3965: Normal +Vertex 3966: Normal +Vertex 3967: Normal +Vertex 3968: Normal +Vertex 3969: Normal +Vertex 3970: Normal +Vertex 3971: Normal +Vertex 3972: Normal +Vertex 3973: Normal +Vertex 3974: Normal +Vertex 3975: Normal +Vertex 3976: Normal +Vertex 3977: Normal +Vertex 3978: Normal +Vertex 3979: Normal +Vertex 3980: Normal +Vertex 3981: Normal +Vertex 3982: Normal +Vertex 3983: Normal +Vertex 3984: Normal +Vertex 3985: Normal +Vertex 3986: Normal +Vertex 3987: Normal +Vertex 3988: Normal +Vertex 3989: Normal +Vertex 3990: Normal +Vertex 3991: Normal +Vertex 3992: Normal +Vertex 3993: Normal +Vertex 3994: Normal +Vertex 3995: Normal +Vertex 3996: Normal +Vertex 3997: Normal +Vertex 3998: Normal +Vertex 3999: Normal +Vertex 4000: Normal +Vertex 4001: Normal +Vertex 4002: Normal +Vertex 4003: Normal +Vertex 4004: Normal +Vertex 4005: Normal +Vertex 4006: Normal +Vertex 4007: Normal +Vertex 4008: Normal +Vertex 4009: Normal +Vertex 4010: Normal +Vertex 4011: Normal +Vertex 4012: Normal +Vertex 4013: Normal +Vertex 4014: Normal +Vertex 4015: Normal +Vertex 4016: Normal +Vertex 4017: Normal +Vertex 4018: Normal +Vertex 4019: Normal +Vertex 4020: Normal +Vertex 4021: Normal +Vertex 4022: Normal +Vertex 4023: Normal +Vertex 4024: Normal +Vertex 4025: Normal +Vertex 4026: Normal +Vertex 4027: Normal +Vertex 4028: Normal +Vertex 4029: Normal +Vertex 4030: Normal +Vertex 4031: Normal +Vertex 4032: Normal +Vertex 4033: Normal +Vertex 4034: Normal +Vertex 4035: Normal +Vertex 4036: Normal +Vertex 4037: Normal +Vertex 4038: Normal +Vertex 4039: Normal +Vertex 4040: Normal +Vertex 4041: Normal +Vertex 4042: Normal +Vertex 4043: Normal +Vertex 4044: Normal +Vertex 4045: Normal +Vertex 4046: Normal +Vertex 4047: Normal +Vertex 4048: Normal +Vertex 4049: Normal +Vertex 4050: Normal +Vertex 4051: Normal +Vertex 4052: Normal +Vertex 4053: Normal +Vertex 4054: Normal +Vertex 4055: Normal +Vertex 4056: Normal +Vertex 4057: Normal +Vertex 4058: Normal +Vertex 4059: Normal +Vertex 4060: Normal +Vertex 4061: Normal +Vertex 4062: Normal +Vertex 4063: Normal +Vertex 4064: Normal +Vertex 4065: Normal +Vertex 4066: Normal +Vertex 4067: Normal +Vertex 4068: Normal +Vertex 4069: Normal +Vertex 4070: Normal +Vertex 4071: Normal +Vertex 4072: Normal +Vertex 4073: Normal +Vertex 4074: Normal +Vertex 4075: Normal +Vertex 4076: Normal +Vertex 4077: Normal +Vertex 4078: Normal +Vertex 4079: Normal +Vertex 4080: Normal +Vertex 4081: Normal +Vertex 4082: Normal +Vertex 4083: Normal +Vertex 4084: Normal +Vertex 4085: Normal +Vertex 4086: Normal +Vertex 4087: Normal +Vertex 4088: Normal +Vertex 4089: Normal +Vertex 4090: Normal +Vertex 4091: Normal +Vertex 4092: Normal +Vertex 4093: Normal +Vertex 4094: Normal +Vertex 4095: Normal +Vertex 4096: Normal +Vertex 4097: Normal +Vertex 4098: Normal +Vertex 4099: Normal +Vertex 4100: Normal +Vertex 4101: Normal +Vertex 4102: Normal +Vertex 4103: Normal +Vertex 4104: Normal +Vertex 4105: Normal +Vertex 4106: Normal +Vertex 4107: Normal +Vertex 4108: Normal +Vertex 4109: Normal +Vertex 4110: Normal +Vertex 4111: Normal +Vertex 4112: Normal +Vertex 4113: Normal +Vertex 4114: Normal +Vertex 4115: Normal +Vertex 4116: Normal +Vertex 4117: Normal +Vertex 4118: Normal +Vertex 4119: Normal +Vertex 4120: Normal +Vertex 4121: Normal +Vertex 4122: Normal +Vertex 4123: Normal +Vertex 4124: Normal +Vertex 4125: Normal +Vertex 4126: Normal +Vertex 4127: Normal +Vertex 4128: Normal +Vertex 4129: Normal +Vertex 4130: Normal +Vertex 4131: Normal +Vertex 4132: Normal +Vertex 4133: Normal +Vertex 4134: Normal +Vertex 4135: Normal +Vertex 4136: Normal +Vertex 4137: Normal +Vertex 4138: Normal +Vertex 4139: Normal +Vertex 4140: Normal +Vertex 4141: Normal +Vertex 4142: Normal +Vertex 4143: Normal +Vertex 4144: Normal +Vertex 4145: Normal +Vertex 4146: Normal +Vertex 4147: Normal +Vertex 4148: Normal +Vertex 4149: Normal +Vertex 4150: Normal +Vertex 4151: Normal +Vertex 4152: Normal +Vertex 4153: Normal +Vertex 4154: Normal +Vertex 4155: Normal +Vertex 4156: Normal +Vertex 4157: Normal +Vertex 4158: Normal +Vertex 4159: Normal +Vertex 4160: Normal +Vertex 4161: Normal +Vertex 4162: Normal +Vertex 4163: Normal +Vertex 4164: Normal +Vertex 4165: Normal +Vertex 4166: Normal +Vertex 4167: Normal +Vertex 4168: Normal +Vertex 4169: Normal +Vertex 4170: Normal +Vertex 4171: Normal +Vertex 4172: Normal +Vertex 4173: Normal +Vertex 4174: Normal +Vertex 4175: Normal +Vertex 4176: Normal +Vertex 4177: Normal +Vertex 4178: Normal +Vertex 4179: Normal +Vertex 4180: Normal +Vertex 4181: Normal +Vertex 4182: Normal +Vertex 4183: Normal +Vertex 4184: Normal +Vertex 4185: Normal +Vertex 4186: Normal +Vertex 4187: Normal +Vertex 4188: Normal +Vertex 4189: Normal +Vertex 4190: Normal +Vertex 4191: Normal +Vertex 4192: Normal +Vertex 4193: Normal +Vertex 4194: Normal +Vertex 4195: Normal +Vertex 4196: Normal +Vertex 4197: Normal +Vertex 4198: Normal +Vertex 4199: Normal +Vertex 4200: Normal +Vertex 4201: Normal +Vertex 4202: Normal +Vertex 4203: Normal +Vertex 4204: Normal +Vertex 4205: Normal +Vertex 4206: Normal +Vertex 4207: Normal +Vertex 4208: Normal +Vertex 4209: Normal +Vertex 4210: Normal +Vertex 4211: Normal +Vertex 4212: Normal +Vertex 4213: Normal +Vertex 4214: Normal +Vertex 4215: Normal +Vertex 4216: Normal +Vertex 4217: Normal +Vertex 4218: Normal +Vertex 4219: Normal +Vertex 4220: Normal +Vertex 4221: Normal +Vertex 4222: Normal +Vertex 4223: Normal +Vertex 4224: Normal +Vertex 4225: Normal +Vertex 4226: Normal +Vertex 4227: Normal +Vertex 4228: Normal +Vertex 4229: Normal +Vertex 4230: Normal +Vertex 4231: Normal +Vertex 4232: Normal +Vertex 4233: Normal +Vertex 4234: Normal +Vertex 4235: Normal +Vertex 4236: Normal +Vertex 4237: Normal +Vertex 4238: Normal +Vertex 4239: Normal +Vertex 4240: Normal +Vertex 4241: Normal +Vertex 4242: Normal +Vertex 4243: Normal +Vertex 4244: Normal +Vertex 4245: Normal +Vertex 4246: Normal +Vertex 4247: Normal +Vertex 4248: Normal +Vertex 4249: Normal +Vertex 4250: Normal +Vertex 4251: Normal +Vertex 4252: Normal +Vertex 4253: Normal +Vertex 4254: Normal +Vertex 4255: Normal +Vertex 4256: Normal +Vertex 4257: Normal +Vertex 4258: Normal +Vertex 4259: Normal +Vertex 4260: Normal +Vertex 4261: Normal +Vertex 4262: Normal +Vertex 4263: Normal +Vertex 4264: Normal +Vertex 4265: Normal +Vertex 4266: Normal +Vertex 4267: Normal +Vertex 4268: Normal +Vertex 4269: Normal +Vertex 4270: Normal +Vertex 4271: Normal +Vertex 4272: Normal +Vertex 4273: Normal +Vertex 4274: Normal +Vertex 4275: Normal +Vertex 4276: Normal +Vertex 4277: Normal +Vertex 4278: Normal +Vertex 4279: Normal +Vertex 4280: Normal +Vertex 4281: Normal +Vertex 4282: Normal +Vertex 4283: Normal +Vertex 4284: Normal +Vertex 4285: Normal +Vertex 4286: Normal +Vertex 4287: Normal +Vertex 4288: Normal +Vertex 4289: Normal +Vertex 4290: Normal +Vertex 4291: Normal +Vertex 4292: Normal +Vertex 4293: Normal +Vertex 4294: Normal +Vertex 4295: Normal +Vertex 4296: Normal +Vertex 4297: Normal +Vertex 4298: Normal +Vertex 4299: Normal +Vertex 4300: Normal +Vertex 4301: Normal +Vertex 4302: Normal +Vertex 4303: Normal +Vertex 4304: Normal +Vertex 4305: Normal +Vertex 4306: Normal +Vertex 4307: Normal +Vertex 4308: Normal +Vertex 4309: Normal +Vertex 4310: Normal +Vertex 4311: Normal +Vertex 4312: Normal +Vertex 4313: Normal +Vertex 4314: Normal +Vertex 4315: Normal +Vertex 4316: Normal +Vertex 4317: Normal +Vertex 4318: Normal +Vertex 4319: Normal +Vertex 4320: Normal +Vertex 4321: Normal +Vertex 4322: Normal +Vertex 4323: Normal +Vertex 4324: Normal +Vertex 4325: Normal +Vertex 4326: Normal +Vertex 4327: Normal +Vertex 4328: Normal +Vertex 4329: Normal +Vertex 4330: Normal +Vertex 4331: Normal +Vertex 4332: Normal +Vertex 4333: Normal +Vertex 4334: Normal +Vertex 4335: Normal +Vertex 4336: Normal +Vertex 4337: Normal +Vertex 4338: Normal +Vertex 4339: Normal +Vertex 4340: Normal +Vertex 4341: Normal +Vertex 4342: Normal +Vertex 4343: Normal +Vertex 4344: Normal +Vertex 4345: Normal +Vertex 4346: Normal +Vertex 4347: Normal +Vertex 4348: Normal +Vertex 4349: Normal +Vertex 4350: Normal +Vertex 4351: Normal +Vertex 4352: Normal +Vertex 4353: Normal +Vertex 4354: Normal +Vertex 4355: Normal +Vertex 4356: Normal +Vertex 4357: Normal +Vertex 4358: Normal +Vertex 4359: Normal +Vertex 4360: Normal +Vertex 4361: Normal +Vertex 4362: Normal +Vertex 4363: Normal +Vertex 4364: Normal +Vertex 4365: Normal +Vertex 4366: Normal +Vertex 4367: Normal +Vertex 4368: Normal +Vertex 4369: Normal +Vertex 4370: Normal +Vertex 4371: Normal +Vertex 4372: Normal +Vertex 4373: Normal +Vertex 4374: Normal +Vertex 4375: Normal +Vertex 4376: Normal +Vertex 4377: Normal +Vertex 4378: Normal +Vertex 4379: Normal +Vertex 4380: Normal +Vertex 4381: Normal +Vertex 4382: Normal +Vertex 4383: Normal +Vertex 4384: Normal +Vertex 4385: Normal +Vertex 4386: Normal +Vertex 4387: Normal +Vertex 4388: Normal +Vertex 4389: Normal +Vertex 4390: Normal +Vertex 4391: Normal +Vertex 4392: Normal +Vertex 4393: Normal +Vertex 4394: Normal +Vertex 4395: Normal +Vertex 4396: Normal +Vertex 4397: Normal +Vertex 4398: Normal +Vertex 4399: Normal +Vertex 4400: Normal +Vertex 4401: Normal +Vertex 4402: Normal +Vertex 4403: Normal +Vertex 4404: Normal +Vertex 4405: Normal +Vertex 4406: Normal +Vertex 4407: Normal +Vertex 4408: Normal +Vertex 4409: Normal +Vertex 4410: Normal +Vertex 4411: Normal +Vertex 4412: Normal +Vertex 4413: Normal +Vertex 4414: Normal +Vertex 4415: Normal +Vertex 4416: Normal +Vertex 4417: Normal +Vertex 4418: Normal +Vertex 4419: Normal +Vertex 4420: Normal +Vertex 4421: Normal +Vertex 4422: Normal +Vertex 4423: Normal +Vertex 4424: Normal +Vertex 4425: Normal +Vertex 4426: Normal +Vertex 4427: Normal +Vertex 4428: Normal +Vertex 4429: Normal +Vertex 4430: Normal +Vertex 4431: Normal +Vertex 4432: Normal +Vertex 4433: Normal +Vertex 4434: Normal +Vertex 4435: Normal +Vertex 4436: Normal +Vertex 4437: Normal +Vertex 4438: Normal +Vertex 4439: Normal +Vertex 4440: Normal +Vertex 4441: Normal +Vertex 4442: Normal +Vertex 4443: Normal +Vertex 4444: Normal +Vertex 4445: Normal +Vertex 4446: Normal +Vertex 4447: Normal +Vertex 4448: Normal +Vertex 4449: Normal +Vertex 4450: Normal +Vertex 4451: Normal +Vertex 4452: Normal +Vertex 4453: Normal +Vertex 4454: Normal +Vertex 4455: Normal +Vertex 4456: Normal +Vertex 4457: Normal +Vertex 4458: Normal +Vertex 4459: Normal +Vertex 4460: Normal +Vertex 4461: Normal +Vertex 4462: Normal +Vertex 4463: Normal +Vertex 4464: Normal +Vertex 4465: Normal +Vertex 4466: Normal +Vertex 4467: Normal +Vertex 4468: Normal +Vertex 4469: Normal +Vertex 4470: Normal +Vertex 4471: Normal +Vertex 4472: Normal +Vertex 4473: Normal +Vertex 4474: Normal +Vertex 4475: Normal +Vertex 4476: Normal +Vertex 4477: Normal +Vertex 4478: Normal +Vertex 4479: Normal +Vertex 4480: Normal +Vertex 4481: Normal +Vertex 4482: Normal +Vertex 4483: Normal +Vertex 4484: Normal +Vertex 4485: Normal +Vertex 4486: Normal +Vertex 4487: Normal +Vertex 4488: Normal +Vertex 4489: Normal +Vertex 4490: Normal +Vertex 4491: Normal +Vertex 4492: Normal +Vertex 4493: Normal +Vertex 4494: Normal +Vertex 4495: Normal +Vertex 4496: Normal +Vertex 4497: Normal +Vertex 4498: Normal +Vertex 4499: Normal +Vertex 4500: Normal +Vertex 4501: Normal +Vertex 4502: Normal +Vertex 4503: Normal +Vertex 4504: Normal +Vertex 4505: Normal +Vertex 4506: Normal +Vertex 4507: Normal +Vertex 4508: Normal +Vertex 4509: Normal +Vertex 4510: Normal +Vertex 4511: Normal +Vertex 4512: Normal +Vertex 4513: Normal +Vertex 4514: Normal +Vertex 4515: Normal +Vertex 4516: Normal +Vertex 4517: Normal +Vertex 4518: Normal +Vertex 4519: Normal +Vertex 4520: Normal +Vertex 4521: Normal +Vertex 4522: Normal +Vertex 4523: Normal +Vertex 4524: Normal +Vertex 4525: Normal +Vertex 4526: Normal +Vertex 4527: Normal +Vertex 4528: Normal +Vertex 4529: Normal +Vertex 4530: Normal +Vertex 4531: Normal +Vertex 4532: Normal +Vertex 4533: Normal +Vertex 4534: Normal +Vertex 4535: Normal +Vertex 4536: Normal +Vertex 4537: Normal +Vertex 4538: Normal +Vertex 4539: Normal +Vertex 4540: Normal +Vertex 4541: Normal +Vertex 4542: Normal +Vertex 4543: Normal +Vertex 4544: Normal +Vertex 4545: Normal +Vertex 4546: Normal +Vertex 4547: Normal +Vertex 4548: Normal +Vertex 4549: Normal +Vertex 4550: Normal +Vertex 4551: Normal +Vertex 4552: Normal +Vertex 4553: Normal +Vertex 4554: Normal +Vertex 4555: Normal +Vertex 4556: Normal +Vertex 4557: Normal +Vertex 4558: Normal +Vertex 4559: Normal +Vertex 4560: Normal +Vertex 4561: Normal +Vertex 4562: Normal +Vertex 4563: Normal +Vertex 4564: Normal +Vertex 4565: Normal +Vertex 4566: Normal +Vertex 4567: Normal +Vertex 4568: Normal +Vertex 4569: Normal +Vertex 4570: Normal +Vertex 4571: Normal +Vertex 4572: Normal +Vertex 4573: Normal +Vertex 4574: Normal +Vertex 4575: Normal +Vertex 4576: Normal +Vertex 4577: Normal +Vertex 4578: Normal +Vertex 4579: Normal +Vertex 4580: Normal +Vertex 4581: Normal +Vertex 4582: Normal +Vertex 4583: Normal +Vertex 4584: Normal +Vertex 4585: Normal +Vertex 4586: Normal +Vertex 4587: Normal +Vertex 4588: Normal +Vertex 4589: Normal +Vertex 4590: Normal +Vertex 4591: Normal +Vertex 4592: Normal +Vertex 4593: Normal +Vertex 4594: Normal +Vertex 4595: Normal +Vertex 4596: Normal +Vertex 4597: Normal +Vertex 4598: Normal +Vertex 4599: Normal +Vertex 4600: Normal +Vertex 4601: Normal +Vertex 4602: Normal +Vertex 4603: Normal +Vertex 4604: Normal +Vertex 4605: Normal +Vertex 4606: Normal +Vertex 4607: Normal +Vertex 4608: Normal +Vertex 4609: Normal +Vertex 4610: Normal +Vertex 4611: Normal +Vertex 4612: Normal +Vertex 4613: Normal +Vertex 4614: Normal +Vertex 4615: Normal +Vertex 4616: Normal +Vertex 4617: Normal +Vertex 4618: Normal +Vertex 4619: Normal +Vertex 4620: Normal +Vertex 4621: Normal +Vertex 4622: Normal +Vertex 4623: Normal +Vertex 4624: Normal +Vertex 4625: Normal +Vertex 4626: Normal +Vertex 4627: Normal +Vertex 4628: Normal +Vertex 4629: Normal +Vertex 4630: Normal +Vertex 4631: Normal +Vertex 4632: Normal +Vertex 4633: Normal +Vertex 4634: Normal +Vertex 4635: Normal +Vertex 4636: Normal +Vertex 4637: Normal +Vertex 4638: Normal +Vertex 4639: Normal +Vertex 4640: Normal +Vertex 4641: Normal +Vertex 4642: Normal +Vertex 4643: Normal +Vertex 4644: Normal +Vertex 4645: Normal +Vertex 4646: Normal +Vertex 4647: Normal +Vertex 4648: Normal +Vertex 4649: Normal +Vertex 4650: Normal +Vertex 4651: Normal +Vertex 4652: Normal +Vertex 4653: Normal +Vertex 4654: Normal +Vertex 4655: Normal +Vertex 4656: Normal +Vertex 4657: Normal +Vertex 4658: Normal +Vertex 4659: Normal +Vertex 4660: Normal +Vertex 4661: Normal +Vertex 4662: Normal +Vertex 4663: Normal +Vertex 4664: Normal +Vertex 4665: Normal +Vertex 4666: Normal +Vertex 4667: Normal +Vertex 4668: Normal +Vertex 4669: Normal +Vertex 4670: Normal +Vertex 4671: Normal +Vertex 4672: Normal +Vertex 4673: Normal +Vertex 4674: Normal +Vertex 4675: Normal +Vertex 4676: Normal +Vertex 4677: Normal +Vertex 4678: Normal +Vertex 4679: Normal +Vertex 4680: Normal +Vertex 4681: Normal +Vertex 4682: Normal +Vertex 4683: Normal +Vertex 4684: Normal +Vertex 4685: Normal +Vertex 4686: Normal +Vertex 4687: Normal +Vertex 4688: Normal +Vertex 4689: Normal +Vertex 4690: Normal +Vertex 4691: Normal +Vertex 4692: Normal +Vertex 4693: Normal +Vertex 4694: Normal +Vertex 4695: Normal +Vertex 4696: Normal +Vertex 4697: Normal +Vertex 4698: Normal +Vertex 4699: Normal +Vertex 4700: Normal +Vertex 4701: Normal +Vertex 4702: Normal +Vertex 4703: Normal +Vertex 4704: Normal +Vertex 4705: Normal +Vertex 4706: Normal +Vertex 4707: Normal +Vertex 4708: Normal +Vertex 4709: Normal +Vertex 4710: Normal +Vertex 4711: Normal +Vertex 4712: Normal +Vertex 4713: Normal +Vertex 4714: Normal +Vertex 4715: Normal +Vertex 4716: Normal +Vertex 4717: Normal +Vertex 4718: Normal +Vertex 4719: Normal +Vertex 4720: Normal +Vertex 4721: Normal +Vertex 4722: Normal +Vertex 4723: Normal +Vertex 4724: Normal +Vertex 4725: Normal +Vertex 4726: Normal +Vertex 4727: Normal +Vertex 4728: Normal +Vertex 4729: Normal +Vertex 4730: Normal +Vertex 4731: Normal +Vertex 4732: Normal +Vertex 4733: Normal +Vertex 4734: Normal +Vertex 4735: Normal +Vertex 4736: Normal +Vertex 4737: Normal +Vertex 4738: Normal +Vertex 4739: Normal +Vertex 4740: Normal +Vertex 4741: Normal +Vertex 4742: Normal +Vertex 4743: Normal +Vertex 4744: Normal +Vertex 4745: Normal +Vertex 4746: Normal +Vertex 4747: Normal +Vertex 4748: Normal +Vertex 4749: Normal +Vertex 4750: Normal +Vertex 4751: Normal +Vertex 4752: Normal +Vertex 4753: Normal +Vertex 4754: Normal +Vertex 4755: Normal +Vertex 4756: Normal +Vertex 4757: Normal +Vertex 4758: Normal +Vertex 4759: Normal +Vertex 4760: Normal +Vertex 4761: Normal +Vertex 4762: Normal +Vertex 4763: Normal +Vertex 4764: Normal +Vertex 4765: Normal +Vertex 4766: Normal +Vertex 4767: Normal +Vertex 4768: Normal +Vertex 4769: Normal +Vertex 4770: Normal +Vertex 4771: Normal +Vertex 4772: Normal +Vertex 4773: Normal +Vertex 4774: Normal +Vertex 4775: Normal +Vertex 4776: Normal +Vertex 4777: Normal +Vertex 4778: Normal +Vertex 4779: Normal +Vertex 4780: Normal +Vertex 4781: Normal +Vertex 4782: Normal +Vertex 4783: Normal +Vertex 4784: Normal +Vertex 4785: Normal +Vertex 4786: Normal +Vertex 4787: Normal +Vertex 4788: Normal +Vertex 4789: Normal +Vertex 4790: Normal +Vertex 4791: Normal +Vertex 4792: Normal +Vertex 4793: Normal +Vertex 4794: Normal +Vertex 4795: Normal +Vertex 4796: Normal +Vertex 4797: Normal +Vertex 4798: Normal +Vertex 4799: Normal +Vertex 4800: Normal +Vertex 4801: Normal +Vertex 4802: Normal +Vertex 4803: Normal +Vertex 4804: Normal +Vertex 4805: Normal +Vertex 4806: Normal +Vertex 4807: Normal +Vertex 4808: Normal +Vertex 4809: Normal +Vertex 4810: Normal +Vertex 4811: Normal +Vertex 4812: Normal +Vertex 4813: Normal +Vertex 4814: Normal +Vertex 4815: Normal +Vertex 4816: Normal +Vertex 4817: Normal +Vertex 4818: Normal +Vertex 4819: Normal +Vertex 4820: Normal +Vertex 4821: Normal +Vertex 4822: Normal +Vertex 4823: Normal +Vertex 4824: Normal +Vertex 4825: Normal +Vertex 4826: Normal +Vertex 4827: Normal +Vertex 4828: Normal +Vertex 4829: Normal +Vertex 4830: Normal +Vertex 4831: Normal +Vertex 4832: Normal +Vertex 4833: Normal +Vertex 4834: Normal +Vertex 4835: Normal +Vertex 4836: Normal +Vertex 4837: Normal +Vertex 4838: Normal +Vertex 4839: Normal +Vertex 4840: Normal +Vertex 4841: Normal +Vertex 4842: Normal +Vertex 4843: Normal +Vertex 4844: Normal +Vertex 4845: Normal +Vertex 4846: Normal +Vertex 4847: Normal +Vertex 4848: Normal +Vertex 4849: Normal +Vertex 4850: Normal +Vertex 4851: Normal +Vertex 4852: Normal +Vertex 4853: Normal +Vertex 4854: Normal +Vertex 4855: Normal +Vertex 4856: Normal +Vertex 4857: Normal +Vertex 4858: Normal +Vertex 4859: Normal +Vertex 4860: Normal +Vertex 4861: Normal +Vertex 4862: Normal +Vertex 4863: Normal +Vertex 4864: Normal +Vertex 4865: Normal +Vertex 4866: Normal +Vertex 4867: Normal +Vertex 4868: Normal +Vertex 4869: Normal +Vertex 4870: Normal +Vertex 4871: Normal +Vertex 4872: Normal +Vertex 4873: Normal +Vertex 4874: Normal +Vertex 4875: Normal +Vertex 4876: Normal +Vertex 4877: Normal +Vertex 4878: Normal +Vertex 4879: Normal +Vertex 4880: Normal +Vertex 4881: Normal +Vertex 4882: Normal +Vertex 4883: Normal +Vertex 4884: Normal +Vertex 4885: Normal +Vertex 4886: Normal +Vertex 4887: Normal +Vertex 4888: Normal +Vertex 4889: Normal +Vertex 4890: Normal +Vertex 4891: Normal +Vertex 4892: Normal +Vertex 4893: Normal +Vertex 4894: Normal +Vertex 4895: Normal +Vertex 4896: Normal +Vertex 4897: Normal +Vertex 4898: Normal +Vertex 4899: Normal +Vertex 4900: Normal +Vertex 4901: Normal +Vertex 4902: Normal +Vertex 4903: Normal +Vertex 4904: Normal +Vertex 4905: Normal +Vertex 4906: Normal +Vertex 4907: Normal +Vertex 4908: Normal +Vertex 4909: Normal +Vertex 4910: Normal +Vertex 4911: Normal +Vertex 4912: Normal +Vertex 4913: Normal +Vertex 4914: Normal +Vertex 4915: Normal +Vertex 4916: Normal +Vertex 4917: Normal +Vertex 4918: Normal +Vertex 4919: Normal +Vertex 4920: Normal +Vertex 4921: Normal +Vertex 4922: Normal +Vertex 4923: Normal +Vertex 4924: Normal +Vertex 4925: Normal +Vertex 4926: Normal +Vertex 4927: Normal +Vertex 4928: Normal +Vertex 4929: Normal +Vertex 4930: Normal +Vertex 4931: Normal +Vertex 4932: Normal +Vertex 4933: Normal +Vertex 4934: Normal +Vertex 4935: Normal +Vertex 4936: Normal +Vertex 4937: Normal +Vertex 4938: Normal +Vertex 4939: Normal +Vertex 4940: Normal +Vertex 4941: Normal +Vertex 4942: Normal +Vertex 4943: Normal +Vertex 4944: Normal +Vertex 4945: Normal +Vertex 4946: Normal +Vertex 4947: Normal +Vertex 4948: Normal +Vertex 4949: Normal +Vertex 4950: Normal +Vertex 4951: Normal +Vertex 4952: Normal +Vertex 4953: Normal +Vertex 4954: Normal +Vertex 4955: Normal +Vertex 4956: Normal +Vertex 4957: Normal +Vertex 4958: Normal +Vertex 4959: Normal +Vertex 4960: Normal +Vertex 4961: Normal +Vertex 4962: Normal +Vertex 4963: Normal +Vertex 4964: Normal +Vertex 4965: Normal +Vertex 4966: Normal +Vertex 4967: Normal +Vertex 4968: Normal +Vertex 4969: Normal +Vertex 4970: Normal +Vertex 4971: Normal +Vertex 4972: Normal +Vertex 4973: Normal +Vertex 4974: Normal +Vertex 4975: Normal +Vertex 4976: Normal +Vertex 4977: Normal +Vertex 4978: Normal +Vertex 4979: Normal +Vertex 4980: Normal +Vertex 4981: Normal +Vertex 4982: Normal +Vertex 4983: Normal +Vertex 4984: Normal +Vertex 4985: Normal +Vertex 4986: Normal +Vertex 4987: Normal +Vertex 4988: Normal +Vertex 4989: Normal +Vertex 4990: Normal +Vertex 4991: Normal +Vertex 4992: Normal +Vertex 4993: Normal +Vertex 4994: Normal +Vertex 4995: Normal +Vertex 4996: Normal +Vertex 4997: Normal +Vertex 4998: Normal +Vertex 4999: Normal +Vertex 5000: Normal +Vertex 5001: Normal +Vertex 5002: Normal +Vertex 5003: Normal +Vertex 5004: Normal +Vertex 5005: Normal +Vertex 5006: Normal +Vertex 5007: Normal +Vertex 5008: Normal +Vertex 5009: Normal +Vertex 5010: Normal +Vertex 5011: Normal +Vertex 5012: Normal +Vertex 5013: Normal +Vertex 5014: Normal +Vertex 5015: Normal +Vertex 5016: Normal +Vertex 5017: Normal +Vertex 5018: Normal +Vertex 5019: Normal +Vertex 5020: Normal +Vertex 5021: Normal +Vertex 5022: Normal +Vertex 5023: Normal +Vertex 5024: Normal +Vertex 5025: Normal +Vertex 5026: Normal +Vertex 5027: Normal +Vertex 5028: Normal +Vertex 5029: Normal +Vertex 5030: Normal +Vertex 5031: Normal +Vertex 5032: Normal +Vertex 5033: Normal +Vertex 5034: Normal +Vertex 5035: Normal +Vertex 5036: Normal +Vertex 5037: Normal +Vertex 5038: Normal +Vertex 5039: Normal +Vertex 5040: Normal +Vertex 5041: Normal +Vertex 5042: Normal +Vertex 5043: Normal +Vertex 5044: Normal +Vertex 5045: Normal +Vertex 5046: Normal +Vertex 5047: Normal +Vertex 5048: Normal +Vertex 5049: Normal +Vertex 5050: Normal +Vertex 5051: Normal +Vertex 5052: Normal +Vertex 5053: Normal +Vertex 5054: Normal +Vertex 5055: Normal +Vertex 5056: Normal +Vertex 5057: Normal +Vertex 5058: Normal +Vertex 5059: Normal +Vertex 5060: Normal +Vertex 5061: Normal +Vertex 5062: Normal +Vertex 5063: Normal +Vertex 5064: Normal +Vertex 5065: Normal +Vertex 5066: Normal +Vertex 5067: Normal +Vertex 5068: Normal +Vertex 5069: Normal +Vertex 5070: Normal +Vertex 5071: Normal +Vertex 5072: Normal +Vertex 5073: Normal +Vertex 5074: Normal +Vertex 5075: Normal +Vertex 5076: Normal +Vertex 5077: Normal +Vertex 5078: Normal +Vertex 5079: Normal +Vertex 5080: Normal +Vertex 5081: Normal +Vertex 5082: Normal +Vertex 5083: Normal +Vertex 5084: Normal +Vertex 5085: Normal +Vertex 5086: Normal +Vertex 5087: Normal +Vertex 5088: Normal +Vertex 5089: Normal +Vertex 5090: Normal +Vertex 5091: Normal +Vertex 5092: Normal +Vertex 5093: Normal +Vertex 5094: Normal +Vertex 5095: Normal +Vertex 5096: Normal +Vertex 5097: Normal +Vertex 5098: Normal +Vertex 5099: Normal +Vertex 5100: Normal +Vertex 5101: Normal +Vertex 5102: Normal +Vertex 5103: Normal +Vertex 5104: Normal +Vertex 5105: Normal +Vertex 5106: Normal +Vertex 5107: Normal +Vertex 5108: Normal +Vertex 5109: Normal +Vertex 5110: Normal +Vertex 5111: Normal +Vertex 5112: Normal +Vertex 5113: Normal +Vertex 5114: Normal +Vertex 5115: Normal +Vertex 5116: Normal +Vertex 5117: Normal +Vertex 5118: Normal +Vertex 5119: Normal +Vertex 5120: Normal +Vertex 5121: Normal +Vertex 5122: Normal +Vertex 5123: Normal +Vertex 5124: Normal +Vertex 5125: Normal +Vertex 5126: Normal +Vertex 5127: Normal +Vertex 5128: Normal +Vertex 5129: Normal +Vertex 5130: Normal +Vertex 5131: Normal +Vertex 5132: Normal +Vertex 5133: Normal +Vertex 5134: Normal +Vertex 5135: Normal +Vertex 5136: Normal +Vertex 5137: Normal +Vertex 5138: Normal +Vertex 5139: Normal +Vertex 5140: Normal +Vertex 5141: Normal +Vertex 5142: Normal +Vertex 5143: Normal +Vertex 5144: Normal +Vertex 5145: Normal +Vertex 5146: Normal +Vertex 5147: Normal +Vertex 5148: Normal +Vertex 5149: Normal +Vertex 5150: Normal +Vertex 5151: Normal +Vertex 5152: Normal +Vertex 5153: Normal +Vertex 5154: Normal +Vertex 5155: Normal +Vertex 5156: Normal +Vertex 5157: Normal +Vertex 5158: Normal +Vertex 5159: Normal +Vertex 5160: Normal +Vertex 5161: Normal +Vertex 5162: Normal +Vertex 5163: Normal +Vertex 5164: Normal +Vertex 5165: Normal +Vertex 5166: Normal +Vertex 5167: Normal +Vertex 5168: Normal +Vertex 5169: Normal +Vertex 5170: Normal +Vertex 5171: Normal +Vertex 5172: Normal +Vertex 5173: Normal +Vertex 5174: Normal +Vertex 5175: Normal +Vertex 5176: Normal +Vertex 5177: Normal +Vertex 5178: Normal +Vertex 5179: Normal +Vertex 5180: Normal +Vertex 5181: Normal +Vertex 5182: Normal +Vertex 5183: Normal +Vertex 5184: Normal +Vertex 5185: Normal +Vertex 5186: Normal +Vertex 5187: Normal +Vertex 5188: Normal +Vertex 5189: Normal +Vertex 5190: Normal +Vertex 5191: Normal +Vertex 5192: Normal +Vertex 5193: Normal +Vertex 5194: Normal +Vertex 5195: Normal +Vertex 5196: Normal +Vertex 5197: Normal +Vertex 5198: Normal +Vertex 5199: Normal +Vertex 5200: Normal +Vertex 5201: Normal +Vertex 5202: Normal +Vertex 5203: Normal +Vertex 5204: Normal +Vertex 5205: Normal +Vertex 5206: Normal +Vertex 5207: Normal +Vertex 5208: Normal +Vertex 5209: Normal +Vertex 5210: Normal +Vertex 5211: Normal +Vertex 5212: Normal +Vertex 5213: Normal +Vertex 5214: Normal +Vertex 5215: Normal +Vertex 5216: Normal +Vertex 5217: Normal +Vertex 5218: Normal +Vertex 5219: Normal +Vertex 5220: Normal +Vertex 5221: Normal +Vertex 5222: Normal +Vertex 5223: Normal +Vertex 5224: Normal +Vertex 5225: Normal +Vertex 5226: Normal +Vertex 5227: Normal +Vertex 5228: Normal +Vertex 5229: Normal +Vertex 5230: Normal +Vertex 5231: Normal +Vertex 5232: Normal +Vertex 5233: Normal +Vertex 5234: Normal +Vertex 5235: Normal +Vertex 5236: Normal +Vertex 5237: Normal +Vertex 5238: Normal +Vertex 5239: Normal +Vertex 5240: Normal +Vertex 5241: Normal +Vertex 5242: Normal +Vertex 5243: Normal +Vertex 5244: Normal +Vertex 5245: Normal +Vertex 5246: Normal +Vertex 5247: Normal +Vertex 5248: Normal +Vertex 5249: Normal +Vertex 5250: Normal +Vertex 5251: Normal +Vertex 5252: Normal +Vertex 5253: Normal +Vertex 5254: Normal +Vertex 5255: Normal +Vertex 5256: Normal +Vertex 5257: Normal +Vertex 5258: Normal +Vertex 5259: Normal +Vertex 5260: Normal +Vertex 5261: Normal +Vertex 5262: Normal +Vertex 5263: Normal +Vertex 5264: Normal +Vertex 5265: Normal +Vertex 5266: Normal +Vertex 5267: Normal +Vertex 5268: Normal +Vertex 5269: Normal +Vertex 5270: Normal +Vertex 5271: Normal +Vertex 5272: Normal +Vertex 5273: Normal +Vertex 5274: Normal +Vertex 5275: Normal +Vertex 5276: Normal +Vertex 5277: Normal +Vertex 5278: Normal +Vertex 5279: Normal +Vertex 5280: Normal +Vertex 5281: Normal +Vertex 5282: Normal +Vertex 5283: Normal +Vertex 5284: Normal +Vertex 5285: Normal +Vertex 5286: Normal +Vertex 5287: Normal +Vertex 5288: Normal +Vertex 5289: Normal +Vertex 5290: Normal +Vertex 5291: Normal +Vertex 5292: Normal +Vertex 5293: Normal +Vertex 5294: Normal +Vertex 5295: Normal +Vertex 5296: Normal +Vertex 5297: Normal +Vertex 5298: Normal +Vertex 5299: Normal +Vertex 5300: Normal +Vertex 5301: Normal +Vertex 5302: Normal +Vertex 5303: Normal +Vertex 5304: Normal +Vertex 5305: Normal +Vertex 5306: Normal +Vertex 5307: Normal +Vertex 5308: Normal +Vertex 5309: Normal +Vertex 5310: Normal +Vertex 5311: Normal +Vertex 5312: Normal +Vertex 5313: Normal +Vertex 5314: Normal +Vertex 5315: Normal +Vertex 5316: Normal +Vertex 5317: Normal +Vertex 5318: Normal +Vertex 5319: Normal +Vertex 5320: Normal +Vertex 5321: Normal +Vertex 5322: Normal +Vertex 5323: Normal +Vertex 5324: Normal +Vertex 5325: Normal +Vertex 5326: Normal +Vertex 5327: Normal +Vertex 5328: Normal +Vertex 5329: Normal +Vertex 5330: Normal +Vertex 5331: Normal +Vertex 5332: Normal +Vertex 5333: Normal +Vertex 5334: Normal +Vertex 5335: Normal +Vertex 5336: Normal +Vertex 5337: Normal +Vertex 5338: Normal +Vertex 5339: Normal +Vertex 5340: Normal +Vertex 5341: Normal +Vertex 5342: Normal +Vertex 5343: Normal +Vertex 5344: Normal +Vertex 5345: Normal +Vertex 5346: Normal +Vertex 5347: Normal +Vertex 5348: Normal +Vertex 5349: Normal +Vertex 5350: Normal +Vertex 5351: Normal +Vertex 5352: Normal +Vertex 5353: Normal +Vertex 5354: Normal +Vertex 5355: Normal +Vertex 5356: Normal +Vertex 5357: Normal +Vertex 5358: Normal +Vertex 5359: Normal +Vertex 5360: Normal +Vertex 5361: Normal +Vertex 5362: Normal +Vertex 5363: Normal +Vertex 5364: Normal +Vertex 5365: Normal +Vertex 5366: Normal +Vertex 5367: Normal +Vertex 5368: Normal +Vertex 5369: Normal +Vertex 5370: Normal +Vertex 5371: Normal +Vertex 5372: Normal +Vertex 5373: Normal +Vertex 5374: Normal +Vertex 5375: Normal +Vertex 5376: Normal +Vertex 5377: Normal +Vertex 5378: Normal +Vertex 5379: Normal +Vertex 5380: Normal +Vertex 5381: Normal +Vertex 5382: Normal +Vertex 5383: Normal +Vertex 5384: Normal +Vertex 5385: Normal +Vertex 5386: Normal +Vertex 5387: Normal +Vertex 5388: Normal +Vertex 5389: Normal +Vertex 5390: Normal +Vertex 5391: Normal +Vertex 5392: Normal +Vertex 5393: Normal +Vertex 5394: Normal +Vertex 5395: Normal +Vertex 5396: Normal +Vertex 5397: Normal +Vertex 5398: Normal +Vertex 5399: Normal +===Triangles: 9390 +Triangle: [1235, 33, 1236] +Triangle: [1237, 706, 705] +Triangle: [1238, 705, 704] +Triangle: [702, 27, 701] +Triangle: [1240, 35, 1235] +Triangle: [703, 26, 702] +Triangle: [1240, 704, 36] +Triangle: [1244, 707, 706] +Triangle: [1236, 32, 1242] +Triangle: [701, 38, 698] +Triangle: [1243, 32, 31] +Triangle: [1241, 31, 30] +Triangle: [1222, 48, 1228] +Triangle: [1229, 41, 50] +Triangle: [1223, 47, 41] +Triangle: [1230, 40, 39] +Triangle: [1231, 48, 49] +Triangle: [1230, 42, 1232] +Triangle: [1224, 49, 47] +Triangle: [1232, 43, 1233] +Triangle: [1234, 50, 51] +Triangle: [1279, 46, 1222] +Triangle: [1278, 51, 40] +Triangle: [1281, 45, 1279] +Triangle: [1233, 44, 1281] +Triangle: [18, 61, 64] +Triangle: [18, 63, 19] +Triangle: [25, 57, 14] +Triangle: [19, 52, 20] +Triangle: [25, 55, 62] +Triangle: [16, 61, 17] +Triangle: [23, 56, 21] +Triangle: [16, 58, 60] +Triangle: [22, 59, 23] +Triangle: [14, 58, 13] +Triangle: [15, 56, 54] +Triangle: [24, 54, 55] +Triangle: [22, 52, 53] +Triangle: [10, 1210, 1211] +Triangle: [1220, 1, 1219] +Triangle: [7, 1212, 1213] +Triangle: [1, 1218, 1219] +Triangle: [9, 1211, 1212] +Triangle: [1218, 3, 1217] +Triangle: [1209, 11, 1221] +Triangle: [5, 1214, 1215] +Triangle: [1221, 12, 1220] +Triangle: [4, 1215, 1216] +Triangle: [3, 1216, 1217] +Triangle: [6, 1213, 1214] +Triangle: [1253, 70, 1287] +Triangle: [1259, 70, 69] +Triangle: [1254, 1275, 1274] +Triangle: [1255, 1277, 65] +Triangle: [1249, 77, 1254] +Triangle: [1252, 76, 1253] +Triangle: [1257, 74, 67] +Triangle: [1250, 75, 1252] +Triangle: [1251, 71, 74] +Triangle: [1258, 73, 1250] +Triangle: [1256, 67, 66] +Triangle: [1249, 66, 72] +Triangle: [1255, 71, 1248] +Triangle: [82, 712, 713] +Triangle: [712, 80, 714] +Triangle: [80, 711, 714] +Triangle: [715, 35, 711] +Triangle: [82, 86, 81] +Triangle: [88, 94, 86] +Triangle: [130, 162, 161] +Triangle: [83, 92, 88] +Triangle: [106, 104, 100] +Triangle: [160, 92, 91] +Triangle: [86, 95, 81] +Triangle: [80, 95, 96] +Triangle: [78, 96, 97] +Triangle: [79, 97, 98] +Triangle: [99, 713, 716] +Triangle: [82, 100, 85] +Triangle: [95, 170, 96] +Triangle: [94, 171, 95] +Triangle: [85, 104, 87] +Triangle: [107, 716, 717] +Triangle: [99, 106, 100] +Triangle: [173, 94, 92] +Triangle: [83, 109, 84] +Triangle: [109, 87, 110] +Triangle: [103, 109, 111] +Triangle: [111, 110, 108] +Triangle: [112, 87, 104] +Triangle: [108, 112, 113] +Triangle: [115, 104, 105] +Triangle: [112, 114, 113] +Triangle: [98, 116, 117] +Triangle: [139, 119, 140] +Triangle: [118, 121, 119] +Triangle: [174, 123, 175] +Triangle: [174, 124, 176] +Triangle: [89, 177, 179] +Triangle: [177, 128, 178] +Triangle: [126, 137, 128] +Triangle: [124, 166, 89] +Triangle: [124, 163, 165] +Triangle: [164, 120, 118] +Triangle: [116, 140, 117] +Triangle: [139, 164, 118] +Triangle: [116, 167, 139] +Triangle: [169, 116, 97] +Triangle: [169, 96, 170] +Triangle: [86, 87, 88] +Triangle: [131, 161, 159] +Triangle: [132, 159, 158] +Triangle: [160, 132, 158] +Triangle: [89, 162, 126] +Triangle: [176, 89, 179] +Triangle: [101, 155, 102] +Triangle: [152, 144, 145] +Triangle: [134, 151, 133] +Triangle: [135, 151, 154] +Triangle: [157, 153, 156] +Triangle: [152, 146, 155] +Triangle: [150, 152, 153] +Triangle: [151, 153, 154] +Triangle: [141, 149, 150] +Triangle: [149, 142, 144] +Triangle: [136, 157, 93] +Triangle: [93, 156, 101] +Triangle: [138, 150, 151] +Triangle: [148, 154, 157] +Triangle: [153, 155, 156] +Triangle: [155, 147, 102] +Triangle: [102, 159, 101] +Triangle: [147, 158, 102] +Triangle: [136, 161, 162] +Triangle: [93, 159, 161] +Triangle: [134, 163, 164] +Triangle: [133, 165, 163] +Triangle: [136, 166, 148] +Triangle: [134, 167, 138] +Triangle: [138, 168, 141] +Triangle: [142, 169, 170] +Triangle: [143, 168, 169] +Triangle: [142, 171, 144] +Triangle: [145, 171, 172] +Triangle: [146, 172, 173] +Triangle: [147, 173, 160] +Triangle: [148, 165, 135] +Triangle: [125, 179, 90] +Triangle: [127, 178, 129] +Triangle: [90, 177, 127] +Triangle: [122, 176, 125] +Triangle: [120, 175, 121] +Triangle: [107, 180, 106] +Triangle: [180, 183, 182] +Triangle: [183, 186, 182] +Triangle: [181, 717, 718] +Triangle: [183, 718, 719] +Triangle: [720, 183, 719] +Triangle: [192, 720, 721] +Triangle: [722, 192, 721] +Triangle: [723, 191, 722] +Triangle: [715, 190, 723] +Triangle: [184, 193, 186] +Triangle: [198, 193, 199] +Triangle: [192, 187, 184] +Triangle: [191, 188, 192] +Triangle: [195, 190, 189] +Triangle: [79, 189, 190] +Triangle: [204, 196, 205] +Triangle: [201, 186, 198] +Triangle: [202, 201, 198] +Triangle: [182, 200, 180] +Triangle: [202, 199, 203] +Triangle: [180, 105, 106] +Triangle: [115, 200, 208] +Triangle: [210, 207, 208] +Triangle: [185, 203, 194] +Triangle: [197, 202, 185] +Triangle: [201, 205, 200] +Triangle: [114, 208, 207] +Triangle: [696, 196, 206] +Triangle: [696, 200, 205] +Triangle: [189, 217, 195] +Triangle: [218, 211, 212] +Triangle: [219, 212, 213] +Triangle: [220, 213, 214] +Triangle: [221, 214, 215] +Triangle: [222, 215, 216] +Triangle: [117, 189, 98] +Triangle: [140, 211, 117] +Triangle: [119, 212, 140] +Triangle: [214, 119, 121] +Triangle: [215, 121, 175] +Triangle: [216, 175, 123] +Triangle: [223, 188, 195] +Triangle: [187, 227, 193] +Triangle: [193, 226, 199] +Triangle: [203, 226, 224] +Triangle: [228, 195, 217] +Triangle: [223, 229, 227] +Triangle: [226, 229, 230] +Triangle: [250, 249, 224] +Triangle: [229, 233, 234] +Triangle: [234, 230, 229] +Triangle: [233, 217, 218] +Triangle: [233, 236, 234] +Triangle: [235, 238, 236] +Triangle: [238, 239, 240] +Triangle: [240, 241, 242] +Triangle: [231, 244, 243] +Triangle: [243, 246, 245] +Triangle: [242, 262, 248] +Triangle: [234, 244, 232] +Triangle: [238, 244, 236] +Triangle: [247, 264, 240] +Triangle: [235, 218, 219] +Triangle: [237, 219, 220] +Triangle: [221, 237, 220] +Triangle: [222, 239, 221] +Triangle: [194, 224, 249] +Triangle: [226, 250, 224] +Triangle: [225, 250, 230] +Triangle: [225, 232, 231] +Triangle: [129, 256, 127] +Triangle: [122, 267, 123] +Triangle: [90, 255, 125] +Triangle: [216, 268, 222] +Triangle: [241, 261, 242] +Triangle: [125, 265, 122] +Triangle: [90, 256, 252] +Triangle: [264, 238, 240] +Triangle: [264, 245, 246] +Triangle: [123, 266, 216] +Triangle: [242, 247, 240] +Triangle: [265, 255, 253] +Triangle: [259, 266, 258] +Triangle: [265, 254, 267] +Triangle: [267, 258, 266] +Triangle: [241, 268, 260] +Triangle: [260, 268, 259] +Triangle: [8, 1209, 1210] +Triangle: [111, 269, 103] +Triangle: [302, 272, 271] +Triangle: [277, 274, 278] +Triangle: [270, 275, 269] +Triangle: [276, 278, 275] +Triangle: [277, 280, 281] +Triangle: [273, 281, 279] +Triangle: [281, 283, 284] +Triangle: [279, 284, 282] +Triangle: [284, 286, 287] +Triangle: [282, 287, 285] +Triangle: [287, 289, 290] +Triangle: [287, 288, 285] +Triangle: [289, 293, 290] +Triangle: [290, 291, 288] +Triangle: [294, 276, 270] +Triangle: [280, 295, 283] +Triangle: [283, 694, 286] +Triangle: [286, 296, 289] +Triangle: [292, 296, 297] +Triangle: [108, 270, 111] +Triangle: [295, 108, 113] +Triangle: [694, 113, 114] +Triangle: [296, 114, 207] +Triangle: [297, 207, 209] +Triangle: [273, 302, 274] +Triangle: [303, 273, 279] +Triangle: [303, 305, 304] +Triangle: [301, 304, 272] +Triangle: [305, 282, 306] +Triangle: [285, 306, 282] +Triangle: [300, 309, 285] +Triangle: [307, 309, 308] +Triangle: [300, 288, 299] +Triangle: [299, 291, 298] +Triangle: [323, 317, 315] +Triangle: [310, 328, 329] +Triangle: [326, 329, 325] +Triangle: [312, 325, 329] +Triangle: [325, 316, 326] +Triangle: [330, 315, 316] +Triangle: [313, 330, 312] +Triangle: [323, 318, 314] +Triangle: [317, 321, 322] +Triangle: [314, 320, 321] +Triangle: [320, 313, 319] +Triangle: [319, 312, 311] +Triangle: [329, 311, 312] +Triangle: [316, 331, 332] +Triangle: [331, 317, 324] +Triangle: [333, 317, 322] +Triangle: [340, 331, 324] +Triangle: [340, 333, 339] +Triangle: [322, 339, 333] +Triangle: [342, 345, 341] +Triangle: [342, 338, 339] +Triangle: [337, 339, 338] +Triangle: [336, 340, 337] +Triangle: [346, 343, 344] +Triangle: [321, 342, 322] +Triangle: [320, 343, 321] +Triangle: [308, 328, 307] +Triangle: [319, 308, 347] +Triangle: [319, 344, 320] +Triangle: [347, 300, 348] +Triangle: [344, 348, 346] +Triangle: [350, 345, 346] +Triangle: [634, 631, 632] +Triangle: [356, 681, 679] +Triangle: [352, 346, 348] +Triangle: [352, 300, 299] +Triangle: [680, 352, 299] +Triangle: [358, 353, 354] +Triangle: [350, 682, 679] +Triangle: [587, 634, 635] +Triangle: [683, 353, 680] +Triangle: [341, 362, 338] +Triangle: [685, 359, 684] +Triangle: [361, 363, 360] +Triangle: [341, 349, 359] +Triangle: [684, 349, 681] +Triangle: [351, 360, 355] +Triangle: [366, 338, 365] +Triangle: [367, 338, 362] +Triangle: [686, 362, 685] +Triangle: [369, 363, 364] +Triangle: [327, 332, 336] +Triangle: [326, 327, 334] +Triangle: [335, 326, 334] +Triangle: [310, 371, 307] +Triangle: [371, 306, 307] +Triangle: [376, 379, 377] +Triangle: [271, 379, 378] +Triangle: [375, 379, 380] +Triangle: [272, 380, 271] +Triangle: [374, 380, 381] +Triangle: [382, 272, 304] +Triangle: [383, 304, 305] +Triangle: [305, 370, 383] +Triangle: [406, 393, 401] +Triangle: [394, 406, 402] +Triangle: [395, 402, 403] +Triangle: [404, 395, 403] +Triangle: [404, 389, 405] +Triangle: [397, 405, 396] +Triangle: [398, 403, 392] +Triangle: [403, 390, 392] +Triangle: [390, 406, 400] +Triangle: [400, 401, 391] +Triangle: [415, 405, 389] +Triangle: [415, 389, 412] +Triangle: [396, 415, 388] +Triangle: [413, 415, 412] +Triangle: [414, 412, 411] +Triangle: [398, 412, 389] +Triangle: [411, 392, 410] +Triangle: [409, 392, 390] +Triangle: [409, 400, 408] +Triangle: [400, 407, 408] +Triangle: [411, 416, 414] +Triangle: [417, 410, 409] +Triangle: [408, 417, 409] +Triangle: [419, 408, 407] +Triangle: [418, 422, 421] +Triangle: [421, 417, 418] +Triangle: [426, 416, 417] +Triangle: [428, 430, 439] +Triangle: [429, 385, 447] +Triangle: [373, 381, 382] +Triangle: [372, 382, 383] +Triangle: [424, 429, 447] +Triangle: [447, 423, 444] +Triangle: [425, 374, 373] +Triangle: [420, 422, 387] +Triangle: [413, 441, 388] +Triangle: [428, 414, 416] +Triangle: [427, 413, 414] +Triangle: [426, 420, 430] +Triangle: [387, 432, 420] +Triangle: [420, 386, 430] +Triangle: [432, 433, 434] +Triangle: [433, 436, 434] +Triangle: [435, 438, 436] +Triangle: [376, 438, 437] +Triangle: [385, 428, 439] +Triangle: [439, 386, 440] +Triangle: [386, 434, 440] +Triangle: [385, 440, 423] +Triangle: [423, 443, 442] +Triangle: [445, 384, 425] +Triangle: [444, 442, 384] +Triangle: [443, 434, 436] +Triangle: [446, 436, 438] +Triangle: [446, 377, 375] +Triangle: [446, 442, 443] +Triangle: [374, 442, 375] +Triangle: [444, 424, 447] +Triangle: [399, 461, 393] +Triangle: [461, 463, 460] +Triangle: [394, 462, 399] +Triangle: [463, 465, 464] +Triangle: [463, 466, 460] +Triangle: [448, 464, 467] +Triangle: [474, 448, 467] +Triangle: [475, 468, 459] +Triangle: [465, 476, 464] +Triangle: [477, 478, 479] +Triangle: [476, 467, 464] +Triangle: [485, 468, 469] +Triangle: [469, 449, 485] +Triangle: [470, 484, 469] +Triangle: [470, 482, 483] +Triangle: [471, 481, 482] +Triangle: [480, 472, 473] +Triangle: [498, 484, 483] +Triangle: [450, 486, 488] +Triangle: [484, 487, 449] +Triangle: [495, 488, 496] +Triangle: [458, 489, 490] +Triangle: [525, 490, 526] +Triangle: [456, 491, 492] +Triangle: [619, 492, 620] +Triangle: [452, 494, 453] +Triangle: [495, 489, 451] +Triangle: [486, 499, 488] +Triangle: [497, 488, 499] +Triangle: [489, 497, 500] +Triangle: [490, 500, 501] +Triangle: [526, 501, 527] +Triangle: [492, 502, 503] +Triangle: [480, 476, 477] +Triangle: [473, 509, 510] +Triangle: [471, 507, 508] +Triangle: [469, 505, 506] +Triangle: [473, 504, 467] +Triangle: [472, 508, 509] +Triangle: [470, 506, 507] +Triangle: [474, 505, 468] +Triangle: [474, 504, 511] +Triangle: [512, 508, 507] +Triangle: [512, 506, 505] +Triangle: [510, 512, 504] +Triangle: [511, 512, 505] +Triangle: [519, 483, 482] +Triangle: [498, 520, 499] +Triangle: [521, 499, 520] +Triangle: [481, 513, 516] +Triangle: [514, 516, 513] +Triangle: [515, 517, 514] +Triangle: [482, 516, 519] +Triangle: [517, 519, 516] +Triangle: [521, 517, 518] +Triangle: [500, 521, 522] +Triangle: [518, 522, 521] +Triangle: [524, 518, 515] +Triangle: [501, 522, 523] +Triangle: [491, 527, 502] +Triangle: [457, 526, 491] +Triangle: [527, 523, 524] +Triangle: [527, 528, 502] +Triangle: [503, 528, 529] +Triangle: [528, 530, 532] +Triangle: [531, 524, 515] +Triangle: [533, 515, 514] +Triangle: [513, 533, 514] +Triangle: [477, 513, 480] +Triangle: [479, 534, 477] +Triangle: [531, 537, 536] +Triangle: [530, 536, 532] +Triangle: [532, 539, 540] +Triangle: [542, 539, 541] +Triangle: [544, 541, 543] +Triangle: [546, 543, 545] +Triangle: [547, 546, 545] +Triangle: [549, 548, 547] +Triangle: [552, 549, 551] +Triangle: [552, 553, 554] +Triangle: [554, 555, 556] +Triangle: [560, 557, 558] +Triangle: [556, 559, 560] +Triangle: [558, 561, 562] +Triangle: [562, 563, 564] +Triangle: [564, 565, 566] +Triangle: [492, 621, 620] +Triangle: [493, 568, 494] +Triangle: [621, 565, 567] +Triangle: [563, 567, 565] +Triangle: [529, 623, 622] +Triangle: [528, 538, 529] +Triangle: [538, 540, 569] +Triangle: [538, 624, 623] +Triangle: [566, 581, 564] +Triangle: [564, 580, 562] +Triangle: [562, 579, 558] +Triangle: [558, 578, 560] +Triangle: [578, 556, 560] +Triangle: [556, 576, 554] +Triangle: [554, 575, 552] +Triangle: [575, 550, 552] +Triangle: [574, 548, 550] +Triangle: [548, 572, 546] +Triangle: [546, 571, 544] +Triangle: [571, 542, 544] +Triangle: [570, 540, 542] +Triangle: [534, 537, 533] +Triangle: [583, 536, 537] +Triangle: [541, 583, 585] +Triangle: [541, 584, 543] +Triangle: [543, 586, 545] +Triangle: [545, 587, 547] +Triangle: [549, 587, 588] +Triangle: [551, 588, 589] +Triangle: [551, 590, 553] +Triangle: [605, 597, 606] +Triangle: [607, 598, 605] +Triangle: [608, 591, 609] +Triangle: [610, 599, 607] +Triangle: [608, 593, 592] +Triangle: [612, 600, 610] +Triangle: [611, 594, 593] +Triangle: [612, 602, 601] +Triangle: [613, 595, 594] +Triangle: [614, 603, 602] +Triangle: [615, 596, 595] +Triangle: [618, 603, 616] +Triangle: [617, 597, 596] +Triangle: [609, 625, 626] +Triangle: [569, 626, 624] +Triangle: [574, 606, 617] +Triangle: [582, 616, 581] +Triangle: [573, 617, 615] +Triangle: [580, 616, 614] +Triangle: [572, 615, 613] +Triangle: [579, 614, 612] +Triangle: [571, 613, 611] +Triangle: [579, 610, 578] +Triangle: [570, 611, 608] +Triangle: [578, 607, 577] +Triangle: [570, 609, 569] +Triangle: [577, 605, 576] +Triangle: [576, 606, 575] +Triangle: [582, 626, 618] +Triangle: [618, 625, 604] +Triangle: [623, 582, 566] +Triangle: [622, 566, 565] +Triangle: [529, 621, 503] +Triangle: [620, 567, 493] +Triangle: [452, 620, 493] +Triangle: [478, 394, 395] +Triangle: [583, 535, 628] +Triangle: [479, 628, 535] +Triangle: [478, 627, 479] +Triangle: [627, 631, 628] +Triangle: [632, 629, 630] +Triangle: [397, 627, 395] +Triangle: [396, 629, 397] +Triangle: [633, 584, 585] +Triangle: [631, 633, 628] +Triangle: [588, 635, 636] +Triangle: [388, 630, 396] +Triangle: [441, 638, 388] +Triangle: [424, 637, 441] +Triangle: [630, 640, 632] +Triangle: [637, 640, 638] +Triangle: [639, 445, 425] +Triangle: [634, 640, 643] +Triangle: [640, 642, 643] +Triangle: [639, 641, 642] +Triangle: [641, 373, 372] +Triangle: [644, 383, 370] +Triangle: [641, 644, 645] +Triangle: [371, 644, 370] +Triangle: [335, 645, 371] +Triangle: [334, 646, 335] +Triangle: [642, 645, 646] +Triangle: [642, 647, 643] +Triangle: [635, 643, 647] +Triangle: [636, 647, 648] +Triangle: [648, 334, 327] +Triangle: [650, 327, 336] +Triangle: [648, 649, 636] +Triangle: [589, 636, 649] +Triangle: [652, 336, 337] +Triangle: [650, 651, 649] +Triangle: [590, 649, 651] +Triangle: [654, 337, 366] +Triangle: [653, 652, 654] +Triangle: [655, 651, 653] +Triangle: [553, 655, 555] +Triangle: [453, 659, 455] +Triangle: [568, 659, 494] +Triangle: [658, 563, 561] +Triangle: [561, 657, 658] +Triangle: [657, 559, 656] +Triangle: [555, 656, 559] +Triangle: [663, 655, 653] +Triangle: [656, 662, 657] +Triangle: [657, 661, 658] +Triangle: [661, 659, 658] +Triangle: [455, 660, 454] +Triangle: [454, 665, 664] +Triangle: [669, 366, 365] +Triangle: [654, 670, 653] +Triangle: [670, 663, 653] +Triangle: [668, 662, 663] +Triangle: [662, 666, 661] +Triangle: [661, 665, 660] +Triangle: [669, 674, 670] +Triangle: [677, 674, 671] +Triangle: [673, 675, 672] +Triangle: [672, 678, 677] +Triangle: [671, 365, 367] +Triangle: [368, 685, 363] +Triangle: [355, 684, 681] +Triangle: [363, 684, 360] +Triangle: [298, 680, 299] +Triangle: [679, 357, 356] +Triangle: [353, 682, 680] +Triangle: [679, 349, 350] +Triangle: [677, 367, 686] +Triangle: [672, 686, 368] +Triangle: [369, 672, 368] +Triangle: [668, 690, 667] +Triangle: [667, 689, 666] +Triangle: [664, 687, 688] +Triangle: [687, 666, 689] +Triangle: [670, 691, 668] +Triangle: [678, 691, 674] +Triangle: [675, 690, 678] +Triangle: [689, 692, 687] +Triangle: [687, 693, 688] +Triangle: [676, 692, 675] +Triangle: [583, 633, 585] +Triangle: [358, 356, 357] +Triangle: [355, 695, 351] +Triangle: [696, 210, 208] +Triangle: [710, 702, 709] +Triangle: [697, 38, 37] +Triangle: [699, 28, 34] +Triangle: [700, 37, 28] +Triangle: [709, 701, 708] +Triangle: [708, 698, 707] +Triangle: [36, 699, 34] +Triangle: [706, 698, 697] +Triangle: [704, 700, 699] +Triangle: [705, 697, 700] +Triangle: [1247, 709, 1246] +Triangle: [1246, 708, 1239] +Triangle: [1239, 707, 1245] +Triangle: [1241, 710, 1247] +Triangle: [30, 703, 710] +Triangle: [33, 723, 32] +Triangle: [32, 722, 31] +Triangle: [31, 721, 30] +Triangle: [721, 29, 30] +Triangle: [29, 719, 26] +Triangle: [719, 27, 26] +Triangle: [718, 38, 27] +Triangle: [717, 37, 38] +Triangle: [716, 28, 37] +Triangle: [79, 711, 78] +Triangle: [714, 35, 36] +Triangle: [712, 36, 34] +Triangle: [713, 34, 28] +Triangle: [733, 262, 261] +Triangle: [734, 261, 260] +Triangle: [260, 731, 734] +Triangle: [259, 730, 731] +Triangle: [258, 729, 730] +Triangle: [729, 253, 728] +Triangle: [728, 255, 727] +Triangle: [727, 252, 726] +Triangle: [726, 256, 725] +Triangle: [725, 257, 724] +Triangle: [732, 5216, 5217] +Triangle: [743, 5196, 5198] +Triangle: [5218, 731, 5219] +Triangle: [5219, 730, 5215] +Triangle: [730, 5214, 5215] +Triangle: [729, 5213, 5214] +Triangle: [728, 5212, 5213] +Triangle: [727, 5211, 5212] +Triangle: [5211, 725, 5210] +Triangle: [5210, 724, 5220] +Triangle: [1195, 747, 759] +Triangle: [1197, 760, 797] +Triangle: [1133, 770, 1136] +Triangle: [785, 779, 778] +Triangle: [791, 773, 790] +Triangle: [784, 780, 779] +Triangle: [1096, 751, 750] +Triangle: [1204, 762, 1200] +Triangle: [1201, 800, 1202] +Triangle: [1102, 804, 1100] +Triangle: [796, 776, 767] +Triangle: [1194, 766, 765] +Triangle: [1202, 746, 1196] +Triangle: [1093, 750, 752] +Triangle: [1006, 1008, 1007] +Triangle: [891, 786, 787] +Triangle: [786, 778, 777] +Triangle: [805, 837, 807] +Triangle: [893, 783, 784] +Triangle: [888, 788, 896] +Triangle: [887, 785, 786] +Triangle: [1147, 767, 776] +Triangle: [894, 792, 899] +Triangle: [795, 767, 768] +Triangle: [783, 781, 780] +Triangle: [896, 789, 895] +Triangle: [897, 793, 894] +Triangle: [895, 782, 886] +Triangle: [885, 794, 897] +Triangle: [788, 773, 775] +Triangle: [885, 796, 795] +Triangle: [793, 771, 792] +Triangle: [898, 790, 888] +Triangle: [782, 774, 781] +Triangle: [892, 784, 785] +Triangle: [795, 769, 794] +Triangle: [789, 775, 774] +Triangle: [787, 777, 776] +Triangle: [886, 783, 890] +Triangle: [794, 770, 793] +Triangle: [889, 787, 796] +Triangle: [1090, 802, 801] +Triangle: [1097, 758, 1101] +Triangle: [1094, 755, 1095] +Triangle: [1104, 757, 1097] +Triangle: [1095, 756, 1104] +Triangle: [1205, 798, 766] +Triangle: [1200, 761, 1206] +Triangle: [1207, 763, 1204] +Triangle: [1100, 803, 1092] +Triangle: [1091, 748, 1102] +Triangle: [1098, 803, 802] +Triangle: [1103, 752, 753] +Triangle: [1196, 747, 1199] +Triangle: [805, 808, 806] +Triangle: [806, 809, 805] +Triangle: [868, 810, 813] +Triangle: [869, 813, 816] +Triangle: [806, 813, 810] +Triangle: [812, 806, 808] +Triangle: [867, 816, 818] +Triangle: [814, 813, 811] +Triangle: [812, 814, 811] +Triangle: [817, 814, 815] +Triangle: [818, 816, 817] +Triangle: [862, 822, 821] +Triangle: [861, 822, 855] +Triangle: [864, 871, 857] +Triangle: [819, 833, 820] +Triangle: [820, 866, 819] +Triangle: [820, 835, 822] +Triangle: [824, 807, 823] +Triangle: [823, 826, 824] +Triangle: [826, 897, 828] +Triangle: [828, 894, 830] +Triangle: [824, 828, 827] +Triangle: [808, 827, 812] +Triangle: [899, 830, 894] +Triangle: [827, 830, 829] +Triangle: [812, 829, 815] +Triangle: [829, 817, 815] +Triangle: [835, 895, 834] +Triangle: [833, 896, 835] +Triangle: [807, 847, 823] +Triangle: [888, 832, 898] +Triangle: [838, 805, 809] +Triangle: [823, 848, 825] +Triangle: [838, 865, 841] +Triangle: [863, 841, 865] +Triangle: [838, 839, 836] +Triangle: [837, 839, 840] +Triangle: [839, 842, 840] +Triangle: [843, 842, 841] +Triangle: [863, 844, 843] +Triangle: [821, 835, 834] +Triangle: [843, 852, 851] +Triangle: [856, 821, 846] +Triangle: [859, 846, 845] +Triangle: [853, 844, 845] +Triangle: [844, 859, 845] +Triangle: [846, 853, 845] +Triangle: [857, 809, 864] +Triangle: [891, 825, 848] +Triangle: [887, 848, 850] +Triangle: [892, 850, 851] +Triangle: [849, 848, 847] +Triangle: [837, 849, 847] +Triangle: [842, 849, 840] +Triangle: [851, 850, 842] +Triangle: [893, 851, 852] +Triangle: [886, 834, 895] +Triangle: [890, 854, 886] +Triangle: [864, 810, 858] +Triangle: [890, 852, 853] +Triangle: [851, 842, 843] +Triangle: [1198, 797, 798] +Triangle: [1203, 759, 760] +Triangle: [862, 870, 879] +Triangle: [1101, 749, 1091] +Triangle: [866, 873, 883] +Triangle: [859, 872, 878] +Triangle: [857, 882, 865] +Triangle: [860, 880, 872] +Triangle: [868, 875, 884] +Triangle: [858, 884, 877] +Triangle: [869, 874, 875] +Triangle: [858, 881, 864] +Triangle: [856, 878, 870] +Triangle: [855, 873, 861] +Triangle: [865, 880, 863] +Triangle: [855, 879, 876] +Triangle: [909, 1018, 900] +Triangle: [1049, 1138, 1144] +Triangle: [1139, 1042, 1142] +Triangle: [1145, 1054, 1141] +Triangle: [1045, 1140, 1135] +Triangle: [1141, 1044, 1143] +Triangle: [1144, 1048, 1049] +Triangle: [1146, 1053, 1145] +Triangle: [1042, 1134, 1142] +Triangle: [1043, 1136, 1134] +Triangle: [1050, 1146, 1138] +Triangle: [1143, 1045, 1135] +Triangle: [1042, 1108, 1043] +Triangle: [1044, 1112, 1045] +Triangle: [1046, 1108, 1109] +Triangle: [818, 832, 819] +Triangle: [1050, 1118, 1117] +Triangle: [881, 1091, 871] +Triangle: [1051, 1119, 1042] +Triangle: [1045, 1107, 1052] +Triangle: [1053, 1114, 1054] +Triangle: [1044, 1114, 1113] +Triangle: [1048, 1155, 1049] +Triangle: [1055, 1115, 1053] +Triangle: [1047, 1109, 1121] +Triangle: [1055, 1117, 1116] +Triangle: [747, 917, 759] +Triangle: [916, 746, 915] +Triangle: [759, 920, 918] +Triangle: [760, 918, 919] +Triangle: [920, 919, 918] +Triangle: [1047, 1137, 1133] +Triangle: [971, 1065, 1064] +Triangle: [981, 930, 985] +Triangle: [1001, 1021, 984] +Triangle: [1067, 932, 930] +Triangle: [1068, 934, 932] +Triangle: [1070, 936, 1029] +Triangle: [1148, 989, 1061] +Triangle: [1073, 940, 938] +Triangle: [952, 1059, 1058] +Triangle: [994, 950, 995] +Triangle: [1075, 944, 942] +Triangle: [1076, 946, 944] +Triangle: [1077, 948, 946] +Triangle: [948, 1079, 950] +Triangle: [1058, 1081, 952] +Triangle: [1082, 954, 1040] +Triangle: [952, 1084, 957] +Triangle: [1083, 958, 954] +Triangle: [1085, 960, 958] +Triangle: [960, 1087, 962] +Triangle: [962, 1088, 964] +Triangle: [979, 966, 983] +Triangle: [966, 1065, 924] +Triangle: [977, 980, 928] +Triangle: [925, 1064, 1066] +Triangle: [1208, 753, 1194] +Triangle: [974, 952, 957] +Triangle: [1075, 940, 1074] +Triangle: [946, 994, 993] +Triangle: [944, 993, 992] +Triangle: [992, 942, 944] +Triangle: [991, 940, 942] +Triangle: [1151, 989, 938] +Triangle: [1041, 957, 1040] +Triangle: [1031, 934, 1029] +Triangle: [987, 932, 934] +Triangle: [932, 985, 930] +Triangle: [1001, 983, 996] +Triangle: [964, 1089, 966] +Triangle: [925, 982, 971] +Triangle: [982, 924, 971] +Triangle: [924, 983, 966] +Triangle: [984, 979, 983] +Triangle: [978, 929, 980] +Triangle: [964, 978, 962] +Triangle: [962, 977, 960] +Triangle: [960, 976, 958] +Triangle: [976, 954, 958] +Triangle: [902, 997, 998] +Triangle: [969, 1000, 968] +Triangle: [1012, 1002, 1013] +Triangle: [982, 1001, 996] +Triangle: [1032, 1004, 1005] +Triangle: [1126, 915, 746] +Triangle: [754, 1103, 753] +Triangle: [1103, 874, 883] +Triangle: [883, 867, 866] +Triangle: [1208, 764, 1207] +Triangle: [866, 818, 819] +Triangle: [898, 831, 899] +Triangle: [1099, 801, 751] +Triangle: [834, 846, 821] +Triangle: [889, 826, 825] +Triangle: [1000, 1012, 1013] +Triangle: [903, 998, 1017] +Triangle: [1005, 1034, 1032] +Triangle: [968, 1015, 1025] +Triangle: [1000, 1014, 1015] +Triangle: [1012, 1020, 1021] +Triangle: [969, 1019, 1026] +Triangle: [1033, 1111, 1035] +Triangle: [900, 997, 901] +Triangle: [1003, 1013, 1002] +Triangle: [1014, 1022, 1015] +Triangle: [1015, 1027, 1025] +Triangle: [1016, 1036, 1034] +Triangle: [981, 1002, 982] +Triangle: [1066, 930, 925] +Triangle: [929, 1021, 1020] +Triangle: [1025, 1023, 1016] +Triangle: [999, 1026, 1020] +Triangle: [968, 1016, 1005] +Triangle: [1005, 969, 968] +Triangle: [1020, 980, 929] +Triangle: [1026, 928, 980] +Triangle: [985, 1003, 981] +Triangle: [1027, 985, 986] +Triangle: [1023, 986, 987] +Triangle: [1036, 987, 1031] +Triangle: [1024, 1128, 988] +Triangle: [1129, 1024, 1017] +Triangle: [1004, 1035, 1019] +Triangle: [1130, 1017, 998] +Triangle: [998, 1127, 1130] +Triangle: [988, 1132, 936] +Triangle: [1069, 1029, 934] +Triangle: [1028, 1019, 1035] +Triangle: [976, 928, 1028] +Triangle: [1037, 1035, 1111] +Triangle: [975, 1028, 1037] +Triangle: [1056, 1110, 1051] +Triangle: [975, 1040, 954] +Triangle: [1084, 1040, 957] +Triangle: [1041, 1037, 1038] +Triangle: [1038, 974, 1041] +Triangle: [1052, 1106, 1056] +Triangle: [907, 991, 992] +Triangle: [906, 991, 908] +Triangle: [904, 1017, 1024] +Triangle: [1072, 938, 1148] +Triangle: [1152, 990, 906] +Triangle: [791, 899, 792] +Triangle: [904, 1063, 1121] +Triangle: [909, 970, 974] +Triangle: [907, 993, 914] +Triangle: [914, 994, 913] +Triangle: [950, 1080, 1058] +Triangle: [1058, 995, 950] +Triangle: [911, 970, 910] +Triangle: [912, 1059, 911] +Triangle: [913, 995, 912] +Triangle: [1071, 1148, 936] +Triangle: [936, 1061, 988] +Triangle: [949, 945, 943] +Triangle: [926, 1064, 1065] +Triangle: [931, 1066, 927] +Triangle: [933, 1067, 931] +Triangle: [935, 1068, 933] +Triangle: [937, 1070, 1030] +Triangle: [939, 1072, 1060] +Triangle: [941, 1073, 939] +Triangle: [943, 1074, 941] +Triangle: [945, 1075, 943] +Triangle: [945, 1077, 1076] +Triangle: [947, 1078, 1077] +Triangle: [951, 1078, 949] +Triangle: [953, 1080, 1057] +Triangle: [1039, 1083, 1082] +Triangle: [956, 1081, 953] +Triangle: [955, 1085, 1083] +Triangle: [959, 1086, 1085] +Triangle: [961, 1087, 1086] +Triangle: [963, 1088, 1087] +Triangle: [926, 1089, 967] +Triangle: [967, 1088, 965] +Triangle: [927, 1064, 972] +Triangle: [1030, 1069, 935] +Triangle: [956, 1082, 1084] +Triangle: [1057, 1079, 951] +Triangle: [1060, 1071, 937] +Triangle: [941, 949, 943] +Triangle: [939, 951, 941] +Triangle: [1060, 1057, 939] +Triangle: [1060, 956, 953] +Triangle: [1039, 937, 1030] +Triangle: [1030, 955, 1039] +Triangle: [959, 935, 933] +Triangle: [961, 933, 931] +Triangle: [963, 931, 927] +Triangle: [965, 927, 972] +Triangle: [972, 967, 965] +Triangle: [879, 1090, 1099] +Triangle: [900, 1106, 909] +Triangle: [883, 1093, 1103] +Triangle: [878, 1092, 1098] +Triangle: [871, 1102, 882] +Triangle: [880, 1092, 872] +Triangle: [884, 1095, 1104] +Triangle: [884, 1097, 877] +Triangle: [875, 1094, 1095] +Triangle: [877, 1101, 881] +Triangle: [870, 1098, 1090] +Triangle: [1133, 772, 771] +Triangle: [876, 1093, 873] +Triangle: [882, 1100, 880] +Triangle: [876, 1099, 1096] +Triangle: [1052, 1147, 1140] +Triangle: [1118, 1152, 906] +Triangle: [1118, 908, 1117] +Triangle: [1117, 907, 1116] +Triangle: [907, 1115, 1116] +Triangle: [914, 1114, 1115] +Triangle: [913, 1113, 1114] +Triangle: [912, 1112, 1113] +Triangle: [1112, 910, 1107] +Triangle: [1107, 909, 1106] +Triangle: [1018, 1037, 1111] +Triangle: [1110, 901, 1119] +Triangle: [1119, 902, 1108] +Triangle: [1109, 902, 903] +Triangle: [1121, 903, 904] +Triangle: [1062, 1120, 1063] +Triangle: [1007, 1123, 1124] +Triangle: [1122, 1124, 1123] +Triangle: [988, 1149, 1024] +Triangle: [1062, 1024, 1149] +Triangle: [1206, 799, 1201] +Triangle: [1029, 936, 1132] +Triangle: [1129, 1032, 1034] +Triangle: [1130, 1033, 1032] +Triangle: [1128, 1036, 1031] +Triangle: [1111, 997, 1018] +Triangle: [1132, 1031, 1029] +Triangle: [1131, 1034, 1036] +Triangle: [1140, 776, 777] +Triangle: [1154, 1048, 1047] +Triangle: [1143, 778, 779] +Triangle: [1138, 774, 775] +Triangle: [769, 1136, 770] +Triangle: [768, 1134, 769] +Triangle: [1146, 781, 774] +Triangle: [772, 1144, 773] +Triangle: [1141, 779, 780] +Triangle: [1135, 777, 778] +Triangle: [781, 1141, 780] +Triangle: [767, 1142, 768] +Triangle: [1144, 775, 773] +Triangle: [1051, 1147, 1056] +Triangle: [1046, 1133, 1136] +Triangle: [772, 792, 771] +Triangle: [1118, 1155, 1150] +Triangle: [1150, 905, 1152] +Triangle: [1153, 1063, 1120] +Triangle: [1155, 1120, 1150] +Triangle: [1152, 989, 1151] +Triangle: [1121, 1154, 1047] +Triangle: [1149, 905, 1062] +Triangle: [989, 1149, 1061] +Triangle: [1166, 1164, 1165] +Triangle: [1009, 1166, 922] +Triangle: [1191, 1163, 1164] +Triangle: [1169, 1163, 1168] +Triangle: [921, 1171, 919] +Triangle: [1170, 1166, 1171] +Triangle: [1165, 1171, 1166] +Triangle: [919, 1172, 760] +Triangle: [1173, 1165, 1164] +Triangle: [797, 1172, 1173] +Triangle: [1174, 1164, 1163] +Triangle: [1175, 1163, 1162] +Triangle: [798, 1173, 1174] +Triangle: [766, 1174, 1175] +Triangle: [1176, 1162, 1161] +Triangle: [1160, 1176, 1161] +Triangle: [1159, 1177, 1160] +Triangle: [1158, 1178, 1159] +Triangle: [1179, 1157, 1180] +Triangle: [766, 1176, 765] +Triangle: [765, 1177, 1011] +Triangle: [1011, 1178, 764] +Triangle: [764, 1179, 763] +Triangle: [763, 1180, 762] +Triangle: [1182, 1157, 1156] +Triangle: [762, 1182, 761] +Triangle: [1181, 1182, 1156] +Triangle: [1182, 1183, 761] +Triangle: [799, 1183, 1184] +Triangle: [1123, 1183, 1122] +Triangle: [1184, 1008, 1185] +Triangle: [799, 1185, 800] +Triangle: [1008, 1126, 1185] +Triangle: [800, 1126, 746] +Triangle: [1125, 1181, 973] +Triangle: [1186, 1181, 1156] +Triangle: [735, 1186, 1156] +Triangle: [736, 1156, 1157] +Triangle: [737, 1157, 1158] +Triangle: [737, 1159, 738] +Triangle: [739, 1159, 1160] +Triangle: [740, 1160, 1161] +Triangle: [740, 1187, 744] +Triangle: [1162, 1187, 1161] +Triangle: [1188, 744, 1187] +Triangle: [1189, 1187, 1169] +Triangle: [1189, 1168, 1190] +Triangle: [1191, 1167, 1192] +Triangle: [1192, 1009, 1010] +Triangle: [1192, 1168, 1191] +Triangle: [741, 1188, 1193] +Triangle: [1193, 742, 741] +Triangle: [1193, 1189, 1190] +Triangle: [1190, 923, 1193] +Triangle: [1105, 1192, 1010] +Triangle: [758, 1201, 749] +Triangle: [754, 1207, 755] +Triangle: [1011, 1194, 765] +Triangle: [801, 1195, 1203] +Triangle: [750, 1197, 1198] +Triangle: [804, 1199, 803] +Triangle: [755, 1204, 756] +Triangle: [757, 1206, 758] +Triangle: [752, 1198, 1205] +Triangle: [748, 1196, 804] +Triangle: [753, 1205, 1194] +Triangle: [749, 1202, 748] +Triangle: [756, 1200, 757] +Triangle: [751, 1203, 1197] +Triangle: [802, 1199, 1195] +Triangle: [1210, 50, 41] +Triangle: [1214, 48, 46] +Triangle: [43, 1216, 44] +Triangle: [44, 1215, 45] +Triangle: [51, 1220, 40] +Triangle: [45, 1214, 46] +Triangle: [50, 1221, 51] +Triangle: [42, 1217, 43] +Triangle: [1212, 47, 49] +Triangle: [1219, 42, 39] +Triangle: [1213, 49, 48] +Triangle: [40, 1219, 39] +Triangle: [1211, 41, 47] +Triangle: [76, 1227, 70] +Triangle: [70, 1226, 69] +Triangle: [77, 1278, 1275] +Triangle: [65, 1279, 1222] +Triangle: [72, 1234, 77] +Triangle: [75, 1280, 76] +Triangle: [67, 1231, 1224] +Triangle: [75, 1283, 1282] +Triangle: [74, 1228, 1231] +Triangle: [73, 1225, 1283] +Triangle: [66, 1224, 1223] +Triangle: [66, 1229, 72] +Triangle: [65, 1228, 71] +Triangle: [1269, 1247, 1273] +Triangle: [1264, 1245, 1271] +Triangle: [1272, 1239, 1264] +Triangle: [1273, 1246, 1272] +Triangle: [1269, 1243, 1241] +Triangle: [1266, 1242, 1243] +Triangle: [1261, 1242, 1265] +Triangle: [1270, 1245, 1244] +Triangle: [1268, 1238, 1240] +Triangle: [1268, 1235, 1267] +Triangle: [1263, 1237, 1238] +Triangle: [1262, 1244, 1237] +Triangle: [1267, 1236, 1261] +Triangle: [52, 1248, 53] +Triangle: [55, 1256, 1249] +Triangle: [54, 1257, 1256] +Triangle: [57, 1284, 58] +Triangle: [59, 1248, 1251] +Triangle: [58, 1285, 60] +Triangle: [56, 1251, 1257] +Triangle: [60, 1286, 61] +Triangle: [55, 1254, 62] +Triangle: [63, 1255, 52] +Triangle: [62, 1274, 57] +Triangle: [63, 1260, 1276] +Triangle: [64, 1286, 1260] +Triangle: [20, 1267, 1261] +Triangle: [15, 1270, 1262] +Triangle: [21, 1262, 1263] +Triangle: [23, 1267, 22] +Triangle: [21, 1268, 23] +Triangle: [24, 1271, 1270] +Triangle: [20, 1265, 19] +Triangle: [19, 1266, 18] +Triangle: [18, 1269, 17] +Triangle: [13, 1273, 1272] +Triangle: [14, 1272, 1264] +Triangle: [25, 1264, 1271] +Triangle: [17, 1273, 16] +Triangle: [1258, 1275, 68] +Triangle: [1259, 1277, 1276] +Triangle: [1225, 1275, 1278] +Triangle: [1226, 1277, 69] +Triangle: [1280, 1281, 1227] +Triangle: [1227, 1279, 1226] +Triangle: [1280, 1232, 1233] +Triangle: [1282, 1230, 1232] +Triangle: [1283, 1278, 1230] +Triangle: [1250, 1274, 1258] +Triangle: [1252, 1284, 1250] +Triangle: [1253, 1285, 1252] +Triangle: [1259, 1260, 1287] +Triangle: [1253, 1260, 1286] +Triangle: [1321, 2415, 2416] +Triangle: [2417, 1907, 2424] +Triangle: [2418, 1906, 2417] +Triangle: [1315, 1903, 1902] +Triangle: [1323, 2420, 2415] +Triangle: [1314, 1904, 1903] +Triangle: [2420, 1905, 2418] +Triangle: [2424, 1908, 2425] +Triangle: [1320, 2416, 2422] +Triangle: [1326, 1902, 1899] +Triangle: [2423, 1320, 2422] +Triangle: [2421, 1319, 2423] +Triangle: [1336, 2402, 2408] +Triangle: [2409, 1329, 2403] +Triangle: [2403, 1335, 2404] +Triangle: [2410, 1328, 2458] +Triangle: [2411, 1336, 2408] +Triangle: [1330, 2410, 2412] +Triangle: [2404, 1337, 2411] +Triangle: [1331, 2412, 2413] +Triangle: [2414, 1338, 2409] +Triangle: [1334, 2459, 2402] +Triangle: [2458, 1339, 2414] +Triangle: [1333, 2461, 2459] +Triangle: [1332, 2413, 2461] +Triangle: [1306, 1349, 1305] +Triangle: [1351, 1306, 1307] +Triangle: [1345, 1313, 1302] +Triangle: [1340, 1307, 1308] +Triangle: [1313, 1343, 1312] +Triangle: [1349, 1304, 1305] +Triangle: [1344, 1311, 1309] +Triangle: [1304, 1346, 1301] +Triangle: [1347, 1310, 1311] +Triangle: [1346, 1302, 1301] +Triangle: [1303, 1344, 1309] +Triangle: [1312, 1342, 1303] +Triangle: [1310, 1340, 1308] +Triangle: [2390, 1298, 2391] +Triangle: [2400, 1289, 1300] +Triangle: [2392, 1295, 2393] +Triangle: [2398, 1289, 2399] +Triangle: [2391, 1297, 2392] +Triangle: [2398, 1291, 1288] +Triangle: [2389, 1299, 1290] +Triangle: [2394, 1293, 2395] +Triangle: [2401, 1300, 1299] +Triangle: [2395, 1292, 2396] +Triangle: [2396, 1291, 2397] +Triangle: [2393, 1294, 2394] +Triangle: [1358, 2433, 2467] +Triangle: [2439, 1358, 2467] +Triangle: [2455, 2434, 2454] +Triangle: [2435, 2457, 2456] +Triangle: [1365, 2429, 2434] +Triangle: [1364, 2432, 2433] +Triangle: [2437, 1362, 2431] +Triangle: [1363, 2430, 2432] +Triangle: [2431, 1359, 2428] +Triangle: [1361, 2438, 2430] +Triangle: [2436, 1355, 2437] +Triangle: [2429, 1354, 2436] +Triangle: [1359, 2435, 2428] +Triangle: [1913, 1370, 1914] +Triangle: [1913, 1368, 1369] +Triangle: [1912, 1368, 1915] +Triangle: [1916, 1323, 1321] +Triangle: [1372, 1370, 1369] +Triangle: [1379, 1374, 1372] +Triangle: [130, 1440, 137] +Triangle: [1377, 83, 1374] +Triangle: [1388, 1390, 1385] +Triangle: [1438, 1377, 1451] +Triangle: [1380, 1372, 1369] +Triangle: [1368, 1380, 1369] +Triangle: [1381, 1366, 1382] +Triangle: [1367, 1382, 1366] +Triangle: [1914, 1384, 1917] +Triangle: [1385, 1370, 1371] +Triangle: [1380, 1448, 1449] +Triangle: [1379, 1449, 1450] +Triangle: [1388, 1371, 1373] +Triangle: [1917, 1391, 1918] +Triangle: [1384, 1390, 1391] +Triangle: [1451, 1379, 1450] +Triangle: [1393, 83, 84] +Triangle: [1373, 1393, 1394] +Triangle: [103, 1393, 84] +Triangle: [1394, 1395, 1392] +Triangle: [1373, 1396, 1388] +Triangle: [1392, 1396, 1394] +Triangle: [1388, 1399, 1389] +Triangle: [1398, 1396, 1397] +Triangle: [1383, 1400, 1382] +Triangle: [1403, 1417, 1418] +Triangle: [1405, 1402, 1403] +Triangle: [1407, 1452, 1453] +Triangle: [1452, 1408, 1404] +Triangle: [1455, 1375, 1456] +Triangle: [1455, 128, 1410] +Triangle: [137, 1410, 128] +Triangle: [1444, 1408, 1375] +Triangle: [1408, 1441, 1404] +Triangle: [1442, 1404, 1441] +Triangle: [1418, 1400, 1401] +Triangle: [1417, 1442, 1445] +Triangle: [1400, 1445, 1446] +Triangle: [1400, 1447, 1382] +Triangle: [1381, 1447, 1448] +Triangle: [1372, 1373, 1371] +Triangle: [131, 1439, 130] +Triangle: [1437, 132, 1436] +Triangle: [132, 1438, 1436] +Triangle: [1440, 1375, 1410] +Triangle: [1454, 1375, 1408] +Triangle: [1386, 1433, 1434] +Triangle: [1430, 1422, 1427] +Triangle: [1429, 1413, 1412] +Triangle: [1414, 1429, 1412] +Triangle: [1435, 1431, 1432] +Triangle: [1424, 1430, 1433] +Triangle: [1430, 1428, 1431] +Triangle: [1431, 1429, 1432] +Triangle: [1427, 1419, 1428] +Triangle: [1427, 1420, 1421] +Triangle: [1415, 1435, 1426] +Triangle: [1378, 1434, 1435] +Triangle: [1428, 1416, 1429] +Triangle: [1426, 1432, 1414] +Triangle: [1433, 1431, 1434] +Triangle: [1425, 1433, 1387] +Triangle: [1437, 1387, 1386] +Triangle: [1436, 1425, 1387] +Triangle: [1415, 1439, 1378] +Triangle: [1378, 1437, 1386] +Triangle: [1413, 1441, 1412] +Triangle: [1412, 1443, 1414] +Triangle: [1444, 1415, 1426] +Triangle: [1445, 1413, 1416] +Triangle: [1446, 1416, 1419] +Triangle: [1420, 1447, 1421] +Triangle: [1421, 1446, 1419] +Triangle: [1449, 1420, 1422] +Triangle: [1423, 1449, 1422] +Triangle: [1424, 1450, 1423] +Triangle: [1425, 1451, 1424] +Triangle: [1443, 1426, 1414] +Triangle: [1409, 1456, 1454] +Triangle: [1411, 178, 1455] +Triangle: [1376, 1455, 1456] +Triangle: [1406, 1454, 1452] +Triangle: [1453, 1404, 1405] +Triangle: [1457, 1391, 1390] +Triangle: [1457, 1460, 1458] +Triangle: [1462, 1460, 1459] +Triangle: [1918, 1458, 1919] +Triangle: [1919, 1460, 1920] +Triangle: [1921, 1460, 1461] +Triangle: [1921, 1468, 1922] +Triangle: [1468, 1923, 1922] +Triangle: [1467, 1924, 1923] +Triangle: [1466, 1916, 1924] +Triangle: [1469, 1461, 1462] +Triangle: [1471, 1469, 1462] +Triangle: [1463, 1468, 1461] +Triangle: [1467, 1464, 1470] +Triangle: [1470, 1466, 1467] +Triangle: [1367, 1465, 1383] +Triangle: [196, 1477, 1478] +Triangle: [1462, 1474, 1471] +Triangle: [1475, 1474, 1477] +Triangle: [1473, 1459, 1457] +Triangle: [1475, 1472, 1471] +Triangle: [1389, 1457, 1390] +Triangle: [1399, 1473, 1389] +Triangle: [1479, 210, 1480] +Triangle: [185, 1476, 1475] +Triangle: [1475, 197, 185] +Triangle: [1478, 1474, 1473] +Triangle: [1398, 1480, 1399] +Triangle: [196, 1897, 206] +Triangle: [1897, 1473, 1480] +Triangle: [1487, 1465, 1470] +Triangle: [1481, 1488, 1482] +Triangle: [1482, 1489, 1483] +Triangle: [1483, 1490, 1484] +Triangle: [1484, 1491, 1485] +Triangle: [1485, 1492, 1486] +Triangle: [1401, 1465, 1481] +Triangle: [1418, 1481, 1482] +Triangle: [1403, 1482, 1483] +Triangle: [1403, 1484, 1405] +Triangle: [1405, 1485, 1453] +Triangle: [1453, 1486, 1407] +Triangle: [1493, 1464, 1463] +Triangle: [1496, 1463, 1469] +Triangle: [1469, 1495, 1496] +Triangle: [1476, 1495, 1472] +Triangle: [1470, 1497, 1487] +Triangle: [1498, 1493, 1496] +Triangle: [1495, 1498, 1496] +Triangle: [1513, 249, 251] +Triangle: [1498, 1501, 1497] +Triangle: [1499, 1502, 1498] +Triangle: [1487, 1501, 1488] +Triangle: [1504, 1501, 1502] +Triangle: [1506, 1503, 1504] +Triangle: [1506, 1507, 1505] +Triangle: [1508, 1509, 1507] +Triangle: [231, 1511, 1500] +Triangle: [243, 1512, 1511] +Triangle: [262, 1510, 248] +Triangle: [1511, 1502, 1500] +Triangle: [1506, 1511, 1512] +Triangle: [1523, 247, 1508] +Triangle: [1488, 1503, 1489] +Triangle: [1489, 1505, 1490] +Triangle: [1491, 1505, 1507] +Triangle: [1492, 1507, 1509] +Triangle: [194, 1494, 1476] +Triangle: [1495, 1513, 1499] +Triangle: [225, 1513, 251] +Triangle: [225, 1500, 1499] +Triangle: [1518, 129, 1411] +Triangle: [1526, 1406, 1407] +Triangle: [1517, 1376, 1409] +Triangle: [1527, 1486, 1492] +Triangle: [1522, 1509, 1510] +Triangle: [1524, 1409, 1406] +Triangle: [1376, 1518, 1411] +Triangle: [1506, 1523, 1508] +Triangle: [245, 1523, 1512] +Triangle: [1525, 1407, 1486] +Triangle: [1510, 247, 248] +Triangle: [1524, 1515, 1517] +Triangle: [1520, 1525, 1527] +Triangle: [1516, 1524, 1526] +Triangle: [1519, 1526, 1525] +Triangle: [1509, 1527, 1492] +Triangle: [1521, 1520, 1527] +Triangle: [2389, 1296, 2390] +Triangle: [269, 1395, 103] +Triangle: [302, 1529, 1550] +Triangle: [274, 1532, 278] +Triangle: [275, 1528, 269] +Triangle: [278, 1531, 275] +Triangle: [1532, 1534, 1531] +Triangle: [1530, 1535, 1532] +Triangle: [1535, 1537, 1534] +Triangle: [1533, 1538, 1535] +Triangle: [1538, 1540, 1537] +Triangle: [1536, 1541, 1538] +Triangle: [1541, 1543, 1540] +Triangle: [1542, 1541, 1539] +Triangle: [293, 1543, 1544] +Triangle: [291, 1544, 1542] +Triangle: [1531, 1545, 1528] +Triangle: [1546, 1534, 1537] +Triangle: [1896, 1537, 1540] +Triangle: [1547, 1540, 1543] +Triangle: [292, 1547, 1543] +Triangle: [1392, 1528, 1545] +Triangle: [1392, 1546, 1397] +Triangle: [1397, 1896, 1398] +Triangle: [1398, 1547, 1479] +Triangle: [1479, 297, 209] +Triangle: [302, 1530, 274] +Triangle: [1530, 1551, 1533] +Triangle: [1551, 1553, 1533] +Triangle: [1552, 1550, 1529] +Triangle: [1536, 1553, 1554] +Triangle: [1539, 1554, 1557] +Triangle: [1549, 1557, 1556] +Triangle: [1555, 1557, 1554] +Triangle: [1549, 1542, 1539] +Triangle: [1548, 291, 1542] +Triangle: [1565, 1571, 1563] +Triangle: [1576, 1558, 1577] +Triangle: [1577, 1574, 1573] +Triangle: [1560, 1573, 1578] +Triangle: [1573, 1564, 1578] +Triangle: [1563, 1578, 1564] +Triangle: [1578, 1561, 1560] +Triangle: [1566, 1571, 1562] +Triangle: [1565, 1569, 1562] +Triangle: [1568, 1562, 1569] +Triangle: [1568, 1561, 1566] +Triangle: [1560, 1567, 1559] +Triangle: [1559, 1577, 1560] +Triangle: [1564, 1579, 1563] +Triangle: [1579, 1565, 1563] +Triangle: [1565, 1581, 1570] +Triangle: [1579, 1588, 1572] +Triangle: [1581, 1588, 1587] +Triangle: [1570, 1587, 1590] +Triangle: [1593, 1590, 1589] +Triangle: [1586, 1590, 1587] +Triangle: [1585, 1587, 1588] +Triangle: [1588, 1584, 1585] +Triangle: [1591, 1594, 1592] +Triangle: [1569, 1590, 1591] +Triangle: [1568, 1591, 1592] +Triangle: [1576, 1556, 1555] +Triangle: [1556, 1567, 1595] +Triangle: [1567, 1592, 1595] +Triangle: [1549, 1595, 1596] +Triangle: [1596, 1592, 1594] +Triangle: [1593, 1598, 1594] +Triangle: [1842, 1839, 1795] +Triangle: [1886, 1602, 1884] +Triangle: [1594, 1599, 1596] +Triangle: [1549, 1599, 1548] +Triangle: [1885, 1599, 1887] +Triangle: [1600, 358, 354] +Triangle: [1887, 1598, 1884] +Triangle: [1842, 1796, 1843] +Triangle: [683, 1600, 354] +Triangle: [1606, 1589, 1586] +Triangle: [1604, 1889, 1888] +Triangle: [361, 1607, 364] +Triangle: [1589, 1597, 1593] +Triangle: [1597, 1888, 1886] +Triangle: [351, 1605, 361] +Triangle: [1609, 1586, 1585] +Triangle: [1586, 1610, 1606] +Triangle: [1606, 1890, 1889] +Triangle: [1607, 369, 364] +Triangle: [1580, 1575, 1584] +Triangle: [1575, 1574, 1582] +Triangle: [1574, 1583, 1582] +Triangle: [1613, 1558, 1555] +Triangle: [1613, 1554, 1612] +Triangle: [376, 1619, 378] +Triangle: [271, 1619, 1620] +Triangle: [1617, 1619, 1618] +Triangle: [1529, 1620, 1621] +Triangle: [1616, 1620, 1617] +Triangle: [1529, 1622, 1552] +Triangle: [1552, 1623, 1553] +Triangle: [1553, 1612, 1554] +Triangle: [1642, 393, 1636] +Triangle: [1642, 1631, 1638] +Triangle: [1638, 1632, 1639] +Triangle: [1640, 1632, 1634] +Triangle: [1628, 1640, 1641] +Triangle: [1641, 1634, 1633] +Triangle: [1635, 1639, 1640] +Triangle: [1629, 1639, 1630] +Triangle: [1629, 1642, 1638] +Triangle: [1637, 401, 1642] +Triangle: [1650, 1628, 1641] +Triangle: [1650, 1647, 1628] +Triangle: [1650, 1633, 1627] +Triangle: [1650, 1648, 1647] +Triangle: [1647, 1649, 1646] +Triangle: [1635, 1647, 1646] +Triangle: [1630, 1646, 1645] +Triangle: [1644, 1630, 1645] +Triangle: [1637, 1644, 1643] +Triangle: [1637, 407, 391] +Triangle: [1651, 1646, 1649] +Triangle: [1645, 1652, 1644] +Triangle: [1643, 1652, 1653] +Triangle: [419, 1643, 1653] +Triangle: [422, 1653, 1655] +Triangle: [1652, 1655, 1653] +Triangle: [1651, 1659, 1652] +Triangle: [1661, 1663, 1659] +Triangle: [1662, 1625, 1660] +Triangle: [1615, 1621, 1616] +Triangle: [1614, 1622, 1615] +Triangle: [1657, 1662, 1670] +Triangle: [1656, 1676, 1673] +Triangle: [1616, 1658, 1615] +Triangle: [422, 1654, 387] +Triangle: [1670, 1648, 1627] +Triangle: [1661, 1649, 1660] +Triangle: [1660, 1648, 1662] +Triangle: [1659, 1654, 1655] +Triangle: [1664, 387, 1654] +Triangle: [1654, 1626, 1664] +Triangle: [1664, 433, 431] +Triangle: [1666, 433, 1665] +Triangle: [1667, 435, 1666] +Triangle: [376, 1667, 1618] +Triangle: [1661, 1625, 1668] +Triangle: [1668, 1626, 1663] +Triangle: [1626, 1665, 1664] +Triangle: [1625, 1669, 1668] +Triangle: [1656, 1672, 1669] +Triangle: [1624, 1674, 1658] +Triangle: [1673, 1671, 1656] +Triangle: [1665, 1672, 1666] +Triangle: [1675, 1666, 1672] +Triangle: [1618, 1675, 1617] +Triangle: [1671, 1675, 1672] +Triangle: [1616, 1671, 1624] +Triangle: [1657, 1673, 1676] +Triangle: [1636, 461, 1677] +Triangle: [1678, 461, 460] +Triangle: [1631, 1677, 1680] +Triangle: [1680, 1678, 1679] +Triangle: [466, 1678, 460] +Triangle: [448, 1679, 466] +Triangle: [1688, 448, 475] +Triangle: [1682, 475, 459] +Triangle: [1680, 1689, 1691] +Triangle: [1690, 1691, 1689] +Triangle: [1681, 1689, 1679] +Triangle: [1682, 485, 1683] +Triangle: [449, 1683, 485] +Triangle: [1697, 1684, 1683] +Triangle: [1684, 1695, 1685] +Triangle: [1685, 1694, 1686] +Triangle: [1693, 1686, 1694] +Triangle: [1697, 1708, 1696] +Triangle: [450, 1698, 487] +Triangle: [487, 1697, 449] +Triangle: [495, 1699, 450] +Triangle: [458, 1700, 451] +Triangle: [525, 1701, 458] +Triangle: [456, 1702, 457] +Triangle: [619, 1703, 456] +Triangle: [1705, 452, 453] +Triangle: [1700, 495, 451] +Triangle: [1709, 1698, 1699] +Triangle: [1707, 1699, 1706] +Triangle: [1700, 1707, 1706] +Triangle: [1701, 1710, 1700] +Triangle: [1735, 1711, 1701] +Triangle: [1703, 1712, 1702] +Triangle: [1689, 1693, 1690] +Triangle: [1687, 1719, 1686] +Triangle: [1685, 1717, 1684] +Triangle: [1683, 1715, 1682] +Triangle: [1714, 1687, 1681] +Triangle: [1686, 1718, 1685] +Triangle: [1684, 1716, 1683] +Triangle: [1715, 1688, 1682] +Triangle: [1688, 1714, 1681] +Triangle: [1722, 1718, 1719] +Triangle: [1716, 1722, 1715] +Triangle: [1722, 1720, 1714] +Triangle: [1721, 1722, 1714] +Triangle: [1696, 1729, 1695] +Triangle: [1730, 1708, 1709] +Triangle: [1731, 1709, 1707] +Triangle: [1694, 1723, 1693] +Triangle: [1724, 1726, 1727] +Triangle: [1725, 1727, 1728] +Triangle: [1695, 1726, 1694] +Triangle: [1727, 1729, 1730] +Triangle: [1727, 1731, 1728] +Triangle: [1710, 1731, 1707] +Triangle: [1728, 1732, 1733] +Triangle: [1734, 1728, 1733] +Triangle: [1711, 1732, 1710] +Triangle: [1702, 1736, 1735] +Triangle: [457, 1735, 525] +Triangle: [1733, 1736, 1734] +Triangle: [1737, 1736, 1712] +Triangle: [1713, 1737, 1712] +Triangle: [1737, 1739, 1734] +Triangle: [1740, 1734, 1739] +Triangle: [1725, 1742, 1724] +Triangle: [1723, 1742, 1743] +Triangle: [1690, 1723, 1743] +Triangle: [1692, 1743, 1744] +Triangle: [1740, 1746, 1742] +Triangle: [1739, 1745, 1740] +Triangle: [1741, 1748, 1745] +Triangle: [1748, 1751, 1750] +Triangle: [1750, 1753, 1752] +Triangle: [1752, 1755, 1754] +Triangle: [1756, 1755, 1757] +Triangle: [1758, 1757, 1759] +Triangle: [1758, 1761, 1760] +Triangle: [1761, 1762, 1760] +Triangle: [1763, 1764, 1762] +Triangle: [1769, 1766, 1768] +Triangle: [1765, 1768, 1764] +Triangle: [1767, 1770, 1766] +Triangle: [1771, 1772, 1770] +Triangle: [1773, 1774, 1772] +Triangle: [1829, 1703, 1828] +Triangle: [1777, 1704, 1705] +Triangle: [1829, 1774, 1830] +Triangle: [1772, 1776, 1777] +Triangle: [1831, 1738, 1830] +Triangle: [1747, 1737, 1738] +Triangle: [1747, 1749, 1741] +Triangle: [1832, 1747, 1831] +Triangle: [1775, 1790, 1791] +Triangle: [1773, 1789, 1790] +Triangle: [1771, 1788, 1789] +Triangle: [1767, 1787, 1788] +Triangle: [1765, 1787, 1769] +Triangle: [1765, 1785, 1786] +Triangle: [1763, 1784, 1785] +Triangle: [1759, 1784, 1761] +Triangle: [1757, 1783, 1759] +Triangle: [1757, 1781, 1782] +Triangle: [1755, 1780, 1781] +Triangle: [1751, 1780, 1753] +Triangle: [1749, 1779, 1751] +Triangle: [1746, 1743, 1742] +Triangle: [1745, 1792, 1746] +Triangle: [1750, 1792, 1748] +Triangle: [1793, 1750, 1752] +Triangle: [1795, 1752, 1754] +Triangle: [1796, 1754, 1756] +Triangle: [1758, 1796, 1756] +Triangle: [1760, 1797, 1758] +Triangle: [1799, 1760, 1762] +Triangle: [1806, 1814, 1815] +Triangle: [1807, 1816, 1814] +Triangle: [1800, 1817, 1818] +Triangle: [1808, 1819, 1816] +Triangle: [1817, 1802, 1820] +Triangle: [1809, 1821, 1819] +Triangle: [1820, 1803, 1822] +Triangle: [1821, 1811, 1823] +Triangle: [1822, 1804, 1824] +Triangle: [1823, 1812, 1825] +Triangle: [1824, 1805, 1826] +Triangle: [1812, 1827, 1825] +Triangle: [1826, 1806, 1815] +Triangle: [1833, 1818, 1834] +Triangle: [1834, 1778, 1832] +Triangle: [1783, 1815, 1784] +Triangle: [1825, 1791, 1790] +Triangle: [1782, 1826, 1783] +Triangle: [1789, 1825, 1790] +Triangle: [1781, 1824, 1782] +Triangle: [1788, 1823, 1789] +Triangle: [1780, 1822, 1781] +Triangle: [1819, 1788, 1787] +Triangle: [1779, 1820, 1780] +Triangle: [1816, 1787, 1786] +Triangle: [1818, 1779, 1778] +Triangle: [1814, 1786, 1785] +Triangle: [1815, 1785, 1784] +Triangle: [1791, 1834, 1832] +Triangle: [1827, 1833, 1834] +Triangle: [1791, 1831, 1775] +Triangle: [1775, 1830, 1774] +Triangle: [1829, 1738, 1713] +Triangle: [1776, 1828, 1704] +Triangle: [452, 1828, 619] +Triangle: [1631, 1691, 1632] +Triangle: [1792, 1744, 1746] +Triangle: [1836, 1692, 1744] +Triangle: [1835, 1691, 1692] +Triangle: [1839, 1835, 1836] +Triangle: [1837, 1840, 1838] +Triangle: [1634, 1835, 1837] +Triangle: [1633, 1837, 1838] +Triangle: [1793, 1841, 1794] +Triangle: [1841, 1839, 1836] +Triangle: [1797, 1843, 1796] +Triangle: [1627, 1838, 1846] +Triangle: [1846, 1670, 1627] +Triangle: [1845, 1657, 1670] +Triangle: [1848, 1838, 1840] +Triangle: [1848, 1845, 1846] +Triangle: [1674, 1847, 1658] +Triangle: [1842, 1848, 1840] +Triangle: [1848, 1850, 1847] +Triangle: [1849, 1847, 1850] +Triangle: [1615, 1849, 1614] +Triangle: [1623, 1852, 1612] +Triangle: [1849, 1852, 1614] +Triangle: [1613, 1852, 1853] +Triangle: [1583, 1853, 1854] +Triangle: [1582, 1854, 1855] +Triangle: [1850, 1853, 1849] +Triangle: [1855, 1850, 1851] +Triangle: [1843, 1851, 1842] +Triangle: [1844, 1855, 1843] +Triangle: [1582, 1856, 1575] +Triangle: [1575, 1858, 1584] +Triangle: [1856, 1857, 1858] +Triangle: [1798, 1844, 1797] +Triangle: [1584, 1860, 1585] +Triangle: [1858, 1859, 1860] +Triangle: [1799, 1857, 1798] +Triangle: [1585, 1862, 1609] +Triangle: [1860, 1861, 1862] +Triangle: [1863, 1859, 1799] +Triangle: [1863, 1762, 1764] +Triangle: [1867, 453, 455] +Triangle: [1867, 1777, 1705] +Triangle: [1772, 1866, 1770] +Triangle: [1770, 1865, 1766] +Triangle: [1865, 1768, 1766] +Triangle: [1864, 1764, 1768] +Triangle: [1863, 1871, 1861] +Triangle: [1864, 1870, 1871] +Triangle: [1865, 1869, 1870] +Triangle: [1867, 1869, 1866] +Triangle: [1868, 455, 454] +Triangle: [454, 1872, 1868] +Triangle: [1609, 1876, 1608] +Triangle: [1862, 1877, 1876] +Triangle: [1871, 1877, 1861] +Triangle: [1870, 1875, 1871] +Triangle: [1870, 1873, 1874] +Triangle: [1869, 1872, 1873] +Triangle: [1880, 1876, 1877] +Triangle: [1882, 1880, 1883] +Triangle: [673, 1881, 676] +Triangle: [1879, 1883, 1881] +Triangle: [1608, 1878, 1610] +Triangle: [1889, 1611, 1607] +Triangle: [1601, 1888, 1605] +Triangle: [1888, 1607, 1605] +Triangle: [298, 1885, 683] +Triangle: [1603, 1884, 1602] +Triangle: [1600, 1887, 1603] +Triangle: [1597, 1884, 1598] +Triangle: [1882, 1610, 1878] +Triangle: [1890, 1879, 1611] +Triangle: [369, 1879, 673] +Triangle: [1875, 1893, 1894] +Triangle: [1874, 1892, 1893] +Triangle: [1891, 664, 688] +Triangle: [1873, 1891, 1892] +Triangle: [1894, 1877, 1875] +Triangle: [1894, 1883, 1880] +Triangle: [1893, 1881, 1883] +Triangle: [1895, 1892, 1891] +Triangle: [693, 1891, 688] +Triangle: [676, 1895, 693] +Triangle: [1841, 1792, 1794] +Triangle: [358, 1602, 695] +Triangle: [695, 1601, 351] +Triangle: [210, 1897, 1480] +Triangle: [1903, 1911, 1910] +Triangle: [1898, 1326, 1899] +Triangle: [1900, 1316, 1901] +Triangle: [1901, 1325, 1898] +Triangle: [1902, 1910, 1909] +Triangle: [1899, 1909, 1908] +Triangle: [1324, 1900, 1905] +Triangle: [1907, 1899, 1908] +Triangle: [1905, 1901, 1906] +Triangle: [1906, 1898, 1907] +Triangle: [1910, 2427, 2426] +Triangle: [1909, 2426, 2419] +Triangle: [1908, 2419, 2425] +Triangle: [1911, 2421, 2427] +Triangle: [1904, 1318, 1911] +Triangle: [1924, 1321, 1320] +Triangle: [1923, 1320, 1319] +Triangle: [1922, 1319, 1318] +Triangle: [1317, 1922, 1318] +Triangle: [1317, 1920, 1921] +Triangle: [1315, 1920, 1314] +Triangle: [1326, 1919, 1315] +Triangle: [1325, 1918, 1326] +Triangle: [1316, 1917, 1325] +Triangle: [1367, 1912, 1916] +Triangle: [1323, 1915, 1324] +Triangle: [1324, 1913, 1322] +Triangle: [1322, 1914, 1316] +Triangle: [1932, 262, 732] +Triangle: [1933, 1522, 1932] +Triangle: [1931, 1521, 1933] +Triangle: [1930, 1520, 1931] +Triangle: [1929, 1519, 1930] +Triangle: [1929, 1515, 1516] +Triangle: [1928, 1517, 1515] +Triangle: [1927, 1514, 1517] +Triangle: [1926, 1518, 1514] +Triangle: [1925, 257, 1518] +Triangle: [5227, 732, 5217] +Triangle: [5207, 1941, 5208] +Triangle: [1931, 5228, 5229] +Triangle: [5229, 1930, 1931] +Triangle: [5225, 1930, 5226] +Triangle: [5224, 1929, 5225] +Triangle: [5223, 1928, 5224] +Triangle: [5222, 1927, 5223] +Triangle: [5222, 1925, 1926] +Triangle: [724, 5221, 5220] +Triangle: [2375, 1944, 2379] +Triangle: [2377, 1957, 2383] +Triangle: [1967, 2315, 2318] +Triangle: [1982, 1976, 1981] +Triangle: [1970, 1988, 1987] +Triangle: [1981, 1977, 1980] +Triangle: [2281, 1948, 2284] +Triangle: [1959, 2384, 2380] +Triangle: [1997, 2381, 2382] +Triangle: [2001, 2287, 2285] +Triangle: [1993, 1973, 1984] +Triangle: [2374, 1963, 2385] +Triangle: [1943, 2382, 2376] +Triangle: [2278, 1947, 2281] +Triangle: [2195, 1006, 1007] +Triangle: [2088, 1983, 2084] +Triangle: [1983, 1975, 1982] +Triangle: [2002, 2034, 2033] +Triangle: [2090, 1980, 2087] +Triangle: [1985, 2085, 2093] +Triangle: [2084, 1982, 2089] +Triangle: [2329, 1964, 2321] +Triangle: [1989, 2091, 2096] +Triangle: [1992, 1964, 1993] +Triangle: [1980, 1978, 1979] +Triangle: [1986, 2093, 2092] +Triangle: [1990, 2094, 2091] +Triangle: [1979, 2092, 2083] +Triangle: [1991, 2082, 2094] +Triangle: [1985, 1970, 1987] +Triangle: [2082, 1993, 2086] +Triangle: [1968, 1990, 1989] +Triangle: [1987, 2095, 2085] +Triangle: [1979, 1971, 1986] +Triangle: [2089, 1981, 2090] +Triangle: [1966, 1992, 1991] +Triangle: [1986, 1972, 1985] +Triangle: [1984, 1974, 1983] +Triangle: [1980, 2083, 2087] +Triangle: [1967, 1991, 1990] +Triangle: [2086, 1984, 2088] +Triangle: [2275, 1999, 2283] +Triangle: [1955, 2282, 2286] +Triangle: [1952, 2279, 2280] +Triangle: [1954, 2289, 2282] +Triangle: [1953, 2280, 2289] +Triangle: [2385, 1995, 2378] +Triangle: [1958, 2380, 2386] +Triangle: [1960, 2387, 2384] +Triangle: [2000, 2285, 2277] +Triangle: [1945, 2276, 2287] +Triangle: [2283, 2000, 2277] +Triangle: [2288, 1949, 2278] +Triangle: [1944, 2376, 2379] +Triangle: [2002, 2005, 2004] +Triangle: [2003, 2006, 2007] +Triangle: [2065, 2007, 2055] +Triangle: [2010, 2066, 2013] +Triangle: [2003, 2010, 2008] +Triangle: [2003, 2009, 2005] +Triangle: [2013, 2064, 2015] +Triangle: [2010, 2011, 2008] +Triangle: [2009, 2011, 2012] +Triangle: [2011, 2014, 2012] +Triangle: [2015, 2014, 2013] +Triangle: [2059, 2019, 2052] +Triangle: [2019, 2058, 2052] +Triangle: [2068, 2061, 2054] +Triangle: [2030, 2016, 2017] +Triangle: [2017, 2063, 2058] +Triangle: [2032, 2017, 2019] +Triangle: [2004, 2021, 2020] +Triangle: [2023, 2020, 2021] +Triangle: [2023, 2094, 2082] +Triangle: [2025, 2091, 2094] +Triangle: [2021, 2025, 2023] +Triangle: [2005, 2024, 2021] +Triangle: [2027, 2096, 2091] +Triangle: [2024, 2027, 2025] +Triangle: [2009, 2026, 2024] +Triangle: [2014, 2026, 2012] +Triangle: [831, 817, 830] +Triangle: [2032, 2092, 2093] +Triangle: [2030, 2093, 2085] +Triangle: [2004, 2044, 2034] +Triangle: [2029, 2085, 2095] +Triangle: [2002, 2035, 2006] +Triangle: [2020, 2045, 2044] +Triangle: [2035, 2062, 2054] +Triangle: [2038, 2060, 2062] +Triangle: [2036, 2035, 2033] +Triangle: [2034, 2036, 2033] +Triangle: [2039, 2036, 2037] +Triangle: [2040, 2038, 2039] +Triangle: [2060, 2041, 2057] +Triangle: [2018, 2032, 2019] +Triangle: [2049, 2040, 2048] +Triangle: [2018, 2053, 2043] +Triangle: [2056, 2043, 2053] +Triangle: [2041, 2050, 2042] +Triangle: [2041, 2056, 2057] +Triangle: [2043, 2050, 2051] +Triangle: [2006, 2054, 2061] +Triangle: [2022, 2088, 2045] +Triangle: [2084, 2045, 2088] +Triangle: [2047, 2089, 2048] +Triangle: [2045, 2046, 2044] +Triangle: [2034, 2046, 2037] +Triangle: [2046, 2039, 2037] +Triangle: [2048, 2039, 2047] +Triangle: [2090, 2048, 2089] +Triangle: [2031, 2083, 2092] +Triangle: [2051, 2087, 2083] +Triangle: [2007, 2061, 2055] +Triangle: [2049, 2087, 2050] +Triangle: [2048, 2040, 2039] +Triangle: [2378, 1994, 2377] +Triangle: [2383, 1956, 2375] +Triangle: [2059, 2067, 2053] +Triangle: [2286, 1946, 1955] +Triangle: [2063, 2070, 2058] +Triangle: [2056, 2069, 2057] +Triangle: [2079, 2054, 2062] +Triangle: [2057, 2077, 2060] +Triangle: [2065, 2072, 2066] +Triangle: [2055, 2081, 2065] +Triangle: [2066, 2071, 2064] +Triangle: [2078, 2055, 2061] +Triangle: [2053, 2075, 2056] +Triangle: [2070, 2052, 2058] +Triangle: [2077, 2062, 2060] +Triangle: [2052, 2076, 2059] +Triangle: [2106, 2203, 2223] +Triangle: [2320, 2234, 2326] +Triangle: [2321, 2227, 2236] +Triangle: [2327, 2239, 2238] +Triangle: [2322, 2230, 2317] +Triangle: [2323, 2229, 2239] +Triangle: [2326, 2233, 2319] +Triangle: [2328, 2238, 2240] +Triangle: [2316, 2227, 2324] +Triangle: [2318, 2228, 2316] +Triangle: [2328, 2235, 2320] +Triangle: [2325, 2230, 2229] +Triangle: [2292, 2227, 2228] +Triangle: [2296, 2229, 2230] +Triangle: [2231, 2292, 2228] +Triangle: [2029, 2015, 2016] +Triangle: [2235, 2302, 2234] +Triangle: [2276, 2078, 2068] +Triangle: [2303, 2236, 2227] +Triangle: [2291, 2230, 2237] +Triangle: [2298, 2238, 2239] +Triangle: [2229, 2298, 2239] +Triangle: [2337, 2233, 2234] +Triangle: [2299, 2240, 2238] +Triangle: [2232, 2293, 2231] +Triangle: [2240, 2301, 2235] +Triangle: [917, 1944, 1956] +Triangle: [916, 1943, 1944] +Triangle: [920, 1956, 2112] +Triangle: [2112, 1957, 2113] +Triangle: [920, 2113, 921] +Triangle: [2232, 2319, 2233] +Triangle: [2161, 2250, 2114] +Triangle: [2170, 2120, 2115] +Triangle: [2206, 2190, 2173] +Triangle: [2122, 2252, 2120] +Triangle: [2124, 2253, 2122] +Triangle: [2126, 2255, 2214] +Triangle: [2178, 2330, 2246] +Triangle: [2130, 2258, 2128] +Triangle: [2244, 2142, 2243] +Triangle: [2183, 2140, 2138] +Triangle: [2134, 2260, 2132] +Triangle: [2136, 2261, 2134] +Triangle: [2138, 2262, 2136] +Triangle: [2138, 2264, 2263] +Triangle: [2243, 2266, 2265] +Triangle: [2144, 2267, 2225] +Triangle: [2142, 2269, 2266] +Triangle: [2148, 2268, 2144] +Triangle: [2150, 2270, 2148] +Triangle: [2150, 2272, 2271] +Triangle: [2152, 2273, 2272] +Triangle: [2168, 2156, 2154] +Triangle: [2250, 2156, 2114] +Triangle: [2169, 2166, 2118] +Triangle: [2115, 2249, 2161] +Triangle: [1950, 2388, 2374] +Triangle: [2163, 2142, 2160] +Triangle: [2130, 2260, 2259] +Triangle: [2183, 2136, 2182] +Triangle: [2182, 2134, 2181] +Triangle: [2181, 2132, 2180] +Triangle: [2130, 2180, 2132] +Triangle: [2128, 2178, 2333] +Triangle: [2147, 2226, 2225] +Triangle: [2124, 2216, 2214] +Triangle: [2122, 2176, 2124] +Triangle: [2122, 2174, 2175] +Triangle: [2190, 2172, 2173] +Triangle: [2274, 2154, 2156] +Triangle: [2115, 2171, 2170] +Triangle: [2114, 2171, 2161] +Triangle: [2114, 2172, 2185] +Triangle: [2173, 2168, 2119] +Triangle: [2167, 2119, 2168] +Triangle: [2154, 2167, 2168] +Triangle: [2152, 2166, 2167] +Triangle: [2150, 2165, 2166] +Triangle: [2144, 2165, 2148] +Triangle: [2099, 2186, 2098] +Triangle: [2189, 2159, 2158] +Triangle: [2191, 2197, 2198] +Triangle: [2171, 2190, 2191] +Triangle: [2217, 2193, 2218] +Triangle: [2308, 915, 1006] +Triangle: [2288, 1951, 1950] +Triangle: [2288, 2071, 2279] +Triangle: [2080, 2064, 2071] +Triangle: [2388, 1961, 2196] +Triangle: [2063, 2015, 2064] +Triangle: [2028, 2095, 2096] +Triangle: [2284, 1998, 2275] +Triangle: [2043, 2031, 2018] +Triangle: [2086, 2023, 2082] +Triangle: [2189, 2197, 2188] +Triangle: [2100, 2187, 2099] +Triangle: [2219, 2194, 2217] +Triangle: [2158, 2200, 2189] +Triangle: [2199, 2189, 2200] +Triangle: [2197, 2205, 2188] +Triangle: [2159, 2204, 2193] +Triangle: [2218, 2295, 2309] +Triangle: [2097, 2186, 2203] +Triangle: [2192, 2198, 2199] +Triangle: [2207, 2199, 2200] +Triangle: [2212, 2200, 2210] +Triangle: [2221, 2201, 2219] +Triangle: [2170, 2191, 2192] +Triangle: [2251, 2120, 2252] +Triangle: [2206, 2119, 2205] +Triangle: [2208, 2210, 2201] +Triangle: [2188, 2211, 2159] +Triangle: [2201, 2158, 2194] +Triangle: [2194, 2159, 2193] +Triangle: [2205, 2169, 2211] +Triangle: [2118, 2211, 2169] +Triangle: [2174, 2192, 2207] +Triangle: [2174, 2212, 2175] +Triangle: [2175, 2208, 2176] +Triangle: [2176, 2221, 2216] +Triangle: [2310, 2209, 2177] +Triangle: [2209, 2311, 2202] +Triangle: [2193, 2220, 2218] +Triangle: [2202, 2312, 2187] +Triangle: [2187, 2309, 2186] +Triangle: [2314, 2177, 2126] +Triangle: [2214, 2254, 2124] +Triangle: [2213, 2204, 2118] +Triangle: [2165, 2118, 2166] +Triangle: [2222, 2220, 2213] +Triangle: [2164, 2213, 2165] +Triangle: [2241, 2294, 2290] +Triangle: [2225, 2164, 2144] +Triangle: [2225, 2269, 2147] +Triangle: [2226, 2222, 2164] +Triangle: [2223, 2163, 2106] +Triangle: [2290, 2237, 2241] +Triangle: [2104, 2180, 2105] +Triangle: [2180, 2103, 2105] +Triangle: [2101, 2202, 2100] +Triangle: [2128, 2257, 2330] +Triangle: [2179, 2334, 2103] +Triangle: [2096, 1988, 1989] +Triangle: [2248, 2101, 2305] +Triangle: [2106, 2160, 2107] +Triangle: [2182, 2104, 2111] +Triangle: [2183, 2111, 2110] +Triangle: [2140, 2265, 2264] +Triangle: [2184, 2243, 2140] +Triangle: [2108, 2160, 2244] +Triangle: [2109, 2244, 2184] +Triangle: [2184, 2110, 2109] +Triangle: [2330, 2256, 2126] +Triangle: [2246, 2126, 2177] +Triangle: [2135, 2139, 2133] +Triangle: [2116, 2249, 2162] +Triangle: [2251, 2121, 2117] +Triangle: [2252, 2123, 2121] +Triangle: [2253, 2125, 2123] +Triangle: [2255, 2127, 2215] +Triangle: [2257, 2129, 2245] +Triangle: [2258, 2131, 2129] +Triangle: [2259, 2133, 2131] +Triangle: [2260, 2135, 2133] +Triangle: [2135, 2262, 2137] +Triangle: [2137, 2263, 2139] +Triangle: [2263, 2141, 2139] +Triangle: [2265, 2143, 2242] +Triangle: [2224, 2268, 2145] +Triangle: [2266, 2146, 2143] +Triangle: [2145, 2270, 2149] +Triangle: [2149, 2271, 2151] +Triangle: [2151, 2272, 2153] +Triangle: [2153, 2273, 2155] +Triangle: [2274, 2116, 2157] +Triangle: [2273, 2157, 2155] +Triangle: [2249, 2117, 2162] +Triangle: [2254, 2215, 2125] +Triangle: [2146, 2267, 2224] +Triangle: [2264, 2242, 2141] +Triangle: [2256, 2245, 2127] +Triangle: [2131, 2139, 2141] +Triangle: [2129, 2141, 2242] +Triangle: [2245, 2242, 2143] +Triangle: [2146, 2245, 2143] +Triangle: [2127, 2224, 2215] +Triangle: [2145, 2215, 2224] +Triangle: [2125, 2149, 2123] +Triangle: [2123, 2151, 2121] +Triangle: [2121, 2153, 2117] +Triangle: [2155, 2117, 2153] +Triangle: [2162, 2157, 2116] +Triangle: [2076, 2275, 2067] +Triangle: [2290, 2097, 2106] +Triangle: [2080, 2278, 2070] +Triangle: [2075, 2277, 2069] +Triangle: [2287, 2068, 2079] +Triangle: [2277, 2077, 2069] +Triangle: [2081, 2280, 2072] +Triangle: [2282, 2081, 2074] +Triangle: [2072, 2279, 2071] +Triangle: [2286, 2074, 2078] +Triangle: [2067, 2283, 2075] +Triangle: [2315, 1969, 2319] +Triangle: [2278, 2073, 2070] +Triangle: [2285, 2079, 2077] +Triangle: [2073, 2284, 2076] +Triangle: [2329, 2237, 2322] +Triangle: [2302, 2334, 2332] +Triangle: [2105, 2302, 2301] +Triangle: [2104, 2301, 2300] +Triangle: [2299, 2104, 2300] +Triangle: [2298, 2111, 2299] +Triangle: [2297, 2110, 2298] +Triangle: [2296, 2109, 2297] +Triangle: [2296, 2107, 2108] +Triangle: [2291, 2106, 2107] +Triangle: [2203, 2222, 2223] +Triangle: [2098, 2294, 2303] +Triangle: [2099, 2303, 2292] +Triangle: [2293, 2099, 2292] +Triangle: [2305, 2100, 2293] +Triangle: [2304, 2247, 2248] +Triangle: [1007, 2307, 2195] +Triangle: [2306, 1124, 1125] +Triangle: [2331, 2177, 2209] +Triangle: [2247, 2209, 2101] +Triangle: [1996, 2386, 2381] +Triangle: [2214, 2314, 2126] +Triangle: [2311, 2217, 2312] +Triangle: [2312, 2218, 2309] +Triangle: [2310, 2221, 2313] +Triangle: [2295, 2186, 2309] +Triangle: [2216, 2314, 2214] +Triangle: [2313, 2219, 2311] +Triangle: [1973, 2322, 1974] +Triangle: [2233, 2336, 2232] +Triangle: [1975, 2325, 1976] +Triangle: [1971, 2320, 1972] +Triangle: [1966, 2318, 2316] +Triangle: [1965, 2316, 2324] +Triangle: [1978, 2328, 1971] +Triangle: [2326, 1969, 1970] +Triangle: [1976, 2323, 1977] +Triangle: [1974, 2317, 1975] +Triangle: [1978, 2323, 2327] +Triangle: [1964, 2324, 2321] +Triangle: [1972, 2326, 1970] +Triangle: [2329, 2236, 2241] +Triangle: [2231, 2315, 2232] +Triangle: [1989, 1969, 1968] +Triangle: [2302, 2337, 2234] +Triangle: [2102, 2332, 2334] +Triangle: [2335, 2248, 2336] +Triangle: [2304, 2337, 2332] +Triangle: [2178, 2334, 2333] +Triangle: [2305, 2336, 2248] +Triangle: [2102, 2331, 2247] +Triangle: [2178, 2246, 2331] +Triangle: [2348, 2346, 2349] +Triangle: [2348, 1009, 922] +Triangle: [2345, 2371, 2346] +Triangle: [2351, 2345, 2344] +Triangle: [2352, 921, 2113] +Triangle: [1170, 2348, 922] +Triangle: [2347, 2352, 2353] +Triangle: [2353, 2113, 1957] +Triangle: [2354, 2347, 2353] +Triangle: [1994, 2353, 1957] +Triangle: [2346, 2355, 2345] +Triangle: [2356, 2345, 2355] +Triangle: [1995, 2354, 1994] +Triangle: [1963, 2355, 1995] +Triangle: [2344, 2357, 2343] +Triangle: [2342, 2357, 2358] +Triangle: [2341, 2358, 2359] +Triangle: [2340, 2359, 2360] +Triangle: [2339, 2360, 2361] +Triangle: [2357, 1963, 1962] +Triangle: [2358, 1962, 2196] +Triangle: [2359, 2196, 1961] +Triangle: [2360, 1961, 1960] +Triangle: [2361, 1960, 1959] +Triangle: [2363, 2339, 2361] +Triangle: [2363, 1959, 1958] +Triangle: [2362, 2363, 2306] +Triangle: [2364, 2363, 1958] +Triangle: [1996, 2364, 1958] +Triangle: [2307, 2364, 2365] +Triangle: [2195, 2365, 2366] +Triangle: [2366, 1996, 1997] +Triangle: [2195, 2366, 2308] +Triangle: [1997, 2308, 2366] +Triangle: [2362, 1125, 973] +Triangle: [1186, 2362, 973] +Triangle: [1934, 1186, 745] +Triangle: [1935, 2338, 1934] +Triangle: [1936, 2339, 1935] +Triangle: [2341, 1936, 1937] +Triangle: [1938, 2341, 1937] +Triangle: [1939, 2342, 1938] +Triangle: [2367, 1939, 1942] +Triangle: [2367, 2344, 2343] +Triangle: [2368, 1942, 1941] +Triangle: [2369, 2367, 2368] +Triangle: [2350, 2369, 2370] +Triangle: [2349, 2371, 2372] +Triangle: [1009, 2372, 1010] +Triangle: [2350, 2372, 2371] +Triangle: [2368, 1940, 2373] +Triangle: [742, 2373, 1940] +Triangle: [2369, 2373, 2370] +Triangle: [923, 2370, 2373] +Triangle: [2372, 1105, 1010] +Triangle: [2381, 1955, 1946] +Triangle: [1951, 2387, 2388] +Triangle: [2374, 2196, 1962] +Triangle: [1998, 2375, 1999] +Triangle: [1947, 2377, 1948] +Triangle: [2379, 2001, 2000] +Triangle: [2384, 1952, 1953] +Triangle: [2386, 1954, 1955] +Triangle: [1949, 2378, 1947] +Triangle: [2376, 1945, 2001] +Triangle: [1950, 2385, 1949] +Triangle: [2382, 1946, 1945] +Triangle: [2380, 1953, 1954] +Triangle: [1948, 2383, 1998] +Triangle: [1999, 2379, 2000] +Triangle: [1338, 2390, 1329] +Triangle: [1336, 2394, 1334] +Triangle: [1331, 2396, 2397] +Triangle: [1332, 2395, 2396] +Triangle: [1339, 2400, 2401] +Triangle: [1333, 2394, 2395] +Triangle: [1338, 2401, 2389] +Triangle: [1330, 2397, 2398] +Triangle: [1335, 2392, 1337] +Triangle: [1330, 2399, 1327] +Triangle: [1337, 2393, 1336] +Triangle: [1328, 2399, 2400] +Triangle: [1329, 2391, 1335] +Triangle: [2407, 1364, 1358] +Triangle: [2406, 1358, 1357] +Triangle: [2458, 1365, 2455] +Triangle: [1353, 2459, 2457] +Triangle: [2414, 1360, 1365] +Triangle: [2460, 1363, 1364] +Triangle: [1355, 2411, 1362] +Triangle: [1363, 2463, 1361] +Triangle: [1362, 2408, 1359] +Triangle: [1361, 2405, 1356] +Triangle: [1354, 2404, 1355] +Triangle: [2409, 1354, 1360] +Triangle: [2408, 1353, 1359] +Triangle: [2427, 2449, 2453] +Triangle: [2425, 2444, 2451] +Triangle: [2419, 2452, 2444] +Triangle: [2426, 2453, 2452] +Triangle: [2449, 2423, 2446] +Triangle: [2446, 2422, 2445] +Triangle: [2422, 2441, 2445] +Triangle: [2450, 2425, 2451] +Triangle: [2448, 2418, 2443] +Triangle: [2415, 2448, 2447] +Triangle: [2443, 2417, 2442] +Triangle: [2442, 2424, 2450] +Triangle: [2416, 2447, 2441] +Triangle: [2428, 1340, 1341] +Triangle: [1343, 2436, 1342] +Triangle: [1342, 2437, 1344] +Triangle: [2464, 1345, 1346] +Triangle: [1347, 2428, 1341] +Triangle: [2465, 1346, 1348] +Triangle: [1344, 2431, 1347] +Triangle: [2466, 1348, 1349] +Triangle: [2434, 1343, 1350] +Triangle: [2435, 1351, 1340] +Triangle: [2454, 1350, 1345] +Triangle: [1351, 2440, 1352] +Triangle: [1352, 2466, 1349] +Triangle: [1308, 2447, 1310] +Triangle: [1303, 2450, 1312] +Triangle: [1309, 2442, 1303] +Triangle: [2447, 1311, 1310] +Triangle: [2448, 1309, 1311] +Triangle: [1312, 2451, 1313] +Triangle: [2445, 1308, 1307] +Triangle: [2446, 1307, 1306] +Triangle: [2449, 1306, 1305] +Triangle: [1301, 2453, 1304] +Triangle: [1302, 2452, 1301] +Triangle: [1313, 2444, 1302] +Triangle: [2453, 1305, 1304] +Triangle: [2455, 2438, 1356] +Triangle: [2439, 2457, 1357] +Triangle: [2405, 2455, 1356] +Triangle: [2457, 2406, 1357] +Triangle: [2461, 2460, 2407] +Triangle: [2459, 2407, 2406] +Triangle: [2460, 2412, 2462] +Triangle: [2462, 2410, 2463] +Triangle: [2463, 2458, 2405] +Triangle: [2454, 2430, 2438] +Triangle: [2464, 2432, 2430] +Triangle: [2465, 2433, 2432] +Triangle: [2440, 2439, 2467] +Triangle: [2433, 2440, 2467] +Triangle: [2515, 2514, 2513] +Triangle: [2511, 2809, 2496] +Triangle: [2559, 2538, 2564] +Triangle: [2560, 2536, 2565] +Triangle: [2566, 2541, 2561] +Triangle: [2559, 2540, 2539] +Triangle: [2566, 2536, 2535] +Triangle: [2560, 2538, 2537] +Triangle: [2563, 2540, 2562] +Triangle: [2561, 2542, 2563] +Triangle: [2543, 2538, 2539] +Triangle: [2533, 2551, 2534] +Triangle: [2534, 2550, 2532] +Triangle: [2536, 2543, 2535] +Triangle: [2542, 2539, 2540] +Triangle: [2541, 2543, 2542] +Triangle: [2530, 2546, 2529] +Triangle: [2470, 2547, 2549] +Triangle: [2532, 2544, 2531] +Triangle: [2549, 2533, 2470] +Triangle: [2528, 2546, 2547] +Triangle: [2531, 2545, 2530] +Triangle: [2521, 2529, 2528] +Triangle: [2523, 2529, 2522] +Triangle: [2524, 2530, 2523] +Triangle: [2525, 2531, 2524] +Triangle: [2525, 2534, 2532] +Triangle: [2526, 2534, 2527] +Triangle: [2526, 2470, 2533] +Triangle: [2521, 2470, 2519] +Triangle: [2522, 2552, 2553] +Triangle: [2524, 2556, 2525] +Triangle: [2522, 2554, 2523] +Triangle: [2527, 2556, 2558] +Triangle: [2527, 2557, 2526] +Triangle: [2524, 2554, 2555] +Triangle: [2519, 2557, 2517] +Triangle: [2552, 2519, 2517] +Triangle: [2548, 2563, 2551] +Triangle: [2551, 2562, 2550] +Triangle: [2546, 2564, 2560] +Triangle: [2549, 2565, 2566] +Triangle: [2544, 2562, 2559] +Triangle: [2549, 2561, 2548] +Triangle: [2547, 2560, 2565] +Triangle: [2545, 2559, 2564] +Triangle: [2567, 2517, 2557] +Triangle: [2569, 2517, 2520] +Triangle: [2552, 2571, 2553] +Triangle: [2553, 2572, 2554] +Triangle: [2554, 2574, 2555] +Triangle: [2555, 2575, 2556] +Triangle: [2558, 2575, 2576] +Triangle: [2567, 2558, 2576] +Triangle: [2520, 2585, 2569] +Triangle: [2494, 2520, 2567] +Triangle: [2567, 2590, 2494] +Triangle: [2576, 2589, 2590] +Triangle: [2574, 2589, 2575] +Triangle: [2572, 2588, 2574] +Triangle: [2586, 2572, 2571] +Triangle: [2569, 2586, 2571] +Triangle: [2568, 2586, 2585] +Triangle: [2480, 2570, 2568] +Triangle: [2586, 2573, 2587] +Triangle: [2516, 2570, 2514] +Triangle: [2581, 2598, 2582] +Triangle: [2597, 2600, 2598] +Triangle: [2646, 2625, 2651] +Triangle: [2647, 2623, 2652] +Triangle: [2653, 2628, 2648] +Triangle: [2646, 2627, 2626] +Triangle: [2653, 2623, 2622] +Triangle: [2647, 2625, 2624] +Triangle: [2650, 2627, 2649] +Triangle: [2648, 2629, 2650] +Triangle: [2630, 2625, 2626] +Triangle: [2620, 2638, 2621] +Triangle: [2621, 2637, 2619] +Triangle: [2623, 2630, 2622] +Triangle: [2629, 2626, 2627] +Triangle: [2628, 2630, 2629] +Triangle: [2617, 2633, 2616] +Triangle: [2604, 2634, 2636] +Triangle: [2618, 2637, 2631] +Triangle: [2604, 2635, 2620] +Triangle: [2615, 2633, 2634] +Triangle: [2618, 2632, 2617] +Triangle: [2609, 2615, 2608] +Triangle: [2610, 2616, 2609] +Triangle: [2611, 2617, 2610] +Triangle: [2612, 2618, 2611] +Triangle: [2612, 2621, 2619] +Triangle: [2614, 2620, 2621] +Triangle: [2613, 2604, 2620] +Triangle: [2608, 2604, 2606] +Triangle: [2608, 2640, 2609] +Triangle: [2612, 2642, 2643] +Triangle: [2609, 2641, 2610] +Triangle: [2614, 2643, 2645] +Triangle: [2613, 2645, 2644] +Triangle: [2611, 2641, 2642] +Triangle: [2606, 2644, 2605] +Triangle: [2639, 2606, 2605] +Triangle: [2635, 2650, 2638] +Triangle: [2638, 2649, 2637] +Triangle: [2633, 2651, 2647] +Triangle: [2636, 2652, 2653] +Triangle: [2631, 2649, 2646] +Triangle: [2636, 2648, 2635] +Triangle: [2634, 2647, 2652] +Triangle: [2632, 2646, 2651] +Triangle: [2708, 2806, 2714] +Triangle: [2793, 2605, 2791] +Triangle: [2655, 2791, 2607] +Triangle: [2798, 2655, 2583] +Triangle: [2794, 2583, 2657] +Triangle: [2794, 2658, 2795] +Triangle: [2796, 2658, 2659] +Triangle: [2792, 2645, 2797] +Triangle: [2700, 2679, 2705] +Triangle: [2701, 2677, 2706] +Triangle: [2707, 2682, 2702] +Triangle: [2700, 2681, 2680] +Triangle: [2707, 2677, 2676] +Triangle: [2701, 2679, 2678] +Triangle: [2704, 2681, 2703] +Triangle: [2702, 2683, 2704] +Triangle: [2684, 2679, 2680] +Triangle: [2675, 2689, 2692] +Triangle: [2675, 2691, 2673] +Triangle: [2676, 2678, 2684] +Triangle: [2683, 2680, 2681] +Triangle: [2682, 2684, 2683] +Triangle: [2671, 2687, 2670] +Triangle: [2473, 2688, 2690] +Triangle: [2673, 2685, 2672] +Triangle: [2690, 2674, 2473] +Triangle: [2670, 2688, 2669] +Triangle: [2672, 2686, 2671] +Triangle: [2663, 2669, 2662] +Triangle: [2664, 2670, 2663] +Triangle: [2665, 2671, 2664] +Triangle: [2665, 2673, 2672] +Triangle: [2666, 2675, 2673] +Triangle: [2668, 2674, 2675] +Triangle: [2667, 2473, 2674] +Triangle: [2662, 2473, 2468] +Triangle: [2662, 2694, 2663] +Triangle: [2666, 2696, 2697] +Triangle: [2663, 2695, 2664] +Triangle: [2668, 2697, 2699] +Triangle: [2667, 2699, 2698] +Triangle: [2665, 2695, 2696] +Triangle: [2468, 2698, 2471] +Triangle: [2693, 2468, 2471] +Triangle: [2689, 2704, 2692] +Triangle: [2692, 2703, 2691] +Triangle: [2686, 2701, 2687] +Triangle: [2690, 2706, 2707] +Triangle: [2685, 2703, 2700] +Triangle: [2690, 2702, 2689] +Triangle: [2688, 2701, 2706] +Triangle: [2685, 2705, 2686] +Triangle: [2768, 2602, 2603] +Triangle: [2801, 2471, 2799] +Triangle: [2709, 2799, 2661] +Triangle: [2801, 2710, 2802] +Triangle: [2802, 2711, 2803] +Triangle: [2803, 2712, 2804] +Triangle: [2805, 2712, 2713] +Triangle: [2800, 2699, 2806] +Triangle: [2756, 2735, 2761] +Triangle: [2757, 2733, 2762] +Triangle: [2763, 2738, 2758] +Triangle: [2756, 2737, 2736] +Triangle: [2763, 2733, 2732] +Triangle: [2757, 2735, 2734] +Triangle: [2760, 2737, 2759] +Triangle: [2758, 2739, 2760] +Triangle: [2734, 2736, 2740] +Triangle: [2730, 2748, 2731] +Triangle: [2729, 2748, 2747] +Triangle: [2733, 2740, 2732] +Triangle: [2739, 2736, 2737] +Triangle: [2739, 2732, 2740] +Triangle: [2727, 2743, 2726] +Triangle: [2725, 2746, 2717] +Triangle: [2729, 2741, 2728] +Triangle: [2717, 2745, 2730] +Triangle: [2726, 2744, 2725] +Triangle: [2728, 2742, 2727] +Triangle: [2719, 2725, 2718] +Triangle: [2720, 2726, 2719] +Triangle: [2721, 2727, 2720] +Triangle: [2721, 2729, 2728] +Triangle: [2722, 2731, 2729] +Triangle: [2724, 2730, 2731] +Triangle: [2723, 2717, 2730] +Triangle: [2718, 2717, 2715] +Triangle: [2718, 2750, 2719] +Triangle: [2722, 2752, 2753] +Triangle: [2719, 2751, 2720] +Triangle: [2724, 2753, 2755] +Triangle: [2723, 2755, 2754] +Triangle: [2720, 2752, 2721] +Triangle: [2715, 2754, 2716] +Triangle: [2749, 2715, 2716] +Triangle: [2745, 2760, 2748] +Triangle: [2747, 2760, 2759] +Triangle: [2743, 2761, 2757] +Triangle: [2746, 2762, 2763] +Triangle: [2741, 2759, 2756] +Triangle: [2746, 2758, 2745] +Triangle: [2743, 2762, 2744] +Triangle: [2742, 2756, 2761] +Triangle: [2809, 2716, 2807] +Triangle: [2495, 2807, 2808] +Triangle: [2496, 2807, 2497] +Triangle: [2810, 2511, 2782] +Triangle: [2812, 2817, 2813] +Triangle: [2817, 2814, 2813] +Triangle: [2754, 2814, 2808] +Triangle: [2582, 2580, 2579] +Triangle: [2582, 2583, 2655] +Triangle: [2657, 2598, 2600] +Triangle: [2494, 2597, 2581] +Triangle: [2578, 2582, 2579] +Triangle: [2581, 2577, 2494] +Triangle: [2577, 2518, 2494] +Triangle: [2518, 2568, 2585] +Triangle: [2580, 2607, 2764] +Triangle: [2656, 2607, 2654] +Triangle: [2481, 2568, 2584] +Triangle: [2584, 2479, 2481] +Triangle: [2472, 2483, 2484] +Triangle: [2480, 2477, 2478] +Triangle: [2504, 2578, 2579] +Triangle: [2475, 2505, 2506] +Triangle: [2502, 2577, 2578] +Triangle: [2503, 2483, 2469] +Triangle: [2504, 2580, 2483] +Triangle: [2503, 2502, 2504] +Triangle: [2483, 2764, 2484] +Triangle: [2488, 2486, 2490] +Triangle: [2477, 2479, 2476] +Triangle: [2484, 2656, 2482] +Triangle: [2601, 2597, 2590] +Triangle: [2589, 2601, 2590] +Triangle: [2588, 2594, 2589] +Triangle: [2591, 2587, 2573] +Triangle: [2599, 2772, 2600] +Triangle: [2772, 2657, 2600] +Triangle: [2601, 2771, 2599] +Triangle: [2771, 2767, 2772] +Triangle: [2776, 2777, 2775] +Triangle: [2773, 2780, 2774] +Triangle: [2774, 2777, 2711] +Triangle: [2659, 2779, 2773] +Triangle: [2779, 2777, 2780] +Triangle: [2784, 2785, 2783] +Triangle: [2785, 2782, 2781] +Triangle: [2815, 2785, 2781] +Triangle: [2496, 2512, 2511] +Triangle: [2485, 2507, 2489] +Triangle: [2482, 2765, 2505] +Triangle: [2505, 2766, 2507] +Triangle: [2796, 2660, 2797] +Triangle: [2792, 2607, 2791] +Triangle: [2806, 2713, 2714] +Triangle: [2708, 2799, 2800] +Triangle: [2816, 2808, 2814] +Triangle: [2811, 2820, 2812] +Triangle: [2513, 2480, 2478] +Triangle: [2509, 2487, 2488] +Triangle: [2479, 2501, 2476] +Triangle: [2485, 2490, 2486] +Triangle: [2511, 2510, 2509] +Triangle: [2506, 2507, 2508] +Triangle: [2497, 2491, 2496] +Triangle: [2492, 2495, 2493] +Triangle: [2816, 2493, 2495] +Triangle: [2788, 2490, 2489] +Triangle: [2507, 2788, 2489] +Triangle: [2661, 2788, 2709] +Triangle: [2766, 2709, 2788] +Triangle: [2789, 2490, 2787] +Triangle: [2708, 2787, 2661] +Triangle: [2488, 2790, 2509] +Triangle: [2714, 2789, 2708] +Triangle: [2644, 2791, 2605] +Triangle: [2640, 2793, 2798] +Triangle: [2641, 2798, 2794] +Triangle: [2641, 2795, 2642] +Triangle: [2643, 2795, 2796] +Triangle: [2645, 2796, 2797] +Triangle: [2698, 2799, 2471] +Triangle: [2694, 2801, 2802] +Triangle: [2694, 2803, 2695] +Triangle: [2696, 2803, 2804] +Triangle: [2697, 2804, 2805] +Triangle: [2697, 2806, 2699] +Triangle: [2808, 2716, 2754] +Triangle: [2749, 2810, 2750] +Triangle: [2750, 2811, 2751] +Triangle: [2751, 2812, 2752] +Triangle: [2753, 2812, 2813] +Triangle: [2755, 2813, 2814] +Triangle: [2781, 2790, 2815] +Triangle: [2815, 2714, 2713] +Triangle: [2781, 2511, 2509] +Triangle: [2817, 2818, 2816] +Triangle: [2819, 2820, 2821] +Triangle: [2770, 2775, 2769] +Triangle: [2654, 2797, 2660] +Triangle: [2769, 2659, 2658] +Triangle: [2657, 2769, 2658] +Triangle: [2770, 2767, 2768] +Triangle: [2826, 2778, 2827] +Triangle: [2822, 2766, 2765] +Triangle: [2825, 2822, 2824] +Triangle: [2656, 2822, 2765] +Triangle: [2774, 2824, 2773] +Triangle: [2654, 2824, 2822] +Triangle: [2773, 2660, 2659] +Triangle: [2710, 2774, 2711] +Triangle: [2823, 2710, 2709] +Triangle: [2712, 2777, 2826] +Triangle: [2783, 2826, 2827] +Triangle: [2713, 2826, 2785] +Triangle: [2593, 2516, 2515] +Triangle: [2810, 2786, 2811] +Triangle: [2836, 2472, 2498] +Triangle: [2830, 2476, 2501] +Triangle: [2831, 2469, 2836] +Triangle: [2498, 2475, 2837] +Triangle: [2831, 2501, 2503] +Triangle: [2477, 2829, 2474] +Triangle: [2508, 2832, 2506] +Triangle: [2838, 2486, 2499] +Triangle: [2485, 2833, 2508] +Triangle: [2832, 2475, 2506] +Triangle: [2512, 2834, 2510] +Triangle: [2840, 2492, 2500] +Triangle: [2491, 2835, 2512] +Triangle: [2834, 2487, 2510] +Triangle: [2499, 2487, 2839] +Triangle: [2500, 2493, 2844] +Triangle: [2818, 2844, 2493] +Triangle: [2828, 2513, 2478] +Triangle: [2835, 2839, 2834] +Triangle: [2838, 2832, 2833] +Triangle: [2836, 2830, 2831] +Triangle: [2513, 2842, 2515] +Triangle: [2819, 2845, 2818] +Triangle: [2592, 2573, 2516] +Triangle: [2596, 2592, 2593] +Triangle: [2595, 2591, 2592] +Triangle: [2603, 2595, 2596] +Triangle: [2602, 2594, 2595] +Triangle: [2811, 2784, 2843] +Triangle: [2482, 2472, 2484] +Triangle: [2821, 2846, 2819] +Triangle: [2868, 2596, 2593] +Triangle: [2852, 2853, 2854] +Triangle: [2, 2850, 2849] +Triangle: [10, 2850, 8] +Triangle: [9, 2851, 10] +Triangle: [2829, 2856, 2855] +Triangle: [2853, 7, 2857] +Triangle: [2858, 2853, 2857] +Triangle: [2859, 2857, 2860] +Triangle: [2862, 2860, 2861] +Triangle: [2863, 2861, 2864] +Triangle: [2863, 3018, 3019] +Triangle: [2865, 2868, 2867] +Triangle: [2868, 2515, 2842] +Triangle: [2867, 2842, 2869] +Triangle: [2870, 2842, 2841] +Triangle: [2841, 2874, 2875] +Triangle: [2875, 2870, 2841] +Triangle: [2891, 2872, 2890] +Triangle: [2872, 2877, 2873] +Triangle: [2854, 2878, 2852] +Triangle: [2894, 2879, 2895] +Triangle: [2474, 2874, 2828] +Triangle: [2829, 2881, 2474] +Triangle: [2882, 2836, 2498] +Triangle: [2837, 2882, 2498] +Triangle: [2838, 2883, 2837] +Triangle: [2499, 2886, 2885] +Triangle: [2885, 2838, 2499] +Triangle: [2840, 2886, 2839] +Triangle: [2500, 2887, 2840] +Triangle: [2478, 2474, 2828] +Triangle: [2871, 2891, 2890] +Triangle: [2875, 2848, 2891] +Triangle: [2889, 2891, 2848] +Triangle: [2877, 2894, 2895] +Triangle: [2889, 2894, 2876] +Triangle: [2881, 2848, 2874] +Triangle: [2889, 2892, 2893] +Triangle: [2855, 2892, 2881] +Triangle: [2892, 2898, 2893] +Triangle: [2878, 2893, 2898] +Triangle: [2852, 2898, 2899] +Triangle: [2899, 2851, 2852] +Triangle: [2897, 2898, 2896] +Triangle: [2899, 2849, 2850] +Triangle: [2856, 2883, 2884] +Triangle: [2884, 2900, 2856] +Triangle: [2900, 2855, 2856] +Triangle: [2849, 2903, 2902] +Triangle: [2902, 2905, 2904] +Triangle: [2897, 2900, 2903] +Triangle: [2901, 2903, 2900] +Triangle: [2902, 2, 2849] +Triangle: [11, 2904, 12] +Triangle: [2885, 2887, 2888] +Triangle: [2885, 2901, 2884] +Triangle: [2905, 2908, 2909] +Triangle: [2910, 2905, 2909] +Triangle: [2888, 2908, 2885] +Triangle: [2909, 2906, 2907] +Triangle: [2909, 2911, 2910] +Triangle: [12, 2910, 1] +Triangle: [0, 2910, 2911] +Triangle: [2844, 2888, 2500] +Triangle: [2888, 2917, 2906] +Triangle: [2906, 2918, 2907] +Triangle: [2907, 2919, 2911] +Triangle: [2911, 2920, 0] +Triangle: [3, 2920, 2921] +Triangle: [2922, 3, 2921] +Triangle: [2845, 2916, 2844] +Triangle: [2917, 2915, 2914] +Triangle: [2918, 2914, 2913] +Triangle: [2919, 2913, 2912] +Triangle: [2920, 2912, 2921] +Triangle: [2912, 2922, 2921] +Triangle: [2924, 2912, 2913] +Triangle: [2925, 2913, 2914] +Triangle: [2915, 2925, 2914] +Triangle: [2846, 2915, 2845] +Triangle: [2929, 2922, 2923] +Triangle: [2924, 2929, 2923] +Triangle: [2925, 2928, 2924] +Triangle: [2926, 2927, 2925] +Triangle: [2930, 2846, 2847] +Triangle: [4, 2931, 5] +Triangle: [5, 2932, 6] +Triangle: [6, 2857, 7] +Triangle: [2931, 2934, 2932] +Triangle: [2935, 2934, 2933] +Triangle: [2932, 2860, 2857] +Triangle: [2860, 2936, 2861] +Triangle: [2928, 2931, 2929] +Triangle: [2927, 2933, 2928] +Triangle: [2877, 2937, 2873] +Triangle: [2939, 2877, 2895] +Triangle: [2880, 2895, 2879] +Triangle: [2858, 2879, 2854] +Triangle: [2940, 2858, 2859] +Triangle: [2941, 2859, 2862] +Triangle: [2939, 2940, 2942] +Triangle: [2941, 2942, 2940] +Triangle: [2938, 2942, 2943] +Triangle: [2944, 2938, 2943] +Triangle: [2978, 2964, 2983] +Triangle: [2984, 2963, 2962] +Triangle: [2985, 2967, 2980] +Triangle: [2978, 2966, 2965] +Triangle: [2985, 2962, 2961] +Triangle: [2979, 2964, 2963] +Triangle: [2982, 2966, 2981] +Triangle: [2980, 2968, 2982] +Triangle: [2969, 2964, 2965] +Triangle: [2959, 2977, 2960] +Triangle: [2960, 2976, 2958] +Triangle: [2962, 2969, 2961] +Triangle: [2966, 2969, 2965] +Triangle: [2967, 2969, 2968] +Triangle: [2956, 2972, 2955] +Triangle: [2954, 2975, 2952] +Triangle: [2958, 2970, 2957] +Triangle: [2952, 2974, 2959] +Triangle: [2954, 2972, 2973] +Triangle: [2957, 2971, 2956] +Triangle: [2986, 2955, 2954] +Triangle: [2988, 2955, 2987] +Triangle: [2989, 2956, 2988] +Triangle: [2990, 2957, 2989] +Triangle: [2990, 2960, 2958] +Triangle: [2992, 2960, 2991] +Triangle: [2992, 2952, 2959] +Triangle: [2986, 2952, 2993] +Triangle: [2974, 2982, 2977] +Triangle: [2977, 2981, 2976] +Triangle: [2972, 2983, 2979] +Triangle: [2975, 2984, 2985] +Triangle: [2970, 2981, 2978] +Triangle: [2975, 2980, 2974] +Triangle: [2973, 2979, 2984] +Triangle: [2971, 2978, 2983] +Triangle: [2950, 2993, 2951] +Triangle: [2945, 2993, 2992] +Triangle: [2945, 2991, 2953] +Triangle: [2946, 2991, 2990] +Triangle: [2946, 2989, 2947] +Triangle: [2947, 2988, 2948] +Triangle: [2948, 2987, 2949] +Triangle: [2950, 2987, 2986] +Triangle: [2946, 3001, 2953] +Triangle: [2951, 2994, 3000] +Triangle: [2948, 2998, 2997] +Triangle: [2947, 2995, 2946] +Triangle: [2953, 2994, 2945] +Triangle: [2951, 2999, 2950] +Triangle: [2949, 2999, 2998] +Triangle: [2947, 2997, 2996] +Triangle: [2869, 3003, 2867] +Triangle: [3010, 2869, 2870] +Triangle: [2871, 3010, 2870] +Triangle: [3002, 3010, 3011] +Triangle: [2890, 3011, 2871] +Triangle: [3008, 3011, 3012] +Triangle: [2872, 3012, 2890] +Triangle: [3013, 3008, 3012] +Triangle: [3013, 2873, 2937] +Triangle: [2867, 3017, 2865] +Triangle: [3019, 2866, 2865] +Triangle: [3004, 3017, 3003] +Triangle: [3004, 3015, 3016] +Triangle: [3005, 3014, 3015] +Triangle: [3006, 3013, 3014] +Triangle: [3014, 2937, 2944] +Triangle: [3015, 2944, 3020] +Triangle: [3020, 2943, 2941] +Triangle: [3009, 2995, 3003] +Triangle: [3002, 3001, 3009] +Triangle: [3008, 2994, 3002] +Triangle: [3007, 3000, 3008] +Triangle: [3007, 2998, 2999] +Triangle: [3006, 2997, 2998] +Triangle: [3004, 2997, 3005] +Triangle: [3003, 2996, 3004] +Triangle: [3017, 3019, 2865] +Triangle: [3016, 3020, 3021] +Triangle: [3020, 2941, 3021] +Triangle: [3021, 2862, 2863] +Triangle: [3019, 3021, 2863] +Triangle: [2936, 2864, 2861] +Triangle: [2596, 3023, 2603] +Triangle: [3024, 2866, 3018] +Triangle: [3018, 3022, 3024] +Triangle: [3026, 3027, 3028] +Triangle: [3025, 3024, 3022] +Triangle: [2768, 3027, 2770] +Triangle: [3023, 3026, 3028] +Triangle: [2603, 3028, 2768] +Triangle: [2776, 3027, 3029] +Triangle: [2776, 3031, 2778] +Triangle: [3031, 2827, 2778] +Triangle: [3025, 3029, 3027] +Triangle: [3034, 3025, 3022] +Triangle: [3034, 3035, 3033] +Triangle: [3035, 2936, 2935] +Triangle: [2930, 2935, 2927] +Triangle: [3036, 3035, 2930] +Triangle: [3036, 2847, 3037] +Triangle: [2784, 3040, 2843] +Triangle: [2783, 3030, 3038] +Triangle: [2783, 3039, 2784] +Triangle: [2843, 2821, 2820] +Triangle: [2821, 3037, 2847] +Triangle: [3029, 3030, 3031] +Triangle: [3041, 3034, 3033] +Triangle: [3033, 3037, 3041] +Triangle: [3032, 3038, 3029] +Triangle: [3038, 3042, 3039] +Triangle: [3042, 3040, 3039] +Triangle: [3041, 3037, 3042] +Triangle: [3089, 3090, 3088] +Triangle: [3383, 3086, 3071] +Triangle: [3113, 3134, 3139] +Triangle: [3111, 3135, 3140] +Triangle: [3141, 3116, 3110] +Triangle: [3134, 3115, 3137] +Triangle: [3141, 3111, 3140] +Triangle: [3135, 3113, 3139] +Triangle: [3115, 3138, 3137] +Triangle: [3117, 3136, 3138] +Triangle: [3118, 3113, 3112] +Triangle: [3126, 3108, 3109] +Triangle: [3125, 3109, 3107] +Triangle: [3118, 3111, 3110] +Triangle: [3114, 3117, 3115] +Triangle: [3118, 3116, 3117] +Triangle: [3121, 3105, 3104] +Triangle: [3045, 3122, 3103] +Triangle: [3119, 3107, 3106] +Triangle: [3108, 3124, 3045] +Triangle: [3103, 3121, 3104] +Triangle: [3120, 3106, 3105] +Triangle: [3096, 3104, 3097] +Triangle: [3104, 3098, 3097] +Triangle: [3105, 3099, 3098] +Triangle: [3106, 3100, 3099] +Triangle: [3100, 3109, 3102] +Triangle: [3109, 3101, 3102] +Triangle: [3101, 3045, 3094] +Triangle: [3045, 3096, 3094] +Triangle: [3097, 3127, 3096] +Triangle: [3131, 3099, 3100] +Triangle: [3129, 3097, 3098] +Triangle: [3102, 3131, 3100] +Triangle: [3132, 3102, 3101] +Triangle: [3099, 3129, 3098] +Triangle: [3094, 3132, 3101] +Triangle: [3094, 3127, 3092] +Triangle: [3138, 3123, 3126] +Triangle: [3137, 3126, 3125] +Triangle: [3121, 3139, 3120] +Triangle: [3124, 3140, 3122] +Triangle: [3119, 3137, 3125] +Triangle: [3124, 3136, 3141] +Triangle: [3122, 3135, 3121] +Triangle: [3120, 3134, 3119] +Triangle: [3092, 3142, 3132] +Triangle: [3092, 3144, 3095] +Triangle: [3146, 3127, 3128] +Triangle: [3147, 3128, 3129] +Triangle: [3149, 3129, 3130] +Triangle: [3150, 3130, 3131] +Triangle: [3133, 3150, 3131] +Triangle: [3142, 3133, 3132] +Triangle: [3095, 3160, 3093] +Triangle: [3095, 3069, 3142] +Triangle: [3165, 3142, 3069] +Triangle: [3151, 3164, 3150] +Triangle: [3164, 3149, 3150] +Triangle: [3163, 3147, 3149] +Triangle: [3161, 3147, 3162] +Triangle: [3144, 3161, 3160] +Triangle: [3161, 3143, 3160] +Triangle: [3145, 3055, 3143] +Triangle: [3148, 3161, 3162] +Triangle: [3145, 3091, 3089] +Triangle: [3156, 3173, 3172] +Triangle: [3172, 3175, 3174] +Triangle: [3200, 3221, 3226] +Triangle: [3198, 3222, 3227] +Triangle: [3228, 3203, 3197] +Triangle: [3221, 3202, 3224] +Triangle: [3228, 3198, 3227] +Triangle: [3222, 3200, 3226] +Triangle: [3202, 3225, 3224] +Triangle: [3204, 3223, 3225] +Triangle: [3205, 3200, 3199] +Triangle: [3213, 3195, 3196] +Triangle: [3212, 3196, 3194] +Triangle: [3205, 3198, 3197] +Triangle: [3201, 3204, 3202] +Triangle: [3205, 3203, 3204] +Triangle: [3208, 3192, 3191] +Triangle: [3179, 3209, 3190] +Triangle: [3193, 3212, 3194] +Triangle: [3179, 3210, 3211] +Triangle: [3190, 3208, 3191] +Triangle: [3207, 3193, 3192] +Triangle: [3190, 3184, 3183] +Triangle: [3191, 3185, 3184] +Triangle: [3192, 3186, 3185] +Triangle: [3193, 3187, 3186] +Triangle: [3187, 3196, 3189] +Triangle: [3189, 3195, 3188] +Triangle: [3188, 3179, 3181] +Triangle: [3179, 3183, 3181] +Triangle: [3215, 3183, 3184] +Triangle: [3187, 3217, 3186] +Triangle: [3216, 3184, 3185] +Triangle: [3189, 3218, 3187] +Triangle: [3188, 3220, 3189] +Triangle: [3186, 3216, 3185] +Triangle: [3181, 3219, 3188] +Triangle: [3181, 3214, 3180] +Triangle: [3225, 3210, 3213] +Triangle: [3224, 3213, 3212] +Triangle: [3208, 3226, 3207] +Triangle: [3211, 3227, 3209] +Triangle: [3206, 3224, 3212] +Triangle: [3211, 3223, 3228] +Triangle: [3209, 3222, 3208] +Triangle: [3207, 3221, 3206] +Triangle: [3283, 3380, 3374] +Triangle: [3180, 3367, 3365] +Triangle: [3230, 3365, 3367] +Triangle: [3372, 3230, 3367] +Triangle: [3368, 3158, 3372] +Triangle: [3233, 3368, 3369] +Triangle: [3370, 3233, 3369] +Triangle: [3366, 3220, 3219] +Triangle: [3254, 3275, 3280] +Triangle: [3252, 3276, 3281] +Triangle: [3282, 3257, 3251] +Triangle: [3275, 3256, 3278] +Triangle: [3282, 3252, 3281] +Triangle: [3276, 3254, 3280] +Triangle: [3256, 3279, 3278] +Triangle: [3258, 3277, 3279] +Triangle: [3259, 3254, 3253] +Triangle: [3250, 3264, 3249] +Triangle: [3266, 3250, 3248] +Triangle: [3251, 3253, 3252] +Triangle: [3255, 3258, 3256] +Triangle: [3259, 3257, 3258] +Triangle: [3262, 3246, 3245] +Triangle: [3048, 3263, 3244] +Triangle: [3260, 3248, 3247] +Triangle: [3249, 3265, 3048] +Triangle: [3263, 3245, 3244] +Triangle: [3261, 3247, 3246] +Triangle: [3244, 3238, 3237] +Triangle: [3245, 3239, 3238] +Triangle: [3246, 3240, 3239] +Triangle: [3240, 3248, 3241] +Triangle: [3241, 3250, 3243] +Triangle: [3243, 3249, 3242] +Triangle: [3242, 3048, 3043] +Triangle: [3048, 3237, 3043] +Triangle: [3269, 3237, 3238] +Triangle: [3241, 3271, 3240] +Triangle: [3270, 3238, 3239] +Triangle: [3243, 3272, 3241] +Triangle: [3242, 3274, 3243] +Triangle: [3240, 3270, 3239] +Triangle: [3043, 3273, 3242] +Triangle: [3043, 3268, 3046] +Triangle: [3279, 3264, 3267] +Triangle: [3278, 3267, 3266] +Triangle: [3276, 3261, 3262] +Triangle: [3265, 3281, 3263] +Triangle: [3260, 3278, 3266] +Triangle: [3265, 3277, 3282] +Triangle: [3263, 3276, 3262] +Triangle: [3280, 3260, 3261] +Triangle: [3177, 3343, 3178] +Triangle: [3046, 3375, 3373] +Triangle: [3284, 3373, 3375] +Triangle: [3285, 3375, 3376] +Triangle: [3286, 3376, 3377] +Triangle: [3287, 3377, 3378] +Triangle: [3379, 3287, 3378] +Triangle: [3374, 3274, 3273] +Triangle: [3310, 3331, 3336] +Triangle: [3308, 3332, 3337] +Triangle: [3338, 3313, 3307] +Triangle: [3331, 3312, 3334] +Triangle: [3338, 3308, 3337] +Triangle: [3332, 3310, 3336] +Triangle: [3312, 3335, 3334] +Triangle: [3314, 3333, 3335] +Triangle: [3311, 3309, 3315] +Triangle: [3323, 3305, 3306] +Triangle: [3304, 3323, 3306] +Triangle: [3315, 3308, 3307] +Triangle: [3311, 3314, 3312] +Triangle: [3314, 3307, 3313] +Triangle: [3318, 3302, 3301] +Triangle: [3321, 3300, 3292] +Triangle: [3316, 3304, 3303] +Triangle: [3292, 3320, 3321] +Triangle: [3319, 3301, 3300] +Triangle: [3317, 3303, 3302] +Triangle: [3300, 3294, 3293] +Triangle: [3301, 3295, 3294] +Triangle: [3302, 3296, 3295] +Triangle: [3296, 3304, 3297] +Triangle: [3297, 3306, 3299] +Triangle: [3299, 3305, 3298] +Triangle: [3298, 3292, 3290] +Triangle: [3292, 3293, 3290] +Triangle: [3325, 3293, 3294] +Triangle: [3297, 3327, 3296] +Triangle: [3326, 3294, 3295] +Triangle: [3299, 3328, 3297] +Triangle: [3298, 3330, 3299] +Triangle: [3327, 3295, 3296] +Triangle: [3290, 3329, 3298] +Triangle: [3290, 3324, 3291] +Triangle: [3335, 3320, 3323] +Triangle: [3322, 3335, 3323] +Triangle: [3318, 3336, 3317] +Triangle: [3321, 3337, 3319] +Triangle: [3316, 3334, 3322] +Triangle: [3321, 3333, 3338] +Triangle: [3337, 3318, 3319] +Triangle: [3317, 3331, 3316] +Triangle: [3291, 3383, 3381] +Triangle: [3070, 3381, 3072] +Triangle: [3381, 3071, 3072] +Triangle: [3384, 3356, 3086] +Triangle: [3386, 3391, 3394] +Triangle: [3388, 3391, 3387] +Triangle: [3388, 3329, 3382] +Triangle: [3155, 3157, 3154] +Triangle: [3157, 3158, 3173] +Triangle: [3173, 3232, 3175] +Triangle: [3172, 3069, 3156] +Triangle: [3157, 3153, 3154] +Triangle: [3152, 3156, 3069] +Triangle: [3093, 3152, 3069] +Triangle: [3093, 3143, 3159] +Triangle: [3155, 3182, 3230] +Triangle: [3182, 3231, 3229] +Triangle: [3056, 3143, 3055] +Triangle: [3054, 3159, 3056] +Triangle: [3047, 3058, 3044] +Triangle: [3055, 3052, 3056] +Triangle: [3079, 3153, 3077] +Triangle: [3050, 3080, 3057] +Triangle: [3077, 3152, 3054] +Triangle: [3058, 3078, 3044] +Triangle: [3155, 3079, 3058] +Triangle: [3078, 3077, 3076] +Triangle: [3339, 3058, 3059] +Triangle: [3063, 3061, 3062] +Triangle: [3052, 3054, 3056] +Triangle: [3231, 3059, 3057] +Triangle: [3172, 3176, 3165] +Triangle: [3176, 3164, 3165] +Triangle: [3169, 3163, 3164] +Triangle: [3162, 3166, 3148] +Triangle: [3174, 3346, 3345] +Triangle: [3232, 3346, 3175] +Triangle: [3176, 3345, 3177] +Triangle: [3345, 3342, 3177] +Triangle: [3350, 3351, 3352] +Triangle: [3347, 3354, 3353] +Triangle: [3348, 3351, 3354] +Triangle: [3234, 3353, 3349] +Triangle: [3353, 3351, 3349] +Triangle: [3359, 3358, 3357] +Triangle: [3356, 3359, 3355] +Triangle: [3359, 3389, 3355] +Triangle: [3087, 3071, 3086] +Triangle: [3082, 3060, 3064] +Triangle: [3340, 3057, 3080] +Triangle: [3080, 3341, 3340] +Triangle: [3235, 3370, 3371] +Triangle: [3366, 3182, 3229] +Triangle: [3380, 3288, 3379] +Triangle: [3373, 3283, 3374] +Triangle: [3382, 3390, 3388] +Triangle: [3385, 3394, 3416] +Triangle: [3055, 3088, 3053] +Triangle: [3062, 3084, 3063] +Triangle: [3076, 3054, 3051] +Triangle: [3065, 3060, 3061] +Triangle: [3085, 3086, 3084] +Triangle: [3081, 3082, 3080] +Triangle: [3072, 3066, 3067] +Triangle: [3070, 3067, 3068] +Triangle: [3068, 3390, 3070] +Triangle: [3362, 3065, 3361] +Triangle: [3362, 3082, 3064] +Triangle: [3362, 3236, 3284] +Triangle: [3341, 3284, 3397] +Triangle: [3363, 3065, 3063] +Triangle: [3283, 3361, 3363] +Triangle: [3364, 3063, 3084] +Triangle: [3289, 3363, 3364] +Triangle: [3219, 3365, 3366] +Triangle: [3215, 3367, 3214] +Triangle: [3216, 3372, 3215] +Triangle: [3369, 3216, 3217] +Triangle: [3218, 3369, 3217] +Triangle: [3220, 3370, 3218] +Triangle: [3273, 3373, 3374] +Triangle: [3269, 3375, 3268] +Triangle: [3377, 3269, 3270] +Triangle: [3271, 3377, 3270] +Triangle: [3272, 3378, 3271] +Triangle: [3380, 3272, 3274] +Triangle: [3291, 3382, 3329] +Triangle: [3384, 3324, 3325] +Triangle: [3385, 3325, 3326] +Triangle: [3386, 3326, 3327] +Triangle: [3328, 3386, 3327] +Triangle: [3330, 3387, 3328] +Triangle: [3364, 3355, 3389] +Triangle: [3289, 3389, 3288] +Triangle: [3086, 3355, 3084] +Triangle: [3391, 3392, 3393] +Triangle: [3393, 3394, 3391] +Triangle: [3229, 3371, 3366] +Triangle: [3344, 3234, 3349] +Triangle: [3344, 3232, 3233] +Triangle: [3396, 3341, 3397] +Triangle: [3396, 3399, 3398] +Triangle: [3231, 3396, 3229] +Triangle: [3398, 3348, 3347] +Triangle: [3229, 3398, 3235] +Triangle: [3347, 3235, 3398] +Triangle: [3285, 3348, 3399] +Triangle: [3285, 3397, 3284] +Triangle: [3287, 3351, 3286] +Triangle: [3400, 3288, 3359] +Triangle: [3091, 3168, 3090] +Triangle: [3384, 3360, 3356] +Triangle: [3047, 3409, 3073] +Triangle: [3051, 3403, 3076] +Triangle: [3404, 3044, 3078] +Triangle: [3073, 3050, 3047] +Triangle: [3076, 3404, 3078] +Triangle: [3402, 3052, 3049] +Triangle: [3083, 3405, 3406] +Triangle: [3061, 3411, 3074] +Triangle: [3060, 3406, 3411] +Triangle: [3050, 3405, 3081] +Triangle: [3087, 3407, 3408] +Triangle: [3067, 3413, 3075] +Triangle: [3066, 3408, 3413] +Triangle: [3062, 3407, 3085] +Triangle: [3074, 3062, 3061] +Triangle: [3075, 3068, 3067] +Triangle: [3392, 3417, 3418] +Triangle: [3401, 3088, 3414] +Triangle: [3408, 3412, 3413] +Triangle: [3405, 3411, 3406] +Triangle: [3403, 3409, 3404] +Triangle: [3088, 3415, 3414] +Triangle: [3393, 3418, 3419] +Triangle: [3148, 3167, 3091] +Triangle: [3167, 3171, 3168] +Triangle: [3166, 3170, 3167] +Triangle: [3170, 3178, 3171] +Triangle: [3169, 3177, 3170] +Triangle: [3358, 3385, 3416] +Triangle: [3057, 3047, 3050] +Triangle: [3395, 3419, 3420] +Triangle: [3171, 3441, 3168] +Triangle: [3425, 3426, 3424] +Triangle: [3423, 1290, 3422] +Triangle: [1298, 3423, 3424] +Triangle: [1297, 3424, 3426] +Triangle: [3402, 3429, 3409] +Triangle: [1295, 3426, 3430] +Triangle: [3431, 3426, 3427] +Triangle: [3432, 3430, 3431] +Triangle: [3435, 3433, 3432] +Triangle: [3436, 3434, 3435] +Triangle: [3591, 3436, 3592] +Triangle: [3441, 3438, 3440] +Triangle: [3090, 3441, 3415] +Triangle: [3440, 3415, 3441] +Triangle: [3443, 3415, 3442] +Triangle: [3414, 3447, 3401] +Triangle: [3443, 3448, 3414] +Triangle: [3445, 3464, 3463] +Triangle: [3450, 3445, 3446] +Triangle: [3427, 3451, 3452] +Triangle: [3452, 3467, 3468] +Triangle: [3049, 3447, 3454] +Triangle: [3454, 3402, 3049] +Triangle: [3409, 3455, 3073] +Triangle: [3410, 3455, 3456] +Triangle: [3411, 3456, 3457] +Triangle: [3074, 3459, 3412] +Triangle: [3411, 3458, 3074] +Triangle: [3413, 3459, 3460] +Triangle: [3075, 3460, 3461] +Triangle: [3049, 3053, 3401] +Triangle: [3444, 3464, 3448] +Triangle: [3448, 3421, 3447] +Triangle: [3464, 3462, 3421] +Triangle: [3450, 3467, 3449] +Triangle: [3467, 3462, 3449] +Triangle: [3454, 3421, 3465] +Triangle: [3462, 3465, 3421] +Triangle: [3428, 3465, 3469] +Triangle: [3471, 3465, 3466] +Triangle: [3451, 3466, 3467] +Triangle: [3425, 3471, 3451] +Triangle: [3424, 3472, 3425] +Triangle: [3470, 3471, 3472] +Triangle: [3422, 3472, 3423] +Triangle: [3429, 3456, 3455] +Triangle: [3473, 3457, 3429] +Triangle: [3428, 3473, 3429] +Triangle: [3422, 3476, 3470] +Triangle: [3475, 3478, 3476] +Triangle: [3470, 3473, 3469] +Triangle: [3474, 3476, 3478] +Triangle: [1290, 3475, 3422] +Triangle: [1299, 3477, 3475] +Triangle: [3458, 3460, 3459] +Triangle: [3458, 3474, 3481] +Triangle: [3478, 3481, 3474] +Triangle: [3483, 3478, 3477] +Triangle: [3481, 3461, 3458] +Triangle: [3479, 3482, 3480] +Triangle: [3484, 3482, 3483] +Triangle: [3483, 1300, 1289] +Triangle: [3483, 1288, 3484] +Triangle: [3417, 3461, 3489] +Triangle: [3490, 3461, 3479] +Triangle: [3491, 3479, 3480] +Triangle: [3492, 3480, 3484] +Triangle: [3493, 3484, 1288] +Triangle: [3493, 1291, 3494] +Triangle: [3495, 1291, 1292] +Triangle: [3489, 3418, 3417] +Triangle: [3488, 3490, 3487] +Triangle: [3487, 3491, 3486] +Triangle: [3486, 3492, 3485] +Triangle: [3493, 3485, 3492] +Triangle: [3485, 3495, 3496] +Triangle: [3485, 3497, 3486] +Triangle: [3486, 3498, 3487] +Triangle: [3488, 3498, 3499] +Triangle: [3419, 3488, 3499] +Triangle: [3502, 3495, 1292] +Triangle: [3502, 3497, 3496] +Triangle: [3501, 3498, 3497] +Triangle: [3500, 3499, 3498] +Triangle: [3419, 3503, 3420] +Triangle: [1292, 3504, 3502] +Triangle: [1293, 3505, 3504] +Triangle: [1294, 3430, 3505] +Triangle: [3504, 3507, 3506] +Triangle: [3507, 3508, 3506] +Triangle: [3433, 3505, 3430] +Triangle: [3433, 3509, 3507] +Triangle: [3504, 3501, 3502] +Triangle: [3506, 3500, 3501] +Triangle: [3510, 3450, 3446] +Triangle: [3450, 3512, 3468] +Triangle: [3468, 3453, 3452] +Triangle: [3431, 3452, 3453] +Triangle: [3431, 3513, 3432] +Triangle: [3432, 3514, 3435] +Triangle: [3512, 3513, 3453] +Triangle: [3514, 3515, 3516] +Triangle: [3511, 3515, 3512] +Triangle: [3517, 3511, 3510] +Triangle: [3537, 3551, 3556] +Triangle: [3557, 3536, 3552] +Triangle: [3558, 3540, 3534] +Triangle: [3551, 3539, 3554] +Triangle: [3558, 3535, 3557] +Triangle: [3552, 3537, 3556] +Triangle: [3539, 3555, 3554] +Triangle: [3541, 3553, 3555] +Triangle: [3542, 3537, 3536] +Triangle: [3550, 3532, 3533] +Triangle: [3549, 3533, 3531] +Triangle: [3542, 3535, 3534] +Triangle: [3539, 3542, 3541] +Triangle: [3542, 3540, 3541] +Triangle: [3545, 3529, 3528] +Triangle: [3548, 3527, 3525] +Triangle: [3543, 3531, 3530] +Triangle: [3525, 3547, 3548] +Triangle: [3527, 3545, 3528] +Triangle: [3544, 3530, 3529] +Triangle: [3559, 3528, 3560] +Triangle: [3528, 3561, 3560] +Triangle: [3529, 3562, 3561] +Triangle: [3530, 3563, 3562] +Triangle: [3563, 3533, 3564] +Triangle: [3533, 3565, 3564] +Triangle: [3565, 3525, 3566] +Triangle: [3525, 3559, 3566] +Triangle: [3555, 3547, 3550] +Triangle: [3554, 3550, 3549] +Triangle: [3545, 3556, 3544] +Triangle: [3548, 3557, 3546] +Triangle: [3543, 3554, 3549] +Triangle: [3548, 3553, 3558] +Triangle: [3546, 3552, 3545] +Triangle: [3544, 3551, 3543] +Triangle: [3566, 3523, 3524] +Triangle: [3518, 3566, 3524] +Triangle: [3564, 3518, 3526] +Triangle: [3519, 3564, 3526] +Triangle: [3562, 3519, 3520] +Triangle: [3561, 3520, 3521] +Triangle: [3560, 3521, 3522] +Triangle: [3523, 3560, 3522] +Triangle: [3574, 3519, 3526] +Triangle: [3524, 3567, 3518] +Triangle: [3521, 3571, 3522] +Triangle: [3568, 3520, 3519] +Triangle: [3567, 3526, 3518] +Triangle: [3572, 3524, 3523] +Triangle: [3522, 3572, 3523] +Triangle: [3520, 3570, 3521] +Triangle: [3576, 3442, 3440] +Triangle: [3442, 3583, 3443] +Triangle: [3444, 3583, 3584] +Triangle: [3575, 3583, 3582] +Triangle: [3463, 3584, 3585] +Triangle: [3581, 3584, 3575] +Triangle: [3585, 3445, 3463] +Triangle: [3586, 3581, 3580] +Triangle: [3446, 3586, 3510] +Triangle: [3440, 3590, 3576] +Triangle: [3439, 3592, 3438] +Triangle: [3590, 3577, 3576] +Triangle: [3577, 3588, 3578] +Triangle: [3578, 3587, 3579] +Triangle: [3579, 3586, 3580] +Triangle: [3510, 3587, 3517] +Triangle: [3588, 3517, 3587] +Triangle: [3516, 3593, 3514] +Triangle: [3568, 3582, 3576] +Triangle: [3574, 3575, 3582] +Triangle: [3567, 3581, 3575] +Triangle: [3573, 3580, 3581] +Triangle: [3580, 3571, 3579] +Triangle: [3579, 3570, 3578] +Triangle: [3570, 3577, 3578] +Triangle: [3569, 3576, 3577] +Triangle: [3592, 3590, 3438] +Triangle: [3589, 3593, 3588] +Triangle: [3593, 3594, 3514] +Triangle: [3435, 3594, 3436] +Triangle: [3594, 3592, 3436] +Triangle: [3437, 3509, 3434] +Triangle: [3596, 3171, 3178] +Triangle: [3439, 3597, 3591] +Triangle: [3591, 3595, 3437] +Triangle: [3600, 3599, 3601] +Triangle: [3598, 3597, 3599] +Triangle: [3596, 3599, 3597] +Triangle: [3601, 3178, 3343] +Triangle: [3604, 3350, 3352] +Triangle: [3598, 3602, 3605] +Triangle: [3598, 3607, 3595] +Triangle: [3608, 3607, 3606] +Triangle: [3509, 3608, 3508] +Triangle: [3508, 3503, 3500] +Triangle: [3609, 3608, 3606] +Triangle: [3420, 3609, 3610] +Triangle: [3613, 3358, 3416] +Triangle: [3612, 3357, 3358] +Triangle: [3395, 3416, 3394] +Triangle: [3395, 3610, 3613] +Triangle: [3602, 3603, 3611] +Triangle: [3607, 3614, 3606] +Triangle: [3606, 3610, 3609] +Triangle: [3605, 3611, 3614] +Triangle: [3615, 3611, 3612] +Triangle: [3613, 3615, 3612] +Triangle: [3614, 3615, 3610] +Triangle: [3648, 3618, 3649] +Triangle: [3644, 3624, 3623] +Triangle: [3640, 3625, 3622] +Triangle: [3639, 3621, 3636] +Triangle: [5333, 3627, 3620] +Triangle: [5334, 3628, 3631] +Triangle: [3651, 3629, 3630] +Triangle: [3626, 3633, 3621] +Triangle: [5355, 3632, 5354] +Triangle: [3622, 3638, 3637] +Triangle: [3637, 3639, 3636] +Triangle: [3623, 3642, 3641] +Triangle: [3641, 3643, 3640] +Triangle: [3616, 3646, 3645] +Triangle: [3645, 3647, 3644] +Triangle: [3629, 3649, 3630] +Triangle: [3631, 3650, 3651] +Triangle: [3679, 3691, 3693] +Triangle: [3687, 3660, 3671] +Triangle: [3681, 3677, 3690] +Triangle: [3689, 3662, 3675] +Triangle: [3683, 3673, 3688] +Triangle: [3684, 5380, 5381] +Triangle: [3685, 3697, 3699] +Triangle: [3686, 3653, 3678] +Triangle: [3687, 3670, 3686] +Triangle: [3688, 3662, 3682] +Triangle: [5364, 3675, 5363] +Triangle: [3680, 3677, 3660] +Triangle: [3676, 3680, 3659] +Triangle: [5362, 3689, 5364] +Triangle: [3672, 3682, 3657] +Triangle: [3668, 3686, 3669] +Triangle: [3652, 3686, 3678] +Triangle: [3666, 3699, 3698] +Triangle: [5382, 3684, 5381] +Triangle: [3656, 3688, 3672] +Triangle: [3674, 3682, 3689] +Triangle: [3676, 3681, 3690] +Triangle: [3659, 3687, 3668] +Triangle: [3654, 3693, 3692] +Triangle: [3692, 3696, 3694] +Triangle: [3693, 3695, 3696] +Triangle: [3696, 3665, 3685] +Triangle: [3694, 3685, 3666] +Triangle: [3667, 3699, 3684] +Triangle: [3699, 3664, 3684] +Triangle: [3700, 5373, 5371] +Triangle: [3702, 5372, 5373] +Triangle: [3744, 3706, 3742] +Triangle: [3731, 3722, 3738] +Triangle: [3732, 3728, 3741] +Triangle: [5385, 3713, 5383] +Triangle: [5341, 3714, 5337] +Triangle: [3753, 3715, 3752] +Triangle: [3750, 3716, 3748] +Triangle: [3737, 3704, 3729] +Triangle: [3738, 3721, 3737] +Triangle: [5347, 3724, 5345] +Triangle: [3740, 5396, 5397] +Triangle: [3741, 3711, 3731] +Triangle: [3710, 3741, 3731] +Triangle: [3725, 5397, 5395] +Triangle: [3723, 5347, 5342] +Triangle: [3719, 3737, 3720] +Triangle: [3703, 3737, 3729] +Triangle: [3749, 3736, 3750] +Triangle: [3751, 3735, 3753] +Triangle: [5338, 3734, 5341] +Triangle: [3708, 5385, 5384] +Triangle: [3709, 3741, 3727] +Triangle: [3710, 3738, 3719] +Triangle: [3705, 3744, 3743] +Triangle: [3743, 3747, 3745] +Triangle: [3747, 3742, 3746] +Triangle: [3736, 3746, 3716] +Triangle: [3717, 3747, 3736] +Triangle: [3718, 3750, 3735] +Triangle: [3735, 3748, 3715] +Triangle: [3707, 3753, 3734] +Triangle: [3734, 3752, 3714] +Triangle: [3795, 3757, 3793] +Triangle: [3782, 3773, 3789] +Triangle: [3783, 3779, 3792] +Triangle: [3791, 3764, 3777] +Triangle: [3790, 3765, 3775] +Triangle: [3786, 3803, 3804] +Triangle: [3801, 3767, 3799] +Triangle: [3788, 3755, 3780] +Triangle: [3789, 3772, 3788] +Triangle: [3784, 3775, 3764] +Triangle: [3783, 3777, 3763] +Triangle: [3792, 3762, 3782] +Triangle: [3778, 3782, 3761] +Triangle: [3776, 3783, 3760] +Triangle: [3759, 3790, 3784] +Triangle: [3770, 3788, 3771] +Triangle: [3754, 3788, 3780] +Triangle: [3800, 3787, 3801] +Triangle: [3769, 3804, 3802] +Triangle: [3774, 3785, 3790] +Triangle: [3776, 3784, 3791] +Triangle: [3760, 3792, 3778] +Triangle: [3761, 3789, 3770] +Triangle: [3794, 3781, 3795] +Triangle: [3796, 3795, 3798] +Triangle: [3798, 3793, 3797] +Triangle: [3787, 3797, 3767] +Triangle: [3768, 3798, 3787] +Triangle: [3769, 3801, 3786] +Triangle: [3786, 3799, 3766] +Triangle: [3802, 3785, 3758] +Triangle: [3804, 3765, 3785] +Triangle: [3846, 3808, 3844] +Triangle: [3840, 3813, 3824] +Triangle: [3834, 3830, 3843] +Triangle: [3842, 3815, 3828] +Triangle: [3841, 3816, 3826] +Triangle: [3855, 3817, 3854] +Triangle: [3838, 3850, 3852] +Triangle: [3839, 3806, 3831] +Triangle: [3840, 3823, 3839] +Triangle: [3835, 3826, 3815] +Triangle: [3834, 3828, 3814] +Triangle: [3833, 3830, 3813] +Triangle: [3812, 3843, 3833] +Triangle: [3811, 3842, 3834] +Triangle: [3810, 3841, 3835] +Triangle: [3822, 3840, 3839] +Triangle: [3805, 3839, 3831] +Triangle: [3851, 3838, 3852] +Triangle: [3853, 3837, 3855] +Triangle: [3809, 3841, 3825] +Triangle: [3827, 3835, 3842] +Triangle: [3829, 3834, 3843] +Triangle: [3821, 3833, 3840] +Triangle: [3845, 3832, 3846] +Triangle: [3847, 3846, 3849] +Triangle: [3849, 3844, 3848] +Triangle: [3849, 3818, 3838] +Triangle: [3819, 3849, 3838] +Triangle: [3820, 3852, 3837] +Triangle: [3837, 3850, 3817] +Triangle: [3853, 3836, 3809] +Triangle: [3836, 3854, 3816] +Triangle: [3897, 3859, 3895] +Triangle: [3891, 3864, 3875] +Triangle: [3885, 3916, 3918] +Triangle: [3930, 3866, 3928] +Triangle: [3924, 3867, 3922] +Triangle: [3888, 3905, 3906] +Triangle: [3903, 3869, 3901] +Triangle: [3890, 3911, 3912] +Triangle: [3891, 3908, 3909] +Triangle: [3927, 3877, 3926] +Triangle: [3893, 3920, 3921] +Triangle: [3915, 3881, 3914] +Triangle: [3913, 3894, 3915] +Triangle: [3919, 3893, 3921] +Triangle: [3925, 3892, 3927] +Triangle: [3907, 3891, 3909] +Triangle: [3910, 3890, 3912] +Triangle: [3902, 3889, 3903] +Triangle: [3871, 3906, 3904] +Triangle: [3860, 3924, 3923] +Triangle: [3929, 3886, 3930] +Triangle: [3917, 3885, 3918] +Triangle: [3872, 3884, 3891] +Triangle: [3896, 3883, 3897] +Triangle: [3898, 3897, 3900] +Triangle: [3900, 3895, 3899] +Triangle: [3889, 3899, 3869] +Triangle: [3870, 3900, 3889] +Triangle: [3902, 3888, 3871] +Triangle: [3903, 3868, 3888] +Triangle: [3904, 3887, 3860] +Triangle: [3887, 3905, 3867] +Triangle: [3873, 3909, 3890] +Triangle: [3909, 3874, 3890] +Triangle: [3856, 3912, 3882] +Triangle: [3912, 3857, 3882] +Triangle: [3863, 3915, 3884] +Triangle: [3884, 3914, 3864] +Triangle: [3880, 3918, 3894] +Triangle: [3894, 3916, 3881] +Triangle: [3862, 3921, 3885] +Triangle: [3921, 3865, 3885] +Triangle: [3923, 3892, 3876] +Triangle: [3892, 3922, 3877] +Triangle: [3861, 3927, 3886] +Triangle: [3886, 3926, 3866] +Triangle: [3878, 3930, 3893] +Triangle: [3893, 3928, 3879] +Triangle: [3958, 3970, 3972] +Triangle: [3959, 3950, 3966] +Triangle: [3960, 3991, 3993] +Triangle: [4005, 3941, 4003] +Triangle: [3999, 3942, 3997] +Triangle: [3963, 3980, 3981] +Triangle: [3964, 3976, 3978] +Triangle: [3965, 3986, 3987] +Triangle: [3966, 3983, 3984] +Triangle: [4002, 3952, 4001] +Triangle: [3968, 3995, 3996] +Triangle: [3969, 3989, 3990] +Triangle: [3988, 3969, 3990] +Triangle: [3953, 3996, 3994] +Triangle: [4000, 3967, 4002] +Triangle: [3982, 3966, 3984] +Triangle: [3985, 3965, 3987] +Triangle: [3945, 3978, 3977] +Triangle: [3946, 3981, 3979] +Triangle: [3998, 3962, 3999] +Triangle: [4004, 3961, 4005] +Triangle: [3937, 3993, 3992] +Triangle: [3947, 3959, 3966] +Triangle: [3971, 3958, 3972] +Triangle: [3973, 3972, 3975] +Triangle: [3975, 3970, 3974] +Triangle: [3964, 3974, 3944] +Triangle: [3945, 3975, 3964] +Triangle: [3977, 3963, 3946] +Triangle: [3978, 3943, 3963] +Triangle: [3979, 3962, 3935] +Triangle: [3962, 3980, 3942] +Triangle: [3948, 3984, 3965] +Triangle: [3984, 3949, 3965] +Triangle: [3931, 3987, 3957] +Triangle: [3987, 3932, 3957] +Triangle: [3938, 3990, 3959] +Triangle: [3990, 3939, 3959] +Triangle: [3955, 3993, 3969] +Triangle: [3993, 3956, 3969] +Triangle: [3994, 3960, 3937] +Triangle: [3996, 3940, 3960] +Triangle: [3951, 3999, 3967] +Triangle: [3967, 3997, 3952] +Triangle: [3936, 4002, 3961] +Triangle: [3961, 4001, 3941] +Triangle: [4004, 3968, 3953] +Triangle: [4005, 3954, 3968] +Triangle: [4047, 4009, 4045] +Triangle: [4034, 4025, 4041] +Triangle: [4044, 4015, 4031] +Triangle: [4036, 5392, 5394] +Triangle: [5353, 4017, 5349] +Triangle: [4056, 4018, 4055] +Triangle: [4039, 4051, 4053] +Triangle: [4040, 4007, 4032] +Triangle: [4041, 4024, 4040] +Triangle: [5388, 4027, 5387] +Triangle: [4035, 4029, 4015] +Triangle: [4034, 4031, 4014] +Triangle: [4013, 4044, 4034] +Triangle: [4028, 4035, 4012] +Triangle: [4026, 5388, 5386] +Triangle: [4023, 4041, 4040] +Triangle: [4006, 4040, 4032] +Triangle: [4052, 4039, 4053] +Triangle: [4021, 4056, 4054] +Triangle: [4010, 5353, 5350] +Triangle: [4011, 5394, 5393] +Triangle: [4030, 4035, 4044] +Triangle: [4022, 4034, 4041] +Triangle: [4046, 4033, 4047] +Triangle: [4048, 4047, 4050] +Triangle: [4050, 4045, 4049] +Triangle: [4050, 4019, 4039] +Triangle: [4020, 4050, 4039] +Triangle: [4052, 4038, 4021] +Triangle: [4038, 4051, 4018] +Triangle: [4054, 4037, 4010] +Triangle: [4037, 4055, 4017] +Triangle: [4084, 4096, 4098] +Triangle: [4092, 4065, 4076] +Triangle: [4095, 4066, 4082] +Triangle: [4094, 4067, 4080] +Triangle: [5367, 4068, 5365] +Triangle: [4089, 4106, 4107] +Triangle: [4090, 4102, 4104] +Triangle: [4091, 4058, 4083] +Triangle: [4092, 4075, 4091] +Triangle: [4087, 4078, 4067] +Triangle: [4086, 4080, 4066] +Triangle: [4085, 4082, 4065] +Triangle: [4064, 4095, 4085] +Triangle: [4063, 4094, 4086] +Triangle: [4077, 4087, 4062] +Triangle: [4073, 4091, 4074] +Triangle: [4057, 4091, 4083] +Triangle: [4071, 4104, 4103] +Triangle: [4105, 4089, 4107] +Triangle: [4061, 5367, 5366] +Triangle: [4079, 4087, 4094] +Triangle: [4081, 4086, 4095] +Triangle: [4064, 4092, 4073] +Triangle: [4059, 4098, 4097] +Triangle: [4097, 4101, 4099] +Triangle: [4098, 4100, 4101] +Triangle: [4101, 4070, 4090] +Triangle: [4099, 4090, 4071] +Triangle: [4072, 4104, 4089] +Triangle: [4104, 4069, 4089] +Triangle: [4105, 5370, 5368] +Triangle: [5370, 4106, 5369] +Triangle: [4135, 4147, 4149] +Triangle: [4136, 4127, 4143] +Triangle: [4137, 4133, 4146] +Triangle: [4138, 4131, 4145] +Triangle: [4144, 4119, 4129] +Triangle: [4158, 4120, 4157] +Triangle: [4141, 4153, 4155] +Triangle: [4142, 4109, 4134] +Triangle: [4143, 4126, 4142] +Triangle: [4138, 4129, 4118] +Triangle: [4145, 4117, 4137] +Triangle: [4146, 4116, 4136] +Triangle: [4115, 4146, 4136] +Triangle: [4114, 4145, 4137] +Triangle: [4128, 4138, 4113] +Triangle: [4124, 4142, 4125] +Triangle: [4108, 4142, 4134] +Triangle: [4154, 4141, 4155] +Triangle: [4123, 4158, 4156] +Triangle: [4128, 4139, 4144] +Triangle: [4130, 4138, 4145] +Triangle: [4132, 4137, 4146] +Triangle: [4124, 4136, 4143] +Triangle: [4110, 4149, 4148] +Triangle: [4150, 4149, 4152] +Triangle: [4152, 4147, 4151] +Triangle: [4141, 4151, 4121] +Triangle: [4122, 4152, 4141] +Triangle: [4154, 4140, 4123] +Triangle: [4140, 4153, 4120] +Triangle: [4112, 4158, 4139] +Triangle: [4139, 4157, 4119] +Triangle: [4186, 4198, 4200] +Triangle: [4187, 4178, 4194] +Triangle: [4188, 4184, 4197] +Triangle: [4189, 5356, 5358] +Triangle: [4195, 4170, 4180] +Triangle: [4209, 4171, 4208] +Triangle: [5378, 4172, 5377] +Triangle: [4193, 4160, 4185] +Triangle: [4194, 4177, 4193] +Triangle: [5391, 4180, 5390] +Triangle: [4196, 5360, 5361] +Triangle: [4197, 4167, 4187] +Triangle: [4183, 4187, 4166] +Triangle: [4181, 5361, 5359] +Triangle: [4179, 5391, 5389] +Triangle: [4175, 4193, 4176] +Triangle: [4159, 4193, 4185] +Triangle: [4173, 5378, 5379] +Triangle: [4174, 4209, 4207] +Triangle: [4179, 4190, 4195] +Triangle: [4164, 5358, 5357] +Triangle: [4165, 4197, 4183] +Triangle: [4175, 4187, 4194] +Triangle: [4161, 4200, 4199] +Triangle: [4201, 4200, 4203] +Triangle: [4200, 4202, 4203] +Triangle: [4203, 4172, 4192] +Triangle: [4173, 4203, 4192] +Triangle: [4205, 5376, 5374] +Triangle: [4206, 5375, 5376] +Triangle: [4163, 4209, 4190] +Triangle: [4190, 4208, 4170] +Triangle: [4242, 4212, 4243] +Triangle: [4241, 4217, 4238] +Triangle: [4234, 4219, 4216] +Triangle: [4230, 4220, 4215] +Triangle: [4226, 4221, 4214] +Triangle: [4214, 4222, 4225] +Triangle: [4245, 4223, 4224] +Triangle: [4215, 4228, 4227] +Triangle: [4227, 4229, 4226] +Triangle: [4216, 4232, 4231] +Triangle: [4231, 4233, 4230] +Triangle: [4218, 4235, 4217] +Triangle: [4236, 4234, 4235] +Triangle: [4210, 4240, 4239] +Triangle: [4240, 4238, 4239] +Triangle: [4223, 4243, 4224] +Triangle: [4225, 4244, 4245] +Triangle: [4259, 4273, 4279] +Triangle: [4281, 4254, 4274] +Triangle: [4284, 4255, 4275] +Triangle: [4269, 4276, 4283] +Triangle: [4282, 4257, 4277] +Triangle: [4277, 4258, 4278] +Triangle: [4278, 4259, 4279] +Triangle: [4272, 4264, 4280] +Triangle: [4264, 4281, 4280] +Triangle: [4256, 4282, 4276] +Triangle: [4255, 4283, 4275] +Triangle: [4274, 4271, 4284] +Triangle: [4253, 4284, 4270] +Triangle: [4275, 4268, 4252] +Triangle: [4276, 4266, 4251] +Triangle: [4263, 4281, 4262] +Triangle: [4272, 4263, 4246] +Triangle: [4261, 4279, 4260] +Triangle: [4250, 4278, 4261] +Triangle: [4266, 4277, 4250] +Triangle: [4283, 4251, 4268] +Triangle: [4270, 4275, 4252] +Triangle: [4262, 4274, 4253] +Triangle: [4260, 4273, 4248] +Triangle: [4326, 4288, 4312] +Triangle: [4304, 4313, 4320] +Triangle: [4350, 4294, 4314] +Triangle: [4342, 4315, 4344] +Triangle: [4336, 4316, 4338] +Triangle: [4335, 4297, 4317] +Triangle: [4330, 4318, 4332] +Triangle: [4286, 4319, 4311] +Triangle: [4354, 4320, 4355] +Triangle: [4341, 4306, 4321] +Triangle: [4346, 4322, 4347] +Triangle: [4359, 4310, 4323] +Triangle: [4359, 4309, 4357] +Triangle: [4347, 4307, 4345] +Triangle: [4339, 4321, 4305] +Triangle: [4356, 4320, 4301] +Triangle: [4285, 4319, 4302] +Triangle: [4331, 4318, 4299] +Triangle: [4333, 4317, 4300] +Triangle: [4338, 4289, 4337] +Triangle: [4343, 4315, 4290] +Triangle: [4349, 4314, 4291] +Triangle: [4320, 4292, 4301] +Triangle: [4326, 4287, 4325] +Triangle: [4327, 4326, 4325] +Triangle: [4329, 4324, 4326] +Triangle: [4318, 4328, 4329] +Triangle: [4299, 4329, 4327] +Triangle: [4317, 4331, 4300] +Triangle: [4297, 4332, 4317] +Triangle: [4289, 4335, 4333] +Triangle: [4316, 4334, 4335] +Triangle: [4321, 4337, 4305] +Triangle: [4321, 4336, 4338] +Triangle: [4290, 4341, 4339] +Triangle: [4315, 4340, 4341] +Triangle: [4322, 4343, 4307] +Triangle: [4308, 4344, 4322] +Triangle: [4314, 4345, 4291] +Triangle: [4314, 4346, 4347] +Triangle: [4309, 4350, 4349] +Triangle: [4323, 4348, 4350] +Triangle: [4319, 4351, 4302] +Triangle: [4303, 4353, 4319] +Triangle: [4351, 4355, 4356] +Triangle: [4353, 4354, 4355] +Triangle: [4313, 4357, 4292] +Triangle: [4293, 4359, 4313] +Triangle: [4399, 4387, 4401] +Triangle: [4395, 4368, 4388] +Triangle: [4425, 4369, 4389] +Triangle: [4419, 4370, 4390] +Triangle: [4413, 4371, 4391] +Triangle: [4410, 4372, 4392] +Triangle: [4407, 4373, 4393] +Triangle: [4361, 4394, 4386] +Triangle: [4430, 4379, 4395] +Triangle: [4415, 4396, 4416] +Triangle: [4422, 4383, 4397] +Triangle: [4434, 4385, 4398] +Triangle: [4432, 4398, 4384] +Triangle: [4420, 4397, 4382] +Triangle: [4416, 4380, 4414] +Triangle: [4431, 4395, 4376] +Triangle: [4360, 4394, 4377] +Triangle: [4406, 4393, 4374] +Triangle: [4408, 4392, 4375] +Triangle: [4412, 4391, 4364] +Triangle: [4418, 4390, 4365] +Triangle: [4424, 4389, 4366] +Triangle: [4376, 4388, 4367] +Triangle: [4400, 4387, 4362] +Triangle: [4404, 4400, 4402] +Triangle: [4404, 4399, 4401] +Triangle: [4393, 4403, 4404] +Triangle: [4374, 4404, 4402] +Triangle: [4375, 4407, 4406] +Triangle: [4392, 4405, 4407] +Triangle: [4364, 4410, 4408] +Triangle: [4391, 4409, 4410] +Triangle: [4396, 4412, 4380] +Triangle: [4381, 4413, 4396] +Triangle: [4365, 4416, 4414] +Triangle: [4370, 4416, 4390] +Triangle: [4382, 4419, 4418] +Triangle: [4397, 4417, 4419] +Triangle: [4366, 4422, 4420] +Triangle: [4389, 4421, 4422] +Triangle: [4384, 4425, 4424] +Triangle: [4398, 4423, 4425] +Triangle: [4394, 4426, 4377] +Triangle: [4378, 4428, 4394] +Triangle: [4428, 4431, 4426] +Triangle: [4428, 4429, 4430] +Triangle: [4367, 4434, 4432] +Triangle: [4368, 4434, 4388] +Triangle: [4468, 4438, 4437] +Triangle: [4463, 4443, 4442] +Triangle: [4462, 4441, 4459] +Triangle: [4455, 4445, 4440] +Triangle: [4451, 4446, 4439] +Triangle: [4439, 4447, 4450] +Triangle: [4470, 4448, 4449] +Triangle: [4440, 4453, 4452] +Triangle: [4452, 4454, 4451] +Triangle: [4444, 4456, 4441] +Triangle: [4456, 4458, 4455] +Triangle: [4442, 4461, 4460] +Triangle: [4461, 4459, 4460] +Triangle: [5331, 4464, 5330] +Triangle: [5328, 4466, 4463] +Triangle: [4449, 4467, 4468] +Triangle: [4450, 4469, 4470] +Triangle: [4504, 4474, 4503] +Triangle: [4499, 4479, 4502] +Triangle: [4495, 4480, 4498] +Triangle: [4476, 4494, 4491] +Triangle: [4475, 4490, 4487] +Triangle: [4486, 4482, 4475] +Triangle: [4506, 4484, 4505] +Triangle: [4488, 4481, 4476] +Triangle: [4487, 4489, 4488] +Triangle: [4492, 4480, 4477] +Triangle: [4491, 4493, 4492] +Triangle: [4478, 4497, 4479] +Triangle: [4496, 4498, 4497] +Triangle: [4471, 4501, 4472] +Triangle: [4500, 4502, 4501] +Triangle: [4485, 4503, 4484] +Triangle: [4506, 4483, 4486] +Triangle: [4539, 4760, 4775] +Triangle: [4538, 4761, 4774] +Triangle: [4772, 4516, 4762] +Triangle: [4770, 4517, 4763] +Triangle: [4526, 4764, 4768] +Triangle: [4518, 4765, 4764] +Triangle: [4541, 4766, 4776] +Triangle: [4763, 4525, 4767] +Triangle: [4767, 4526, 4768] +Triangle: [4762, 4529, 4769] +Triangle: [4769, 4530, 4770] +Triangle: [4761, 4533, 4771] +Triangle: [4771, 4534, 4772] +Triangle: [4759, 4537, 4773] +Triangle: [4773, 4538, 4774] +Triangle: [4520, 4775, 4766] +Triangle: [4519, 4776, 4765] +Triangle: [4575, 4545, 4576] +Triangle: [4574, 4550, 4571] +Triangle: [4570, 4549, 4567] +Triangle: [4563, 4553, 4548] +Triangle: [4562, 4547, 4559] +Triangle: [4554, 4558, 4547] +Triangle: [4577, 4557, 4578] +Triangle: [4548, 4561, 4560] +Triangle: [4561, 4559, 4560] +Triangle: [4552, 4564, 4549] +Triangle: [4564, 4566, 4563] +Triangle: [4551, 4568, 4550] +Triangle: [4569, 4567, 4568] +Triangle: [4543, 4573, 4572] +Triangle: [4573, 4571, 4572] +Triangle: [4556, 4576, 4557] +Triangle: [4555, 4578, 4558] +Triangle: [4611, 4581, 4612] +Triangle: [4610, 4586, 4607] +Triangle: [4603, 4588, 4585] +Triangle: [4599, 4589, 4584] +Triangle: [4598, 4583, 4595] +Triangle: [4583, 4591, 4594] +Triangle: [4614, 4592, 4593] +Triangle: [4584, 4597, 4596] +Triangle: [4596, 4598, 4595] +Triangle: [4585, 4601, 4600] +Triangle: [4600, 4602, 4599] +Triangle: [4586, 4605, 4604] +Triangle: [4604, 4606, 4603] +Triangle: [4579, 4609, 4608] +Triangle: [4609, 4607, 4608] +Triangle: [4592, 4612, 4593] +Triangle: [4594, 4613, 4614] +Triangle: [4617, 4647, 4648] +Triangle: [4622, 4646, 4643] +Triangle: [4621, 4642, 4639] +Triangle: [4620, 4638, 4635] +Triangle: [4631, 4626, 4634] +Triangle: [4630, 4626, 4619] +Triangle: [4650, 4628, 4649] +Triangle: [4632, 4625, 4620] +Triangle: [4632, 4634, 4633] +Triangle: [4636, 4624, 4621] +Triangle: [4635, 4637, 4636] +Triangle: [4640, 4623, 4622] +Triangle: [4639, 4641, 4640] +Triangle: [4615, 4645, 4616] +Triangle: [4644, 4646, 4645] +Triangle: [4648, 4628, 4629] +Triangle: [4650, 4627, 4630] +Triangle: [4684, 4654, 4683] +Triangle: [4658, 4682, 4679] +Triangle: [4657, 4678, 4675] +Triangle: [4671, 4661, 4674] +Triangle: [4655, 4670, 4667] +Triangle: [4655, 4663, 4662] +Triangle: [4686, 4664, 4685] +Triangle: [4656, 4669, 4661] +Triangle: [4667, 4669, 4668] +Triangle: [4672, 4660, 4657] +Triangle: [4672, 4674, 4673] +Triangle: [4676, 4659, 4658] +Triangle: [4675, 4677, 4676] +Triangle: [4651, 4681, 4652] +Triangle: [4680, 4682, 4681] +Triangle: [4665, 4683, 4664] +Triangle: [4686, 4663, 4666] +Triangle: [4720, 4690, 4719] +Triangle: [4694, 4718, 4715] +Triangle: [4693, 4714, 4711] +Triangle: [4707, 4697, 4710] +Triangle: [4691, 4706, 4703] +Triangle: [4702, 4698, 4691] +Triangle: [4701, 4721, 4722] +Triangle: [4692, 4705, 4697] +Triangle: [4704, 4706, 4705] +Triangle: [4708, 4696, 4693] +Triangle: [4707, 4709, 4708] +Triangle: [4712, 4695, 4694] +Triangle: [4711, 4713, 4712] +Triangle: [4687, 4717, 4688] +Triangle: [4716, 4718, 4717] +Triangle: [4720, 4700, 4701] +Triangle: [4722, 4699, 4702] +Triangle: [4756, 4726, 4755] +Triangle: [4751, 4731, 4754] +Triangle: [4747, 4732, 4750] +Triangle: [4728, 4746, 4743] +Triangle: [4739, 4734, 4742] +Triangle: [4738, 4734, 4727] +Triangle: [4737, 4757, 4758] +Triangle: [4728, 4741, 4733] +Triangle: [4739, 4741, 4740] +Triangle: [4744, 4732, 4729] +Triangle: [4743, 4745, 4744] +Triangle: [4730, 4749, 4731] +Triangle: [4748, 4750, 4749] +Triangle: [4723, 4753, 4724] +Triangle: [4752, 4754, 4753] +Triangle: [4756, 4736, 4737] +Triangle: [4738, 4757, 4735] +Triangle: [4765, 4542, 4522] +Triangle: [4766, 4540, 4521] +Triangle: [4536, 4774, 4535] +Triangle: [4507, 4773, 4536] +Triangle: [4532, 4772, 4531] +Triangle: [4514, 4771, 4532] +Triangle: [4528, 4770, 4527] +Triangle: [4513, 4769, 4528] +Triangle: [4524, 4768, 4523] +Triangle: [4512, 4767, 4524] +Triangle: [4776, 4521, 4542] +Triangle: [4511, 4765, 4522] +Triangle: [4523, 4764, 4511] +Triangle: [4527, 4763, 4512] +Triangle: [4531, 4762, 4513] +Triangle: [4535, 4761, 4514] +Triangle: [4775, 4509, 4540] +Triangle: [4577, 4784, 4556] +Triangle: [4566, 4781, 4553] +Triangle: [4561, 4786, 4562] +Triangle: [4562, 4782, 4554] +Triangle: [4555, 4794, 4577] +Triangle: [4573, 4777, 4791] +Triangle: [4574, 4791, 4792] +Triangle: [4569, 4779, 4789] +Triangle: [4570, 4789, 4790] +Triangle: [4565, 4780, 4787] +Triangle: [4551, 4792, 4779] +Triangle: [4554, 4783, 4555] +Triangle: [4565, 4788, 4566] +Triangle: [4556, 4793, 4575] +Triangle: [4552, 4790, 4780] +Triangle: [4553, 4785, 4561] +Triangle: [4546, 4793, 4778] +Triangle: [4834, 4822, 4836] +Triangle: [4814, 4823, 4830] +Triangle: [4820, 4824, 4833] +Triangle: [4818, 4825, 4832] +Triangle: [4831, 4806, 4826] +Triangle: [4845, 4807, 4827] +Triangle: [4842, 4808, 4828] +Triangle: [4796, 4829, 4821] +Triangle: [4813, 4830, 4829] +Triangle: [4805, 4831, 4825] +Triangle: [4804, 4832, 4824] +Triangle: [4803, 4833, 4823] +Triangle: [4823, 4819, 4802] +Triangle: [4801, 4832, 4817] +Triangle: [4825, 4815, 4800] +Triangle: [4829, 4811, 4812] +Triangle: [4795, 4829, 4812] +Triangle: [4841, 4828, 4809] +Triangle: [4845, 4810, 4843] +Triangle: [4815, 4826, 4799] +Triangle: [4832, 4800, 4817] +Triangle: [4819, 4824, 4801] +Triangle: [4830, 4802, 4811] +Triangle: [4835, 4822, 4797] +Triangle: [4837, 4836, 4835] +Triangle: [4838, 4836, 4839] +Triangle: [4808, 4839, 4828] +Triangle: [4828, 4837, 4809] +Triangle: [4810, 4842, 4841] +Triangle: [4827, 4840, 4842] +Triangle: [4826, 4843, 4799] +Triangle: [4826, 4844, 4845] +Triangle: [4879, 4849, 4873] +Triangle: [4865, 4874, 4881] +Triangle: [4884, 4855, 4875] +Triangle: [5180, 4856, 4876] +Triangle: [4867, 4877, 4882] +Triangle: [4857, 4878, 4877] +Triangle: [4858, 4879, 4878] +Triangle: [4847, 4880, 4872] +Triangle: [4864, 4881, 4880] +Triangle: [4876, 4867, 4882] +Triangle: [5176, 4883, 5177] +Triangle: [4874, 4871, 4884] +Triangle: [4853, 4884, 4870] +Triangle: [5177, 4868, 5175] +Triangle: [4851, 4882, 4866] +Triangle: [4880, 4862, 4863] +Triangle: [4846, 4880, 4863] +Triangle: [4878, 4860, 4861] +Triangle: [4877, 4861, 4850] +Triangle: [4882, 4850, 4866] +Triangle: [5179, 4876, 4851] +Triangle: [4884, 4852, 4870] +Triangle: [4881, 4853, 4862] +Triangle: [4879, 4848, 4860] +Triangle: [4898, 4887, 4899] +Triangle: [4904, 4892, 4901] +Triangle: [4909, 4894, 4891] +Triangle: [4908, 4890, 4907] +Triangle: [4905, 4896, 4889] +Triangle: [4889, 4897, 4900] +Triangle: [4900, 4898, 4899] +Triangle: [4885, 4903, 4902] +Triangle: [4902, 4904, 4901] +Triangle: [4895, 4905, 4890] +Triangle: [4894, 4907, 4891] +Triangle: [4893, 4909, 4892] +Triangle: [4924, 4938, 4944] +Triangle: [4930, 4939, 4946] +Triangle: [4949, 4920, 4940] +Triangle: [4934, 4941, 4948] +Triangle: [4947, 4922, 4942] +Triangle: [4942, 4923, 4943] +Triangle: [4923, 4944, 4943] +Triangle: [4937, 4929, 4945] +Triangle: [4945, 4930, 4946] +Triangle: [4921, 4947, 4941] +Triangle: [4920, 4948, 4940] +Triangle: [4919, 4949, 4939] +Triangle: [4939, 4935, 4918] +Triangle: [4940, 4933, 4917] +Triangle: [4941, 4931, 4916] +Triangle: [4928, 4946, 4927] +Triangle: [4911, 4945, 4928] +Triangle: [4943, 4925, 4926] +Triangle: [4915, 4943, 4926] +Triangle: [4931, 4942, 4915] +Triangle: [4948, 4916, 4933] +Triangle: [4935, 4940, 4917] +Triangle: [4946, 4918, 4927] +Triangle: [4944, 4913, 4925] +Triangle: [4963, 4977, 4983] +Triangle: [4969, 4978, 4985] +Triangle: [4988, 4959, 4979] +Triangle: [4973, 4980, 4987] +Triangle: [4986, 4961, 4981] +Triangle: [4961, 4982, 4981] +Triangle: [4962, 4983, 4982] +Triangle: [4976, 4968, 4984] +Triangle: [4968, 4985, 4984] +Triangle: [4980, 4971, 4986] +Triangle: [4959, 4987, 4979] +Triangle: [4978, 4975, 4988] +Triangle: [4957, 4988, 4974] +Triangle: [4979, 4972, 4956] +Triangle: [4955, 4986, 4970] +Triangle: [4984, 4966, 4967] +Triangle: [4950, 4984, 4967] +Triangle: [4982, 4964, 4965] +Triangle: [4981, 4965, 4954] +Triangle: [4970, 4981, 4954] +Triangle: [4987, 4955, 4972] +Triangle: [4988, 4956, 4974] +Triangle: [4985, 4957, 4966] +Triangle: [4983, 4952, 4964] +Triangle: [5028, 5016, 5030] +Triangle: [5008, 5017, 5024] +Triangle: [5052, 5018, 5054] +Triangle: [5046, 5019, 5048] +Triangle: [5040, 5020, 5042] +Triangle: [5038, 5021, 5039] +Triangle: [5036, 5002, 5022] +Triangle: [4990, 5023, 5015] +Triangle: [5007, 5024, 5023] +Triangle: [5045, 5010, 5025] +Triangle: [5050, 5026, 5051] +Triangle: [5017, 5014, 5027] +Triangle: [5017, 5013, 4996] +Triangle: [5051, 5011, 5049] +Triangle: [5045, 5009, 5043] +Triangle: [5023, 5005, 5006] +Triangle: [4989, 5023, 5006] +Triangle: [5035, 5022, 5003] +Triangle: [5037, 5021, 5004] +Triangle: [5042, 4993, 5041] +Triangle: [5047, 5019, 4994] +Triangle: [5054, 4995, 5053] +Triangle: [5024, 4996, 5005] +Triangle: [5029, 5016, 4991] +Triangle: [5033, 5029, 5031] +Triangle: [5032, 5030, 5033] +Triangle: [5002, 5033, 5022] +Triangle: [5022, 5031, 5003] +Triangle: [5004, 5036, 5035] +Triangle: [5021, 5034, 5036] +Triangle: [4993, 5039, 5037] +Triangle: [5000, 5039, 5020] +Triangle: [5025, 5041, 5009] +Triangle: [5010, 5042, 5025] +Triangle: [4994, 5045, 5043] +Triangle: [5019, 5044, 5045] +Triangle: [5026, 5047, 5011] +Triangle: [5012, 5048, 5026] +Triangle: [5018, 5049, 4995] +Triangle: [4998, 5051, 5018] +Triangle: [5027, 5053, 5013] +Triangle: [5014, 5054, 5027] +Triangle: [5088, 5078, 5090] +Triangle: [5076, 5080, 5087] +Triangle: [5074, 5081, 5086] +Triangle: [5085, 5066, 5082] +Triangle: [5099, 5067, 5083] +Triangle: [5096, 5068, 5084] +Triangle: [5056, 5079, 5077] +Triangle: [5081, 5072, 5085] +Triangle: [5064, 5086, 5080] +Triangle: [5063, 5087, 5079] +Triangle: [5079, 5075, 5062] +Triangle: [5080, 5073, 5061] +Triangle: [5060, 5085, 5071] +Triangle: [5055, 5079, 5062] +Triangle: [5095, 5084, 5069] +Triangle: [5099, 5070, 5097] +Triangle: [5085, 5059, 5071] +Triangle: [5086, 5060, 5073] +Triangle: [5087, 5061, 5075] +Triangle: [5089, 5078, 5057] +Triangle: [5093, 5089, 5091] +Triangle: [5092, 5090, 5093] +Triangle: [5084, 5092, 5093] +Triangle: [5069, 5093, 5091] +Triangle: [5070, 5096, 5095] +Triangle: [5083, 5094, 5096] +Triangle: [5082, 5097, 5059] +Triangle: [5066, 5099, 5082] +Triangle: [5141, 5103, 5127] +Triangle: [5119, 5128, 5135] +Triangle: [5163, 5129, 5165] +Triangle: [5157, 5130, 5159] +Triangle: [5153, 5111, 5131] +Triangle: [5150, 5112, 5132] +Triangle: [5145, 5133, 5147] +Triangle: [5101, 5134, 5126] +Triangle: [5169, 5135, 5170] +Triangle: [5156, 5121, 5136] +Triangle: [5161, 5137, 5162] +Triangle: [5173, 5138, 5174] +Triangle: [5174, 5124, 5172] +Triangle: [5162, 5122, 5160] +Triangle: [5154, 5136, 5120] +Triangle: [5170, 5116, 5171] +Triangle: [5100, 5134, 5117] +Triangle: [5147, 5114, 5146] +Triangle: [5148, 5132, 5115] +Triangle: [5153, 5104, 5152] +Triangle: [5158, 5130, 5105] +Triangle: [5165, 5106, 5164] +Triangle: [5135, 5107, 5116] +Triangle: [5141, 5102, 5140] +Triangle: [5142, 5141, 5140] +Triangle: [5143, 5141, 5144] +Triangle: [5113, 5144, 5133] +Triangle: [5114, 5144, 5142] +Triangle: [5115, 5147, 5146] +Triangle: [5132, 5145, 5147] +Triangle: [5104, 5150, 5148] +Triangle: [5131, 5149, 5150] +Triangle: [5136, 5152, 5120] +Triangle: [5121, 5153, 5136] +Triangle: [5105, 5156, 5154] +Triangle: [5130, 5155, 5156] +Triangle: [5137, 5158, 5122] +Triangle: [5123, 5159, 5137] +Triangle: [5129, 5160, 5106] +Triangle: [5109, 5162, 5129] +Triangle: [5138, 5164, 5124] +Triangle: [5125, 5165, 5138] +Triangle: [5134, 5166, 5117] +Triangle: [5118, 5168, 5134] +Triangle: [5168, 5171, 5166] +Triangle: [5167, 5170, 5168] +Triangle: [5128, 5172, 5107] +Triangle: [5108, 5174, 5128] +Triangle: [4875, 5175, 4852] +Triangle: [4855, 5177, 4875] +Triangle: [4868, 5180, 5179] +Triangle: [4869, 5180, 4883] +Triangle: [5189, 5186, 5187] +Triangle: [5184, 5189, 5183] +Triangle: [5189, 5188, 5181] +Triangle: [5182, 5189, 5181] +Triangle: [5200, 1934, 745] +Triangle: [1935, 5201, 5202] +Triangle: [1936, 5202, 5203] +Triangle: [1936, 5204, 1937] +Triangle: [1937, 5205, 1938] +Triangle: [1938, 5206, 1939] +Triangle: [1942, 5206, 5209] +Triangle: [1942, 5208, 1941] +Triangle: [5227, 5208, 5228] +Triangle: [1940, 5197, 742] +Triangle: [735, 5200, 745] +Triangle: [736, 5190, 735] +Triangle: [737, 5191, 736] +Triangle: [5193, 737, 738] +Triangle: [5194, 738, 739] +Triangle: [5195, 739, 740] +Triangle: [744, 5195, 740] +Triangle: [744, 5198, 5199] +Triangle: [5198, 5216, 5218] +Triangle: [5197, 741, 742] +Triangle: [5218, 733, 734] +Triangle: [1932, 5228, 1933] +Triangle: [5220, 5201, 5200] +Triangle: [5202, 5221, 5222] +Triangle: [5203, 5222, 5223] +Triangle: [5204, 5223, 5224] +Triangle: [5205, 5224, 5225] +Triangle: [5205, 5226, 5206] +Triangle: [5206, 5229, 5209] +Triangle: [5209, 5228, 5208] +Triangle: [5207, 5217, 5197] +Triangle: [5190, 5220, 5200] +Triangle: [5191, 5210, 5190] +Triangle: [5192, 5211, 5191] +Triangle: [5193, 5212, 5192] +Triangle: [5194, 5213, 5193] +Triangle: [5215, 5194, 5195] +Triangle: [5219, 5195, 5199] +Triangle: [5199, 5218, 5219] +Triangle: [5217, 5196, 5197] +Triangle: [5265, 5267, 5263] +Triangle: [5234, 5237, 5235] +Triangle: [5230, 5236, 5234] +Triangle: [5238, 5237, 5236] +Triangle: [5230, 5238, 5236] +Triangle: [5240, 5239, 5238] +Triangle: [5230, 5240, 5238] +Triangle: [5240, 5243, 5241] +Triangle: [5230, 5242, 5240] +Triangle: [5244, 5243, 5242] +Triangle: [5230, 5244, 5242] +Triangle: [5244, 5247, 5245] +Triangle: [5230, 5246, 5244] +Triangle: [5246, 5249, 5247] +Triangle: [5230, 5248, 5246] +Triangle: [5230, 5250, 5248] +Triangle: [5248, 5251, 5249] +Triangle: [5230, 5252, 5250] +Triangle: [5252, 5251, 5250] +Triangle: [5230, 5254, 5252] +Triangle: [5254, 5253, 5252] +Triangle: [5230, 5256, 5254] +Triangle: [5256, 5255, 5254] +Triangle: [5258, 5257, 5256] +Triangle: [5230, 5258, 5256] +Triangle: [5260, 5259, 5258] +Triangle: [5230, 5260, 5258] +Triangle: [5231, 5261, 5260] +Triangle: [5230, 5231, 5260] +Triangle: [5231, 5230, 5232] +Triangle: [5268, 5265, 5266] +Triangle: [5230, 5234, 5232] +Triangle: [5231, 5233, 5262] +Triangle: [5267, 5270, 5269] +Triangle: [5267, 5269, 5263] +Triangle: [5263, 5269, 5271] +Triangle: [5272, 5269, 5270] +Triangle: [5274, 5271, 5272] +Triangle: [5271, 5273, 5263] +Triangle: [5273, 5275, 5263] +Triangle: [5276, 5273, 5274] +Triangle: [5276, 5277, 5275] +Triangle: [5275, 5277, 5263] +Triangle: [5277, 5279, 5263] +Triangle: [5278, 5279, 5277] +Triangle: [5280, 5281, 5279] +Triangle: [5279, 5281, 5263] +Triangle: [5281, 5283, 5263] +Triangle: [5282, 5283, 5281] +Triangle: [5283, 5285, 5263] +Triangle: [5284, 5285, 5283] +Triangle: [5285, 5287, 5263] +Triangle: [5288, 5285, 5286] +Triangle: [5287, 5289, 5263] +Triangle: [5288, 5289, 5287] +Triangle: [5290, 5291, 5289] +Triangle: [5289, 5291, 5263] +Triangle: [5263, 5291, 5293] +Triangle: [5292, 5293, 5291] +Triangle: [5296, 5293, 5294] +Triangle: [5293, 5295, 5263] +Triangle: [5263, 5295, 5297] +Triangle: [5296, 5297, 5295] +Triangle: [5300, 5297, 5298] +Triangle: [5297, 5299, 5263] +Triangle: [5299, 5301, 5263] +Triangle: [5300, 5301, 5299] +Triangle: [5304, 5301, 5302] +Triangle: [5301, 5303, 5263] +Triangle: [5303, 5305, 5263] +Triangle: [5304, 5305, 5303] +Triangle: [5306, 5307, 5305] +Triangle: [5305, 5307, 5263] +Triangle: [5307, 5309, 5263] +Triangle: [5308, 5309, 5307] +Triangle: [5309, 5311, 5263] +Triangle: [5310, 5311, 5309] +Triangle: [5312, 5313, 5311] +Triangle: [5311, 5313, 5263] +Triangle: [5313, 5315, 5263] +Triangle: [5314, 5315, 5313] +Triangle: [5316, 5317, 5315] +Triangle: [5315, 5317, 5263] +Triangle: [5263, 5317, 5319] +Triangle: [5318, 5319, 5317] +Triangle: [5320, 5321, 5319] +Triangle: [5319, 5321, 5263] +Triangle: [5263, 5321, 5323] +Triangle: [5322, 5323, 5321] +Triangle: [5324, 5325, 5323] +Triangle: [5323, 5325, 5263] +Triangle: [5325, 5264, 5263] +Triangle: [5326, 5264, 5325] +Triangle: [5266, 5264, 5327] +Triangle: [5232, 5235, 5233] +Triangle: [5264, 5265, 5263] +Triangle: [4465, 5328, 4464] +Triangle: [4436, 5330, 4435] +Triangle: [2014, 2028, 2027] +Triangle: [3632, 5332, 5333] +Triangle: [3620, 5335, 5334] +Triangle: [3723, 5340, 3739] +Triangle: [5339, 5341, 5340] +Triangle: [3739, 5336, 3724] +Triangle: [5340, 5337, 5336] +Triangle: [3708, 5346, 3733] +Triangle: [5343, 5347, 5346] +Triangle: [3733, 5344, 3713] +Triangle: [5346, 5345, 5344] +Triangle: [5351, 4042, 4026] +Triangle: [5350, 5352, 5351] +Triangle: [5352, 4027, 4042] +Triangle: [5352, 5349, 5348] +Triangle: [3634, 5354, 3633] +Triangle: [5357, 4196, 4181] +Triangle: [5358, 4182, 4196] +Triangle: [5359, 4188, 4165] +Triangle: [5361, 4168, 4188] +Triangle: [3658, 5364, 3681] +Triangle: [5364, 3661, 3681] +Triangle: [5366, 4093, 4077] +Triangle: [4093, 5365, 4078] +Triangle: [4088, 5369, 4068] +Triangle: [4061, 5370, 4088] +Triangle: [5373, 3663, 3683] +Triangle: [3656, 5373, 3683] +Triangle: [4191, 5375, 4171] +Triangle: [5374, 4191, 4174] +Triangle: [4205, 5378, 4206] +Triangle: [5378, 4204, 4206] +Triangle: [3700, 5381, 3702] +Triangle: [3702, 5380, 3701] +Triangle: [3725, 5385, 3740] +Triangle: [3740, 5383, 3726] +Triangle: [4011, 5388, 4036] +Triangle: [4036, 5387, 4016] +Triangle: [5389, 4189, 4164] +Triangle: [5391, 4169, 4189] +Triangle: [5393, 4043, 4028] +Triangle: [4043, 5392, 4029] +Triangle: [3709, 5397, 3732] +Triangle: [5397, 3712, 3732] +Triangle: [3602, 5398, 3350] +Triangle: [5398, 3601, 3343] +Triangle: [5398, 3349, 3350] +Triangle: [3342, 5398, 3343] +Triangle: [3603, 3357, 3611] +Triangle: [3352, 3603, 3604] +Triangle: [3351, 5399, 3352] +Triangle: [3357, 3400, 3359] +Triangle: [1235, 35, 33] +Triangle: [1237, 1244, 706] +Triangle: [1238, 1237, 705] +Triangle: [702, 26, 27] +Triangle: [1240, 36, 35] +Triangle: [703, 29, 26] +Triangle: [1240, 1238, 704] +Triangle: [1244, 1245, 707] +Triangle: [1236, 33, 32] +Triangle: [701, 27, 38] +Triangle: [1243, 1242, 32] +Triangle: [1241, 1243, 31] +Triangle: [1222, 46, 48] +Triangle: [1229, 1223, 41] +Triangle: [1223, 1224, 47] +Triangle: [1230, 1278, 40] +Triangle: [1231, 1228, 48] +Triangle: [1230, 39, 42] +Triangle: [1224, 1231, 49] +Triangle: [1232, 42, 43] +Triangle: [1234, 1229, 50] +Triangle: [1279, 45, 46] +Triangle: [1278, 1234, 51] +Triangle: [1281, 44, 45] +Triangle: [1233, 43, 44] +Triangle: [18, 17, 61] +Triangle: [18, 64, 63] +Triangle: [25, 62, 57] +Triangle: [19, 63, 52] +Triangle: [25, 24, 55] +Triangle: [16, 60, 61] +Triangle: [23, 59, 56] +Triangle: [16, 13, 58] +Triangle: [22, 53, 59] +Triangle: [14, 57, 58] +Triangle: [15, 21, 56] +Triangle: [24, 15, 54] +Triangle: [22, 20, 52] +Triangle: [10, 8, 1210] +Triangle: [1220, 12, 1] +Triangle: [7, 9, 1212] +Triangle: [1, 0, 1218] +Triangle: [9, 10, 1211] +Triangle: [1218, 0, 3] +Triangle: [1209, 2, 11] +Triangle: [5, 6, 1214] +Triangle: [1221, 11, 12] +Triangle: [4, 5, 1215] +Triangle: [3, 4, 1216] +Triangle: [6, 7, 1213] +Triangle: [1253, 76, 70] +Triangle: [1259, 1287, 70] +Triangle: [1254, 77, 1275] +Triangle: [1255, 1276, 1277] +Triangle: [1249, 72, 77] +Triangle: [1252, 75, 76] +Triangle: [1257, 1251, 74] +Triangle: [1250, 73, 75] +Triangle: [1251, 1248, 71] +Triangle: [1258, 68, 73] +Triangle: [1256, 1257, 67] +Triangle: [1249, 1256, 66] +Triangle: [1255, 65, 71] +Triangle: [82, 81, 712] +Triangle: [712, 81, 80] +Triangle: [80, 78, 711] +Triangle: [715, 33, 35] +Triangle: [82, 85, 86] +Triangle: [88, 92, 94] +Triangle: [130, 137, 162] +Triangle: [83, 91, 92] +Triangle: [106, 105, 104] +Triangle: [160, 173, 92] +Triangle: [86, 94, 95] +Triangle: [80, 81, 95] +Triangle: [78, 80, 96] +Triangle: [79, 78, 97] +Triangle: [99, 82, 713] +Triangle: [82, 99, 100] +Triangle: [95, 171, 170] +Triangle: [94, 172, 171] +Triangle: [85, 100, 104] +Triangle: [107, 99, 716] +Triangle: [99, 107, 106] +Triangle: [173, 172, 94] +Triangle: [83, 88, 109] +Triangle: [109, 88, 87] +Triangle: [103, 84, 109] +Triangle: [111, 109, 110] +Triangle: [112, 110, 87] +Triangle: [108, 110, 112] +Triangle: [115, 112, 104] +Triangle: [112, 115, 114] +Triangle: [98, 97, 116] +Triangle: [139, 118, 119] +Triangle: [118, 120, 121] +Triangle: [174, 122, 123] +Triangle: [174, 120, 124] +Triangle: [89, 126, 177] +Triangle: [177, 126, 128] +Triangle: [126, 162, 137] +Triangle: [124, 165, 166] +Triangle: [124, 120, 163] +Triangle: [164, 163, 120] +Triangle: [116, 139, 140] +Triangle: [139, 167, 164] +Triangle: [116, 168, 167] +Triangle: [169, 168, 116] +Triangle: [169, 97, 96] +Triangle: [86, 85, 87] +Triangle: [131, 130, 161] +Triangle: [132, 131, 159] +Triangle: [160, 91, 132] +Triangle: [89, 166, 162] +Triangle: [176, 124, 89] +Triangle: [101, 156, 155] +Triangle: [152, 149, 144] +Triangle: [134, 138, 151] +Triangle: [135, 133, 151] +Triangle: [157, 154, 153] +Triangle: [152, 145, 146] +Triangle: [150, 149, 152] +Triangle: [151, 150, 153] +Triangle: [141, 143, 149] +Triangle: [149, 143, 142] +Triangle: [136, 148, 157] +Triangle: [93, 157, 156] +Triangle: [138, 141, 150] +Triangle: [148, 135, 154] +Triangle: [153, 152, 155] +Triangle: [155, 146, 147] +Triangle: [102, 158, 159] +Triangle: [147, 160, 158] +Triangle: [136, 93, 161] +Triangle: [93, 101, 159] +Triangle: [134, 133, 163] +Triangle: [133, 135, 165] +Triangle: [136, 162, 166] +Triangle: [134, 164, 167] +Triangle: [138, 167, 168] +Triangle: [142, 143, 169] +Triangle: [143, 141, 168] +Triangle: [142, 170, 171] +Triangle: [145, 144, 171] +Triangle: [146, 145, 172] +Triangle: [147, 146, 173] +Triangle: [148, 166, 165] +Triangle: [125, 176, 179] +Triangle: [127, 177, 178] +Triangle: [90, 179, 177] +Triangle: [122, 174, 176] +Triangle: [120, 174, 175] +Triangle: [107, 181, 180] +Triangle: [180, 181, 183] +Triangle: [183, 184, 186] +Triangle: [181, 107, 717] +Triangle: [183, 181, 718] +Triangle: [720, 184, 183] +Triangle: [192, 184, 720] +Triangle: [722, 191, 192] +Triangle: [723, 190, 191] +Triangle: [715, 79, 190] +Triangle: [184, 187, 193] +Triangle: [198, 186, 193] +Triangle: [192, 188, 187] +Triangle: [191, 195, 188] +Triangle: [195, 191, 190] +Triangle: [79, 98, 189] +Triangle: [204, 197, 196] +Triangle: [201, 182, 186] +Triangle: [202, 204, 201] +Triangle: [182, 201, 200] +Triangle: [202, 198, 199] +Triangle: [180, 200, 105] +Triangle: [115, 105, 200] +Triangle: [210, 209, 207] +Triangle: [185, 202, 203] +Triangle: [197, 204, 202] +Triangle: [201, 204, 205] +Triangle: [114, 115, 208] +Triangle: [696, 205, 196] +Triangle: [696, 208, 200] +Triangle: [189, 211, 217] +Triangle: [218, 217, 211] +Triangle: [219, 218, 212] +Triangle: [220, 219, 213] +Triangle: [221, 220, 214] +Triangle: [222, 221, 215] +Triangle: [117, 211, 189] +Triangle: [140, 212, 211] +Triangle: [119, 213, 212] +Triangle: [214, 213, 119] +Triangle: [215, 214, 121] +Triangle: [216, 215, 175] +Triangle: [223, 187, 188] +Triangle: [187, 223, 227] +Triangle: [193, 227, 226] +Triangle: [203, 199, 226] +Triangle: [228, 223, 195] +Triangle: [223, 228, 229] +Triangle: [226, 227, 229] +Triangle: [250, 251, 249] +Triangle: [229, 228, 233] +Triangle: [234, 232, 230] +Triangle: [233, 228, 217] +Triangle: [233, 235, 236] +Triangle: [235, 237, 238] +Triangle: [238, 237, 239] +Triangle: [240, 239, 241] +Triangle: [231, 232, 244] +Triangle: [243, 244, 246] +Triangle: [242, 261, 262] +Triangle: [234, 236, 244] +Triangle: [238, 246, 244] +Triangle: [247, 263, 264] +Triangle: [235, 233, 218] +Triangle: [237, 235, 219] +Triangle: [221, 239, 237] +Triangle: [222, 241, 239] +Triangle: [194, 203, 224] +Triangle: [226, 230, 250] +Triangle: [225, 251, 250] +Triangle: [225, 230, 232] +Triangle: [129, 257, 256] +Triangle: [122, 265, 267] +Triangle: [90, 252, 255] +Triangle: [216, 266, 268] +Triangle: [241, 260, 261] +Triangle: [125, 255, 265] +Triangle: [90, 127, 256] +Triangle: [264, 246, 238] +Triangle: [264, 263, 245] +Triangle: [123, 267, 266] +Triangle: [242, 248, 247] +Triangle: [259, 268, 266] +Triangle: [265, 253, 254] +Triangle: [267, 254, 258] +Triangle: [241, 222, 268] +Triangle: [8, 2, 1209] +Triangle: [111, 270, 269] +Triangle: [302, 301, 272] +Triangle: [277, 273, 274] +Triangle: [270, 276, 275] +Triangle: [276, 277, 278] +Triangle: [277, 276, 280] +Triangle: [273, 277, 281] +Triangle: [281, 280, 283] +Triangle: [279, 281, 284] +Triangle: [284, 283, 286] +Triangle: [282, 284, 287] +Triangle: [287, 286, 289] +Triangle: [287, 290, 288] +Triangle: [289, 292, 293] +Triangle: [290, 293, 291] +Triangle: [294, 280, 276] +Triangle: [280, 294, 295] +Triangle: [283, 295, 694] +Triangle: [286, 694, 296] +Triangle: [292, 289, 296] +Triangle: [108, 294, 270] +Triangle: [295, 294, 108] +Triangle: [694, 295, 113] +Triangle: [296, 694, 114] +Triangle: [297, 296, 207] +Triangle: [273, 301, 302] +Triangle: [303, 301, 273] +Triangle: [303, 279, 305] +Triangle: [301, 303, 304] +Triangle: [305, 279, 282] +Triangle: [285, 309, 306] +Triangle: [300, 308, 309] +Triangle: [307, 306, 309] +Triangle: [300, 285, 288] +Triangle: [299, 288, 291] +Triangle: [323, 314, 317] +Triangle: [310, 307, 328] +Triangle: [326, 310, 329] +Triangle: [312, 330, 325] +Triangle: [325, 330, 316] +Triangle: [330, 323, 315] +Triangle: [313, 323, 330] +Triangle: [323, 313, 318] +Triangle: [317, 314, 321] +Triangle: [314, 318, 320] +Triangle: [320, 318, 313] +Triangle: [319, 313, 312] +Triangle: [329, 328, 311] +Triangle: [316, 315, 331] +Triangle: [331, 315, 317] +Triangle: [333, 324, 317] +Triangle: [340, 332, 331] +Triangle: [340, 324, 333] +Triangle: [322, 342, 339] +Triangle: [342, 343, 345] +Triangle: [342, 341, 338] +Triangle: [337, 340, 339] +Triangle: [336, 332, 340] +Triangle: [346, 345, 343] +Triangle: [321, 343, 342] +Triangle: [320, 344, 343] +Triangle: [308, 311, 328] +Triangle: [319, 311, 308] +Triangle: [319, 347, 344] +Triangle: [347, 308, 300] +Triangle: [344, 347, 348] +Triangle: [350, 349, 345] +Triangle: [634, 586, 631] +Triangle: [356, 355, 681] +Triangle: [352, 350, 346] +Triangle: [352, 348, 300] +Triangle: [680, 682, 352] +Triangle: [358, 357, 353] +Triangle: [350, 352, 682] +Triangle: [587, 586, 634] +Triangle: [683, 354, 353] +Triangle: [341, 359, 362] +Triangle: [685, 362, 359] +Triangle: [361, 364, 363] +Triangle: [341, 345, 349] +Triangle: [684, 359, 349] +Triangle: [351, 361, 360] +Triangle: [366, 337, 338] +Triangle: [367, 365, 338] +Triangle: [686, 367, 362] +Triangle: [369, 368, 363] +Triangle: [327, 316, 332] +Triangle: [326, 316, 327] +Triangle: [335, 310, 326] +Triangle: [310, 335, 371] +Triangle: [371, 370, 306] +Triangle: [376, 378, 379] +Triangle: [271, 380, 379] +Triangle: [375, 377, 379] +Triangle: [272, 381, 380] +Triangle: [374, 375, 380] +Triangle: [382, 381, 272] +Triangle: [383, 382, 304] +Triangle: [305, 306, 370] +Triangle: [406, 399, 393] +Triangle: [394, 399, 406] +Triangle: [395, 394, 402] +Triangle: [404, 397, 395] +Triangle: [404, 398, 389] +Triangle: [397, 404, 405] +Triangle: [398, 404, 403] +Triangle: [403, 402, 390] +Triangle: [390, 402, 406] +Triangle: [400, 406, 401] +Triangle: [396, 405, 415] +Triangle: [413, 388, 415] +Triangle: [414, 413, 412] +Triangle: [398, 411, 412] +Triangle: [411, 398, 392] +Triangle: [409, 410, 392] +Triangle: [409, 390, 400] +Triangle: [400, 391, 407] +Triangle: [411, 410, 416] +Triangle: [417, 416, 410] +Triangle: [408, 418, 417] +Triangle: [419, 418, 408] +Triangle: [418, 419, 422] +Triangle: [421, 426, 417] +Triangle: [426, 428, 416] +Triangle: [428, 426, 430] +Triangle: [429, 427, 385] +Triangle: [373, 374, 381] +Triangle: [372, 373, 382] +Triangle: [424, 441, 429] +Triangle: [447, 385, 423] +Triangle: [425, 384, 374] +Triangle: [420, 421, 422] +Triangle: [413, 429, 441] +Triangle: [428, 427, 414] +Triangle: [427, 429, 413] +Triangle: [426, 421, 420] +Triangle: [387, 431, 432] +Triangle: [420, 432, 386] +Triangle: [432, 431, 433] +Triangle: [433, 435, 436] +Triangle: [435, 437, 438] +Triangle: [376, 377, 438] +Triangle: [385, 427, 428] +Triangle: [439, 430, 386] +Triangle: [386, 432, 434] +Triangle: [385, 439, 440] +Triangle: [423, 440, 443] +Triangle: [445, 444, 384] +Triangle: [444, 423, 442] +Triangle: [443, 440, 434] +Triangle: [446, 443, 436] +Triangle: [446, 438, 377] +Triangle: [446, 375, 442] +Triangle: [374, 384, 442] +Triangle: [444, 445, 424] +Triangle: [399, 462, 461] +Triangle: [461, 462, 463] +Triangle: [394, 465, 462] +Triangle: [463, 462, 465] +Triangle: [463, 464, 466] +Triangle: [448, 466, 464] +Triangle: [474, 475, 448] +Triangle: [475, 474, 468] +Triangle: [465, 478, 476] +Triangle: [477, 476, 478] +Triangle: [476, 473, 467] +Triangle: [485, 459, 468] +Triangle: [469, 484, 449] +Triangle: [470, 483, 484] +Triangle: [470, 471, 482] +Triangle: [471, 472, 481] +Triangle: [480, 481, 472] +Triangle: [498, 486, 484] +Triangle: [450, 487, 486] +Triangle: [484, 486, 487] +Triangle: [495, 450, 488] +Triangle: [458, 451, 489] +Triangle: [525, 458, 490] +Triangle: [456, 457, 491] +Triangle: [619, 456, 492] +Triangle: [452, 493, 494] +Triangle: [495, 496, 489] +Triangle: [486, 498, 499] +Triangle: [497, 496, 488] +Triangle: [489, 496, 497] +Triangle: [490, 489, 500] +Triangle: [526, 490, 501] +Triangle: [492, 491, 502] +Triangle: [480, 473, 476] +Triangle: [473, 472, 509] +Triangle: [471, 470, 507] +Triangle: [469, 468, 505] +Triangle: [473, 510, 504] +Triangle: [472, 471, 508] +Triangle: [470, 469, 506] +Triangle: [474, 511, 505] +Triangle: [474, 467, 504] +Triangle: [512, 509, 508] +Triangle: [512, 507, 506] +Triangle: [510, 509, 512] +Triangle: [511, 504, 512] +Triangle: [519, 498, 483] +Triangle: [498, 519, 520] +Triangle: [521, 497, 499] +Triangle: [481, 480, 513] +Triangle: [514, 517, 516] +Triangle: [515, 518, 517] +Triangle: [482, 481, 516] +Triangle: [517, 520, 519] +Triangle: [521, 520, 517] +Triangle: [500, 497, 521] +Triangle: [518, 523, 522] +Triangle: [524, 523, 518] +Triangle: [501, 500, 522] +Triangle: [491, 526, 527] +Triangle: [457, 525, 526] +Triangle: [527, 501, 523] +Triangle: [527, 524, 528] +Triangle: [503, 502, 528] +Triangle: [528, 524, 530] +Triangle: [531, 530, 524] +Triangle: [533, 531, 515] +Triangle: [513, 534, 533] +Triangle: [477, 534, 513] +Triangle: [479, 535, 534] +Triangle: [531, 533, 537] +Triangle: [530, 531, 536] +Triangle: [532, 536, 539] +Triangle: [542, 540, 539] +Triangle: [544, 542, 541] +Triangle: [546, 544, 543] +Triangle: [547, 548, 546] +Triangle: [549, 550, 548] +Triangle: [552, 550, 549] +Triangle: [552, 551, 553] +Triangle: [554, 553, 555] +Triangle: [560, 559, 557] +Triangle: [556, 555, 559] +Triangle: [558, 557, 561] +Triangle: [562, 561, 563] +Triangle: [564, 563, 565] +Triangle: [492, 503, 621] +Triangle: [493, 567, 568] +Triangle: [621, 622, 565] +Triangle: [563, 568, 567] +Triangle: [529, 538, 623] +Triangle: [528, 532, 538] +Triangle: [538, 532, 540] +Triangle: [538, 569, 624] +Triangle: [566, 582, 581] +Triangle: [564, 581, 580] +Triangle: [562, 580, 579] +Triangle: [558, 579, 578] +Triangle: [578, 577, 556] +Triangle: [556, 577, 576] +Triangle: [554, 576, 575] +Triangle: [575, 574, 550] +Triangle: [574, 573, 548] +Triangle: [548, 573, 572] +Triangle: [546, 572, 571] +Triangle: [571, 570, 542] +Triangle: [570, 569, 540] +Triangle: [534, 535, 537] +Triangle: [583, 539, 536] +Triangle: [541, 539, 583] +Triangle: [541, 585, 584] +Triangle: [543, 584, 586] +Triangle: [545, 586, 587] +Triangle: [549, 547, 587] +Triangle: [551, 549, 588] +Triangle: [551, 589, 590] +Triangle: [605, 598, 597] +Triangle: [607, 599, 598] +Triangle: [608, 592, 591] +Triangle: [610, 600, 599] +Triangle: [608, 611, 593] +Triangle: [612, 601, 600] +Triangle: [611, 613, 594] +Triangle: [612, 614, 602] +Triangle: [613, 615, 595] +Triangle: [614, 616, 603] +Triangle: [615, 617, 596] +Triangle: [618, 604, 603] +Triangle: [617, 606, 597] +Triangle: [609, 591, 625] +Triangle: [569, 609, 626] +Triangle: [574, 575, 606] +Triangle: [582, 618, 616] +Triangle: [573, 574, 617] +Triangle: [580, 581, 616] +Triangle: [572, 573, 615] +Triangle: [579, 580, 614] +Triangle: [571, 572, 613] +Triangle: [579, 612, 610] +Triangle: [570, 571, 611] +Triangle: [578, 610, 607] +Triangle: [570, 608, 609] +Triangle: [577, 607, 605] +Triangle: [576, 605, 606] +Triangle: [582, 624, 626] +Triangle: [618, 626, 625] +Triangle: [623, 624, 582] +Triangle: [622, 623, 566] +Triangle: [529, 622, 621] +Triangle: [620, 621, 567] +Triangle: [452, 619, 620] +Triangle: [478, 465, 394] +Triangle: [583, 537, 535] +Triangle: [479, 627, 628] +Triangle: [478, 395, 627] +Triangle: [627, 629, 631] +Triangle: [632, 631, 629] +Triangle: [397, 629, 627] +Triangle: [396, 630, 629] +Triangle: [633, 586, 584] +Triangle: [631, 586, 633] +Triangle: [588, 587, 635] +Triangle: [388, 638, 630] +Triangle: [441, 637, 638] +Triangle: [424, 445, 637] +Triangle: [630, 638, 640] +Triangle: [637, 639, 640] +Triangle: [639, 637, 445] +Triangle: [634, 632, 640] +Triangle: [640, 639, 642] +Triangle: [639, 425, 641] +Triangle: [641, 425, 373] +Triangle: [644, 372, 383] +Triangle: [641, 372, 644] +Triangle: [371, 645, 644] +Triangle: [335, 646, 645] +Triangle: [334, 647, 646] +Triangle: [642, 641, 645] +Triangle: [642, 646, 647] +Triangle: [635, 634, 643] +Triangle: [636, 635, 647] +Triangle: [648, 647, 334] +Triangle: [650, 648, 327] +Triangle: [648, 650, 649] +Triangle: [589, 588, 636] +Triangle: [652, 650, 336] +Triangle: [650, 652, 651] +Triangle: [590, 589, 649] +Triangle: [654, 652, 337] +Triangle: [653, 651, 652] +Triangle: [655, 590, 651] +Triangle: [553, 590, 655] +Triangle: [453, 494, 659] +Triangle: [568, 658, 659] +Triangle: [658, 568, 563] +Triangle: [561, 557, 657] +Triangle: [657, 557, 559] +Triangle: [555, 655, 656] +Triangle: [663, 656, 655] +Triangle: [656, 663, 662] +Triangle: [657, 662, 661] +Triangle: [661, 660, 659] +Triangle: [455, 659, 660] +Triangle: [454, 660, 665] +Triangle: [669, 654, 366] +Triangle: [654, 669, 670] +Triangle: [670, 668, 663] +Triangle: [668, 667, 662] +Triangle: [662, 667, 666] +Triangle: [661, 666, 665] +Triangle: [669, 671, 674] +Triangle: [677, 678, 674] +Triangle: [673, 676, 675] +Triangle: [672, 675, 678] +Triangle: [671, 669, 365] +Triangle: [368, 686, 685] +Triangle: [355, 360, 684] +Triangle: [363, 685, 684] +Triangle: [298, 683, 680] +Triangle: [679, 682, 357] +Triangle: [353, 357, 682] +Triangle: [679, 681, 349] +Triangle: [677, 671, 367] +Triangle: [672, 677, 686] +Triangle: [369, 673, 672] +Triangle: [668, 691, 690] +Triangle: [667, 690, 689] +Triangle: [664, 665, 687] +Triangle: [687, 665, 666] +Triangle: [670, 674, 691] +Triangle: [678, 690, 691] +Triangle: [675, 689, 690] +Triangle: [689, 675, 692] +Triangle: [687, 692, 693] +Triangle: [676, 693, 692] +Triangle: [583, 628, 633] +Triangle: [358, 695, 356] +Triangle: [355, 356, 695] +Triangle: [696, 206, 210] +Triangle: [710, 703, 702] +Triangle: [697, 698, 38] +Triangle: [699, 700, 28] +Triangle: [700, 697, 37] +Triangle: [709, 702, 701] +Triangle: [708, 701, 698] +Triangle: [36, 704, 699] +Triangle: [706, 707, 698] +Triangle: [704, 705, 700] +Triangle: [705, 706, 697] +Triangle: [1247, 710, 709] +Triangle: [1246, 709, 708] +Triangle: [1239, 708, 707] +Triangle: [1241, 30, 710] +Triangle: [30, 29, 703] +Triangle: [33, 715, 723] +Triangle: [32, 723, 722] +Triangle: [31, 722, 721] +Triangle: [721, 720, 29] +Triangle: [29, 720, 719] +Triangle: [719, 718, 27] +Triangle: [718, 717, 38] +Triangle: [717, 716, 37] +Triangle: [716, 713, 28] +Triangle: [79, 715, 711] +Triangle: [714, 711, 35] +Triangle: [712, 714, 36] +Triangle: [713, 712, 34] +Triangle: [733, 732, 262] +Triangle: [734, 733, 261] +Triangle: [260, 259, 731] +Triangle: [259, 258, 730] +Triangle: [258, 254, 729] +Triangle: [729, 254, 253] +Triangle: [728, 253, 255] +Triangle: [727, 255, 252] +Triangle: [726, 252, 256] +Triangle: [725, 256, 257] +Triangle: [732, 733, 5216] +Triangle: [743, 741, 5196] +Triangle: [5218, 734, 731] +Triangle: [5219, 731, 730] +Triangle: [730, 729, 5214] +Triangle: [729, 728, 5213] +Triangle: [728, 727, 5212] +Triangle: [727, 726, 5211] +Triangle: [5211, 726, 725] +Triangle: [5210, 725, 724] +Triangle: [1195, 1199, 747] +Triangle: [1197, 1203, 760] +Triangle: [1133, 771, 770] +Triangle: [785, 784, 779] +Triangle: [791, 772, 773] +Triangle: [784, 783, 780] +Triangle: [1096, 1099, 751] +Triangle: [1204, 763, 762] +Triangle: [1201, 799, 800] +Triangle: [1102, 748, 804] +Triangle: [796, 787, 776] +Triangle: [1194, 1205, 766] +Triangle: [1202, 800, 746] +Triangle: [1093, 1096, 750] +Triangle: [1006, 1126, 1008] +Triangle: [891, 887, 786] +Triangle: [786, 785, 778] +Triangle: [805, 836, 837] +Triangle: [893, 890, 783] +Triangle: [888, 790, 788] +Triangle: [887, 892, 785] +Triangle: [1147, 1139, 767] +Triangle: [894, 793, 792] +Triangle: [795, 796, 767] +Triangle: [783, 782, 781] +Triangle: [896, 788, 789] +Triangle: [897, 794, 793] +Triangle: [895, 789, 782] +Triangle: [885, 795, 794] +Triangle: [788, 790, 773] +Triangle: [885, 889, 796] +Triangle: [793, 770, 771] +Triangle: [898, 791, 790] +Triangle: [782, 789, 774] +Triangle: [892, 893, 784] +Triangle: [795, 768, 769] +Triangle: [789, 788, 775] +Triangle: [787, 786, 777] +Triangle: [886, 782, 783] +Triangle: [794, 769, 770] +Triangle: [889, 891, 787] +Triangle: [1090, 1098, 802] +Triangle: [1097, 757, 758] +Triangle: [1094, 754, 755] +Triangle: [1104, 756, 757] +Triangle: [1095, 755, 756] +Triangle: [1205, 1198, 798] +Triangle: [1200, 762, 761] +Triangle: [1207, 764, 763] +Triangle: [1100, 804, 803] +Triangle: [1091, 749, 748] +Triangle: [1098, 1092, 803] +Triangle: [1103, 1093, 752] +Triangle: [1196, 746, 747] +Triangle: [805, 807, 808] +Triangle: [806, 810, 809] +Triangle: [868, 858, 810] +Triangle: [869, 868, 813] +Triangle: [806, 811, 813] +Triangle: [812, 811, 806] +Triangle: [867, 869, 816] +Triangle: [814, 816, 813] +Triangle: [812, 815, 814] +Triangle: [817, 816, 814] +Triangle: [862, 855, 822] +Triangle: [861, 820, 822] +Triangle: [864, 881, 871] +Triangle: [819, 832, 833] +Triangle: [820, 861, 866] +Triangle: [820, 833, 835] +Triangle: [824, 808, 807] +Triangle: [823, 825, 826] +Triangle: [826, 885, 897] +Triangle: [828, 897, 894] +Triangle: [824, 826, 828] +Triangle: [808, 824, 827] +Triangle: [899, 831, 830] +Triangle: [827, 828, 830] +Triangle: [812, 827, 829] +Triangle: [829, 830, 817] +Triangle: [835, 896, 895] +Triangle: [833, 888, 896] +Triangle: [807, 837, 847] +Triangle: [888, 833, 832] +Triangle: [838, 836, 805] +Triangle: [823, 847, 848] +Triangle: [838, 857, 865] +Triangle: [863, 843, 841] +Triangle: [838, 841, 839] +Triangle: [837, 836, 839] +Triangle: [839, 841, 842] +Triangle: [863, 860, 844] +Triangle: [821, 822, 835] +Triangle: [843, 844, 852] +Triangle: [856, 862, 821] +Triangle: [859, 856, 846] +Triangle: [853, 852, 844] +Triangle: [844, 860, 859] +Triangle: [846, 854, 853] +Triangle: [857, 838, 809] +Triangle: [891, 889, 825] +Triangle: [887, 891, 848] +Triangle: [892, 887, 850] +Triangle: [849, 850, 848] +Triangle: [837, 840, 849] +Triangle: [842, 850, 849] +Triangle: [893, 892, 851] +Triangle: [886, 854, 834] +Triangle: [890, 853, 854] +Triangle: [864, 809, 810] +Triangle: [890, 893, 852] +Triangle: [1198, 1197, 797] +Triangle: [1203, 1195, 759] +Triangle: [862, 856, 870] +Triangle: [1101, 758, 749] +Triangle: [866, 861, 873] +Triangle: [859, 860, 872] +Triangle: [857, 871, 882] +Triangle: [860, 863, 880] +Triangle: [868, 869, 875] +Triangle: [858, 868, 884] +Triangle: [869, 867, 874] +Triangle: [858, 877, 881] +Triangle: [856, 859, 878] +Triangle: [855, 876, 873] +Triangle: [865, 882, 880] +Triangle: [855, 862, 879] +Triangle: [909, 1038, 1018] +Triangle: [1049, 1050, 1138] +Triangle: [1139, 1051, 1042] +Triangle: [1145, 1053, 1054] +Triangle: [1045, 1052, 1140] +Triangle: [1141, 1054, 1044] +Triangle: [1144, 1137, 1048] +Triangle: [1146, 1055, 1053] +Triangle: [1042, 1043, 1134] +Triangle: [1043, 1046, 1136] +Triangle: [1050, 1055, 1146] +Triangle: [1143, 1044, 1045] +Triangle: [1042, 1119, 1108] +Triangle: [1044, 1113, 1112] +Triangle: [1046, 1043, 1108] +Triangle: [818, 831, 832] +Triangle: [1050, 1049, 1118] +Triangle: [881, 1101, 1091] +Triangle: [1051, 1110, 1119] +Triangle: [1045, 1112, 1107] +Triangle: [1053, 1115, 1114] +Triangle: [1044, 1054, 1114] +Triangle: [1048, 1153, 1155] +Triangle: [1055, 1116, 1115] +Triangle: [1047, 1046, 1109] +Triangle: [1055, 1050, 1117] +Triangle: [747, 916, 917] +Triangle: [916, 747, 746] +Triangle: [759, 917, 920] +Triangle: [760, 759, 918] +Triangle: [920, 921, 919] +Triangle: [1047, 1048, 1137] +Triangle: [971, 924, 1065] +Triangle: [981, 925, 930] +Triangle: [1001, 1012, 1021] +Triangle: [1067, 1068, 932] +Triangle: [1068, 1069, 934] +Triangle: [1070, 1071, 936] +Triangle: [1148, 938, 989] +Triangle: [1073, 1074, 940] +Triangle: [952, 970, 1059] +Triangle: [994, 948, 950] +Triangle: [1075, 1076, 944] +Triangle: [1076, 1077, 946] +Triangle: [1077, 1078, 948] +Triangle: [948, 1078, 1079] +Triangle: [1058, 1080, 1081] +Triangle: [1082, 1083, 954] +Triangle: [952, 1081, 1084] +Triangle: [1083, 1085, 958] +Triangle: [1085, 1086, 960] +Triangle: [960, 1086, 1087] +Triangle: [962, 1087, 1088] +Triangle: [979, 964, 966] +Triangle: [966, 1089, 1065] +Triangle: [977, 978, 980] +Triangle: [925, 971, 1064] +Triangle: [1208, 754, 753] +Triangle: [974, 970, 952] +Triangle: [1075, 942, 940] +Triangle: [946, 948, 994] +Triangle: [944, 946, 993] +Triangle: [992, 991, 942] +Triangle: [991, 990, 940] +Triangle: [938, 940, 1151] +Triangle: [940, 990, 1151] +Triangle: [1041, 974, 957] +Triangle: [1031, 987, 934] +Triangle: [987, 986, 932] +Triangle: [932, 986, 985] +Triangle: [1001, 984, 983] +Triangle: [964, 1088, 1089] +Triangle: [925, 981, 982] +Triangle: [982, 996, 924] +Triangle: [924, 996, 983] +Triangle: [984, 929, 979] +Triangle: [978, 979, 929] +Triangle: [964, 979, 978] +Triangle: [962, 978, 977] +Triangle: [960, 977, 976] +Triangle: [976, 975, 954] +Triangle: [902, 901, 997] +Triangle: [969, 999, 1000] +Triangle: [1012, 1001, 1002] +Triangle: [982, 1002, 1001] +Triangle: [1032, 1033, 1004] +Triangle: [1126, 1006, 915] +Triangle: [754, 1094, 1103] +Triangle: [1103, 1094, 874] +Triangle: [883, 874, 867] +Triangle: [1208, 1011, 764] +Triangle: [866, 867, 818] +Triangle: [898, 832, 831] +Triangle: [1099, 1090, 801] +Triangle: [834, 854, 846] +Triangle: [889, 885, 826] +Triangle: [1000, 999, 1012] +Triangle: [903, 902, 998] +Triangle: [1005, 1016, 1034] +Triangle: [968, 1000, 1015] +Triangle: [1000, 1013, 1014] +Triangle: [1012, 999, 1020] +Triangle: [969, 1004, 1019] +Triangle: [1033, 1127, 1111] +Triangle: [900, 1018, 997] +Triangle: [1003, 1014, 1013] +Triangle: [1014, 1003, 1022] +Triangle: [1015, 1022, 1027] +Triangle: [1016, 1023, 1036] +Triangle: [981, 1003, 1002] +Triangle: [1066, 1067, 930] +Triangle: [929, 984, 1021] +Triangle: [1025, 1027, 1023] +Triangle: [999, 969, 1026] +Triangle: [968, 1025, 1016] +Triangle: [1005, 1004, 969] +Triangle: [1020, 1026, 980] +Triangle: [1026, 1019, 928] +Triangle: [985, 1022, 1003] +Triangle: [1027, 1022, 985] +Triangle: [1023, 1027, 986] +Triangle: [1036, 1023, 987] +Triangle: [1024, 1131, 1128] +Triangle: [1129, 1131, 1024] +Triangle: [1004, 1033, 1035] +Triangle: [1130, 1129, 1017] +Triangle: [998, 997, 1127] +Triangle: [988, 1128, 1132] +Triangle: [1069, 1070, 1029] +Triangle: [1028, 928, 1019] +Triangle: [976, 977, 928] +Triangle: [1037, 1028, 1035] +Triangle: [975, 976, 1028] +Triangle: [1056, 1106, 1110] +Triangle: [975, 1041, 1040] +Triangle: [1084, 1082, 1040] +Triangle: [1041, 975, 1037] +Triangle: [1038, 909, 974] +Triangle: [1052, 1107, 1106] +Triangle: [907, 908, 991] +Triangle: [906, 990, 991] +Triangle: [904, 903, 1017] +Triangle: [1072, 1073, 938] +Triangle: [1152, 1151, 990] +Triangle: [791, 898, 899] +Triangle: [904, 1062, 1063] +Triangle: [909, 910, 970] +Triangle: [907, 992, 993] +Triangle: [914, 993, 994] +Triangle: [950, 1079, 1080] +Triangle: [1058, 1059, 995] +Triangle: [911, 1059, 970] +Triangle: [912, 995, 1059] +Triangle: [913, 994, 995] +Triangle: [1071, 1072, 1148] +Triangle: [936, 1148, 1061] +Triangle: [949, 947, 945] +Triangle: [926, 972, 1064] +Triangle: [931, 1067, 1066] +Triangle: [933, 1068, 1067] +Triangle: [935, 1069, 1068] +Triangle: [937, 1071, 1070] +Triangle: [939, 1073, 1072] +Triangle: [941, 1074, 1073] +Triangle: [943, 1075, 1074] +Triangle: [945, 1076, 1075] +Triangle: [945, 947, 1077] +Triangle: [947, 949, 1078] +Triangle: [951, 1079, 1078] +Triangle: [953, 1081, 1080] +Triangle: [1039, 955, 1083] +Triangle: [956, 1084, 1081] +Triangle: [955, 959, 1085] +Triangle: [959, 961, 1086] +Triangle: [961, 963, 1087] +Triangle: [963, 965, 1088] +Triangle: [926, 1065, 1089] +Triangle: [967, 1089, 1088] +Triangle: [927, 1066, 1064] +Triangle: [1030, 1070, 1069] +Triangle: [956, 1039, 1082] +Triangle: [1057, 1080, 1079] +Triangle: [1060, 1072, 1071] +Triangle: [941, 951, 949] +Triangle: [939, 1057, 951] +Triangle: [1060, 953, 1057] +Triangle: [1060, 937, 956] +Triangle: [1039, 956, 937] +Triangle: [1030, 935, 955] +Triangle: [959, 955, 935] +Triangle: [961, 959, 933] +Triangle: [963, 961, 931] +Triangle: [965, 963, 927] +Triangle: [972, 926, 967] +Triangle: [879, 870, 1090] +Triangle: [900, 1110, 1106] +Triangle: [883, 873, 1093] +Triangle: [878, 872, 1092] +Triangle: [871, 1091, 1102] +Triangle: [880, 1100, 1092] +Triangle: [884, 875, 1095] +Triangle: [884, 1104, 1097] +Triangle: [875, 874, 1094] +Triangle: [877, 1097, 1101] +Triangle: [870, 878, 1098] +Triangle: [1133, 1137, 772] +Triangle: [876, 1096, 1093] +Triangle: [882, 1102, 1100] +Triangle: [876, 879, 1099] +Triangle: [1052, 1056, 1147] +Triangle: [1118, 1150, 1152] +Triangle: [1118, 906, 908] +Triangle: [1117, 908, 907] +Triangle: [907, 914, 1115] +Triangle: [914, 913, 1114] +Triangle: [913, 912, 1113] +Triangle: [912, 911, 1112] +Triangle: [1112, 911, 910] +Triangle: [1107, 910, 909] +Triangle: [1018, 1038, 1037] +Triangle: [1110, 900, 901] +Triangle: [1119, 901, 902] +Triangle: [1109, 1108, 902] +Triangle: [1121, 1109, 903] +Triangle: [1062, 905, 1120] +Triangle: [1007, 1008, 1123] +Triangle: [1122, 1125, 1124] +Triangle: [988, 1061, 1149] +Triangle: [1062, 904, 1024] +Triangle: [1206, 761, 799] +Triangle: [1129, 1130, 1032] +Triangle: [1130, 1127, 1033] +Triangle: [1128, 1131, 1036] +Triangle: [1111, 1127, 997] +Triangle: [1132, 1128, 1031] +Triangle: [1131, 1129, 1034] +Triangle: [1140, 1147, 776] +Triangle: [1154, 1153, 1048] +Triangle: [1143, 1135, 778] +Triangle: [1138, 1146, 774] +Triangle: [769, 1134, 1136] +Triangle: [768, 1142, 1134] +Triangle: [1146, 1145, 781] +Triangle: [772, 1137, 1144] +Triangle: [1141, 1143, 779] +Triangle: [1135, 1140, 777] +Triangle: [781, 1145, 1141] +Triangle: [767, 1139, 1142] +Triangle: [1144, 1138, 775] +Triangle: [1051, 1139, 1147] +Triangle: [1046, 1047, 1133] +Triangle: [772, 791, 792] +Triangle: [1118, 1049, 1155] +Triangle: [1150, 1120, 905] +Triangle: [1153, 1154, 1063] +Triangle: [1155, 1153, 1120] +Triangle: [1152, 905, 989] +Triangle: [1121, 1063, 1154] +Triangle: [1149, 989, 905] +Triangle: [1166, 1167, 1164] +Triangle: [1009, 1167, 1166] +Triangle: [1191, 1168, 1163] +Triangle: [1169, 1162, 1163] +Triangle: [921, 1170, 1171] +Triangle: [1170, 922, 1166] +Triangle: [1165, 1172, 1171] +Triangle: [919, 1171, 1172] +Triangle: [1173, 1172, 1165] +Triangle: [797, 760, 1172] +Triangle: [1174, 1173, 1164] +Triangle: [1175, 1174, 1163] +Triangle: [798, 797, 1173] +Triangle: [766, 798, 1174] +Triangle: [1176, 1175, 1162] +Triangle: [1160, 1177, 1176] +Triangle: [1159, 1178, 1177] +Triangle: [1158, 1179, 1178] +Triangle: [1179, 1158, 1157] +Triangle: [766, 1175, 1176] +Triangle: [765, 1176, 1177] +Triangle: [1011, 1177, 1178] +Triangle: [764, 1178, 1179] +Triangle: [763, 1179, 1180] +Triangle: [1182, 1180, 1157] +Triangle: [762, 1180, 1182] +Triangle: [1181, 1122, 1182] +Triangle: [1182, 1122, 1183] +Triangle: [799, 761, 1183] +Triangle: [1123, 1184, 1183] +Triangle: [1184, 1123, 1008] +Triangle: [799, 1184, 1185] +Triangle: [800, 1185, 1126] +Triangle: [1125, 1122, 1181] +Triangle: [1186, 973, 1181] +Triangle: [735, 745, 1186] +Triangle: [736, 735, 1156] +Triangle: [737, 736, 1157] +Triangle: [737, 1158, 1159] +Triangle: [739, 738, 1159] +Triangle: [740, 739, 1160] +Triangle: [740, 1161, 1187] +Triangle: [1162, 1169, 1187] +Triangle: [1188, 743, 744] +Triangle: [1189, 1188, 1187] +Triangle: [1189, 1169, 1168] +Triangle: [1191, 1164, 1167] +Triangle: [1192, 1167, 1009] +Triangle: [1192, 1190, 1168] +Triangle: [741, 743, 1188] +Triangle: [1193, 923, 742] +Triangle: [1193, 1188, 1189] +Triangle: [1190, 1105, 923] +Triangle: [1105, 1190, 1192] +Triangle: [758, 1206, 1201] +Triangle: [754, 1208, 1207] +Triangle: [1011, 1208, 1194] +Triangle: [801, 802, 1195] +Triangle: [750, 751, 1197] +Triangle: [804, 1196, 1199] +Triangle: [755, 1207, 1204] +Triangle: [757, 1200, 1206] +Triangle: [752, 750, 1198] +Triangle: [748, 1202, 1196] +Triangle: [753, 752, 1205] +Triangle: [749, 1201, 1202] +Triangle: [756, 1204, 1200] +Triangle: [751, 801, 1203] +Triangle: [802, 803, 1199] +Triangle: [1210, 1209, 50] +Triangle: [1214, 1213, 48] +Triangle: [43, 1217, 1216] +Triangle: [44, 1216, 1215] +Triangle: [51, 1221, 1220] +Triangle: [45, 1215, 1214] +Triangle: [50, 1209, 1221] +Triangle: [42, 1218, 1217] +Triangle: [1212, 1211, 47] +Triangle: [1219, 1218, 42] +Triangle: [1213, 1212, 49] +Triangle: [40, 1220, 1219] +Triangle: [1211, 1210, 41] +Triangle: [76, 1280, 1227] +Triangle: [70, 1227, 1226] +Triangle: [77, 1234, 1278] +Triangle: [65, 1277, 1279] +Triangle: [72, 1229, 1234] +Triangle: [75, 1282, 1280] +Triangle: [67, 74, 1231] +Triangle: [75, 73, 1283] +Triangle: [74, 71, 1228] +Triangle: [73, 68, 1225] +Triangle: [66, 67, 1224] +Triangle: [66, 1223, 1229] +Triangle: [65, 1222, 1228] +Triangle: [1269, 1241, 1247] +Triangle: [1264, 1239, 1245] +Triangle: [1272, 1246, 1239] +Triangle: [1273, 1247, 1246] +Triangle: [1269, 1266, 1243] +Triangle: [1266, 1265, 1242] +Triangle: [1261, 1236, 1242] +Triangle: [1270, 1271, 1245] +Triangle: [1268, 1263, 1238] +Triangle: [1268, 1240, 1235] +Triangle: [1263, 1262, 1237] +Triangle: [1262, 1270, 1244] +Triangle: [1267, 1235, 1236] +Triangle: [52, 1255, 1248] +Triangle: [55, 54, 1256] +Triangle: [54, 56, 1257] +Triangle: [57, 1274, 1284] +Triangle: [59, 53, 1248] +Triangle: [58, 1284, 1285] +Triangle: [56, 59, 1251] +Triangle: [60, 1285, 1286] +Triangle: [55, 1249, 1254] +Triangle: [63, 1276, 1255] +Triangle: [62, 1254, 1274] +Triangle: [63, 64, 1260] +Triangle: [64, 61, 1286] +Triangle: [20, 22, 1267] +Triangle: [15, 24, 1270] +Triangle: [21, 15, 1262] +Triangle: [23, 1268, 1267] +Triangle: [21, 1263, 1268] +Triangle: [24, 25, 1271] +Triangle: [20, 1261, 1265] +Triangle: [19, 1265, 1266] +Triangle: [18, 1266, 1269] +Triangle: [13, 16, 1273] +Triangle: [14, 13, 1272] +Triangle: [25, 14, 1264] +Triangle: [17, 1269, 1273] +Triangle: [1258, 1274, 1275] +Triangle: [1259, 69, 1277] +Triangle: [1225, 68, 1275] +Triangle: [1226, 1279, 1277] +Triangle: [1280, 1233, 1281] +Triangle: [1227, 1281, 1279] +Triangle: [1280, 1282, 1232] +Triangle: [1282, 1283, 1230] +Triangle: [1283, 1225, 1278] +Triangle: [1250, 1284, 1274] +Triangle: [1252, 1285, 1284] +Triangle: [1253, 1286, 1285] +Triangle: [1259, 1276, 1260] +Triangle: [1253, 1287, 1260] +Triangle: [1321, 1323, 2415] +Triangle: [2417, 1906, 1907] +Triangle: [2418, 1905, 1906] +Triangle: [1315, 1314, 1903] +Triangle: [1323, 1324, 2420] +Triangle: [1314, 1317, 1904] +Triangle: [2420, 1324, 1905] +Triangle: [2424, 1907, 1908] +Triangle: [1320, 1321, 2416] +Triangle: [1326, 1315, 1902] +Triangle: [2423, 1319, 1320] +Triangle: [2421, 1318, 1319] +Triangle: [1336, 1334, 2402] +Triangle: [2409, 1338, 1329] +Triangle: [2403, 1329, 1335] +Triangle: [2410, 1327, 1328] +Triangle: [2411, 1337, 1336] +Triangle: [1330, 1327, 2410] +Triangle: [2404, 1335, 1337] +Triangle: [1331, 1330, 2412] +Triangle: [2414, 1339, 1338] +Triangle: [1334, 1333, 2459] +Triangle: [2458, 1328, 1339] +Triangle: [1333, 1332, 2461] +Triangle: [1332, 1331, 2413] +Triangle: [1306, 1352, 1349] +Triangle: [1351, 1352, 1306] +Triangle: [1345, 1350, 1313] +Triangle: [1340, 1351, 1307] +Triangle: [1313, 1350, 1343] +Triangle: [1349, 1348, 1304] +Triangle: [1344, 1347, 1311] +Triangle: [1304, 1348, 1346] +Triangle: [1347, 1341, 1310] +Triangle: [1346, 1345, 1302] +Triangle: [1303, 1342, 1344] +Triangle: [1312, 1343, 1342] +Triangle: [1310, 1341, 1340] +Triangle: [2390, 1296, 1298] +Triangle: [2400, 2399, 1289] +Triangle: [2392, 1297, 1295] +Triangle: [2398, 1288, 1289] +Triangle: [2391, 1298, 1297] +Triangle: [2398, 2397, 1291] +Triangle: [2389, 2401, 1299] +Triangle: [2394, 1294, 1293] +Triangle: [2401, 2400, 1300] +Triangle: [2395, 1293, 1292] +Triangle: [2396, 1292, 1291] +Triangle: [2393, 1295, 1294] +Triangle: [1358, 1364, 2433] +Triangle: [2439, 1357, 1358] +Triangle: [2455, 1365, 2434] +Triangle: [2435, 1353, 2457] +Triangle: [1365, 1360, 2429] +Triangle: [1364, 1363, 2432] +Triangle: [2437, 1355, 1362] +Triangle: [1363, 1361, 2430] +Triangle: [2431, 1362, 1359] +Triangle: [1361, 1356, 2438] +Triangle: [2436, 1354, 1355] +Triangle: [2429, 1360, 1354] +Triangle: [1359, 1353, 2435] +Triangle: [1913, 1369, 1370] +Triangle: [1913, 1915, 1368] +Triangle: [1912, 1366, 1368] +Triangle: [1916, 1912, 1323] +Triangle: [1372, 1371, 1370] +Triangle: [1379, 1377, 1374] +Triangle: [130, 1439, 1440] +Triangle: [1377, 91, 83] +Triangle: [1388, 1389, 1390] +Triangle: [1438, 91, 1377] +Triangle: [1380, 1379, 1372] +Triangle: [1368, 1381, 1380] +Triangle: [1381, 1368, 1366] +Triangle: [1367, 1383, 1382] +Triangle: [1914, 1370, 1384] +Triangle: [1385, 1384, 1370] +Triangle: [1380, 1381, 1448] +Triangle: [1379, 1380, 1449] +Triangle: [1388, 1385, 1371] +Triangle: [1917, 1384, 1391] +Triangle: [1384, 1385, 1390] +Triangle: [1451, 1377, 1379] +Triangle: [1393, 1374, 83] +Triangle: [1373, 1374, 1393] +Triangle: [103, 1395, 1393] +Triangle: [1394, 1393, 1395] +Triangle: [1373, 1394, 1396] +Triangle: [1392, 1397, 1396] +Triangle: [1388, 1396, 1399] +Triangle: [1398, 1399, 1396] +Triangle: [1383, 1401, 1400] +Triangle: [1403, 1402, 1417] +Triangle: [1405, 1404, 1402] +Triangle: [1407, 1406, 1452] +Triangle: [1452, 1454, 1408] +Triangle: [1455, 1410, 1375] +Triangle: [1455, 178, 128] +Triangle: [137, 1440, 1410] +Triangle: [1444, 1443, 1408] +Triangle: [1408, 1443, 1441] +Triangle: [1442, 1402, 1404] +Triangle: [1418, 1417, 1400] +Triangle: [1417, 1402, 1442] +Triangle: [1400, 1417, 1445] +Triangle: [1400, 1446, 1447] +Triangle: [1381, 1382, 1447] +Triangle: [1372, 1374, 1373] +Triangle: [131, 1437, 1439] +Triangle: [1437, 131, 132] +Triangle: [132, 91, 1438] +Triangle: [1440, 1444, 1375] +Triangle: [1454, 1456, 1375] +Triangle: [1386, 1387, 1433] +Triangle: [1430, 1423, 1422] +Triangle: [1429, 1416, 1413] +Triangle: [1414, 1432, 1429] +Triangle: [1435, 1434, 1431] +Triangle: [1424, 1423, 1430] +Triangle: [1430, 1427, 1428] +Triangle: [1431, 1428, 1429] +Triangle: [1427, 1421, 1419] +Triangle: [1427, 1422, 1420] +Triangle: [1415, 1378, 1435] +Triangle: [1378, 1386, 1434] +Triangle: [1428, 1419, 1416] +Triangle: [1426, 1435, 1432] +Triangle: [1433, 1430, 1431] +Triangle: [1425, 1424, 1433] +Triangle: [1437, 1436, 1387] +Triangle: [1436, 1438, 1425] +Triangle: [1415, 1440, 1439] +Triangle: [1378, 1439, 1437] +Triangle: [1413, 1442, 1441] +Triangle: [1412, 1441, 1443] +Triangle: [1444, 1440, 1415] +Triangle: [1445, 1442, 1413] +Triangle: [1446, 1445, 1416] +Triangle: [1420, 1448, 1447] +Triangle: [1421, 1447, 1446] +Triangle: [1449, 1448, 1420] +Triangle: [1423, 1450, 1449] +Triangle: [1424, 1451, 1450] +Triangle: [1425, 1438, 1451] +Triangle: [1443, 1444, 1426] +Triangle: [1409, 1376, 1456] +Triangle: [1411, 129, 178] +Triangle: [1376, 1411, 1455] +Triangle: [1406, 1409, 1454] +Triangle: [1453, 1452, 1404] +Triangle: [1457, 1458, 1391] +Triangle: [1457, 1459, 1460] +Triangle: [1462, 1461, 1460] +Triangle: [1918, 1391, 1458] +Triangle: [1919, 1458, 1460] +Triangle: [1921, 1920, 1460] +Triangle: [1921, 1461, 1468] +Triangle: [1468, 1467, 1923] +Triangle: [1467, 1466, 1924] +Triangle: [1466, 1367, 1916] +Triangle: [1469, 1463, 1461] +Triangle: [1471, 1472, 1469] +Triangle: [1463, 1464, 1468] +Triangle: [1467, 1468, 1464] +Triangle: [1470, 1465, 1466] +Triangle: [1367, 1466, 1465] +Triangle: [196, 197, 1477] +Triangle: [1462, 1459, 1474] +Triangle: [1475, 1471, 1474] +Triangle: [1473, 1474, 1459] +Triangle: [1475, 1476, 1472] +Triangle: [1389, 1473, 1457] +Triangle: [1399, 1480, 1473] +Triangle: [1479, 209, 210] +Triangle: [185, 194, 1476] +Triangle: [1475, 1477, 197] +Triangle: [1478, 1477, 1474] +Triangle: [1398, 1479, 1480] +Triangle: [196, 1478, 1897] +Triangle: [1897, 1478, 1473] +Triangle: [1487, 1481, 1465] +Triangle: [1481, 1487, 1488] +Triangle: [1482, 1488, 1489] +Triangle: [1483, 1489, 1490] +Triangle: [1484, 1490, 1491] +Triangle: [1485, 1491, 1492] +Triangle: [1401, 1383, 1465] +Triangle: [1418, 1401, 1481] +Triangle: [1403, 1418, 1482] +Triangle: [1403, 1483, 1484] +Triangle: [1405, 1484, 1485] +Triangle: [1453, 1485, 1486] +Triangle: [1493, 1470, 1464] +Triangle: [1496, 1493, 1463] +Triangle: [1469, 1472, 1495] +Triangle: [1476, 1494, 1495] +Triangle: [1470, 1493, 1497] +Triangle: [1498, 1497, 1493] +Triangle: [1495, 1499, 1498] +Triangle: [1513, 1494, 249] +Triangle: [1498, 1502, 1501] +Triangle: [1499, 1500, 1502] +Triangle: [1487, 1497, 1501] +Triangle: [1504, 1503, 1501] +Triangle: [1506, 1505, 1503] +Triangle: [1506, 1508, 1507] +Triangle: [1508, 1510, 1509] +Triangle: [231, 243, 1511] +Triangle: [243, 245, 1512] +Triangle: [262, 1522, 1510] +Triangle: [1511, 1504, 1502] +Triangle: [1506, 1504, 1511] +Triangle: [1523, 263, 247] +Triangle: [1488, 1501, 1503] +Triangle: [1489, 1503, 1505] +Triangle: [1491, 1490, 1505] +Triangle: [1492, 1491, 1507] +Triangle: [194, 249, 1494] +Triangle: [1495, 1494, 1513] +Triangle: [225, 1499, 1513] +Triangle: [225, 231, 1500] +Triangle: [1518, 257, 129] +Triangle: [1526, 1524, 1406] +Triangle: [1517, 1514, 1376] +Triangle: [1527, 1525, 1486] +Triangle: [1522, 1521, 1509] +Triangle: [1524, 1517, 1409] +Triangle: [1376, 1514, 1518] +Triangle: [1506, 1512, 1523] +Triangle: [245, 263, 1523] +Triangle: [1525, 1526, 1407] +Triangle: [1510, 1508, 247] +Triangle: [1520, 1519, 1525] +Triangle: [1516, 1515, 1524] +Triangle: [1519, 1516, 1526] +Triangle: [1509, 1521, 1527] +Triangle: [2389, 1290, 1296] +Triangle: [269, 1528, 1395] +Triangle: [302, 271, 1529] +Triangle: [274, 1530, 1532] +Triangle: [275, 1531, 1528] +Triangle: [278, 1532, 1531] +Triangle: [1532, 1535, 1534] +Triangle: [1530, 1533, 1535] +Triangle: [1535, 1538, 1537] +Triangle: [1533, 1536, 1538] +Triangle: [1538, 1541, 1540] +Triangle: [1536, 1539, 1541] +Triangle: [1541, 1544, 1543] +Triangle: [1542, 1544, 1541] +Triangle: [293, 292, 1543] +Triangle: [291, 293, 1544] +Triangle: [1531, 1534, 1545] +Triangle: [1546, 1545, 1534] +Triangle: [1896, 1546, 1537] +Triangle: [1547, 1896, 1540] +Triangle: [292, 297, 1547] +Triangle: [1392, 1395, 1528] +Triangle: [1392, 1545, 1546] +Triangle: [1397, 1546, 1896] +Triangle: [1398, 1896, 1547] +Triangle: [1479, 1547, 297] +Triangle: [302, 1550, 1530] +Triangle: [1530, 1550, 1551] +Triangle: [1551, 1552, 1553] +Triangle: [1552, 1551, 1550] +Triangle: [1536, 1533, 1553] +Triangle: [1539, 1536, 1554] +Triangle: [1549, 1539, 1557] +Triangle: [1555, 1556, 1557] +Triangle: [1549, 1548, 1542] +Triangle: [1548, 298, 291] +Triangle: [1565, 1562, 1571] +Triangle: [1576, 1555, 1558] +Triangle: [1577, 1558, 1574] +Triangle: [1560, 1577, 1573] +Triangle: [1573, 1574, 1564] +Triangle: [1563, 1571, 1578] +Triangle: [1578, 1571, 1561] +Triangle: [1566, 1561, 1571] +Triangle: [1565, 1570, 1569] +Triangle: [1568, 1566, 1562] +Triangle: [1568, 1567, 1561] +Triangle: [1560, 1561, 1567] +Triangle: [1559, 1576, 1577] +Triangle: [1564, 1580, 1579] +Triangle: [1579, 1572, 1565] +Triangle: [1565, 1572, 1581] +Triangle: [1579, 1580, 1588] +Triangle: [1581, 1572, 1588] +Triangle: [1570, 1581, 1587] +Triangle: [1593, 1591, 1590] +Triangle: [1586, 1589, 1590] +Triangle: [1585, 1586, 1587] +Triangle: [1588, 1580, 1584] +Triangle: [1591, 1593, 1594] +Triangle: [1569, 1570, 1590] +Triangle: [1568, 1569, 1591] +Triangle: [1576, 1559, 1556] +Triangle: [1556, 1559, 1567] +Triangle: [1567, 1568, 1592] +Triangle: [1549, 1556, 1595] +Triangle: [1596, 1595, 1592] +Triangle: [1593, 1597, 1598] +Triangle: [1842, 1840, 1839] +Triangle: [1886, 1601, 1602] +Triangle: [1594, 1598, 1599] +Triangle: [1549, 1596, 1599] +Triangle: [1885, 1548, 1599] +Triangle: [1600, 1603, 358] +Triangle: [1887, 1599, 1598] +Triangle: [1842, 1795, 1796] +Triangle: [683, 1885, 1600] +Triangle: [1606, 1604, 1589] +Triangle: [1604, 1606, 1889] +Triangle: [361, 1605, 1607] +Triangle: [1589, 1604, 1597] +Triangle: [1597, 1604, 1888] +Triangle: [351, 1601, 1605] +Triangle: [1609, 1608, 1586] +Triangle: [1586, 1608, 1610] +Triangle: [1606, 1610, 1890] +Triangle: [1607, 1611, 369] +Triangle: [1580, 1564, 1575] +Triangle: [1575, 1564, 1574] +Triangle: [1574, 1558, 1583] +Triangle: [1613, 1583, 1558] +Triangle: [1613, 1555, 1554] +Triangle: [376, 1618, 1619] +Triangle: [271, 378, 1619] +Triangle: [1617, 1620, 1619] +Triangle: [1529, 271, 1620] +Triangle: [1616, 1621, 1620] +Triangle: [1529, 1621, 1622] +Triangle: [1552, 1622, 1623] +Triangle: [1553, 1623, 1612] +Triangle: [1642, 401, 393] +Triangle: [1642, 1636, 1631] +Triangle: [1638, 1631, 1632] +Triangle: [1640, 1639, 1632] +Triangle: [1628, 1635, 1640] +Triangle: [1641, 1640, 1634] +Triangle: [1635, 1630, 1639] +Triangle: [1629, 1638, 1639] +Triangle: [1629, 1637, 1642] +Triangle: [1637, 391, 401] +Triangle: [1650, 1641, 1633] +Triangle: [1650, 1627, 1648] +Triangle: [1647, 1648, 1649] +Triangle: [1635, 1628, 1647] +Triangle: [1630, 1635, 1646] +Triangle: [1644, 1629, 1630] +Triangle: [1637, 1629, 1644] +Triangle: [1637, 1643, 407] +Triangle: [1651, 1645, 1646] +Triangle: [1645, 1651, 1652] +Triangle: [1643, 1644, 1652] +Triangle: [419, 407, 1643] +Triangle: [422, 419, 1653] +Triangle: [1652, 1659, 1655] +Triangle: [1651, 1661, 1659] +Triangle: [1661, 1668, 1663] +Triangle: [1662, 1676, 1625] +Triangle: [1615, 1622, 1621] +Triangle: [1614, 1623, 1622] +Triangle: [1657, 1676, 1662] +Triangle: [1656, 1625, 1676] +Triangle: [1616, 1624, 1658] +Triangle: [422, 1655, 1654] +Triangle: [1670, 1662, 1648] +Triangle: [1661, 1651, 1649] +Triangle: [1660, 1649, 1648] +Triangle: [1659, 1663, 1654] +Triangle: [1664, 431, 387] +Triangle: [1654, 1663, 1626] +Triangle: [1664, 1665, 433] +Triangle: [1666, 435, 433] +Triangle: [1667, 437, 435] +Triangle: [376, 437, 1667] +Triangle: [1661, 1660, 1625] +Triangle: [1668, 1669, 1626] +Triangle: [1626, 1669, 1665] +Triangle: [1625, 1656, 1669] +Triangle: [1656, 1671, 1672] +Triangle: [1624, 1673, 1674] +Triangle: [1673, 1624, 1671] +Triangle: [1665, 1669, 1672] +Triangle: [1675, 1667, 1666] +Triangle: [1618, 1667, 1675] +Triangle: [1671, 1617, 1675] +Triangle: [1616, 1617, 1671] +Triangle: [1657, 1674, 1673] +Triangle: [1636, 393, 461] +Triangle: [1678, 1677, 461] +Triangle: [1631, 1636, 1677] +Triangle: [1680, 1677, 1678] +Triangle: [466, 1679, 1678] +Triangle: [448, 1681, 1679] +Triangle: [1688, 1681, 448] +Triangle: [1682, 1688, 475] +Triangle: [1680, 1679, 1689] +Triangle: [1690, 1692, 1691] +Triangle: [1681, 1687, 1689] +Triangle: [1682, 459, 485] +Triangle: [449, 1697, 1683] +Triangle: [1697, 1696, 1684] +Triangle: [1684, 1696, 1695] +Triangle: [1685, 1695, 1694] +Triangle: [1693, 1687, 1686] +Triangle: [1697, 1698, 1708] +Triangle: [450, 1699, 1698] +Triangle: [487, 1698, 1697] +Triangle: [495, 1706, 1699] +Triangle: [458, 1701, 1700] +Triangle: [525, 1735, 1701] +Triangle: [456, 1703, 1702] +Triangle: [619, 1828, 1703] +Triangle: [1705, 1704, 452] +Triangle: [1700, 1706, 495] +Triangle: [1709, 1708, 1698] +Triangle: [1707, 1709, 1699] +Triangle: [1700, 1710, 1707] +Triangle: [1701, 1711, 1710] +Triangle: [1735, 1736, 1711] +Triangle: [1703, 1713, 1712] +Triangle: [1689, 1687, 1693] +Triangle: [1687, 1720, 1719] +Triangle: [1685, 1718, 1717] +Triangle: [1683, 1716, 1715] +Triangle: [1714, 1720, 1687] +Triangle: [1686, 1719, 1718] +Triangle: [1684, 1717, 1716] +Triangle: [1715, 1721, 1688] +Triangle: [1688, 1721, 1714] +Triangle: [1722, 1717, 1718] +Triangle: [1716, 1717, 1722] +Triangle: [1722, 1719, 1720] +Triangle: [1721, 1715, 1722] +Triangle: [1696, 1708, 1729] +Triangle: [1730, 1729, 1708] +Triangle: [1731, 1730, 1709] +Triangle: [1694, 1726, 1723] +Triangle: [1724, 1723, 1726] +Triangle: [1725, 1724, 1727] +Triangle: [1695, 1729, 1726] +Triangle: [1727, 1726, 1729] +Triangle: [1727, 1730, 1731] +Triangle: [1710, 1732, 1731] +Triangle: [1728, 1731, 1732] +Triangle: [1734, 1725, 1728] +Triangle: [1711, 1733, 1732] +Triangle: [1702, 1712, 1736] +Triangle: [457, 1702, 1735] +Triangle: [1733, 1711, 1736] +Triangle: [1737, 1734, 1736] +Triangle: [1713, 1738, 1737] +Triangle: [1737, 1741, 1739] +Triangle: [1740, 1725, 1734] +Triangle: [1725, 1740, 1742] +Triangle: [1723, 1724, 1742] +Triangle: [1690, 1693, 1723] +Triangle: [1692, 1690, 1743] +Triangle: [1740, 1745, 1746] +Triangle: [1739, 1741, 1745] +Triangle: [1741, 1749, 1748] +Triangle: [1748, 1749, 1751] +Triangle: [1750, 1751, 1753] +Triangle: [1752, 1753, 1755] +Triangle: [1756, 1754, 1755] +Triangle: [1758, 1756, 1757] +Triangle: [1758, 1759, 1761] +Triangle: [1761, 1763, 1762] +Triangle: [1763, 1765, 1764] +Triangle: [1769, 1767, 1766] +Triangle: [1765, 1769, 1768] +Triangle: [1767, 1771, 1770] +Triangle: [1771, 1773, 1772] +Triangle: [1773, 1775, 1774] +Triangle: [1829, 1713, 1703] +Triangle: [1777, 1776, 1704] +Triangle: [1829, 1776, 1774] +Triangle: [1772, 1774, 1776] +Triangle: [1831, 1747, 1738] +Triangle: [1747, 1741, 1737] +Triangle: [1747, 1778, 1749] +Triangle: [1832, 1778, 1747] +Triangle: [1775, 1773, 1790] +Triangle: [1773, 1771, 1789] +Triangle: [1771, 1767, 1788] +Triangle: [1767, 1769, 1787] +Triangle: [1765, 1786, 1787] +Triangle: [1765, 1763, 1785] +Triangle: [1763, 1761, 1784] +Triangle: [1759, 1783, 1784] +Triangle: [1757, 1782, 1783] +Triangle: [1757, 1755, 1781] +Triangle: [1755, 1753, 1780] +Triangle: [1751, 1779, 1780] +Triangle: [1749, 1778, 1779] +Triangle: [1746, 1744, 1743] +Triangle: [1745, 1748, 1792] +Triangle: [1750, 1794, 1792] +Triangle: [1793, 1794, 1750] +Triangle: [1795, 1793, 1752] +Triangle: [1796, 1795, 1754] +Triangle: [1758, 1797, 1796] +Triangle: [1760, 1798, 1797] +Triangle: [1799, 1798, 1760] +Triangle: [1806, 1807, 1814] +Triangle: [1807, 1808, 1816] +Triangle: [1800, 1801, 1817] +Triangle: [1808, 1809, 1819] +Triangle: [1817, 1801, 1802] +Triangle: [1809, 1810, 1821] +Triangle: [1820, 1802, 1803] +Triangle: [1821, 1810, 1811] +Triangle: [1822, 1803, 1804] +Triangle: [1823, 1811, 1812] +Triangle: [1824, 1804, 1805] +Triangle: [1812, 1813, 1827] +Triangle: [1826, 1805, 1806] +Triangle: [1833, 1800, 1818] +Triangle: [1834, 1818, 1778] +Triangle: [1783, 1826, 1815] +Triangle: [1825, 1827, 1791] +Triangle: [1782, 1824, 1826] +Triangle: [1789, 1823, 1825] +Triangle: [1781, 1822, 1824] +Triangle: [1788, 1821, 1823] +Triangle: [1780, 1820, 1822] +Triangle: [1819, 1821, 1788] +Triangle: [1779, 1817, 1820] +Triangle: [1816, 1819, 1787] +Triangle: [1818, 1817, 1779] +Triangle: [1814, 1816, 1786] +Triangle: [1815, 1814, 1785] +Triangle: [1791, 1827, 1834] +Triangle: [1827, 1813, 1833] +Triangle: [1791, 1832, 1831] +Triangle: [1775, 1831, 1830] +Triangle: [1829, 1830, 1738] +Triangle: [1776, 1829, 1828] +Triangle: [452, 1704, 1828] +Triangle: [1631, 1680, 1691] +Triangle: [1792, 1836, 1744] +Triangle: [1836, 1835, 1692] +Triangle: [1835, 1632, 1691] +Triangle: [1839, 1837, 1835] +Triangle: [1837, 1839, 1840] +Triangle: [1634, 1632, 1835] +Triangle: [1633, 1634, 1837] +Triangle: [1793, 1795, 1841] +Triangle: [1841, 1795, 1839] +Triangle: [1797, 1844, 1843] +Triangle: [1627, 1633, 1838] +Triangle: [1846, 1845, 1670] +Triangle: [1845, 1674, 1657] +Triangle: [1848, 1846, 1838] +Triangle: [1848, 1847, 1845] +Triangle: [1674, 1845, 1847] +Triangle: [1842, 1851, 1848] +Triangle: [1848, 1851, 1850] +Triangle: [1849, 1658, 1847] +Triangle: [1615, 1658, 1849] +Triangle: [1623, 1614, 1852] +Triangle: [1849, 1853, 1852] +Triangle: [1613, 1612, 1852] +Triangle: [1583, 1613, 1853] +Triangle: [1582, 1583, 1854] +Triangle: [1850, 1854, 1853] +Triangle: [1855, 1854, 1850] +Triangle: [1843, 1855, 1851] +Triangle: [1844, 1856, 1855] +Triangle: [1582, 1855, 1856] +Triangle: [1575, 1856, 1858] +Triangle: [1856, 1844, 1857] +Triangle: [1798, 1857, 1844] +Triangle: [1584, 1858, 1860] +Triangle: [1858, 1857, 1859] +Triangle: [1799, 1859, 1857] +Triangle: [1585, 1860, 1862] +Triangle: [1860, 1859, 1861] +Triangle: [1863, 1861, 1859] +Triangle: [1863, 1799, 1762] +Triangle: [1867, 1705, 453] +Triangle: [1867, 1866, 1777] +Triangle: [1772, 1777, 1866] +Triangle: [1770, 1866, 1865] +Triangle: [1865, 1864, 1768] +Triangle: [1864, 1863, 1764] +Triangle: [1863, 1864, 1871] +Triangle: [1864, 1865, 1870] +Triangle: [1865, 1866, 1869] +Triangle: [1867, 1868, 1869] +Triangle: [1868, 1867, 455] +Triangle: [454, 664, 1872] +Triangle: [1609, 1862, 1876] +Triangle: [1862, 1861, 1877] +Triangle: [1871, 1875, 1877] +Triangle: [1870, 1874, 1875] +Triangle: [1870, 1869, 1873] +Triangle: [1869, 1868, 1872] +Triangle: [1880, 1878, 1876] +Triangle: [1882, 1878, 1880] +Triangle: [673, 1879, 1881] +Triangle: [1879, 1882, 1883] +Triangle: [1608, 1876, 1878] +Triangle: [1889, 1890, 1611] +Triangle: [1601, 1886, 1888] +Triangle: [1888, 1889, 1607] +Triangle: [298, 1548, 1885] +Triangle: [1603, 1887, 1884] +Triangle: [1600, 1885, 1887] +Triangle: [1597, 1886, 1884] +Triangle: [1882, 1890, 1610] +Triangle: [1890, 1882, 1879] +Triangle: [369, 1611, 1879] +Triangle: [1875, 1874, 1893] +Triangle: [1874, 1873, 1892] +Triangle: [1891, 1872, 664] +Triangle: [1873, 1872, 1891] +Triangle: [1894, 1880, 1877] +Triangle: [1894, 1893, 1883] +Triangle: [1893, 1892, 1881] +Triangle: [1895, 1881, 1892] +Triangle: [693, 1895, 1891] +Triangle: [676, 1881, 1895] +Triangle: [1841, 1836, 1792] +Triangle: [358, 1603, 1602] +Triangle: [695, 1602, 1601] +Triangle: [210, 206, 1897] +Triangle: [1903, 1904, 1911] +Triangle: [1898, 1325, 1326] +Triangle: [1900, 1322, 1316] +Triangle: [1901, 1316, 1325] +Triangle: [1902, 1903, 1910] +Triangle: [1899, 1902, 1909] +Triangle: [1324, 1322, 1900] +Triangle: [1907, 1898, 1899] +Triangle: [1905, 1900, 1901] +Triangle: [1906, 1901, 1898] +Triangle: [1910, 1911, 2427] +Triangle: [1909, 1910, 2426] +Triangle: [1908, 1909, 2419] +Triangle: [1911, 1318, 2421] +Triangle: [1904, 1317, 1318] +Triangle: [1924, 1916, 1321] +Triangle: [1923, 1924, 1320] +Triangle: [1922, 1923, 1319] +Triangle: [1317, 1921, 1922] +Triangle: [1317, 1314, 1920] +Triangle: [1315, 1919, 1920] +Triangle: [1326, 1918, 1919] +Triangle: [1325, 1917, 1918] +Triangle: [1316, 1914, 1917] +Triangle: [1367, 1366, 1912] +Triangle: [1323, 1912, 1915] +Triangle: [1324, 1915, 1913] +Triangle: [1322, 1913, 1914] +Triangle: [1932, 1522, 262] +Triangle: [1933, 1521, 1522] +Triangle: [1931, 1520, 1521] +Triangle: [1930, 1519, 1520] +Triangle: [1929, 1516, 1519] +Triangle: [1929, 1928, 1515] +Triangle: [1928, 1927, 1517] +Triangle: [1927, 1926, 1514] +Triangle: [1926, 1925, 1518] +Triangle: [1925, 724, 257] +Triangle: [5227, 1932, 732] +Triangle: [5207, 1940, 1941] +Triangle: [1931, 1933, 5228] +Triangle: [5229, 5226, 1930] +Triangle: [5225, 1929, 1930] +Triangle: [5224, 1928, 1929] +Triangle: [5223, 1927, 1928] +Triangle: [5222, 1926, 1927] +Triangle: [5222, 5221, 1925] +Triangle: [724, 1925, 5221] +Triangle: [2375, 1956, 1944] +Triangle: [2377, 1994, 1957] +Triangle: [1967, 1968, 2315] +Triangle: [1982, 1975, 1976] +Triangle: [1970, 1969, 1988] +Triangle: [1981, 1976, 1977] +Triangle: [2281, 1947, 1948] +Triangle: [1959, 1960, 2384] +Triangle: [1997, 1996, 2381] +Triangle: [2001, 1945, 2287] +Triangle: [1993, 1964, 1973] +Triangle: [2374, 1962, 1963] +Triangle: [1943, 1997, 2382] +Triangle: [2278, 1949, 1947] +Triangle: [2195, 2308, 1006] +Triangle: [2088, 1984, 1983] +Triangle: [1983, 1974, 1975] +Triangle: [2002, 2004, 2034] +Triangle: [2090, 1981, 1980] +Triangle: [1985, 1987, 2085] +Triangle: [2084, 1983, 1982] +Triangle: [2329, 1973, 1964] +Triangle: [1989, 1990, 2091] +Triangle: [1992, 1965, 1964] +Triangle: [1980, 1977, 1978] +Triangle: [1986, 1985, 2093] +Triangle: [1990, 1991, 2094] +Triangle: [1979, 1986, 2092] +Triangle: [1991, 1992, 2082] +Triangle: [1985, 1972, 1970] +Triangle: [2082, 1992, 1993] +Triangle: [1968, 1967, 1990] +Triangle: [1987, 1988, 2095] +Triangle: [1979, 1978, 1971] +Triangle: [2089, 1982, 1981] +Triangle: [1966, 1965, 1992] +Triangle: [1986, 1971, 1972] +Triangle: [1984, 1973, 1974] +Triangle: [1980, 1979, 2083] +Triangle: [1967, 1966, 1991] +Triangle: [2086, 1993, 1984] +Triangle: [2275, 1998, 1999] +Triangle: [1955, 1954, 2282] +Triangle: [1952, 1951, 2279] +Triangle: [1954, 1953, 2289] +Triangle: [1953, 1952, 2280] +Triangle: [2385, 1963, 1995] +Triangle: [1958, 1959, 2380] +Triangle: [1960, 1961, 2387] +Triangle: [2000, 2001, 2285] +Triangle: [1945, 1946, 2276] +Triangle: [2283, 1999, 2000] +Triangle: [2288, 1950, 1949] +Triangle: [1944, 1943, 2376] +Triangle: [2002, 2003, 2005] +Triangle: [2003, 2002, 2006] +Triangle: [2065, 2010, 2007] +Triangle: [2010, 2065, 2066] +Triangle: [2003, 2007, 2010] +Triangle: [2003, 2008, 2009] +Triangle: [2013, 2066, 2064] +Triangle: [2010, 2013, 2011] +Triangle: [2009, 2008, 2011] +Triangle: [2011, 2013, 2014] +Triangle: [2059, 2018, 2019] +Triangle: [2019, 2017, 2058] +Triangle: [2068, 2078, 2061] +Triangle: [2030, 2029, 2016] +Triangle: [2017, 2016, 2063] +Triangle: [2032, 2030, 2017] +Triangle: [2004, 2005, 2021] +Triangle: [2023, 2022, 2020] +Triangle: [2023, 2025, 2094] +Triangle: [2025, 2027, 2091] +Triangle: [2021, 2024, 2025] +Triangle: [2005, 2009, 2024] +Triangle: [2027, 2028, 2096] +Triangle: [2024, 2026, 2027] +Triangle: [2009, 2012, 2026] +Triangle: [2014, 2027, 2026] +Triangle: [831, 818, 817] +Triangle: [2032, 2031, 2092] +Triangle: [2030, 2032, 2093] +Triangle: [2004, 2020, 2044] +Triangle: [2029, 2030, 2085] +Triangle: [2002, 2033, 2035] +Triangle: [2020, 2022, 2045] +Triangle: [2035, 2038, 2062] +Triangle: [2038, 2040, 2060] +Triangle: [2036, 2038, 2035] +Triangle: [2034, 2037, 2036] +Triangle: [2039, 2038, 2036] +Triangle: [2060, 2040, 2041] +Triangle: [2018, 2031, 2032] +Triangle: [2049, 2041, 2040] +Triangle: [2018, 2059, 2053] +Triangle: [2056, 2042, 2043] +Triangle: [2041, 2049, 2050] +Triangle: [2041, 2042, 2056] +Triangle: [2043, 2042, 2050] +Triangle: [2006, 2035, 2054] +Triangle: [2022, 2086, 2088] +Triangle: [2084, 2047, 2045] +Triangle: [2047, 2084, 2089] +Triangle: [2045, 2047, 2046] +Triangle: [2034, 2044, 2046] +Triangle: [2046, 2047, 2039] +Triangle: [2090, 2049, 2048] +Triangle: [2031, 2051, 2083] +Triangle: [2051, 2050, 2087] +Triangle: [2007, 2006, 2061] +Triangle: [2049, 2090, 2087] +Triangle: [2378, 1995, 1994] +Triangle: [2383, 1957, 1956] +Triangle: [2059, 2076, 2067] +Triangle: [2286, 2276, 1946] +Triangle: [2063, 2080, 2070] +Triangle: [2056, 2075, 2069] +Triangle: [2079, 2068, 2054] +Triangle: [2057, 2069, 2077] +Triangle: [2065, 2081, 2072] +Triangle: [2055, 2074, 2081] +Triangle: [2066, 2072, 2071] +Triangle: [2078, 2074, 2055] +Triangle: [2053, 2067, 2075] +Triangle: [2070, 2073, 2052] +Triangle: [2077, 2079, 2062] +Triangle: [2052, 2073, 2076] +Triangle: [2106, 2097, 2203] +Triangle: [2320, 2235, 2234] +Triangle: [2321, 2324, 2227] +Triangle: [2327, 2323, 2239] +Triangle: [2322, 2237, 2230] +Triangle: [2323, 2325, 2229] +Triangle: [2326, 2234, 2233] +Triangle: [2328, 2327, 2238] +Triangle: [2316, 2228, 2227] +Triangle: [2318, 2231, 2228] +Triangle: [2328, 2240, 2235] +Triangle: [2325, 2317, 2230] +Triangle: [2292, 2303, 2227] +Triangle: [2296, 2297, 2229] +Triangle: [2231, 2293, 2292] +Triangle: [2029, 2028, 2015] +Triangle: [2235, 2301, 2302] +Triangle: [2276, 2286, 2078] +Triangle: [2303, 2294, 2236] +Triangle: [2291, 2296, 2230] +Triangle: [2298, 2299, 2238] +Triangle: [2229, 2297, 2298] +Triangle: [2337, 2335, 2233] +Triangle: [2299, 2300, 2240] +Triangle: [2232, 2305, 2293] +Triangle: [2240, 2300, 2301] +Triangle: [917, 916, 1944] +Triangle: [916, 915, 1943] +Triangle: [920, 917, 1956] +Triangle: [2112, 1956, 1957] +Triangle: [920, 2112, 2113] +Triangle: [2232, 2315, 2319] +Triangle: [2161, 2249, 2250] +Triangle: [2170, 2174, 2120] +Triangle: [2206, 2197, 2190] +Triangle: [2122, 2253, 2252] +Triangle: [2124, 2254, 2253] +Triangle: [2126, 2256, 2255] +Triangle: [2178, 2128, 2330] +Triangle: [2130, 2259, 2258] +Triangle: [2244, 2160, 2142] +Triangle: [2183, 2184, 2140] +Triangle: [2134, 2261, 2260] +Triangle: [2136, 2262, 2261] +Triangle: [2138, 2263, 2262] +Triangle: [2138, 2140, 2264] +Triangle: [2243, 2142, 2266] +Triangle: [2144, 2268, 2267] +Triangle: [2142, 2147, 2269] +Triangle: [2148, 2270, 2268] +Triangle: [2150, 2271, 2270] +Triangle: [2150, 2152, 2272] +Triangle: [2152, 2154, 2273] +Triangle: [2168, 2172, 2156] +Triangle: [2250, 2274, 2156] +Triangle: [2169, 2167, 2166] +Triangle: [2115, 2251, 2249] +Triangle: [1950, 1951, 2388] +Triangle: [2163, 2147, 2142] +Triangle: [2130, 2132, 2260] +Triangle: [2183, 2138, 2136] +Triangle: [2182, 2136, 2134] +Triangle: [2181, 2134, 2132] +Triangle: [2130, 2179, 2180] +Triangle: [2179, 2130, 2333] +Triangle: [2130, 2128, 2333] +Triangle: [2147, 2163, 2226] +Triangle: [2124, 2176, 2216] +Triangle: [2122, 2175, 2176] +Triangle: [2122, 2120, 2174] +Triangle: [2190, 2185, 2172] +Triangle: [2274, 2273, 2154] +Triangle: [2115, 2161, 2171] +Triangle: [2114, 2185, 2171] +Triangle: [2114, 2156, 2172] +Triangle: [2173, 2172, 2168] +Triangle: [2167, 2169, 2119] +Triangle: [2154, 2152, 2167] +Triangle: [2152, 2150, 2166] +Triangle: [2150, 2148, 2165] +Triangle: [2144, 2164, 2165] +Triangle: [2099, 2187, 2186] +Triangle: [2189, 2188, 2159] +Triangle: [2191, 2190, 2197] +Triangle: [2171, 2185, 2190] +Triangle: [2217, 2194, 2193] +Triangle: [2308, 1943, 915] +Triangle: [2288, 2279, 1951] +Triangle: [2288, 2080, 2071] +Triangle: [2080, 2063, 2064] +Triangle: [2388, 2387, 1961] +Triangle: [2063, 2016, 2015] +Triangle: [2028, 2029, 2095] +Triangle: [2284, 1948, 1998] +Triangle: [2043, 2051, 2031] +Triangle: [2086, 2022, 2023] +Triangle: [2189, 2198, 2197] +Triangle: [2100, 2202, 2187] +Triangle: [2219, 2201, 2194] +Triangle: [2158, 2210, 2200] +Triangle: [2199, 2198, 2189] +Triangle: [2197, 2206, 2205] +Triangle: [2159, 2211, 2204] +Triangle: [2218, 2220, 2295] +Triangle: [2097, 2098, 2186] +Triangle: [2192, 2191, 2198] +Triangle: [2207, 2192, 2199] +Triangle: [2212, 2207, 2200] +Triangle: [2221, 2208, 2201] +Triangle: [2170, 2171, 2191] +Triangle: [2251, 2115, 2120] +Triangle: [2206, 2173, 2119] +Triangle: [2208, 2212, 2210] +Triangle: [2188, 2205, 2211] +Triangle: [2201, 2210, 2158] +Triangle: [2194, 2158, 2159] +Triangle: [2205, 2119, 2169] +Triangle: [2118, 2204, 2211] +Triangle: [2174, 2170, 2192] +Triangle: [2174, 2207, 2212] +Triangle: [2175, 2212, 2208] +Triangle: [2176, 2208, 2221] +Triangle: [2310, 2313, 2209] +Triangle: [2209, 2313, 2311] +Triangle: [2193, 2204, 2220] +Triangle: [2202, 2311, 2312] +Triangle: [2187, 2312, 2309] +Triangle: [2314, 2310, 2177] +Triangle: [2214, 2255, 2254] +Triangle: [2213, 2220, 2204] +Triangle: [2165, 2213, 2118] +Triangle: [2222, 2295, 2220] +Triangle: [2164, 2222, 2213] +Triangle: [2241, 2236, 2294] +Triangle: [2225, 2226, 2164] +Triangle: [2225, 2267, 2269] +Triangle: [2226, 2223, 2222] +Triangle: [2223, 2226, 2163] +Triangle: [2290, 2291, 2237] +Triangle: [2104, 2181, 2180] +Triangle: [2180, 2179, 2103] +Triangle: [2101, 2209, 2202] +Triangle: [2128, 2258, 2257] +Triangle: [2179, 2333, 2334] +Triangle: [2096, 2095, 1988] +Triangle: [2248, 2247, 2101] +Triangle: [2106, 2163, 2160] +Triangle: [2182, 2181, 2104] +Triangle: [2183, 2182, 2111] +Triangle: [2140, 2243, 2265] +Triangle: [2184, 2244, 2243] +Triangle: [2108, 2107, 2160] +Triangle: [2109, 2108, 2244] +Triangle: [2184, 2183, 2110] +Triangle: [2330, 2257, 2256] +Triangle: [2246, 2330, 2126] +Triangle: [2135, 2137, 2139] +Triangle: [2116, 2250, 2249] +Triangle: [2251, 2252, 2121] +Triangle: [2252, 2253, 2123] +Triangle: [2253, 2254, 2125] +Triangle: [2255, 2256, 2127] +Triangle: [2257, 2258, 2129] +Triangle: [2258, 2259, 2131] +Triangle: [2259, 2260, 2133] +Triangle: [2260, 2261, 2135] +Triangle: [2135, 2261, 2262] +Triangle: [2137, 2262, 2263] +Triangle: [2263, 2264, 2141] +Triangle: [2265, 2266, 2143] +Triangle: [2224, 2267, 2268] +Triangle: [2266, 2269, 2146] +Triangle: [2145, 2268, 2270] +Triangle: [2149, 2270, 2271] +Triangle: [2151, 2271, 2272] +Triangle: [2153, 2272, 2273] +Triangle: [2274, 2250, 2116] +Triangle: [2273, 2274, 2157] +Triangle: [2249, 2251, 2117] +Triangle: [2254, 2255, 2215] +Triangle: [2146, 2269, 2267] +Triangle: [2264, 2265, 2242] +Triangle: [2256, 2257, 2245] +Triangle: [2131, 2133, 2139] +Triangle: [2129, 2131, 2141] +Triangle: [2245, 2129, 2242] +Triangle: [2146, 2127, 2245] +Triangle: [2127, 2146, 2224] +Triangle: [2145, 2125, 2215] +Triangle: [2125, 2145, 2149] +Triangle: [2123, 2149, 2151] +Triangle: [2121, 2151, 2153] +Triangle: [2155, 2162, 2117] +Triangle: [2162, 2155, 2157] +Triangle: [2076, 2284, 2275] +Triangle: [2290, 2294, 2097] +Triangle: [2080, 2288, 2278] +Triangle: [2075, 2283, 2277] +Triangle: [2287, 2276, 2068] +Triangle: [2277, 2285, 2077] +Triangle: [2081, 2289, 2280] +Triangle: [2282, 2289, 2081] +Triangle: [2072, 2280, 2279] +Triangle: [2286, 2282, 2074] +Triangle: [2067, 2275, 2283] +Triangle: [2315, 1968, 1969] +Triangle: [2278, 2281, 2073] +Triangle: [2285, 2287, 2079] +Triangle: [2073, 2281, 2284] +Triangle: [2329, 2241, 2237] +Triangle: [2302, 2103, 2334] +Triangle: [2105, 2103, 2302] +Triangle: [2104, 2105, 2301] +Triangle: [2299, 2111, 2104] +Triangle: [2298, 2110, 2111] +Triangle: [2297, 2109, 2110] +Triangle: [2296, 2108, 2109] +Triangle: [2296, 2291, 2107] +Triangle: [2291, 2290, 2106] +Triangle: [2203, 2295, 2222] +Triangle: [2098, 2097, 2294] +Triangle: [2099, 2098, 2303] +Triangle: [2293, 2100, 2099] +Triangle: [2305, 2101, 2100] +Triangle: [2304, 2102, 2247] +Triangle: [1007, 1124, 2307] +Triangle: [2306, 2307, 1124] +Triangle: [2331, 2246, 2177] +Triangle: [2247, 2331, 2209] +Triangle: [1996, 1958, 2386] +Triangle: [2311, 2219, 2217] +Triangle: [2312, 2217, 2218] +Triangle: [2310, 2216, 2221] +Triangle: [2295, 2203, 2186] +Triangle: [2216, 2310, 2314] +Triangle: [2313, 2221, 2219] +Triangle: [1973, 2329, 2322] +Triangle: [2233, 2335, 2336] +Triangle: [1975, 2317, 2325] +Triangle: [1971, 2328, 2320] +Triangle: [1966, 1967, 2318] +Triangle: [1965, 1966, 2316] +Triangle: [1978, 2327, 2328] +Triangle: [2326, 2319, 1969] +Triangle: [1976, 2325, 2323] +Triangle: [1974, 2322, 2317] +Triangle: [1978, 1977, 2323] +Triangle: [1964, 1965, 2324] +Triangle: [1972, 2320, 2326] +Triangle: [2329, 2321, 2236] +Triangle: [2231, 2318, 2315] +Triangle: [1989, 1988, 1969] +Triangle: [2302, 2332, 2337] +Triangle: [2102, 2304, 2332] +Triangle: [2335, 2304, 2248] +Triangle: [2304, 2335, 2337] +Triangle: [2178, 2102, 2334] +Triangle: [2305, 2232, 2336] +Triangle: [2102, 2178, 2331] +Triangle: [2348, 2347, 2346] +Triangle: [2348, 2349, 1009] +Triangle: [2345, 2350, 2371] +Triangle: [2351, 2350, 2345] +Triangle: [2352, 1170, 921] +Triangle: [1170, 2352, 2348] +Triangle: [2347, 2348, 2352] +Triangle: [2353, 2352, 2113] +Triangle: [2354, 2346, 2347] +Triangle: [1994, 2354, 2353] +Triangle: [2346, 2354, 2355] +Triangle: [2356, 2344, 2345] +Triangle: [1995, 2355, 2354] +Triangle: [1963, 2356, 2355] +Triangle: [2344, 2356, 2357] +Triangle: [2342, 2343, 2357] +Triangle: [2341, 2342, 2358] +Triangle: [2340, 2341, 2359] +Triangle: [2339, 2340, 2360] +Triangle: [2357, 2356, 1963] +Triangle: [2358, 2357, 1962] +Triangle: [2359, 2358, 2196] +Triangle: [2360, 2359, 1961] +Triangle: [2361, 2360, 1960] +Triangle: [2363, 2338, 2339] +Triangle: [2363, 2361, 1959] +Triangle: [2362, 2338, 2363] +Triangle: [2364, 2306, 2363] +Triangle: [1996, 2365, 2364] +Triangle: [2307, 2306, 2364] +Triangle: [2195, 2307, 2365] +Triangle: [2366, 2365, 1996] +Triangle: [1997, 1943, 2308] +Triangle: [2362, 2306, 1125] +Triangle: [1186, 2338, 2362] +Triangle: [1934, 2338, 1186] +Triangle: [1935, 2339, 2338] +Triangle: [1936, 2340, 2339] +Triangle: [2341, 2340, 1936] +Triangle: [1938, 2342, 2341] +Triangle: [1939, 2343, 2342] +Triangle: [2367, 2343, 1939] +Triangle: [2367, 2351, 2344] +Triangle: [2368, 2367, 1942] +Triangle: [2369, 2351, 2367] +Triangle: [2350, 2351, 2369] +Triangle: [2349, 2346, 2371] +Triangle: [1009, 2349, 2372] +Triangle: [2350, 2370, 2372] +Triangle: [2368, 1941, 1940] +Triangle: [742, 923, 2373] +Triangle: [2369, 2368, 2373] +Triangle: [923, 1105, 2370] +Triangle: [2372, 2370, 1105] +Triangle: [2381, 2386, 1955] +Triangle: [1951, 1952, 2387] +Triangle: [2374, 2388, 2196] +Triangle: [1998, 2383, 2375] +Triangle: [1947, 2378, 2377] +Triangle: [2379, 2376, 2001] +Triangle: [2384, 2387, 1952] +Triangle: [2386, 2380, 1954] +Triangle: [1949, 2385, 2378] +Triangle: [2376, 2382, 1945] +Triangle: [1950, 2374, 2385] +Triangle: [2382, 2381, 1946] +Triangle: [2380, 2384, 1953] +Triangle: [1948, 2377, 2383] +Triangle: [1999, 2375, 2379] +Triangle: [1338, 2389, 2390] +Triangle: [1336, 2393, 2394] +Triangle: [1331, 1332, 2396] +Triangle: [1332, 1333, 2395] +Triangle: [1339, 1328, 2400] +Triangle: [1333, 1334, 2394] +Triangle: [1338, 1339, 2401] +Triangle: [1330, 1331, 2397] +Triangle: [1335, 2391, 2392] +Triangle: [1330, 2398, 2399] +Triangle: [1337, 2392, 2393] +Triangle: [1328, 1327, 2399] +Triangle: [1329, 2390, 2391] +Triangle: [2407, 2460, 1364] +Triangle: [2406, 2407, 1358] +Triangle: [2458, 2414, 1365] +Triangle: [1353, 2402, 2459] +Triangle: [2414, 2409, 1360] +Triangle: [2460, 2462, 1363] +Triangle: [1355, 2404, 2411] +Triangle: [1363, 2462, 2463] +Triangle: [1362, 2411, 2408] +Triangle: [1361, 2463, 2405] +Triangle: [1354, 2403, 2404] +Triangle: [2409, 2403, 1354] +Triangle: [2408, 2402, 1353] +Triangle: [2427, 2421, 2449] +Triangle: [2425, 2419, 2444] +Triangle: [2419, 2426, 2452] +Triangle: [2426, 2427, 2453] +Triangle: [2449, 2421, 2423] +Triangle: [2446, 2423, 2422] +Triangle: [2422, 2416, 2441] +Triangle: [2450, 2424, 2425] +Triangle: [2448, 2420, 2418] +Triangle: [2415, 2420, 2448] +Triangle: [2443, 2418, 2417] +Triangle: [2442, 2417, 2424] +Triangle: [2416, 2415, 2447] +Triangle: [2428, 2435, 1340] +Triangle: [1343, 2429, 2436] +Triangle: [1342, 2436, 2437] +Triangle: [2464, 2454, 1345] +Triangle: [1347, 2431, 2428] +Triangle: [2465, 2464, 1346] +Triangle: [1344, 2437, 2431] +Triangle: [2466, 2465, 1348] +Triangle: [2434, 2429, 1343] +Triangle: [2435, 2456, 1351] +Triangle: [2454, 2434, 1350] +Triangle: [1351, 2456, 2440] +Triangle: [1352, 2440, 2466] +Triangle: [1308, 2441, 2447] +Triangle: [1303, 2442, 2450] +Triangle: [1309, 2443, 2442] +Triangle: [2447, 2448, 1311] +Triangle: [2448, 2443, 1309] +Triangle: [1312, 2450, 2451] +Triangle: [2445, 2441, 1308] +Triangle: [2446, 2445, 1307] +Triangle: [2449, 2446, 1306] +Triangle: [1301, 2452, 2453] +Triangle: [1302, 2444, 2452] +Triangle: [1313, 2451, 2444] +Triangle: [2453, 2449, 1305] +Triangle: [2455, 2454, 2438] +Triangle: [2439, 2456, 2457] +Triangle: [2405, 2458, 2455] +Triangle: [2457, 2459, 2406] +Triangle: [2461, 2413, 2460] +Triangle: [2459, 2461, 2407] +Triangle: [2460, 2413, 2412] +Triangle: [2462, 2412, 2410] +Triangle: [2463, 2410, 2458] +Triangle: [2454, 2464, 2430] +Triangle: [2464, 2465, 2432] +Triangle: [2465, 2466, 2433] +Triangle: [2440, 2456, 2439] +Triangle: [2433, 2466, 2440] +Triangle: [2515, 2516, 2514] +Triangle: [2511, 2810, 2809] +Triangle: [2559, 2539, 2538] +Triangle: [2560, 2537, 2536] +Triangle: [2566, 2535, 2541] +Triangle: [2559, 2562, 2540] +Triangle: [2566, 2565, 2536] +Triangle: [2560, 2564, 2538] +Triangle: [2563, 2542, 2540] +Triangle: [2561, 2541, 2542] +Triangle: [2543, 2537, 2538] +Triangle: [2533, 2548, 2551] +Triangle: [2534, 2551, 2550] +Triangle: [2536, 2537, 2543] +Triangle: [2542, 2543, 2539] +Triangle: [2541, 2535, 2543] +Triangle: [2530, 2545, 2546] +Triangle: [2470, 2528, 2547] +Triangle: [2532, 2550, 2544] +Triangle: [2549, 2548, 2533] +Triangle: [2528, 2529, 2546] +Triangle: [2531, 2544, 2545] +Triangle: [2521, 2522, 2529] +Triangle: [2523, 2530, 2529] +Triangle: [2524, 2531, 2530] +Triangle: [2525, 2532, 2531] +Triangle: [2525, 2527, 2534] +Triangle: [2526, 2533, 2534] +Triangle: [2526, 2519, 2470] +Triangle: [2521, 2528, 2470] +Triangle: [2522, 2521, 2552] +Triangle: [2524, 2555, 2556] +Triangle: [2522, 2553, 2554] +Triangle: [2527, 2525, 2556] +Triangle: [2527, 2558, 2557] +Triangle: [2524, 2523, 2554] +Triangle: [2519, 2526, 2557] +Triangle: [2552, 2521, 2519] +Triangle: [2548, 2561, 2563] +Triangle: [2551, 2563, 2562] +Triangle: [2546, 2545, 2564] +Triangle: [2549, 2547, 2565] +Triangle: [2544, 2550, 2562] +Triangle: [2549, 2566, 2561] +Triangle: [2547, 2546, 2560] +Triangle: [2545, 2544, 2559] +Triangle: [2567, 2520, 2517] +Triangle: [2569, 2552, 2517] +Triangle: [2552, 2569, 2571] +Triangle: [2553, 2571, 2572] +Triangle: [2554, 2572, 2574] +Triangle: [2555, 2574, 2575] +Triangle: [2558, 2556, 2575] +Triangle: [2567, 2557, 2558] +Triangle: [2520, 2518, 2585] +Triangle: [2494, 2518, 2520] +Triangle: [2567, 2576, 2590] +Triangle: [2576, 2575, 2589] +Triangle: [2574, 2588, 2589] +Triangle: [2572, 2587, 2588] +Triangle: [2586, 2587, 2572] +Triangle: [2569, 2585, 2586] +Triangle: [2568, 2570, 2586] +Triangle: [2480, 2514, 2570] +Triangle: [2586, 2570, 2573] +Triangle: [2516, 2573, 2570] +Triangle: [2581, 2597, 2598] +Triangle: [2597, 2599, 2600] +Triangle: [2646, 2626, 2625] +Triangle: [2647, 2624, 2623] +Triangle: [2653, 2622, 2628] +Triangle: [2646, 2649, 2627] +Triangle: [2653, 2652, 2623] +Triangle: [2647, 2651, 2625] +Triangle: [2650, 2629, 2627] +Triangle: [2648, 2628, 2629] +Triangle: [2630, 2624, 2625] +Triangle: [2620, 2635, 2638] +Triangle: [2621, 2638, 2637] +Triangle: [2623, 2624, 2630] +Triangle: [2629, 2630, 2626] +Triangle: [2628, 2622, 2630] +Triangle: [2617, 2632, 2633] +Triangle: [2604, 2615, 2634] +Triangle: [2618, 2619, 2637] +Triangle: [2604, 2636, 2635] +Triangle: [2615, 2616, 2633] +Triangle: [2618, 2631, 2632] +Triangle: [2609, 2616, 2615] +Triangle: [2610, 2617, 2616] +Triangle: [2611, 2618, 2617] +Triangle: [2612, 2619, 2618] +Triangle: [2612, 2614, 2621] +Triangle: [2614, 2613, 2620] +Triangle: [2613, 2606, 2604] +Triangle: [2608, 2615, 2604] +Triangle: [2608, 2639, 2640] +Triangle: [2612, 2611, 2642] +Triangle: [2609, 2640, 2641] +Triangle: [2614, 2612, 2643] +Triangle: [2613, 2614, 2645] +Triangle: [2611, 2610, 2641] +Triangle: [2606, 2613, 2644] +Triangle: [2639, 2608, 2606] +Triangle: [2635, 2648, 2650] +Triangle: [2638, 2650, 2649] +Triangle: [2633, 2632, 2651] +Triangle: [2636, 2634, 2652] +Triangle: [2631, 2637, 2649] +Triangle: [2636, 2653, 2648] +Triangle: [2634, 2633, 2647] +Triangle: [2632, 2631, 2646] +Triangle: [2708, 2800, 2806] +Triangle: [2793, 2639, 2605] +Triangle: [2655, 2793, 2791] +Triangle: [2798, 2793, 2655] +Triangle: [2794, 2798, 2583] +Triangle: [2794, 2657, 2658] +Triangle: [2796, 2795, 2658] +Triangle: [2792, 2644, 2645] +Triangle: [2700, 2680, 2679] +Triangle: [2701, 2678, 2677] +Triangle: [2707, 2676, 2682] +Triangle: [2700, 2703, 2681] +Triangle: [2707, 2706, 2677] +Triangle: [2701, 2705, 2679] +Triangle: [2704, 2683, 2681] +Triangle: [2702, 2682, 2683] +Triangle: [2684, 2678, 2679] +Triangle: [2675, 2674, 2689] +Triangle: [2675, 2692, 2691] +Triangle: [2676, 2677, 2678] +Triangle: [2683, 2684, 2680] +Triangle: [2682, 2676, 2684] +Triangle: [2671, 2686, 2687] +Triangle: [2473, 2669, 2688] +Triangle: [2673, 2691, 2685] +Triangle: [2690, 2689, 2674] +Triangle: [2670, 2687, 2688] +Triangle: [2672, 2685, 2686] +Triangle: [2663, 2670, 2669] +Triangle: [2664, 2671, 2670] +Triangle: [2665, 2672, 2671] +Triangle: [2665, 2666, 2673] +Triangle: [2666, 2668, 2675] +Triangle: [2668, 2667, 2674] +Triangle: [2667, 2468, 2473] +Triangle: [2662, 2669, 2473] +Triangle: [2662, 2693, 2694] +Triangle: [2666, 2665, 2696] +Triangle: [2663, 2694, 2695] +Triangle: [2668, 2666, 2697] +Triangle: [2667, 2668, 2699] +Triangle: [2665, 2664, 2695] +Triangle: [2468, 2667, 2698] +Triangle: [2693, 2662, 2468] +Triangle: [2689, 2702, 2704] +Triangle: [2692, 2704, 2703] +Triangle: [2686, 2705, 2701] +Triangle: [2690, 2688, 2706] +Triangle: [2685, 2691, 2703] +Triangle: [2690, 2707, 2702] +Triangle: [2688, 2687, 2701] +Triangle: [2685, 2700, 2705] +Triangle: [2768, 2767, 2602] +Triangle: [2801, 2693, 2471] +Triangle: [2709, 2801, 2799] +Triangle: [2801, 2709, 2710] +Triangle: [2802, 2710, 2711] +Triangle: [2803, 2711, 2712] +Triangle: [2805, 2804, 2712] +Triangle: [2800, 2698, 2699] +Triangle: [2756, 2736, 2735] +Triangle: [2757, 2734, 2733] +Triangle: [2763, 2732, 2738] +Triangle: [2756, 2759, 2737] +Triangle: [2763, 2762, 2733] +Triangle: [2757, 2761, 2735] +Triangle: [2760, 2739, 2737] +Triangle: [2758, 2738, 2739] +Triangle: [2734, 2735, 2736] +Triangle: [2730, 2745, 2748] +Triangle: [2729, 2731, 2748] +Triangle: [2733, 2734, 2740] +Triangle: [2739, 2740, 2736] +Triangle: [2739, 2738, 2732] +Triangle: [2727, 2742, 2743] +Triangle: [2725, 2744, 2746] +Triangle: [2729, 2747, 2741] +Triangle: [2717, 2746, 2745] +Triangle: [2726, 2743, 2744] +Triangle: [2728, 2741, 2742] +Triangle: [2719, 2726, 2725] +Triangle: [2720, 2727, 2726] +Triangle: [2721, 2728, 2727] +Triangle: [2721, 2722, 2729] +Triangle: [2722, 2724, 2731] +Triangle: [2724, 2723, 2730] +Triangle: [2723, 2715, 2717] +Triangle: [2718, 2725, 2717] +Triangle: [2718, 2749, 2750] +Triangle: [2722, 2721, 2752] +Triangle: [2719, 2750, 2751] +Triangle: [2724, 2722, 2753] +Triangle: [2723, 2724, 2755] +Triangle: [2720, 2751, 2752] +Triangle: [2715, 2723, 2754] +Triangle: [2749, 2718, 2715] +Triangle: [2745, 2758, 2760] +Triangle: [2747, 2748, 2760] +Triangle: [2743, 2742, 2761] +Triangle: [2746, 2744, 2762] +Triangle: [2741, 2747, 2759] +Triangle: [2746, 2763, 2758] +Triangle: [2743, 2757, 2762] +Triangle: [2742, 2741, 2756] +Triangle: [2809, 2749, 2716] +Triangle: [2495, 2497, 2807] +Triangle: [2496, 2809, 2807] +Triangle: [2812, 2820, 2817] +Triangle: [2817, 2816, 2814] +Triangle: [2754, 2755, 2814] +Triangle: [2582, 2655, 2580] +Triangle: [2582, 2598, 2583] +Triangle: [2657, 2583, 2598] +Triangle: [2494, 2590, 2597] +Triangle: [2578, 2581, 2582] +Triangle: [2581, 2578, 2577] +Triangle: [2577, 2584, 2518] +Triangle: [2518, 2584, 2568] +Triangle: [2580, 2655, 2607] +Triangle: [2656, 2764, 2607] +Triangle: [2481, 2480, 2568] +Triangle: [2584, 2577, 2479] +Triangle: [2472, 2469, 2483] +Triangle: [2480, 2481, 2477] +Triangle: [2504, 2502, 2578] +Triangle: [2475, 2482, 2505] +Triangle: [2502, 2479, 2577] +Triangle: [2503, 2504, 2483] +Triangle: [2504, 2579, 2580] +Triangle: [2503, 2501, 2502] +Triangle: [2483, 2580, 2764] +Triangle: [2488, 2487, 2486] +Triangle: [2477, 2481, 2479] +Triangle: [2484, 2764, 2656] +Triangle: [2601, 2599, 2597] +Triangle: [2589, 2594, 2601] +Triangle: [2588, 2591, 2594] +Triangle: [2591, 2588, 2587] +Triangle: [2599, 2771, 2772] +Triangle: [2772, 2767, 2657] +Triangle: [2601, 2602, 2771] +Triangle: [2771, 2602, 2767] +Triangle: [2776, 2778, 2777] +Triangle: [2773, 2779, 2780] +Triangle: [2774, 2780, 2777] +Triangle: [2659, 2775, 2779] +Triangle: [2779, 2775, 2777] +Triangle: [2784, 2786, 2785] +Triangle: [2785, 2786, 2782] +Triangle: [2815, 2713, 2785] +Triangle: [2496, 2491, 2512] +Triangle: [2485, 2508, 2507] +Triangle: [2482, 2656, 2765] +Triangle: [2505, 2765, 2766] +Triangle: [2796, 2659, 2660] +Triangle: [2792, 2654, 2607] +Triangle: [2806, 2805, 2713] +Triangle: [2708, 2661, 2799] +Triangle: [2816, 2495, 2808] +Triangle: [2811, 2843, 2820] +Triangle: [2513, 2514, 2480] +Triangle: [2509, 2510, 2487] +Triangle: [2479, 2502, 2501] +Triangle: [2485, 2489, 2490] +Triangle: [2511, 2512, 2510] +Triangle: [2506, 2505, 2507] +Triangle: [2497, 2492, 2491] +Triangle: [2492, 2497, 2495] +Triangle: [2816, 2818, 2493] +Triangle: [2788, 2787, 2490] +Triangle: [2507, 2766, 2788] +Triangle: [2661, 2787, 2788] +Triangle: [2766, 2823, 2709] +Triangle: [2789, 2488, 2490] +Triangle: [2708, 2789, 2787] +Triangle: [2488, 2789, 2790] +Triangle: [2714, 2790, 2789] +Triangle: [2644, 2792, 2791] +Triangle: [2640, 2639, 2793] +Triangle: [2641, 2640, 2798] +Triangle: [2641, 2794, 2795] +Triangle: [2643, 2642, 2795] +Triangle: [2645, 2643, 2796] +Triangle: [2698, 2800, 2799] +Triangle: [2694, 2693, 2801] +Triangle: [2694, 2802, 2803] +Triangle: [2696, 2695, 2803] +Triangle: [2697, 2696, 2804] +Triangle: [2697, 2805, 2806] +Triangle: [2808, 2807, 2716] +Triangle: [2749, 2809, 2810] +Triangle: [2750, 2810, 2811] +Triangle: [2751, 2811, 2812] +Triangle: [2753, 2752, 2812] +Triangle: [2755, 2753, 2813] +Triangle: [2781, 2509, 2790] +Triangle: [2815, 2790, 2714] +Triangle: [2781, 2782, 2511] +Triangle: [2817, 2819, 2818] +Triangle: [2819, 2817, 2820] +Triangle: [2770, 2776, 2775] +Triangle: [2654, 2792, 2797] +Triangle: [2769, 2775, 2659] +Triangle: [2657, 2767, 2769] +Triangle: [2770, 2769, 2767] +Triangle: [2826, 2777, 2778] +Triangle: [2822, 2823, 2766] +Triangle: [2825, 2823, 2822] +Triangle: [2656, 2654, 2822] +Triangle: [2774, 2825, 2824] +Triangle: [2654, 2660, 2824] +Triangle: [2773, 2824, 2660] +Triangle: [2710, 2825, 2774] +Triangle: [2823, 2825, 2710] +Triangle: [2712, 2711, 2777] +Triangle: [2783, 2785, 2826] +Triangle: [2713, 2712, 2826] +Triangle: [2593, 2592, 2516] +Triangle: [2810, 2782, 2786] +Triangle: [2836, 2469, 2472] +Triangle: [2830, 2829, 2476] +Triangle: [2831, 2503, 2469] +Triangle: [2498, 2472, 2475] +Triangle: [2831, 2830, 2501] +Triangle: [2477, 2476, 2829] +Triangle: [2508, 2833, 2832] +Triangle: [2838, 2485, 2486] +Triangle: [2485, 2838, 2833] +Triangle: [2832, 2837, 2475] +Triangle: [2512, 2835, 2834] +Triangle: [2840, 2491, 2492] +Triangle: [2491, 2840, 2835] +Triangle: [2834, 2839, 2487] +Triangle: [2499, 2486, 2487] +Triangle: [2500, 2492, 2493] +Triangle: [2818, 2845, 2844] +Triangle: [2828, 2841, 2513] +Triangle: [2835, 2840, 2839] +Triangle: [2838, 2837, 2832] +Triangle: [2836, 2829, 2830] +Triangle: [2513, 2841, 2842] +Triangle: [2819, 2846, 2845] +Triangle: [2592, 2591, 2573] +Triangle: [2596, 2595, 2592] +Triangle: [2595, 2594, 2591] +Triangle: [2603, 2602, 2595] +Triangle: [2602, 2601, 2594] +Triangle: [2811, 2786, 2784] +Triangle: [2482, 2475, 2472] +Triangle: [2821, 2847, 2846] +Triangle: [2868, 2866, 2596] +Triangle: [2852, 2851, 2853] +Triangle: [2, 8, 2850] +Triangle: [10, 2851, 2850] +Triangle: [9, 2853, 2851] +Triangle: [2829, 2836, 2856] +Triangle: [2853, 9, 7] +Triangle: [2858, 2854, 2853] +Triangle: [2859, 2858, 2857] +Triangle: [2862, 2859, 2860] +Triangle: [2863, 2862, 2861] +Triangle: [2863, 2864, 3018] +Triangle: [2865, 2866, 2868] +Triangle: [2868, 2593, 2515] +Triangle: [2867, 2868, 2842] +Triangle: [2870, 2869, 2842] +Triangle: [2841, 2828, 2874] +Triangle: [2875, 2871, 2870] +Triangle: [2891, 2876, 2872] +Triangle: [2872, 2876, 2877] +Triangle: [2854, 2879, 2878] +Triangle: [2894, 2878, 2879] +Triangle: [2474, 2881, 2874] +Triangle: [2829, 2855, 2881] +Triangle: [2882, 2856, 2836] +Triangle: [2837, 2883, 2882] +Triangle: [2838, 2884, 2883] +Triangle: [2499, 2839, 2886] +Triangle: [2885, 2884, 2838] +Triangle: [2840, 2887, 2886] +Triangle: [2500, 2888, 2887] +Triangle: [2478, 2477, 2474] +Triangle: [2871, 2875, 2891] +Triangle: [2875, 2874, 2848] +Triangle: [2889, 2876, 2891] +Triangle: [2877, 2876, 2894] +Triangle: [2889, 2893, 2894] +Triangle: [2881, 2892, 2848] +Triangle: [2889, 2848, 2892] +Triangle: [2855, 2896, 2892] +Triangle: [2892, 2896, 2898] +Triangle: [2878, 2894, 2893] +Triangle: [2852, 2878, 2898] +Triangle: [2899, 2850, 2851] +Triangle: [2897, 2899, 2898] +Triangle: [2899, 2897, 2849] +Triangle: [2856, 2882, 2883] +Triangle: [2884, 2901, 2900] +Triangle: [2900, 2896, 2855] +Triangle: [2849, 2897, 2903] +Triangle: [2902, 2903, 2905] +Triangle: [2897, 2896, 2900] +Triangle: [2901, 2905, 2903] +Triangle: [2902, 11, 2] +Triangle: [11, 2902, 2904] +Triangle: [2885, 2886, 2887] +Triangle: [2885, 2908, 2901] +Triangle: [2905, 2901, 2908] +Triangle: [2910, 2904, 2905] +Triangle: [2888, 2906, 2908] +Triangle: [2909, 2908, 2906] +Triangle: [2909, 2907, 2911] +Triangle: [12, 2904, 2910] +Triangle: [0, 1, 2910] +Triangle: [2844, 2916, 2888] +Triangle: [2888, 2916, 2917] +Triangle: [2906, 2917, 2918] +Triangle: [2907, 2918, 2919] +Triangle: [2911, 2919, 2920] +Triangle: [3, 0, 2920] +Triangle: [2922, 4, 3] +Triangle: [2845, 2915, 2916] +Triangle: [2917, 2916, 2915] +Triangle: [2918, 2917, 2914] +Triangle: [2919, 2918, 2913] +Triangle: [2920, 2919, 2912] +Triangle: [2912, 2923, 2922] +Triangle: [2924, 2923, 2912] +Triangle: [2925, 2924, 2913] +Triangle: [2915, 2926, 2925] +Triangle: [2846, 2926, 2915] +Triangle: [2929, 4, 2922] +Triangle: [2924, 2928, 2929] +Triangle: [2925, 2927, 2928] +Triangle: [2926, 2930, 2927] +Triangle: [2930, 2926, 2846] +Triangle: [4, 2929, 2931] +Triangle: [5, 2931, 2932] +Triangle: [6, 2932, 2857] +Triangle: [2931, 2933, 2934] +Triangle: [2935, 2936, 2934] +Triangle: [2932, 2934, 2860] +Triangle: [2860, 2934, 2936] +Triangle: [2928, 2933, 2931] +Triangle: [2927, 2935, 2933] +Triangle: [2877, 2938, 2937] +Triangle: [2939, 2938, 2877] +Triangle: [2880, 2939, 2895] +Triangle: [2858, 2880, 2879] +Triangle: [2940, 2880, 2858] +Triangle: [2941, 2940, 2859] +Triangle: [2939, 2880, 2940] +Triangle: [2941, 2943, 2942] +Triangle: [2938, 2939, 2942] +Triangle: [2944, 2937, 2938] +Triangle: [2978, 2965, 2964] +Triangle: [2984, 2979, 2963] +Triangle: [2985, 2961, 2967] +Triangle: [2978, 2981, 2966] +Triangle: [2985, 2984, 2962] +Triangle: [2979, 2983, 2964] +Triangle: [2982, 2968, 2966] +Triangle: [2980, 2967, 2968] +Triangle: [2969, 2963, 2964] +Triangle: [2959, 2974, 2977] +Triangle: [2960, 2977, 2976] +Triangle: [2962, 2963, 2969] +Triangle: [2966, 2968, 2969] +Triangle: [2967, 2961, 2969] +Triangle: [2956, 2971, 2972] +Triangle: [2954, 2973, 2975] +Triangle: [2958, 2976, 2970] +Triangle: [2952, 2975, 2974] +Triangle: [2954, 2955, 2972] +Triangle: [2957, 2970, 2971] +Triangle: [2986, 2987, 2955] +Triangle: [2988, 2956, 2955] +Triangle: [2989, 2957, 2956] +Triangle: [2990, 2958, 2957] +Triangle: [2990, 2991, 2960] +Triangle: [2992, 2959, 2960] +Triangle: [2992, 2993, 2952] +Triangle: [2986, 2954, 2952] +Triangle: [2974, 2980, 2982] +Triangle: [2977, 2982, 2981] +Triangle: [2972, 2971, 2983] +Triangle: [2975, 2973, 2984] +Triangle: [2970, 2976, 2981] +Triangle: [2975, 2985, 2980] +Triangle: [2973, 2972, 2979] +Triangle: [2971, 2970, 2978] +Triangle: [2950, 2986, 2993] +Triangle: [2945, 2951, 2993] +Triangle: [2945, 2992, 2991] +Triangle: [2946, 2953, 2991] +Triangle: [2946, 2990, 2989] +Triangle: [2947, 2989, 2988] +Triangle: [2948, 2988, 2987] +Triangle: [2950, 2949, 2987] +Triangle: [2946, 2995, 3001] +Triangle: [2951, 2945, 2994] +Triangle: [2948, 2949, 2998] +Triangle: [2947, 2996, 2995] +Triangle: [2953, 3001, 2994] +Triangle: [2951, 3000, 2999] +Triangle: [2949, 2950, 2999] +Triangle: [2947, 2948, 2997] +Triangle: [2869, 3009, 3003] +Triangle: [3010, 3009, 2869] +Triangle: [2871, 3011, 3010] +Triangle: [3002, 3009, 3010] +Triangle: [2890, 3012, 3011] +Triangle: [3008, 3002, 3011] +Triangle: [2872, 2873, 3012] +Triangle: [3013, 3007, 3008] +Triangle: [3013, 3012, 2873] +Triangle: [2867, 3003, 3017] +Triangle: [3019, 3018, 2866] +Triangle: [3004, 3016, 3017] +Triangle: [3004, 3005, 3015] +Triangle: [3005, 3006, 3014] +Triangle: [3006, 3007, 3013] +Triangle: [3014, 3013, 2937] +Triangle: [3015, 3014, 2944] +Triangle: [3020, 2944, 2943] +Triangle: [3009, 3001, 2995] +Triangle: [3002, 2994, 3001] +Triangle: [3008, 3000, 2994] +Triangle: [3007, 2999, 3000] +Triangle: [3007, 3006, 2998] +Triangle: [3006, 3005, 2997] +Triangle: [3004, 2996, 2997] +Triangle: [3003, 2995, 2996] +Triangle: [3017, 3016, 3019] +Triangle: [3016, 3015, 3020] +Triangle: [3021, 2941, 2862] +Triangle: [3019, 3016, 3021] +Triangle: [2936, 3022, 2864] +Triangle: [2596, 2866, 3023] +Triangle: [3024, 3023, 2866] +Triangle: [3018, 2864, 3022] +Triangle: [3026, 3025, 3027] +Triangle: [3025, 3026, 3024] +Triangle: [2768, 3028, 3027] +Triangle: [3023, 3024, 3026] +Triangle: [2603, 3023, 3028] +Triangle: [2776, 2770, 3027] +Triangle: [2776, 3029, 3031] +Triangle: [3031, 3030, 2827] +Triangle: [3025, 3032, 3029] +Triangle: [3034, 3032, 3025] +Triangle: [3034, 3022, 3035] +Triangle: [3035, 3022, 2936] +Triangle: [2930, 3035, 2935] +Triangle: [3036, 3033, 3035] +Triangle: [3036, 2930, 2847] +Triangle: [2784, 3039, 3040] +Triangle: [2783, 2827, 3030] +Triangle: [2783, 3038, 3039] +Triangle: [2843, 3040, 2821] +Triangle: [2821, 3040, 3037] +Triangle: [3029, 3038, 3030] +Triangle: [3041, 3032, 3034] +Triangle: [3033, 3036, 3037] +Triangle: [3032, 3041, 3038] +Triangle: [3038, 3041, 3042] +Triangle: [3042, 3037, 3040] +Triangle: [3089, 3091, 3090] +Triangle: [3383, 3384, 3086] +Triangle: [3113, 3114, 3134] +Triangle: [3111, 3112, 3135] +Triangle: [3141, 3136, 3116] +Triangle: [3134, 3114, 3115] +Triangle: [3141, 3110, 3111] +Triangle: [3135, 3112, 3113] +Triangle: [3115, 3117, 3138] +Triangle: [3117, 3116, 3136] +Triangle: [3118, 3114, 3113] +Triangle: [3126, 3123, 3108] +Triangle: [3125, 3126, 3109] +Triangle: [3118, 3112, 3111] +Triangle: [3114, 3118, 3117] +Triangle: [3118, 3110, 3116] +Triangle: [3121, 3120, 3105] +Triangle: [3045, 3124, 3122] +Triangle: [3119, 3125, 3107] +Triangle: [3108, 3123, 3124] +Triangle: [3103, 3122, 3121] +Triangle: [3120, 3119, 3106] +Triangle: [3096, 3103, 3104] +Triangle: [3104, 3105, 3098] +Triangle: [3105, 3106, 3099] +Triangle: [3106, 3107, 3100] +Triangle: [3100, 3107, 3109] +Triangle: [3109, 3108, 3101] +Triangle: [3101, 3108, 3045] +Triangle: [3045, 3103, 3096] +Triangle: [3097, 3128, 3127] +Triangle: [3131, 3130, 3099] +Triangle: [3129, 3128, 3097] +Triangle: [3102, 3133, 3131] +Triangle: [3132, 3133, 3102] +Triangle: [3099, 3130, 3129] +Triangle: [3094, 3092, 3132] +Triangle: [3094, 3096, 3127] +Triangle: [3138, 3136, 3123] +Triangle: [3137, 3138, 3126] +Triangle: [3121, 3135, 3139] +Triangle: [3124, 3141, 3140] +Triangle: [3119, 3134, 3137] +Triangle: [3124, 3123, 3136] +Triangle: [3122, 3140, 3135] +Triangle: [3120, 3139, 3134] +Triangle: [3092, 3095, 3142] +Triangle: [3092, 3127, 3144] +Triangle: [3146, 3144, 3127] +Triangle: [3147, 3146, 3128] +Triangle: [3149, 3147, 3129] +Triangle: [3150, 3149, 3130] +Triangle: [3133, 3151, 3150] +Triangle: [3142, 3151, 3133] +Triangle: [3095, 3144, 3160] +Triangle: [3095, 3093, 3069] +Triangle: [3165, 3151, 3142] +Triangle: [3151, 3165, 3164] +Triangle: [3164, 3163, 3149] +Triangle: [3163, 3162, 3147] +Triangle: [3161, 3146, 3147] +Triangle: [3144, 3146, 3161] +Triangle: [3161, 3145, 3143] +Triangle: [3145, 3089, 3055] +Triangle: [3148, 3145, 3161] +Triangle: [3145, 3148, 3091] +Triangle: [3156, 3157, 3173] +Triangle: [3172, 3173, 3175] +Triangle: [3200, 3201, 3221] +Triangle: [3198, 3199, 3222] +Triangle: [3228, 3223, 3203] +Triangle: [3221, 3201, 3202] +Triangle: [3228, 3197, 3198] +Triangle: [3222, 3199, 3200] +Triangle: [3202, 3204, 3225] +Triangle: [3204, 3203, 3223] +Triangle: [3205, 3201, 3200] +Triangle: [3213, 3210, 3195] +Triangle: [3212, 3213, 3196] +Triangle: [3205, 3199, 3198] +Triangle: [3201, 3205, 3204] +Triangle: [3205, 3197, 3203] +Triangle: [3208, 3207, 3192] +Triangle: [3179, 3211, 3209] +Triangle: [3193, 3206, 3212] +Triangle: [3179, 3195, 3210] +Triangle: [3190, 3209, 3208] +Triangle: [3207, 3206, 3193] +Triangle: [3190, 3191, 3184] +Triangle: [3191, 3192, 3185] +Triangle: [3192, 3193, 3186] +Triangle: [3193, 3194, 3187] +Triangle: [3187, 3194, 3196] +Triangle: [3189, 3196, 3195] +Triangle: [3188, 3195, 3179] +Triangle: [3179, 3190, 3183] +Triangle: [3215, 3214, 3183] +Triangle: [3187, 3218, 3217] +Triangle: [3216, 3215, 3184] +Triangle: [3189, 3220, 3218] +Triangle: [3188, 3219, 3220] +Triangle: [3186, 3217, 3216] +Triangle: [3181, 3180, 3219] +Triangle: [3181, 3183, 3214] +Triangle: [3225, 3223, 3210] +Triangle: [3224, 3225, 3213] +Triangle: [3208, 3222, 3226] +Triangle: [3211, 3228, 3227] +Triangle: [3206, 3221, 3224] +Triangle: [3211, 3210, 3223] +Triangle: [3209, 3227, 3222] +Triangle: [3207, 3226, 3221] +Triangle: [3283, 3289, 3380] +Triangle: [3180, 3214, 3367] +Triangle: [3230, 3182, 3365] +Triangle: [3372, 3158, 3230] +Triangle: [3368, 3232, 3158] +Triangle: [3233, 3232, 3368] +Triangle: [3370, 3234, 3233] +Triangle: [3366, 3371, 3220] +Triangle: [3254, 3255, 3275] +Triangle: [3252, 3253, 3276] +Triangle: [3282, 3277, 3257] +Triangle: [3275, 3255, 3256] +Triangle: [3282, 3251, 3252] +Triangle: [3276, 3253, 3254] +Triangle: [3256, 3258, 3279] +Triangle: [3258, 3257, 3277] +Triangle: [3259, 3255, 3254] +Triangle: [3250, 3267, 3264] +Triangle: [3266, 3267, 3250] +Triangle: [3251, 3259, 3253] +Triangle: [3255, 3259, 3258] +Triangle: [3259, 3251, 3257] +Triangle: [3262, 3261, 3246] +Triangle: [3048, 3265, 3263] +Triangle: [3260, 3266, 3248] +Triangle: [3249, 3264, 3265] +Triangle: [3263, 3262, 3245] +Triangle: [3261, 3260, 3247] +Triangle: [3244, 3245, 3238] +Triangle: [3245, 3246, 3239] +Triangle: [3246, 3247, 3240] +Triangle: [3240, 3247, 3248] +Triangle: [3241, 3248, 3250] +Triangle: [3243, 3250, 3249] +Triangle: [3242, 3249, 3048] +Triangle: [3048, 3244, 3237] +Triangle: [3269, 3268, 3237] +Triangle: [3241, 3272, 3271] +Triangle: [3270, 3269, 3238] +Triangle: [3243, 3274, 3272] +Triangle: [3242, 3273, 3274] +Triangle: [3240, 3271, 3270] +Triangle: [3043, 3046, 3273] +Triangle: [3043, 3237, 3268] +Triangle: [3279, 3277, 3264] +Triangle: [3278, 3279, 3267] +Triangle: [3276, 3280, 3261] +Triangle: [3265, 3282, 3281] +Triangle: [3260, 3275, 3278] +Triangle: [3265, 3264, 3277] +Triangle: [3263, 3281, 3276] +Triangle: [3280, 3275, 3260] +Triangle: [3177, 3342, 3343] +Triangle: [3046, 3268, 3375] +Triangle: [3284, 3236, 3373] +Triangle: [3285, 3284, 3375] +Triangle: [3286, 3285, 3376] +Triangle: [3287, 3286, 3377] +Triangle: [3379, 3288, 3287] +Triangle: [3374, 3380, 3274] +Triangle: [3310, 3311, 3331] +Triangle: [3308, 3309, 3332] +Triangle: [3338, 3333, 3313] +Triangle: [3331, 3311, 3312] +Triangle: [3338, 3307, 3308] +Triangle: [3332, 3309, 3310] +Triangle: [3312, 3314, 3335] +Triangle: [3314, 3313, 3333] +Triangle: [3311, 3310, 3309] +Triangle: [3323, 3320, 3305] +Triangle: [3304, 3322, 3323] +Triangle: [3315, 3309, 3308] +Triangle: [3311, 3315, 3314] +Triangle: [3314, 3315, 3307] +Triangle: [3318, 3317, 3302] +Triangle: [3321, 3319, 3300] +Triangle: [3316, 3322, 3304] +Triangle: [3292, 3305, 3320] +Triangle: [3319, 3318, 3301] +Triangle: [3317, 3316, 3303] +Triangle: [3300, 3301, 3294] +Triangle: [3301, 3302, 3295] +Triangle: [3302, 3303, 3296] +Triangle: [3296, 3303, 3304] +Triangle: [3297, 3304, 3306] +Triangle: [3299, 3306, 3305] +Triangle: [3298, 3305, 3292] +Triangle: [3292, 3300, 3293] +Triangle: [3325, 3324, 3293] +Triangle: [3297, 3328, 3327] +Triangle: [3326, 3325, 3294] +Triangle: [3299, 3330, 3328] +Triangle: [3298, 3329, 3330] +Triangle: [3327, 3326, 3295] +Triangle: [3290, 3291, 3329] +Triangle: [3290, 3293, 3324] +Triangle: [3335, 3333, 3320] +Triangle: [3322, 3334, 3335] +Triangle: [3318, 3332, 3336] +Triangle: [3321, 3338, 3337] +Triangle: [3316, 3331, 3334] +Triangle: [3321, 3320, 3333] +Triangle: [3337, 3332, 3318] +Triangle: [3317, 3336, 3331] +Triangle: [3291, 3324, 3383] +Triangle: [3070, 3382, 3381] +Triangle: [3381, 3383, 3071] +Triangle: [3386, 3387, 3391] +Triangle: [3388, 3390, 3391] +Triangle: [3388, 3330, 3329] +Triangle: [3155, 3230, 3157] +Triangle: [3157, 3230, 3158] +Triangle: [3173, 3158, 3232] +Triangle: [3172, 3165, 3069] +Triangle: [3157, 3156, 3153] +Triangle: [3152, 3153, 3156] +Triangle: [3093, 3159, 3152] +Triangle: [3093, 3160, 3143] +Triangle: [3155, 3339, 3182] +Triangle: [3182, 3339, 3231] +Triangle: [3056, 3159, 3143] +Triangle: [3054, 3152, 3159] +Triangle: [3047, 3059, 3058] +Triangle: [3055, 3053, 3052] +Triangle: [3079, 3154, 3153] +Triangle: [3050, 3081, 3080] +Triangle: [3077, 3153, 3152] +Triangle: [3058, 3079, 3078] +Triangle: [3155, 3154, 3079] +Triangle: [3078, 3079, 3077] +Triangle: [3339, 3155, 3058] +Triangle: [3063, 3065, 3061] +Triangle: [3052, 3051, 3054] +Triangle: [3231, 3339, 3059] +Triangle: [3172, 3174, 3176] +Triangle: [3176, 3169, 3164] +Triangle: [3169, 3166, 3163] +Triangle: [3162, 3163, 3166] +Triangle: [3174, 3175, 3346] +Triangle: [3232, 3342, 3346] +Triangle: [3176, 3174, 3345] +Triangle: [3345, 3346, 3342] +Triangle: [3350, 3349, 3351] +Triangle: [3347, 3348, 3354] +Triangle: [3348, 3286, 3351] +Triangle: [3234, 3347, 3353] +Triangle: [3353, 3354, 3351] +Triangle: [3359, 3360, 3358] +Triangle: [3356, 3360, 3359] +Triangle: [3359, 3288, 3389] +Triangle: [3087, 3066, 3071] +Triangle: [3082, 3083, 3060] +Triangle: [3340, 3231, 3057] +Triangle: [3080, 3082, 3341] +Triangle: [3235, 3234, 3370] +Triangle: [3366, 3365, 3182] +Triangle: [3380, 3289, 3288] +Triangle: [3373, 3236, 3283] +Triangle: [3382, 3070, 3390] +Triangle: [3385, 3386, 3394] +Triangle: [3055, 3089, 3088] +Triangle: [3062, 3085, 3084] +Triangle: [3076, 3077, 3054] +Triangle: [3065, 3064, 3060] +Triangle: [3085, 3087, 3086] +Triangle: [3081, 3083, 3082] +Triangle: [3072, 3071, 3066] +Triangle: [3070, 3072, 3067] +Triangle: [3068, 3392, 3390] +Triangle: [3362, 3064, 3065] +Triangle: [3362, 3341, 3082] +Triangle: [3362, 3361, 3236] +Triangle: [3341, 3362, 3284] +Triangle: [3363, 3361, 3065] +Triangle: [3283, 3236, 3361] +Triangle: [3364, 3363, 3063] +Triangle: [3289, 3283, 3363] +Triangle: [3219, 3180, 3365] +Triangle: [3215, 3372, 3367] +Triangle: [3216, 3368, 3372] +Triangle: [3369, 3368, 3216] +Triangle: [3218, 3370, 3369] +Triangle: [3220, 3371, 3370] +Triangle: [3273, 3046, 3373] +Triangle: [3269, 3376, 3375] +Triangle: [3377, 3376, 3269] +Triangle: [3271, 3378, 3377] +Triangle: [3272, 3379, 3378] +Triangle: [3380, 3379, 3272] +Triangle: [3291, 3381, 3382] +Triangle: [3384, 3383, 3324] +Triangle: [3385, 3384, 3325] +Triangle: [3386, 3385, 3326] +Triangle: [3328, 3387, 3386] +Triangle: [3330, 3388, 3387] +Triangle: [3364, 3084, 3355] +Triangle: [3289, 3364, 3389] +Triangle: [3086, 3356, 3355] +Triangle: [3391, 3390, 3392] +Triangle: [3393, 3395, 3394] +Triangle: [3229, 3235, 3371] +Triangle: [3344, 3233, 3234] +Triangle: [3344, 3342, 3232] +Triangle: [3396, 3340, 3341] +Triangle: [3396, 3397, 3399] +Triangle: [3231, 3340, 3396] +Triangle: [3398, 3399, 3348] +Triangle: [3229, 3396, 3398] +Triangle: [3347, 3234, 3235] +Triangle: [3285, 3286, 3348] +Triangle: [3285, 3399, 3397] +Triangle: [3287, 3400, 3351] +Triangle: [3400, 3287, 3288] +Triangle: [3091, 3167, 3168] +Triangle: [3384, 3385, 3360] +Triangle: [3047, 3044, 3409] +Triangle: [3051, 3402, 3403] +Triangle: [3404, 3409, 3044] +Triangle: [3073, 3410, 3050] +Triangle: [3076, 3403, 3404] +Triangle: [3402, 3051, 3052] +Triangle: [3083, 3081, 3405] +Triangle: [3061, 3060, 3411] +Triangle: [3060, 3083, 3406] +Triangle: [3050, 3410, 3405] +Triangle: [3087, 3085, 3407] +Triangle: [3067, 3066, 3413] +Triangle: [3066, 3087, 3408] +Triangle: [3062, 3412, 3407] +Triangle: [3074, 3412, 3062] +Triangle: [3075, 3417, 3068] +Triangle: [3392, 3068, 3417] +Triangle: [3401, 3053, 3088] +Triangle: [3408, 3407, 3412] +Triangle: [3405, 3410, 3411] +Triangle: [3403, 3402, 3409] +Triangle: [3088, 3090, 3415] +Triangle: [3393, 3392, 3418] +Triangle: [3148, 3166, 3167] +Triangle: [3167, 3170, 3171] +Triangle: [3166, 3169, 3170] +Triangle: [3170, 3177, 3178] +Triangle: [3169, 3176, 3177] +Triangle: [3358, 3360, 3385] +Triangle: [3057, 3059, 3047] +Triangle: [3395, 3393, 3419] +Triangle: [3171, 3439, 3441] +Triangle: [3425, 3427, 3426] +Triangle: [3423, 1296, 1290] +Triangle: [1298, 1296, 3423] +Triangle: [1297, 1298, 3424] +Triangle: [3402, 3428, 3429] +Triangle: [1295, 1297, 3426] +Triangle: [3431, 3430, 3426] +Triangle: [3432, 3433, 3430] +Triangle: [3435, 3434, 3433] +Triangle: [3436, 3437, 3434] +Triangle: [3591, 3437, 3436] +Triangle: [3441, 3439, 3438] +Triangle: [3090, 3168, 3441] +Triangle: [3440, 3442, 3415] +Triangle: [3443, 3414, 3415] +Triangle: [3414, 3448, 3447] +Triangle: [3443, 3444, 3448] +Triangle: [3445, 3449, 3464] +Triangle: [3450, 3449, 3445] +Triangle: [3427, 3425, 3451] +Triangle: [3452, 3451, 3467] +Triangle: [3049, 3401, 3447] +Triangle: [3454, 3428, 3402] +Triangle: [3409, 3429, 3455] +Triangle: [3410, 3073, 3455] +Triangle: [3411, 3410, 3456] +Triangle: [3074, 3458, 3459] +Triangle: [3411, 3457, 3458] +Triangle: [3413, 3412, 3459] +Triangle: [3075, 3413, 3460] +Triangle: [3049, 3052, 3053] +Triangle: [3444, 3463, 3464] +Triangle: [3448, 3464, 3421] +Triangle: [3464, 3449, 3462] +Triangle: [3450, 3468, 3467] +Triangle: [3467, 3466, 3462] +Triangle: [3454, 3447, 3421] +Triangle: [3462, 3466, 3465] +Triangle: [3428, 3454, 3465] +Triangle: [3471, 3469, 3465] +Triangle: [3451, 3471, 3466] +Triangle: [3425, 3472, 3471] +Triangle: [3424, 3423, 3472] +Triangle: [3470, 3469, 3471] +Triangle: [3422, 3470, 3472] +Triangle: [3429, 3457, 3456] +Triangle: [3473, 3474, 3457] +Triangle: [3428, 3469, 3473] +Triangle: [3422, 3475, 3476] +Triangle: [3475, 3477, 3478] +Triangle: [3470, 3476, 3473] +Triangle: [3474, 3473, 3476] +Triangle: [1290, 1299, 3475] +Triangle: [1299, 1300, 3477] +Triangle: [3458, 3461, 3460] +Triangle: [3458, 3457, 3474] +Triangle: [3478, 3482, 3481] +Triangle: [3483, 3482, 3478] +Triangle: [3481, 3479, 3461] +Triangle: [3479, 3481, 3482] +Triangle: [3484, 3480, 3482] +Triangle: [3483, 3477, 1300] +Triangle: [3483, 1289, 1288] +Triangle: [3417, 3075, 3461] +Triangle: [3490, 3489, 3461] +Triangle: [3491, 3490, 3479] +Triangle: [3492, 3491, 3480] +Triangle: [3493, 3492, 3484] +Triangle: [3493, 1288, 1291] +Triangle: [3495, 3494, 1291] +Triangle: [3489, 3488, 3418] +Triangle: [3488, 3489, 3490] +Triangle: [3487, 3490, 3491] +Triangle: [3486, 3491, 3492] +Triangle: [3493, 3494, 3485] +Triangle: [3485, 3494, 3495] +Triangle: [3485, 3496, 3497] +Triangle: [3486, 3497, 3498] +Triangle: [3488, 3487, 3498] +Triangle: [3419, 3418, 3488] +Triangle: [3502, 3496, 3495] +Triangle: [3502, 3501, 3497] +Triangle: [3501, 3500, 3498] +Triangle: [3500, 3503, 3499] +Triangle: [3419, 3499, 3503] +Triangle: [1292, 1293, 3504] +Triangle: [1293, 1294, 3505] +Triangle: [1294, 1295, 3430] +Triangle: [3504, 3505, 3507] +Triangle: [3507, 3509, 3508] +Triangle: [3433, 3507, 3505] +Triangle: [3433, 3434, 3509] +Triangle: [3504, 3506, 3501] +Triangle: [3506, 3508, 3500] +Triangle: [3510, 3511, 3450] +Triangle: [3450, 3511, 3512] +Triangle: [3468, 3512, 3453] +Triangle: [3431, 3427, 3452] +Triangle: [3431, 3453, 3513] +Triangle: [3432, 3513, 3514] +Triangle: [3512, 3515, 3513] +Triangle: [3514, 3513, 3515] +Triangle: [3511, 3516, 3515] +Triangle: [3517, 3516, 3511] +Triangle: [3537, 3538, 3551] +Triangle: [3557, 3535, 3536] +Triangle: [3558, 3553, 3540] +Triangle: [3551, 3538, 3539] +Triangle: [3558, 3534, 3535] +Triangle: [3552, 3536, 3537] +Triangle: [3539, 3541, 3555] +Triangle: [3541, 3540, 3553] +Triangle: [3542, 3538, 3537] +Triangle: [3550, 3547, 3532] +Triangle: [3549, 3550, 3533] +Triangle: [3542, 3536, 3535] +Triangle: [3539, 3538, 3542] +Triangle: [3542, 3534, 3540] +Triangle: [3545, 3544, 3529] +Triangle: [3548, 3546, 3527] +Triangle: [3543, 3549, 3531] +Triangle: [3525, 3532, 3547] +Triangle: [3527, 3546, 3545] +Triangle: [3544, 3543, 3530] +Triangle: [3559, 3527, 3528] +Triangle: [3528, 3529, 3561] +Triangle: [3529, 3530, 3562] +Triangle: [3530, 3531, 3563] +Triangle: [3563, 3531, 3533] +Triangle: [3533, 3532, 3565] +Triangle: [3565, 3532, 3525] +Triangle: [3525, 3527, 3559] +Triangle: [3555, 3553, 3547] +Triangle: [3554, 3555, 3550] +Triangle: [3545, 3552, 3556] +Triangle: [3548, 3558, 3557] +Triangle: [3543, 3551, 3554] +Triangle: [3548, 3547, 3553] +Triangle: [3546, 3557, 3552] +Triangle: [3544, 3556, 3551] +Triangle: [3566, 3559, 3523] +Triangle: [3518, 3565, 3566] +Triangle: [3564, 3565, 3518] +Triangle: [3519, 3563, 3564] +Triangle: [3562, 3563, 3519] +Triangle: [3561, 3562, 3520] +Triangle: [3560, 3561, 3521] +Triangle: [3523, 3559, 3560] +Triangle: [3574, 3568, 3519] +Triangle: [3524, 3573, 3567] +Triangle: [3521, 3570, 3571] +Triangle: [3568, 3569, 3520] +Triangle: [3567, 3574, 3526] +Triangle: [3572, 3573, 3524] +Triangle: [3522, 3571, 3572] +Triangle: [3520, 3569, 3570] +Triangle: [3576, 3582, 3442] +Triangle: [3442, 3582, 3583] +Triangle: [3444, 3443, 3583] +Triangle: [3575, 3584, 3583] +Triangle: [3463, 3444, 3584] +Triangle: [3581, 3585, 3584] +Triangle: [3585, 3446, 3445] +Triangle: [3586, 3585, 3581] +Triangle: [3446, 3585, 3586] +Triangle: [3440, 3438, 3590] +Triangle: [3439, 3591, 3592] +Triangle: [3590, 3589, 3577] +Triangle: [3577, 3589, 3588] +Triangle: [3578, 3588, 3587] +Triangle: [3579, 3587, 3586] +Triangle: [3510, 3586, 3587] +Triangle: [3588, 3593, 3517] +Triangle: [3516, 3517, 3593] +Triangle: [3568, 3574, 3582] +Triangle: [3574, 3567, 3575] +Triangle: [3567, 3573, 3581] +Triangle: [3573, 3572, 3580] +Triangle: [3580, 3572, 3571] +Triangle: [3579, 3571, 3570] +Triangle: [3570, 3569, 3577] +Triangle: [3569, 3568, 3576] +Triangle: [3592, 3589, 3590] +Triangle: [3589, 3594, 3593] +Triangle: [3435, 3514, 3594] +Triangle: [3594, 3589, 3592] +Triangle: [3437, 3595, 3509] +Triangle: [3596, 3439, 3171] +Triangle: [3439, 3596, 3597] +Triangle: [3591, 3597, 3595] +Triangle: [3600, 3598, 3599] +Triangle: [3598, 3595, 3597] +Triangle: [3596, 3601, 3599] +Triangle: [3601, 3596, 3178] +Triangle: [3604, 3602, 3350] +Triangle: [3598, 3600, 3602] +Triangle: [3598, 3605, 3607] +Triangle: [3608, 3595, 3607] +Triangle: [3509, 3595, 3608] +Triangle: [3508, 3608, 3503] +Triangle: [3609, 3503, 3608] +Triangle: [3420, 3503, 3609] +Triangle: [3613, 3612, 3358] +Triangle: [3612, 3611, 3357] +Triangle: [3395, 3613, 3416] +Triangle: [3395, 3420, 3610] +Triangle: [3602, 3604, 3603] +Triangle: [3607, 3605, 3614] +Triangle: [3606, 3614, 3610] +Triangle: [3605, 3602, 3611] +Triangle: [3615, 3614, 3611] +Triangle: [3613, 3610, 3615] +Triangle: [3648, 3619, 3618] +Triangle: [3644, 3647, 3624] +Triangle: [3640, 3643, 3625] +Triangle: [3639, 3626, 3621] +Triangle: [5333, 5332, 3627] +Triangle: [5334, 5335, 3628] +Triangle: [3651, 3650, 3629] +Triangle: [3626, 3634, 3633] +Triangle: [5355, 3635, 3632] +Triangle: [3622, 3625, 3638] +Triangle: [3637, 3638, 3639] +Triangle: [3623, 3624, 3642] +Triangle: [3641, 3642, 3643] +Triangle: [3616, 3617, 3646] +Triangle: [3645, 3646, 3647] +Triangle: [3629, 3648, 3649] +Triangle: [3631, 3628, 3650] +Triangle: [3679, 3655, 3691] +Triangle: [3687, 3680, 3660] +Triangle: [3681, 3661, 3677] +Triangle: [3689, 3682, 3662] +Triangle: [3683, 3663, 3673] +Triangle: [3684, 3664, 5380] +Triangle: [3685, 3665, 3697] +Triangle: [3686, 3670, 3653] +Triangle: [3687, 3671, 3670] +Triangle: [3688, 3673, 3662] +Triangle: [5364, 3689, 3675] +Triangle: [3680, 3690, 3677] +Triangle: [3676, 3690, 3680] +Triangle: [5362, 3674, 3689] +Triangle: [3672, 3688, 3682] +Triangle: [3668, 3687, 3686] +Triangle: [3652, 3669, 3686] +Triangle: [3666, 3685, 3699] +Triangle: [5382, 3667, 3684] +Triangle: [3656, 3683, 3688] +Triangle: [3674, 3657, 3682] +Triangle: [3676, 3658, 3681] +Triangle: [3659, 3680, 3687] +Triangle: [3654, 3679, 3693] +Triangle: [3692, 3693, 3696] +Triangle: [3693, 3691, 3695] +Triangle: [3696, 3695, 3665] +Triangle: [3694, 3696, 3685] +Triangle: [3667, 3698, 3699] +Triangle: [3699, 3697, 3664] +Triangle: [3700, 3702, 5373] +Triangle: [3702, 3701, 5372] +Triangle: [3744, 3730, 3706] +Triangle: [3731, 3711, 3722] +Triangle: [3732, 3712, 3728] +Triangle: [5385, 3733, 3713] +Triangle: [5341, 3734, 3714] +Triangle: [3753, 3735, 3715] +Triangle: [3750, 3736, 3716] +Triangle: [3737, 3721, 3704] +Triangle: [3738, 3722, 3721] +Triangle: [5347, 3739, 3724] +Triangle: [3740, 3726, 5396] +Triangle: [3741, 3728, 3711] +Triangle: [3710, 3727, 3741] +Triangle: [3725, 3740, 5397] +Triangle: [3723, 3739, 5347] +Triangle: [3719, 3738, 3737] +Triangle: [3703, 3720, 3737] +Triangle: [3749, 3717, 3736] +Triangle: [3751, 3718, 3735] +Triangle: [5338, 3707, 3734] +Triangle: [3708, 3733, 5385] +Triangle: [3709, 3732, 3741] +Triangle: [3710, 3731, 3738] +Triangle: [3705, 3730, 3744] +Triangle: [3743, 3744, 3747] +Triangle: [3747, 3744, 3742] +Triangle: [3736, 3747, 3746] +Triangle: [3717, 3745, 3747] +Triangle: [3718, 3749, 3750] +Triangle: [3735, 3750, 3748] +Triangle: [3707, 3751, 3753] +Triangle: [3734, 3753, 3752] +Triangle: [3795, 3781, 3757] +Triangle: [3782, 3762, 3773] +Triangle: [3783, 3763, 3779] +Triangle: [3791, 3784, 3764] +Triangle: [3790, 3785, 3765] +Triangle: [3786, 3766, 3803] +Triangle: [3801, 3787, 3767] +Triangle: [3788, 3772, 3755] +Triangle: [3789, 3773, 3772] +Triangle: [3784, 3790, 3775] +Triangle: [3783, 3791, 3777] +Triangle: [3792, 3779, 3762] +Triangle: [3778, 3792, 3782] +Triangle: [3776, 3791, 3783] +Triangle: [3759, 3774, 3790] +Triangle: [3770, 3789, 3788] +Triangle: [3754, 3771, 3788] +Triangle: [3800, 3768, 3787] +Triangle: [3769, 3786, 3804] +Triangle: [3774, 3758, 3785] +Triangle: [3776, 3759, 3784] +Triangle: [3760, 3783, 3792] +Triangle: [3761, 3782, 3789] +Triangle: [3794, 3756, 3781] +Triangle: [3796, 3794, 3795] +Triangle: [3798, 3795, 3793] +Triangle: [3787, 3798, 3797] +Triangle: [3768, 3796, 3798] +Triangle: [3769, 3800, 3801] +Triangle: [3786, 3801, 3799] +Triangle: [3802, 3804, 3785] +Triangle: [3804, 3803, 3765] +Triangle: [3846, 3832, 3808] +Triangle: [3840, 3833, 3813] +Triangle: [3834, 3814, 3830] +Triangle: [3842, 3835, 3815] +Triangle: [3841, 3836, 3816] +Triangle: [3855, 3837, 3817] +Triangle: [3838, 3818, 3850] +Triangle: [3839, 3823, 3806] +Triangle: [3840, 3824, 3823] +Triangle: [3835, 3841, 3826] +Triangle: [3834, 3842, 3828] +Triangle: [3833, 3843, 3830] +Triangle: [3812, 3829, 3843] +Triangle: [3811, 3827, 3842] +Triangle: [3810, 3825, 3841] +Triangle: [3822, 3821, 3840] +Triangle: [3805, 3822, 3839] +Triangle: [3851, 3819, 3838] +Triangle: [3853, 3820, 3837] +Triangle: [3809, 3836, 3841] +Triangle: [3827, 3810, 3835] +Triangle: [3829, 3811, 3834] +Triangle: [3821, 3812, 3833] +Triangle: [3845, 3807, 3832] +Triangle: [3847, 3845, 3846] +Triangle: [3849, 3846, 3844] +Triangle: [3849, 3848, 3818] +Triangle: [3819, 3847, 3849] +Triangle: [3820, 3851, 3852] +Triangle: [3837, 3852, 3850] +Triangle: [3853, 3855, 3836] +Triangle: [3836, 3855, 3854] +Triangle: [3897, 3883, 3859] +Triangle: [3891, 3884, 3864] +Triangle: [3885, 3865, 3916] +Triangle: [3930, 3886, 3866] +Triangle: [3924, 3887, 3867] +Triangle: [3888, 3868, 3905] +Triangle: [3903, 3889, 3869] +Triangle: [3890, 3874, 3911] +Triangle: [3891, 3875, 3908] +Triangle: [3927, 3892, 3877] +Triangle: [3893, 3879, 3920] +Triangle: [3915, 3894, 3881] +Triangle: [3913, 3880, 3894] +Triangle: [3919, 3878, 3893] +Triangle: [3925, 3876, 3892] +Triangle: [3907, 3872, 3891] +Triangle: [3910, 3873, 3890] +Triangle: [3902, 3870, 3889] +Triangle: [3871, 3888, 3906] +Triangle: [3860, 3887, 3924] +Triangle: [3929, 3861, 3886] +Triangle: [3917, 3862, 3885] +Triangle: [3872, 3863, 3884] +Triangle: [3896, 3858, 3883] +Triangle: [3898, 3896, 3897] +Triangle: [3900, 3897, 3895] +Triangle: [3889, 3900, 3899] +Triangle: [3870, 3898, 3900] +Triangle: [3902, 3903, 3888] +Triangle: [3903, 3901, 3868] +Triangle: [3904, 3906, 3887] +Triangle: [3887, 3906, 3905] +Triangle: [3873, 3907, 3909] +Triangle: [3909, 3908, 3874] +Triangle: [3856, 3910, 3912] +Triangle: [3912, 3911, 3857] +Triangle: [3863, 3913, 3915] +Triangle: [3884, 3915, 3914] +Triangle: [3880, 3917, 3918] +Triangle: [3894, 3918, 3916] +Triangle: [3862, 3919, 3921] +Triangle: [3921, 3920, 3865] +Triangle: [3923, 3924, 3892] +Triangle: [3892, 3924, 3922] +Triangle: [3861, 3925, 3927] +Triangle: [3886, 3927, 3926] +Triangle: [3878, 3929, 3930] +Triangle: [3893, 3930, 3928] +Triangle: [3958, 3934, 3970] +Triangle: [3959, 3939, 3950] +Triangle: [3960, 3940, 3991] +Triangle: [4005, 3961, 3941] +Triangle: [3999, 3962, 3942] +Triangle: [3963, 3943, 3980] +Triangle: [3964, 3944, 3976] +Triangle: [3965, 3949, 3986] +Triangle: [3966, 3950, 3983] +Triangle: [4002, 3967, 3952] +Triangle: [3968, 3954, 3995] +Triangle: [3969, 3956, 3989] +Triangle: [3988, 3955, 3969] +Triangle: [3953, 3968, 3996] +Triangle: [4000, 3951, 3967] +Triangle: [3982, 3947, 3966] +Triangle: [3985, 3948, 3965] +Triangle: [3945, 3964, 3978] +Triangle: [3946, 3963, 3981] +Triangle: [3998, 3935, 3962] +Triangle: [4004, 3936, 3961] +Triangle: [3937, 3960, 3993] +Triangle: [3947, 3938, 3959] +Triangle: [3971, 3933, 3958] +Triangle: [3973, 3971, 3972] +Triangle: [3975, 3972, 3970] +Triangle: [3964, 3975, 3974] +Triangle: [3945, 3973, 3975] +Triangle: [3977, 3978, 3963] +Triangle: [3978, 3976, 3943] +Triangle: [3979, 3981, 3962] +Triangle: [3962, 3981, 3980] +Triangle: [3948, 3982, 3984] +Triangle: [3984, 3983, 3949] +Triangle: [3931, 3985, 3987] +Triangle: [3987, 3986, 3932] +Triangle: [3938, 3988, 3990] +Triangle: [3990, 3989, 3939] +Triangle: [3955, 3992, 3993] +Triangle: [3993, 3991, 3956] +Triangle: [3994, 3996, 3960] +Triangle: [3996, 3995, 3940] +Triangle: [3951, 3998, 3999] +Triangle: [3967, 3999, 3997] +Triangle: [3936, 4000, 4002] +Triangle: [3961, 4002, 4001] +Triangle: [4004, 4005, 3968] +Triangle: [4005, 4003, 3954] +Triangle: [4047, 4033, 4009] +Triangle: [4034, 4014, 4025] +Triangle: [4044, 4035, 4015] +Triangle: [4036, 4016, 5392] +Triangle: [5353, 4037, 4017] +Triangle: [4056, 4038, 4018] +Triangle: [4039, 4019, 4051] +Triangle: [4040, 4024, 4007] +Triangle: [4041, 4025, 4024] +Triangle: [5388, 4042, 4027] +Triangle: [4035, 4043, 4029] +Triangle: [4034, 4044, 4031] +Triangle: [4013, 4030, 4044] +Triangle: [4028, 4043, 4035] +Triangle: [4026, 4042, 5388] +Triangle: [4023, 4022, 4041] +Triangle: [4006, 4023, 4040] +Triangle: [4052, 4020, 4039] +Triangle: [4021, 4038, 4056] +Triangle: [4010, 4037, 5353] +Triangle: [4011, 4036, 5394] +Triangle: [4030, 4012, 4035] +Triangle: [4022, 4013, 4034] +Triangle: [4046, 4008, 4033] +Triangle: [4048, 4046, 4047] +Triangle: [4050, 4047, 4045] +Triangle: [4050, 4049, 4019] +Triangle: [4020, 4048, 4050] +Triangle: [4052, 4053, 4038] +Triangle: [4038, 4053, 4051] +Triangle: [4054, 4056, 4037] +Triangle: [4037, 4056, 4055] +Triangle: [4084, 4060, 4096] +Triangle: [4092, 4085, 4065] +Triangle: [4095, 4086, 4066] +Triangle: [4094, 4087, 4067] +Triangle: [5367, 4088, 4068] +Triangle: [4089, 4069, 4106] +Triangle: [4090, 4070, 4102] +Triangle: [4091, 4075, 4058] +Triangle: [4092, 4076, 4075] +Triangle: [4087, 4093, 4078] +Triangle: [4086, 4094, 4080] +Triangle: [4085, 4095, 4082] +Triangle: [4064, 4081, 4095] +Triangle: [4063, 4079, 4094] +Triangle: [4077, 4093, 4087] +Triangle: [4073, 4092, 4091] +Triangle: [4057, 4074, 4091] +Triangle: [4071, 4090, 4104] +Triangle: [4105, 4072, 4089] +Triangle: [4061, 4088, 5367] +Triangle: [4079, 4062, 4087] +Triangle: [4081, 4063, 4086] +Triangle: [4064, 4085, 4092] +Triangle: [4059, 4084, 4098] +Triangle: [4097, 4098, 4101] +Triangle: [4098, 4096, 4100] +Triangle: [4101, 4100, 4070] +Triangle: [4099, 4101, 4090] +Triangle: [4072, 4103, 4104] +Triangle: [4104, 4102, 4069] +Triangle: [4105, 4107, 5370] +Triangle: [5370, 4107, 4106] +Triangle: [4135, 4111, 4147] +Triangle: [4136, 4116, 4127] +Triangle: [4137, 4117, 4133] +Triangle: [4138, 4118, 4131] +Triangle: [4144, 4139, 4119] +Triangle: [4158, 4140, 4120] +Triangle: [4141, 4121, 4153] +Triangle: [4142, 4126, 4109] +Triangle: [4143, 4127, 4126] +Triangle: [4138, 4144, 4129] +Triangle: [4145, 4131, 4117] +Triangle: [4146, 4133, 4116] +Triangle: [4115, 4132, 4146] +Triangle: [4114, 4130, 4145] +Triangle: [4128, 4144, 4138] +Triangle: [4124, 4143, 4142] +Triangle: [4108, 4125, 4142] +Triangle: [4154, 4122, 4141] +Triangle: [4123, 4140, 4158] +Triangle: [4128, 4112, 4139] +Triangle: [4130, 4113, 4138] +Triangle: [4132, 4114, 4137] +Triangle: [4124, 4115, 4136] +Triangle: [4110, 4135, 4149] +Triangle: [4150, 4148, 4149] +Triangle: [4152, 4149, 4147] +Triangle: [4141, 4152, 4151] +Triangle: [4122, 4150, 4152] +Triangle: [4154, 4155, 4140] +Triangle: [4140, 4155, 4153] +Triangle: [4112, 4156, 4158] +Triangle: [4139, 4158, 4157] +Triangle: [4186, 4162, 4198] +Triangle: [4187, 4167, 4178] +Triangle: [4188, 4168, 4184] +Triangle: [4189, 4169, 5356] +Triangle: [4195, 4190, 4170] +Triangle: [4209, 4191, 4171] +Triangle: [5378, 4192, 4172] +Triangle: [4193, 4177, 4160] +Triangle: [4194, 4178, 4177] +Triangle: [5391, 4195, 4180] +Triangle: [4196, 4182, 5360] +Triangle: [4197, 4184, 4167] +Triangle: [4183, 4197, 4187] +Triangle: [4181, 4196, 5361] +Triangle: [4179, 4195, 5391] +Triangle: [4175, 4194, 4193] +Triangle: [4159, 4176, 4193] +Triangle: [4173, 4192, 5378] +Triangle: [4174, 4191, 4209] +Triangle: [4179, 4163, 4190] +Triangle: [4164, 4189, 5358] +Triangle: [4165, 4188, 4197] +Triangle: [4175, 4166, 4187] +Triangle: [4161, 4186, 4200] +Triangle: [4201, 4199, 4200] +Triangle: [4200, 4198, 4202] +Triangle: [4203, 4202, 4172] +Triangle: [4173, 4201, 4203] +Triangle: [4205, 4206, 5376] +Triangle: [4206, 4204, 5375] +Triangle: [4163, 4207, 4209] +Triangle: [4190, 4209, 4208] +Triangle: [4242, 4213, 4212] +Triangle: [4241, 4218, 4217] +Triangle: [4234, 4237, 4219] +Triangle: [4230, 4233, 4220] +Triangle: [4226, 4229, 4221] +Triangle: [4214, 4221, 4222] +Triangle: [4245, 4244, 4223] +Triangle: [4215, 4220, 4228] +Triangle: [4227, 4228, 4229] +Triangle: [4216, 4219, 4232] +Triangle: [4231, 4232, 4233] +Triangle: [4218, 4236, 4235] +Triangle: [4236, 4237, 4234] +Triangle: [4210, 4211, 4240] +Triangle: [4240, 4241, 4238] +Triangle: [4223, 4242, 4243] +Triangle: [4225, 4222, 4244] +Triangle: [4259, 4249, 4273] +Triangle: [4281, 4265, 4254] +Triangle: [4284, 4271, 4255] +Triangle: [4269, 4256, 4276] +Triangle: [4282, 4267, 4257] +Triangle: [4277, 4257, 4258] +Triangle: [4278, 4258, 4259] +Triangle: [4272, 4247, 4264] +Triangle: [4264, 4265, 4281] +Triangle: [4256, 4267, 4282] +Triangle: [4255, 4269, 4283] +Triangle: [4274, 4254, 4271] +Triangle: [4253, 4274, 4284] +Triangle: [4275, 4283, 4268] +Triangle: [4276, 4282, 4266] +Triangle: [4263, 4280, 4281] +Triangle: [4272, 4280, 4263] +Triangle: [4261, 4278, 4279] +Triangle: [4250, 4277, 4278] +Triangle: [4266, 4282, 4277] +Triangle: [4283, 4276, 4251] +Triangle: [4270, 4284, 4275] +Triangle: [4262, 4281, 4274] +Triangle: [4260, 4279, 4273] +Triangle: [4326, 4324, 4288] +Triangle: [4304, 4293, 4313] +Triangle: [4350, 4348, 4294] +Triangle: [4342, 4295, 4315] +Triangle: [4336, 4296, 4316] +Triangle: [4335, 4334, 4297] +Triangle: [4330, 4298, 4318] +Triangle: [4286, 4303, 4319] +Triangle: [4354, 4304, 4320] +Triangle: [4341, 4340, 4306] +Triangle: [4346, 4308, 4322] +Triangle: [4359, 4358, 4310] +Triangle: [4359, 4323, 4309] +Triangle: [4347, 4322, 4307] +Triangle: [4339, 4341, 4321] +Triangle: [4356, 4355, 4320] +Triangle: [4285, 4311, 4319] +Triangle: [4331, 4332, 4318] +Triangle: [4333, 4335, 4317] +Triangle: [4338, 4316, 4289] +Triangle: [4343, 4344, 4315] +Triangle: [4349, 4350, 4314] +Triangle: [4320, 4313, 4292] +Triangle: [4326, 4312, 4287] +Triangle: [4327, 4329, 4326] +Triangle: [4329, 4328, 4324] +Triangle: [4318, 4298, 4328] +Triangle: [4299, 4318, 4329] +Triangle: [4317, 4332, 4331] +Triangle: [4297, 4330, 4332] +Triangle: [4289, 4316, 4335] +Triangle: [4316, 4296, 4334] +Triangle: [4321, 4338, 4337] +Triangle: [4321, 4306, 4336] +Triangle: [4290, 4315, 4341] +Triangle: [4315, 4295, 4340] +Triangle: [4322, 4344, 4343] +Triangle: [4308, 4342, 4344] +Triangle: [4314, 4347, 4345] +Triangle: [4314, 4294, 4346] +Triangle: [4309, 4323, 4350] +Triangle: [4323, 4310, 4348] +Triangle: [4319, 4353, 4351] +Triangle: [4303, 4352, 4353] +Triangle: [4351, 4353, 4355] +Triangle: [4353, 4352, 4354] +Triangle: [4313, 4359, 4357] +Triangle: [4293, 4358, 4359] +Triangle: [4399, 4363, 4387] +Triangle: [4395, 4379, 4368] +Triangle: [4425, 4423, 4369] +Triangle: [4419, 4417, 4370] +Triangle: [4413, 4411, 4371] +Triangle: [4410, 4409, 4372] +Triangle: [4407, 4405, 4373] +Triangle: [4361, 4378, 4394] +Triangle: [4430, 4429, 4379] +Triangle: [4415, 4381, 4396] +Triangle: [4422, 4421, 4383] +Triangle: [4434, 4433, 4385] +Triangle: [4432, 4434, 4398] +Triangle: [4420, 4422, 4397] +Triangle: [4416, 4396, 4380] +Triangle: [4431, 4430, 4395] +Triangle: [4360, 4386, 4394] +Triangle: [4406, 4407, 4393] +Triangle: [4408, 4410, 4392] +Triangle: [4412, 4413, 4391] +Triangle: [4418, 4419, 4390] +Triangle: [4424, 4425, 4389] +Triangle: [4376, 4395, 4388] +Triangle: [4400, 4401, 4387] +Triangle: [4404, 4401, 4400] +Triangle: [4404, 4403, 4399] +Triangle: [4393, 4373, 4403] +Triangle: [4374, 4393, 4404] +Triangle: [4375, 4392, 4407] +Triangle: [4392, 4372, 4405] +Triangle: [4364, 4391, 4410] +Triangle: [4391, 4371, 4409] +Triangle: [4396, 4413, 4412] +Triangle: [4381, 4411, 4413] +Triangle: [4365, 4390, 4416] +Triangle: [4370, 4415, 4416] +Triangle: [4382, 4397, 4419] +Triangle: [4397, 4383, 4417] +Triangle: [4366, 4389, 4422] +Triangle: [4389, 4369, 4421] +Triangle: [4384, 4398, 4425] +Triangle: [4398, 4385, 4423] +Triangle: [4394, 4428, 4426] +Triangle: [4378, 4427, 4428] +Triangle: [4428, 4430, 4431] +Triangle: [4428, 4427, 4429] +Triangle: [4367, 4388, 4434] +Triangle: [4368, 4433, 4434] +Triangle: [4468, 4467, 4438] +Triangle: [4463, 4466, 4443] +Triangle: [4462, 4444, 4441] +Triangle: [4455, 4458, 4445] +Triangle: [4451, 4454, 4446] +Triangle: [4439, 4446, 4447] +Triangle: [4470, 4469, 4448] +Triangle: [4440, 4445, 4453] +Triangle: [4452, 4453, 4454] +Triangle: [4444, 4457, 4456] +Triangle: [4456, 4457, 4458] +Triangle: [4442, 4443, 4461] +Triangle: [4461, 4462, 4459] +Triangle: [5331, 4465, 4464] +Triangle: [5328, 5329, 4466] +Triangle: [4449, 4448, 4467] +Triangle: [4450, 4447, 4469] +Triangle: [4504, 4473, 4474] +Triangle: [4499, 4478, 4479] +Triangle: [4495, 4477, 4480] +Triangle: [4476, 4481, 4494] +Triangle: [4475, 4482, 4490] +Triangle: [4486, 4483, 4482] +Triangle: [4506, 4485, 4484] +Triangle: [4488, 4489, 4481] +Triangle: [4487, 4490, 4489] +Triangle: [4492, 4493, 4480] +Triangle: [4491, 4494, 4493] +Triangle: [4478, 4496, 4497] +Triangle: [4496, 4495, 4498] +Triangle: [4471, 4500, 4501] +Triangle: [4500, 4499, 4502] +Triangle: [4485, 4504, 4503] +Triangle: [4506, 4505, 4483] +Triangle: [4539, 4510, 4760] +Triangle: [4538, 4515, 4761] +Triangle: [4772, 4534, 4516] +Triangle: [4770, 4530, 4517] +Triangle: [4526, 4518, 4764] +Triangle: [4518, 4519, 4765] +Triangle: [4541, 4520, 4766] +Triangle: [4763, 4517, 4525] +Triangle: [4767, 4525, 4526] +Triangle: [4762, 4516, 4529] +Triangle: [4769, 4529, 4530] +Triangle: [4761, 4515, 4533] +Triangle: [4771, 4533, 4534] +Triangle: [4759, 4508, 4537] +Triangle: [4773, 4537, 4538] +Triangle: [4520, 4539, 4775] +Triangle: [4519, 4541, 4776] +Triangle: [4575, 4546, 4545] +Triangle: [4574, 4551, 4550] +Triangle: [4570, 4552, 4549] +Triangle: [4563, 4566, 4553] +Triangle: [4562, 4554, 4547] +Triangle: [4554, 4555, 4558] +Triangle: [4577, 4556, 4557] +Triangle: [4548, 4553, 4561] +Triangle: [4561, 4562, 4559] +Triangle: [4552, 4565, 4564] +Triangle: [4564, 4565, 4566] +Triangle: [4551, 4569, 4568] +Triangle: [4569, 4570, 4567] +Triangle: [4543, 4544, 4573] +Triangle: [4573, 4574, 4571] +Triangle: [4556, 4575, 4576] +Triangle: [4555, 4577, 4578] +Triangle: [4611, 4582, 4581] +Triangle: [4610, 4587, 4586] +Triangle: [4603, 4606, 4588] +Triangle: [4599, 4602, 4589] +Triangle: [4598, 4590, 4583] +Triangle: [4583, 4590, 4591] +Triangle: [4614, 4613, 4592] +Triangle: [4584, 4589, 4597] +Triangle: [4596, 4597, 4598] +Triangle: [4585, 4588, 4601] +Triangle: [4600, 4601, 4602] +Triangle: [4586, 4587, 4605] +Triangle: [4604, 4605, 4606] +Triangle: [4579, 4580, 4609] +Triangle: [4609, 4610, 4607] +Triangle: [4592, 4611, 4612] +Triangle: [4594, 4591, 4613] +Triangle: [4617, 4618, 4647] +Triangle: [4622, 4623, 4646] +Triangle: [4621, 4624, 4642] +Triangle: [4620, 4625, 4638] +Triangle: [4631, 4619, 4626] +Triangle: [4630, 4627, 4626] +Triangle: [4650, 4629, 4628] +Triangle: [4632, 4633, 4625] +Triangle: [4632, 4631, 4634] +Triangle: [4636, 4637, 4624] +Triangle: [4635, 4638, 4637] +Triangle: [4640, 4641, 4623] +Triangle: [4639, 4642, 4641] +Triangle: [4615, 4644, 4645] +Triangle: [4644, 4643, 4646] +Triangle: [4648, 4647, 4628] +Triangle: [4650, 4649, 4627] +Triangle: [4684, 4653, 4654] +Triangle: [4658, 4659, 4682] +Triangle: [4657, 4660, 4678] +Triangle: [4671, 4656, 4661] +Triangle: [4655, 4662, 4670] +Triangle: [4655, 4666, 4663] +Triangle: [4686, 4665, 4664] +Triangle: [4656, 4668, 4669] +Triangle: [4667, 4670, 4669] +Triangle: [4672, 4673, 4660] +Triangle: [4672, 4671, 4674] +Triangle: [4676, 4677, 4659] +Triangle: [4675, 4678, 4677] +Triangle: [4651, 4680, 4681] +Triangle: [4680, 4679, 4682] +Triangle: [4665, 4684, 4683] +Triangle: [4686, 4685, 4663] +Triangle: [4720, 4689, 4690] +Triangle: [4694, 4695, 4718] +Triangle: [4693, 4696, 4714] +Triangle: [4707, 4692, 4697] +Triangle: [4691, 4698, 4706] +Triangle: [4702, 4699, 4698] +Triangle: [4701, 4700, 4721] +Triangle: [4692, 4704, 4705] +Triangle: [4704, 4703, 4706] +Triangle: [4708, 4709, 4696] +Triangle: [4707, 4710, 4709] +Triangle: [4712, 4713, 4695] +Triangle: [4711, 4714, 4713] +Triangle: [4687, 4716, 4717] +Triangle: [4716, 4715, 4718] +Triangle: [4720, 4719, 4700] +Triangle: [4722, 4721, 4699] +Triangle: [4756, 4725, 4726] +Triangle: [4751, 4730, 4731] +Triangle: [4747, 4729, 4732] +Triangle: [4728, 4733, 4746] +Triangle: [4739, 4727, 4734] +Triangle: [4738, 4735, 4734] +Triangle: [4737, 4736, 4757] +Triangle: [4728, 4740, 4741] +Triangle: [4739, 4742, 4741] +Triangle: [4744, 4745, 4732] +Triangle: [4743, 4746, 4745] +Triangle: [4730, 4748, 4749] +Triangle: [4748, 4747, 4750] +Triangle: [4723, 4752, 4753] +Triangle: [4752, 4751, 4754] +Triangle: [4756, 4755, 4736] +Triangle: [4738, 4758, 4757] +Triangle: [4765, 4776, 4542] +Triangle: [4766, 4775, 4540] +Triangle: [4536, 4773, 4774] +Triangle: [4507, 4759, 4773] +Triangle: [4532, 4771, 4772] +Triangle: [4514, 4761, 4771] +Triangle: [4528, 4769, 4770] +Triangle: [4513, 4762, 4769] +Triangle: [4524, 4767, 4768] +Triangle: [4512, 4763, 4767] +Triangle: [4776, 4766, 4521] +Triangle: [4511, 4764, 4765] +Triangle: [4523, 4768, 4764] +Triangle: [4527, 4770, 4763] +Triangle: [4531, 4772, 4762] +Triangle: [4535, 4774, 4761] +Triangle: [4775, 4760, 4509] +Triangle: [4577, 4794, 4784] +Triangle: [4566, 4788, 4781] +Triangle: [4561, 4785, 4786] +Triangle: [4562, 4786, 4782] +Triangle: [4555, 4783, 4794] +Triangle: [4573, 4544, 4777] +Triangle: [4574, 4573, 4791] +Triangle: [4569, 4551, 4779] +Triangle: [4570, 4569, 4789] +Triangle: [4565, 4552, 4780] +Triangle: [4551, 4574, 4792] +Triangle: [4554, 4782, 4783] +Triangle: [4565, 4787, 4788] +Triangle: [4556, 4784, 4793] +Triangle: [4552, 4570, 4790] +Triangle: [4553, 4781, 4785] +Triangle: [4546, 4575, 4793] +Triangle: [4834, 4798, 4822] +Triangle: [4814, 4803, 4823] +Triangle: [4820, 4804, 4824] +Triangle: [4818, 4805, 4825] +Triangle: [4831, 4816, 4806] +Triangle: [4845, 4844, 4807] +Triangle: [4842, 4840, 4808] +Triangle: [4796, 4813, 4829] +Triangle: [4813, 4814, 4830] +Triangle: [4805, 4816, 4831] +Triangle: [4804, 4818, 4832] +Triangle: [4803, 4820, 4833] +Triangle: [4823, 4833, 4819] +Triangle: [4801, 4824, 4832] +Triangle: [4825, 4831, 4815] +Triangle: [4829, 4830, 4811] +Triangle: [4795, 4821, 4829] +Triangle: [4841, 4842, 4828] +Triangle: [4845, 4827, 4810] +Triangle: [4815, 4831, 4826] +Triangle: [4832, 4825, 4800] +Triangle: [4819, 4833, 4824] +Triangle: [4830, 4823, 4802] +Triangle: [4835, 4836, 4822] +Triangle: [4837, 4839, 4836] +Triangle: [4838, 4834, 4836] +Triangle: [4808, 4838, 4839] +Triangle: [4828, 4839, 4837] +Triangle: [4810, 4827, 4842] +Triangle: [4827, 4807, 4840] +Triangle: [4826, 4845, 4843] +Triangle: [4826, 4806, 4844] +Triangle: [4879, 4859, 4849] +Triangle: [4865, 4854, 4874] +Triangle: [4884, 4871, 4855] +Triangle: [5180, 5178, 4856] +Triangle: [4867, 4857, 4877] +Triangle: [4857, 4858, 4878] +Triangle: [4858, 4859, 4879] +Triangle: [4847, 4864, 4880] +Triangle: [4864, 4865, 4881] +Triangle: [4876, 4856, 4867] +Triangle: [5176, 4869, 4883] +Triangle: [4874, 4854, 4871] +Triangle: [4853, 4874, 4884] +Triangle: [5177, 4883, 4868] +Triangle: [4851, 4876, 4882] +Triangle: [4880, 4881, 4862] +Triangle: [4846, 4872, 4880] +Triangle: [4878, 4879, 4860] +Triangle: [4877, 4878, 4861] +Triangle: [4882, 4877, 4850] +Triangle: [5179, 5180, 4876] +Triangle: [4884, 4875, 4852] +Triangle: [4881, 4874, 4853] +Triangle: [4879, 4873, 4848] +Triangle: [4898, 4888, 4887] +Triangle: [4904, 4893, 4892] +Triangle: [4909, 4910, 4894] +Triangle: [4908, 4895, 4890] +Triangle: [4905, 4906, 4896] +Triangle: [4889, 4896, 4897] +Triangle: [4900, 4897, 4898] +Triangle: [4885, 4886, 4903] +Triangle: [4902, 4903, 4904] +Triangle: [4895, 4906, 4905] +Triangle: [4894, 4908, 4907] +Triangle: [4893, 4910, 4909] +Triangle: [4924, 4914, 4938] +Triangle: [4930, 4919, 4939] +Triangle: [4949, 4936, 4920] +Triangle: [4934, 4921, 4941] +Triangle: [4947, 4932, 4922] +Triangle: [4942, 4922, 4923] +Triangle: [4923, 4924, 4944] +Triangle: [4937, 4912, 4929] +Triangle: [4945, 4929, 4930] +Triangle: [4921, 4932, 4947] +Triangle: [4920, 4934, 4948] +Triangle: [4919, 4936, 4949] +Triangle: [4939, 4949, 4935] +Triangle: [4940, 4948, 4933] +Triangle: [4941, 4947, 4931] +Triangle: [4928, 4945, 4946] +Triangle: [4911, 4937, 4945] +Triangle: [4943, 4944, 4925] +Triangle: [4915, 4942, 4943] +Triangle: [4931, 4947, 4942] +Triangle: [4948, 4941, 4916] +Triangle: [4935, 4949, 4940] +Triangle: [4946, 4939, 4918] +Triangle: [4944, 4938, 4913] +Triangle: [4963, 4953, 4977] +Triangle: [4969, 4958, 4978] +Triangle: [4988, 4975, 4959] +Triangle: [4973, 4960, 4980] +Triangle: [4986, 4971, 4961] +Triangle: [4961, 4962, 4982] +Triangle: [4962, 4963, 4983] +Triangle: [4976, 4951, 4968] +Triangle: [4968, 4969, 4985] +Triangle: [4980, 4960, 4971] +Triangle: [4959, 4973, 4987] +Triangle: [4978, 4958, 4975] +Triangle: [4957, 4978, 4988] +Triangle: [4979, 4987, 4972] +Triangle: [4955, 4980, 4986] +Triangle: [4984, 4985, 4966] +Triangle: [4950, 4976, 4984] +Triangle: [4982, 4983, 4964] +Triangle: [4981, 4982, 4965] +Triangle: [4970, 4986, 4981] +Triangle: [4987, 4980, 4955] +Triangle: [4988, 4979, 4956] +Triangle: [4985, 4978, 4957] +Triangle: [4983, 4977, 4952] +Triangle: [5028, 4992, 5016] +Triangle: [5008, 4997, 5017] +Triangle: [5052, 4998, 5018] +Triangle: [5046, 4999, 5019] +Triangle: [5040, 5000, 5020] +Triangle: [5038, 5001, 5021] +Triangle: [5036, 5034, 5002] +Triangle: [4990, 5007, 5023] +Triangle: [5007, 5008, 5024] +Triangle: [5045, 5044, 5010] +Triangle: [5050, 5012, 5026] +Triangle: [5017, 4997, 5014] +Triangle: [5017, 5027, 5013] +Triangle: [5051, 5026, 5011] +Triangle: [5045, 5025, 5009] +Triangle: [5023, 5024, 5005] +Triangle: [4989, 5015, 5023] +Triangle: [5035, 5036, 5022] +Triangle: [5037, 5039, 5021] +Triangle: [5042, 5020, 4993] +Triangle: [5047, 5048, 5019] +Triangle: [5054, 5018, 4995] +Triangle: [5024, 5017, 4996] +Triangle: [5029, 5030, 5016] +Triangle: [5033, 5030, 5029] +Triangle: [5032, 5028, 5030] +Triangle: [5002, 5032, 5033] +Triangle: [5022, 5033, 5031] +Triangle: [5004, 5021, 5036] +Triangle: [5021, 5001, 5034] +Triangle: [4993, 5020, 5039] +Triangle: [5000, 5038, 5039] +Triangle: [5025, 5042, 5041] +Triangle: [5010, 5040, 5042] +Triangle: [4994, 5019, 5045] +Triangle: [5019, 4999, 5044] +Triangle: [5026, 5048, 5047] +Triangle: [5012, 5046, 5048] +Triangle: [5018, 5051, 5049] +Triangle: [4998, 5050, 5051] +Triangle: [5027, 5054, 5053] +Triangle: [5014, 5052, 5054] +Triangle: [5088, 5058, 5078] +Triangle: [5076, 5064, 5080] +Triangle: [5074, 5065, 5081] +Triangle: [5085, 5072, 5066] +Triangle: [5099, 5098, 5067] +Triangle: [5096, 5094, 5068] +Triangle: [5056, 5063, 5079] +Triangle: [5081, 5065, 5072] +Triangle: [5064, 5074, 5086] +Triangle: [5063, 5076, 5087] +Triangle: [5079, 5087, 5075] +Triangle: [5080, 5086, 5073] +Triangle: [5060, 5081, 5085] +Triangle: [5055, 5077, 5079] +Triangle: [5095, 5096, 5084] +Triangle: [5099, 5083, 5070] +Triangle: [5085, 5082, 5059] +Triangle: [5086, 5081, 5060] +Triangle: [5087, 5080, 5061] +Triangle: [5089, 5090, 5078] +Triangle: [5093, 5090, 5089] +Triangle: [5092, 5088, 5090] +Triangle: [5084, 5068, 5092] +Triangle: [5069, 5084, 5093] +Triangle: [5070, 5083, 5096] +Triangle: [5083, 5067, 5094] +Triangle: [5082, 5099, 5097] +Triangle: [5066, 5098, 5099] +Triangle: [5141, 5139, 5103] +Triangle: [5119, 5108, 5128] +Triangle: [5163, 5109, 5129] +Triangle: [5157, 5110, 5130] +Triangle: [5153, 5151, 5111] +Triangle: [5150, 5149, 5112] +Triangle: [5145, 5113, 5133] +Triangle: [5101, 5118, 5134] +Triangle: [5169, 5119, 5135] +Triangle: [5156, 5155, 5121] +Triangle: [5161, 5123, 5137] +Triangle: [5173, 5125, 5138] +Triangle: [5174, 5138, 5124] +Triangle: [5162, 5137, 5122] +Triangle: [5154, 5156, 5136] +Triangle: [5170, 5135, 5116] +Triangle: [5100, 5126, 5134] +Triangle: [5147, 5133, 5114] +Triangle: [5148, 5150, 5132] +Triangle: [5153, 5131, 5104] +Triangle: [5158, 5159, 5130] +Triangle: [5165, 5129, 5106] +Triangle: [5135, 5128, 5107] +Triangle: [5141, 5127, 5102] +Triangle: [5142, 5144, 5141] +Triangle: [5143, 5139, 5141] +Triangle: [5113, 5143, 5144] +Triangle: [5114, 5133, 5144] +Triangle: [5115, 5132, 5147] +Triangle: [5132, 5112, 5145] +Triangle: [5104, 5131, 5150] +Triangle: [5131, 5111, 5149] +Triangle: [5136, 5153, 5152] +Triangle: [5121, 5151, 5153] +Triangle: [5105, 5130, 5156] +Triangle: [5130, 5110, 5155] +Triangle: [5137, 5159, 5158] +Triangle: [5123, 5157, 5159] +Triangle: [5129, 5162, 5160] +Triangle: [5109, 5161, 5162] +Triangle: [5138, 5165, 5164] +Triangle: [5125, 5163, 5165] +Triangle: [5134, 5168, 5166] +Triangle: [5118, 5167, 5168] +Triangle: [5168, 5170, 5171] +Triangle: [5167, 5169, 5170] +Triangle: [5128, 5174, 5172] +Triangle: [5108, 5173, 5174] +Triangle: [4875, 5177, 5175] +Triangle: [4855, 5176, 5177] +Triangle: [4868, 4883, 5180] +Triangle: [4869, 5178, 5180] +Triangle: [5189, 5185, 5186] +Triangle: [5184, 5185, 5189] +Triangle: [5189, 5187, 5188] +Triangle: [5182, 5183, 5189] +Triangle: [5200, 5201, 1934] +Triangle: [1935, 1934, 5201] +Triangle: [1936, 1935, 5202] +Triangle: [1936, 5203, 5204] +Triangle: [1937, 5204, 5205] +Triangle: [1938, 5205, 5206] +Triangle: [1942, 1939, 5206] +Triangle: [1942, 5209, 5208] +Triangle: [5227, 5207, 5208] +Triangle: [1940, 5207, 5197] +Triangle: [735, 5190, 5200] +Triangle: [736, 5191, 5190] +Triangle: [737, 5192, 5191] +Triangle: [5193, 5192, 737] +Triangle: [5194, 5193, 738] +Triangle: [5195, 5194, 739] +Triangle: [744, 5199, 5195] +Triangle: [744, 743, 5198] +Triangle: [5198, 5196, 5216] +Triangle: [5197, 5196, 741] +Triangle: [5218, 5216, 733] +Triangle: [1932, 5227, 5228] +Triangle: [5220, 5221, 5201] +Triangle: [5202, 5201, 5221] +Triangle: [5203, 5202, 5222] +Triangle: [5204, 5203, 5223] +Triangle: [5205, 5204, 5224] +Triangle: [5205, 5225, 5226] +Triangle: [5206, 5226, 5229] +Triangle: [5209, 5229, 5228] +Triangle: [5207, 5227, 5217] +Triangle: [5190, 5210, 5220] +Triangle: [5191, 5211, 5210] +Triangle: [5192, 5212, 5211] +Triangle: [5193, 5213, 5212] +Triangle: [5194, 5214, 5213] +Triangle: [5215, 5214, 5194] +Triangle: [5219, 5215, 5195] +Triangle: [5199, 5198, 5218] +Triangle: [5217, 5216, 5196] +Triangle: [5234, 5236, 5237] +Triangle: [5238, 5239, 5237] +Triangle: [5240, 5241, 5239] +Triangle: [5240, 5242, 5243] +Triangle: [5244, 5245, 5243] +Triangle: [5244, 5246, 5247] +Triangle: [5246, 5248, 5249] +Triangle: [5248, 5250, 5251] +Triangle: [5252, 5253, 5251] +Triangle: [5254, 5255, 5253] +Triangle: [5256, 5257, 5255] +Triangle: [5258, 5259, 5257] +Triangle: [5260, 5261, 5259] +Triangle: [5231, 5262, 5261] +Triangle: [5268, 5267, 5265] +Triangle: [5231, 5232, 5233] +Triangle: [5267, 5268, 5270] +Triangle: [5272, 5271, 5269] +Triangle: [5274, 5273, 5271] +Triangle: [5276, 5275, 5273] +Triangle: [5276, 5278, 5277] +Triangle: [5278, 5280, 5279] +Triangle: [5280, 5282, 5281] +Triangle: [5282, 5284, 5283] +Triangle: [5284, 5286, 5285] +Triangle: [5288, 5287, 5285] +Triangle: [5288, 5290, 5289] +Triangle: [5290, 5292, 5291] +Triangle: [5292, 5294, 5293] +Triangle: [5296, 5295, 5293] +Triangle: [5296, 5298, 5297] +Triangle: [5300, 5299, 5297] +Triangle: [5300, 5302, 5301] +Triangle: [5304, 5303, 5301] +Triangle: [5304, 5306, 5305] +Triangle: [5306, 5308, 5307] +Triangle: [5308, 5310, 5309] +Triangle: [5310, 5312, 5311] +Triangle: [5312, 5314, 5313] +Triangle: [5314, 5316, 5315] +Triangle: [5316, 5318, 5317] +Triangle: [5318, 5320, 5319] +Triangle: [5320, 5322, 5321] +Triangle: [5322, 5324, 5323] +Triangle: [5324, 5326, 5325] +Triangle: [5326, 5327, 5264] +Triangle: [5266, 5265, 5264] +Triangle: [5232, 5234, 5235] +Triangle: [4465, 5329, 5328] +Triangle: [4436, 5331, 5330] +Triangle: [2014, 2015, 2028] +Triangle: [3632, 3635, 5332] +Triangle: [3620, 3627, 5335] +Triangle: [3723, 5339, 5340] +Triangle: [5339, 5338, 5341] +Triangle: [3739, 5340, 5336] +Triangle: [5340, 5341, 5337] +Triangle: [3708, 5343, 5346] +Triangle: [5343, 5342, 5347] +Triangle: [3733, 5346, 5344] +Triangle: [5346, 5347, 5345] +Triangle: [5351, 5352, 4042] +Triangle: [5350, 5353, 5352] +Triangle: [5352, 5348, 4027] +Triangle: [5352, 5353, 5349] +Triangle: [3634, 5355, 5354] +Triangle: [5357, 5358, 4196] +Triangle: [5358, 5356, 4182] +Triangle: [5359, 5361, 4188] +Triangle: [5361, 5360, 4168] +Triangle: [3658, 5362, 5364] +Triangle: [5364, 5363, 3661] +Triangle: [5366, 5367, 4093] +Triangle: [4093, 5367, 5365] +Triangle: [4088, 5370, 5369] +Triangle: [4061, 5368, 5370] +Triangle: [5373, 5372, 3663] +Triangle: [3656, 5371, 5373] +Triangle: [4191, 5376, 5375] +Triangle: [5374, 5376, 4191] +Triangle: [4205, 5379, 5378] +Triangle: [5378, 5377, 4204] +Triangle: [3700, 5382, 5381] +Triangle: [3702, 5381, 5380] +Triangle: [3725, 5384, 5385] +Triangle: [3740, 5385, 5383] +Triangle: [4011, 5386, 5388] +Triangle: [4036, 5388, 5387] +Triangle: [5389, 5391, 4189] +Triangle: [5391, 5390, 4169] +Triangle: [5393, 5394, 4043] +Triangle: [4043, 5394, 5392] +Triangle: [3709, 5395, 5397] +Triangle: [5397, 5396, 3712] +Triangle: [3602, 3600, 5398] +Triangle: [5398, 3600, 3601] +Triangle: [5398, 3344, 3349] +Triangle: [3342, 3344, 5398] +Triangle: [3603, 5399, 3357] +Triangle: [3352, 5399, 3603] +Triangle: [3351, 3400, 5399] +Triangle: [3357, 5399, 3400] +=== Vertex Weights (Max 5 bones per vertex) === +Vertex 0: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.202790 + Group: 'LeftHand', Weight: 0.765915 + Group: 'LeftHandPinky1', Weight: 0.004530 +Vertex 1: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.418436 + Group: 'LeftHand', Weight: 0.567983 +Vertex 2: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.054529 + Group: 'LeftHand', Weight: 0.933020 +Vertex 3: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.115962 + Group: 'LeftHand', Weight: 0.842878 + Group: 'LeftHandPinky1', Weight: 0.016529 +Vertex 4: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.078844 + Group: 'LeftHand', Weight: 0.874932 + Group: 'LeftHandPinky1', Weight: 0.009246 +Vertex 5: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.066945 + Group: 'LeftHand', Weight: 0.889028 +Vertex 6: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.068704 + Group: 'LeftHand', Weight: 0.884849 + Group: 'LeftHandThumb1', Weight: 0.019631 +Vertex 7: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.117496 + Group: 'LeftHand', Weight: 0.829197 + Group: 'LeftHandThumb1', Weight: 0.045677 +Vertex 8: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.155094 + Group: 'LeftHand', Weight: 0.814309 + Group: 'LeftHandThumb1', Weight: 0.008178 +Vertex 9: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.336065 + Group: 'LeftHand', Weight: 0.618432 + Group: 'LeftHandThumb1', Weight: 0.037015 +Vertex 10: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.310582 + Group: 'LeftHand', Weight: 0.653320 + Group: 'LeftHandThumb1', Weight: 0.019192 +Vertex 11: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.048253 + Group: 'LeftHand', Weight: 0.945830 +Vertex 12: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.127772 + Group: 'LeftHand', Weight: 0.866698 +Vertex 13: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.998641 +Vertex 14: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.997987 +Vertex 15: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991908 +Vertex 16: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.998240 +Vertex 17: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.992845 +Vertex 18: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.987412 +Vertex 19: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.983232 +Vertex 20: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.980032 +Vertex 21: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.988615 +Vertex 22: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.981729 +Vertex 23: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.985488 +Vertex 24: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.994747 +Vertex 25: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.996757 +Vertex 26: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.770626 + Group: 'LeftArm', Weight: 0.204830 +Vertex 27: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.778720 + Group: 'LeftArm', Weight: 0.203119 +Vertex 28: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.733482 + Group: 'LeftArm', Weight: 0.222679 +Vertex 29: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.011765 + Group: 'LeftShoulder', Weight: 0.726443 + Group: 'LeftArm', Weight: 0.222305 +Vertex 30: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.030216 + Group: 'LeftShoulder', Weight: 0.623588 + Group: 'LeftArm', Weight: 0.307974 +Vertex 31: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.045900 + Group: 'Spine2', Weight: 0.068734 + Group: 'LeftShoulder', Weight: 0.574676 + Group: 'LeftArm', Weight: 0.300236 +Vertex 32: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068282 + Group: 'Spine2', Weight: 0.083457 + Group: 'LeftShoulder', Weight: 0.524697 + Group: 'LeftArm', Weight: 0.313806 +Vertex 33: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.074438 + Group: 'Spine2', Weight: 0.086083 + Group: 'LeftShoulder', Weight: 0.568598 + Group: 'LeftArm', Weight: 0.261255 +Vertex 34: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.019541 + Group: 'Spine2', Weight: 0.029697 + Group: 'LeftShoulder', Weight: 0.652768 + Group: 'LeftArm', Weight: 0.261768 +Vertex 35: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.076058 + Group: 'Spine2', Weight: 0.083201 + Group: 'LeftShoulder', Weight: 0.572551 + Group: 'LeftArm', Weight: 0.258188 +Vertex 36: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.058941 + Group: 'Spine2', Weight: 0.060443 + Group: 'LeftShoulder', Weight: 0.603383 + Group: 'LeftArm', Weight: 0.267922 +Vertex 37: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.748706 + Group: 'LeftArm', Weight: 0.227524 +Vertex 38: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.750236 + Group: 'LeftArm', Weight: 0.232221 +Vertex 39: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.994001 +Vertex 40: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.993985 +Vertex 41: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.992397 +Vertex 42: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.993189 +Vertex 43: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.990004 +Vertex 44: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.987138 +Vertex 45: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.983448 +Vertex 46: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.982430 +Vertex 47: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.992043 +Vertex 48: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.986439 +Vertex 49: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.990405 +Vertex 50: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.992617 +Vertex 51: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.993304 +Vertex 52: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.960670 + Group: 'LeftForeArm', Weight: 0.025524 +Vertex 53: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.957410 + Group: 'LeftForeArm', Weight: 0.032188 +Vertex 54: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.967219 + Group: 'LeftForeArm', Weight: 0.014636 +Vertex 55: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.972244 + Group: 'LeftForeArm', Weight: 0.004969 +Vertex 56: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.962397 + Group: 'LeftForeArm', Weight: 0.023624 +Vertex 57: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.983442 +Vertex 58: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991747 +Vertex 59: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.959311 + Group: 'LeftForeArm', Weight: 0.028980 +Vertex 60: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.989556 +Vertex 61: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.984845 +Vertex 62: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.977675 +Vertex 63: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.967714 + Group: 'LeftForeArm', Weight: 0.012073 +Vertex 64: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.977860 +Vertex 65: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.285430 + Group: 'LeftForeArm', Weight: 0.714398 +Vertex 66: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.187462 + Group: 'LeftForeArm', Weight: 0.812441 +Vertex 67: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.190650 + Group: 'LeftForeArm', Weight: 0.809244 +Vertex 68: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.272071 + Group: 'LeftForeArm', Weight: 0.727882 +Vertex 69: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.485166 + Group: 'LeftForeArm', Weight: 0.514752 +Vertex 70: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.486143 + Group: 'LeftForeArm', Weight: 0.513792 +Vertex 71: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.236628 + Group: 'LeftForeArm', Weight: 0.763202 +Vertex 72: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.197142 + Group: 'LeftForeArm', Weight: 0.802768 +Vertex 73: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.234384 + Group: 'LeftForeArm', Weight: 0.765577 +Vertex 74: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.209089 + Group: 'LeftForeArm', Weight: 0.790776 +Vertex 75: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.211182 + Group: 'LeftForeArm', Weight: 0.788784 +Vertex 76: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.442098 + Group: 'LeftForeArm', Weight: 0.557860 +Vertex 77: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.205955 + Group: 'LeftForeArm', Weight: 0.793969 +Vertex 78: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.133127 + Group: 'Spine2', Weight: 0.144375 + Group: 'LeftShoulder', Weight: 0.526440 + Group: 'LeftArm', Weight: 0.179721 +Vertex 79: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.147525 + Group: 'Spine2', Weight: 0.170137 + Group: 'LeftShoulder', Weight: 0.491221 + Group: 'LeftArm', Weight: 0.173242 +Vertex 80: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.092178 + Group: 'Spine2', Weight: 0.090099 + Group: 'LeftShoulder', Weight: 0.610218 + Group: 'LeftArm', Weight: 0.193680 +Vertex 81: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.063108 + Group: 'Spine2', Weight: 0.072214 + Group: 'LeftShoulder', Weight: 0.710108 + Group: 'LeftArm', Weight: 0.136742 +Vertex 82: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.022302 + Group: 'LeftShoulder', Weight: 0.817515 + Group: 'LeftArm', Weight: 0.102015 +Vertex 83: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.123419 + Group: 'Spine2', Weight: 0.564534 + Group: 'Neck', Weight: 0.072257 + Group: 'LeftShoulder', Weight: 0.110549 + Group: 'RightShoulder', Weight: 0.110653 +Vertex 84: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.057686 + Group: 'Spine2', Weight: 0.503996 + Group: 'Neck', Weight: 0.160654 + Group: 'LeftShoulder', Weight: 0.129917 + Group: 'RightShoulder', Weight: 0.130023 +Vertex 85: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.020421 + Group: 'Spine2', Weight: 0.093144 + Group: 'Neck', Weight: 0.051391 + Group: 'LeftShoulder', Weight: 0.774826 + Group: 'LeftArm', Weight: 0.013442 +Vertex 86: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.099697 + Group: 'Spine2', Weight: 0.188646 + Group: 'Neck', Weight: 0.019238 + Group: 'LeftShoulder', Weight: 0.615864 + Group: 'LeftArm', Weight: 0.031956 +Vertex 87: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.030212 + Group: 'Spine2', Weight: 0.210542 + Group: 'Neck', Weight: 0.131656 + Group: 'LeftShoulder', Weight: 0.568320 + Group: 'RightShoulder', Weight: 0.005922 +Vertex 88: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.113887 + Group: 'Spine2', Weight: 0.494300 + Group: 'Neck', Weight: 0.069074 + Group: 'LeftShoulder', Weight: 0.253327 + Group: 'RightShoulder', Weight: 0.044579 +Vertex 89: +Vertex groups: 3 + Group: 'Spine', Weight: 0.140525 + Group: 'Spine1', Weight: 0.727585 + Group: 'Spine2', Weight: 0.063952 +Vertex 90: +Vertex groups: 4 + Group: 'Hips', Weight: 0.074090 + Group: 'Spine', Weight: 0.585896 + Group: 'Spine1', Weight: 0.252113 + Group: 'LeftUpLeg', Weight: 0.056369 +Vertex 91: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.335196 + Group: 'Spine2', Weight: 0.475540 + Group: 'Neck', Weight: 0.000583 + Group: 'LeftShoulder', Weight: 0.069243 + Group: 'RightShoulder', Weight: 0.069337 +Vertex 92: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.253033 + Group: 'Spine2', Weight: 0.473719 + Group: 'Neck', Weight: 0.021745 + Group: 'LeftShoulder', Weight: 0.170492 + Group: 'RightShoulder', Weight: 0.029409 +Vertex 93: +Vertex groups: 4 + Group: 'Spine', Weight: 0.053725 + Group: 'Spine1', Weight: 0.738594 + Group: 'Spine2', Weight: 0.121295 + Group: 'LeftShoulder', Weight: 0.042853 +Vertex 94: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.210305 + Group: 'Spine2', Weight: 0.294307 + Group: 'LeftShoulder', Weight: 0.404738 + Group: 'LeftArm', Weight: 0.032933 +Vertex 95: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.184411 + Group: 'Spine2', Weight: 0.176680 + Group: 'LeftShoulder', Weight: 0.518550 + Group: 'LeftArm', Weight: 0.090775 +Vertex 96: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.201070 + Group: 'Spine2', Weight: 0.180693 + Group: 'LeftShoulder', Weight: 0.474188 + Group: 'LeftArm', Weight: 0.119808 +Vertex 97: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.205015 + Group: 'Spine2', Weight: 0.227556 + Group: 'LeftShoulder', Weight: 0.413073 + Group: 'LeftArm', Weight: 0.131249 +Vertex 98: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.206969 + Group: 'Spine2', Weight: 0.240396 + Group: 'LeftShoulder', Weight: 0.392246 + Group: 'LeftArm', Weight: 0.135822 +Vertex 99: +Vertex groups: 3 + Group: 'Neck', Weight: 0.002101 + Group: 'LeftShoulder', Weight: 0.866294 + Group: 'LeftArm', Weight: 0.085364 +Vertex 100: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.010661 + Group: 'Neck', Weight: 0.074939 + Group: 'LeftShoulder', Weight: 0.846830 + Group: 'LeftArm', Weight: 0.009921 +Vertex 101: +Vertex groups: 4 + Group: 'Spine', Weight: 0.029324 + Group: 'Spine1', Weight: 0.726580 + Group: 'Spine2', Weight: 0.133489 + Group: 'LeftShoulder', Weight: 0.057220 +Vertex 102: +Vertex groups: 4 + Group: 'Spine', Weight: 0.001505 + Group: 'Spine1', Weight: 0.670179 + Group: 'Spine2', Weight: 0.173426 + Group: 'LeftShoulder', Weight: 0.078870 +Vertex 103: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.031945 + Group: 'Spine2', Weight: 0.442065 + Group: 'Neck', Weight: 0.233756 + Group: 'LeftShoulder', Weight: 0.131639 + Group: 'RightShoulder', Weight: 0.131753 +Vertex 104: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.036570 + Group: 'Neck', Weight: 0.165692 + Group: 'LeftShoulder', Weight: 0.751994 +Vertex 105: +Vertex groups: 2 + Group: 'Neck', Weight: 0.199781 + Group: 'LeftShoulder', Weight: 0.753674 +Vertex 106: +Vertex groups: 3 + Group: 'Neck', Weight: 0.091193 + Group: 'LeftShoulder', Weight: 0.855670 + Group: 'LeftArm', Weight: 0.013397 +Vertex 107: +Vertex groups: 3 + Group: 'Neck', Weight: 0.018790 + Group: 'LeftShoulder', Weight: 0.872164 + Group: 'LeftArm', Weight: 0.080386 +Vertex 108: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.241967 + Group: 'Neck', Weight: 0.282393 + Group: 'LeftShoulder', Weight: 0.389939 + Group: 'RightShoulder', Weight: 0.027061 +Vertex 109: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.055021 + Group: 'Spine2', Weight: 0.461477 + Group: 'Neck', Weight: 0.164064 + Group: 'LeftShoulder', Weight: 0.218901 + Group: 'RightShoulder', Weight: 0.081767 +Vertex 110: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.017404 + Group: 'Spine2', Weight: 0.242903 + Group: 'Neck', Weight: 0.191961 + Group: 'LeftShoulder', Weight: 0.473531 + Group: 'RightShoulder', Weight: 0.024614 +Vertex 111: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.025966 + Group: 'Spine2', Weight: 0.398740 + Group: 'Neck', Weight: 0.243379 + Group: 'LeftShoulder', Weight: 0.220409 + Group: 'RightShoulder', Weight: 0.078847 +Vertex 112: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.054423 + Group: 'Neck', Weight: 0.268404 + Group: 'LeftShoulder', Weight: 0.637143 +Vertex 113: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.053715 + Group: 'Neck', Weight: 0.341221 + Group: 'LeftShoulder', Weight: 0.564399 +Vertex 114: +Vertex groups: 2 + Group: 'Neck', Weight: 0.433638 + Group: 'LeftShoulder', Weight: 0.518544 +Vertex 115: +Vertex groups: 2 + Group: 'Neck', Weight: 0.311569 + Group: 'LeftShoulder', Weight: 0.641495 +Vertex 116: +Vertex groups: 5 + Group: 'Spine', Weight: 0.012292 + Group: 'Spine1', Weight: 0.381919 + Group: 'Spine2', Weight: 0.290945 + Group: 'LeftShoulder', Weight: 0.215378 + Group: 'LeftArm', Weight: 0.069259 +Vertex 117: +Vertex groups: 5 + Group: 'Spine', Weight: 0.011241 + Group: 'Spine1', Weight: 0.341138 + Group: 'Spine2', Weight: 0.292326 + Group: 'LeftShoulder', Weight: 0.243070 + Group: 'LeftArm', Weight: 0.082693 +Vertex 118: +Vertex groups: 5 + Group: 'Spine', Weight: 0.083190 + Group: 'Spine1', Weight: 0.652108 + Group: 'Spine2', Weight: 0.135014 + Group: 'LeftShoulder', Weight: 0.083797 + Group: 'LeftArm', Weight: 0.000556 +Vertex 119: +Vertex groups: 5 + Group: 'Spine', Weight: 0.085744 + Group: 'Spine1', Weight: 0.640099 + Group: 'Spine2', Weight: 0.134026 + Group: 'LeftShoulder', Weight: 0.092290 + Group: 'LeftArm', Weight: 0.007646 +Vertex 120: +Vertex groups: 4 + Group: 'Spine', Weight: 0.125907 + Group: 'Spine1', Weight: 0.691898 + Group: 'Spine2', Weight: 0.091612 + Group: 'LeftShoulder', Weight: 0.043290 +Vertex 121: +Vertex groups: 4 + Group: 'Spine', Weight: 0.145999 + Group: 'Spine1', Weight: 0.673766 + Group: 'Spine2', Weight: 0.082887 + Group: 'LeftShoulder', Weight: 0.051613 +Vertex 122: +Vertex groups: 4 + Group: 'Hips', Weight: 0.017702 + Group: 'Spine', Weight: 0.565721 + Group: 'Spine1', Weight: 0.270832 + Group: 'LeftUpLeg', Weight: 0.095162 +Vertex 123: +Vertex groups: 3 + Group: 'Spine', Weight: 0.544429 + Group: 'Spine1', Weight: 0.302600 + Group: 'LeftUpLeg', Weight: 0.090086 +Vertex 124: +Vertex groups: 4 + Group: 'Spine', Weight: 0.149027 + Group: 'Spine1', Weight: 0.702521 + Group: 'Spine2', Weight: 0.071675 + Group: 'LeftShoulder', Weight: 0.010132 +Vertex 125: +Vertex groups: 4 + Group: 'Hips', Weight: 0.054929 + Group: 'Spine', Weight: 0.577374 + Group: 'Spine1', Weight: 0.255749 + Group: 'LeftUpLeg', Weight: 0.080790 +Vertex 126: +Vertex groups: 3 + Group: 'Spine', Weight: 0.132878 + Group: 'Spine1', Weight: 0.752503 + Group: 'Spine2', Weight: 0.052699 +Vertex 127: +Vertex groups: 4 + Group: 'Hips', Weight: 0.086132 + Group: 'Spine', Weight: 0.590241 + Group: 'Spine1', Weight: 0.249913 + Group: 'LeftUpLeg', Weight: 0.026424 +Vertex 128: +Vertex groups: 3 + Group: 'Spine', Weight: 0.140580 + Group: 'Spine1', Weight: 0.751893 + Group: 'Spine2', Weight: 0.043546 +Vertex 129: +Vertex groups: 5 + Group: 'Hips', Weight: 0.094537 + Group: 'Spine', Weight: 0.592895 + Group: 'Spine1', Weight: 0.242458 + Group: 'LeftUpLeg', Weight: 0.002226 + Group: 'RightUpLeg', Weight: 0.002349 +Vertex 130: +Vertex groups: 3 + Group: 'Spine', Weight: 0.066914 + Group: 'Spine1', Weight: 0.780197 + Group: 'Spine2', Weight: 0.085654 +Vertex 131: +Vertex groups: 5 + Group: 'Spine', Weight: 0.030657 + Group: 'Spine1', Weight: 0.754830 + Group: 'Spine2', Weight: 0.120810 + Group: 'LeftShoulder', Weight: 0.009819 + Group: 'RightShoulder', Weight: 0.009940 +Vertex 132: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.656332 + Group: 'Spine2', Weight: 0.203138 + Group: 'LeftShoulder', Weight: 0.041729 + Group: 'RightShoulder', Weight: 0.041883 +Vertex 133: +Vertex groups: 4 + Group: 'Spine', Weight: 0.066788 + Group: 'Spine1', Weight: 0.634906 + Group: 'Spine2', Weight: 0.183447 + Group: 'LeftShoulder', Weight: 0.073721 +Vertex 134: +Vertex groups: 4 + Group: 'Spine', Weight: 0.064278 + Group: 'Spine1', Weight: 0.612089 + Group: 'Spine2', Weight: 0.191259 + Group: 'LeftShoulder', Weight: 0.088211 +Vertex 135: +Vertex groups: 4 + Group: 'Spine', Weight: 0.068022 + Group: 'Spine1', Weight: 0.656042 + Group: 'Spine2', Weight: 0.174071 + Group: 'LeftShoulder', Weight: 0.062444 +Vertex 136: +Vertex groups: 4 + Group: 'Spine', Weight: 0.069553 + Group: 'Spine1', Weight: 0.732187 + Group: 'Spine2', Weight: 0.119292 + Group: 'LeftShoulder', Weight: 0.029631 +Vertex 137: +Vertex groups: 3 + Group: 'Spine', Weight: 0.094732 + Group: 'Spine1', Weight: 0.777251 + Group: 'Spine2', Weight: 0.066469 +Vertex 138: +Vertex groups: 5 + Group: 'Spine', Weight: 0.036575 + Group: 'Spine1', Weight: 0.551318 + Group: 'Spine2', Weight: 0.229791 + Group: 'LeftShoulder', Weight: 0.125167 + Group: 'LeftArm', Weight: 0.016286 +Vertex 139: +Vertex groups: 5 + Group: 'Spine', Weight: 0.051569 + Group: 'Spine1', Weight: 0.563121 + Group: 'Spine2', Weight: 0.195234 + Group: 'LeftShoulder', Weight: 0.133748 + Group: 'LeftArm', Weight: 0.032907 +Vertex 140: +Vertex groups: 5 + Group: 'Spine', Weight: 0.053451 + Group: 'Spine1', Weight: 0.543073 + Group: 'Spine2', Weight: 0.194401 + Group: 'LeftShoulder', Weight: 0.147285 + Group: 'LeftArm', Weight: 0.046038 +Vertex 141: +Vertex groups: 5 + Group: 'Spine', Weight: 0.013805 + Group: 'Spine1', Weight: 0.508798 + Group: 'Spine2', Weight: 0.243574 + Group: 'LeftShoulder', Weight: 0.158625 + Group: 'LeftArm', Weight: 0.031721 +Vertex 142: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.424081 + Group: 'Spine2', Weight: 0.238288 + Group: 'LeftShoulder', Weight: 0.242900 + Group: 'LeftArm', Weight: 0.055882 +Vertex 143: +Vertex groups: 5 + Group: 'Spine', Weight: 0.000535 + Group: 'Spine1', Weight: 0.465177 + Group: 'Spine2', Weight: 0.238629 + Group: 'LeftShoulder', Weight: 0.203491 + Group: 'LeftArm', Weight: 0.050775 +Vertex 144: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.490736 + Group: 'Spine2', Weight: 0.209780 + Group: 'LeftShoulder', Weight: 0.214202 + Group: 'LeftArm', Weight: 0.035048 +Vertex 145: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.530183 + Group: 'Spine2', Weight: 0.207308 + Group: 'LeftShoulder', Weight: 0.183609 + Group: 'LeftArm', Weight: 0.011009 +Vertex 146: +Vertex groups: 3 + Group: 'Spine1', Weight: 0.573695 + Group: 'Spine2', Weight: 0.216086 + Group: 'LeftShoulder', Weight: 0.132989 +Vertex 147: +Vertex groups: 3 + Group: 'Spine1', Weight: 0.607161 + Group: 'Spine2', Weight: 0.213728 + Group: 'LeftShoulder', Weight: 0.100325 +Vertex 148: +Vertex groups: 4 + Group: 'Spine', Weight: 0.069293 + Group: 'Spine1', Weight: 0.696835 + Group: 'Spine2', Weight: 0.148459 + Group: 'LeftShoulder', Weight: 0.043921 +Vertex 149: +Vertex groups: 5 + Group: 'Spine', Weight: 0.001003 + Group: 'Spine1', Weight: 0.542980 + Group: 'Spine2', Weight: 0.201703 + Group: 'LeftShoulder', Weight: 0.171810 + Group: 'LeftArm', Weight: 0.024224 +Vertex 150: +Vertex groups: 5 + Group: 'Spine', Weight: 0.020136 + Group: 'Spine1', Weight: 0.589590 + Group: 'Spine2', Weight: 0.195621 + Group: 'LeftShoulder', Weight: 0.129896 + Group: 'LeftArm', Weight: 0.010521 +Vertex 151: +Vertex groups: 4 + Group: 'Spine', Weight: 0.047616 + Group: 'Spine1', Weight: 0.624643 + Group: 'Spine2', Weight: 0.185964 + Group: 'LeftShoulder', Weight: 0.096659 +Vertex 152: +Vertex groups: 5 + Group: 'Spine', Weight: 0.002223 + Group: 'Spine1', Weight: 0.608189 + Group: 'Spine2', Weight: 0.180042 + Group: 'LeftShoulder', Weight: 0.134396 + Group: 'LeftArm', Weight: 0.000842 +Vertex 153: +Vertex groups: 4 + Group: 'Spine', Weight: 0.024796 + Group: 'Spine1', Weight: 0.656238 + Group: 'Spine2', Weight: 0.164135 + Group: 'LeftShoulder', Weight: 0.098257 +Vertex 154: +Vertex groups: 4 + Group: 'Spine', Weight: 0.049746 + Group: 'Spine1', Weight: 0.671082 + Group: 'Spine2', Weight: 0.161149 + Group: 'LeftShoulder', Weight: 0.077353 +Vertex 155: +Vertex groups: 4 + Group: 'Spine', Weight: 0.003015 + Group: 'Spine1', Weight: 0.657156 + Group: 'Spine2', Weight: 0.171499 + Group: 'LeftShoulder', Weight: 0.095525 +Vertex 156: +Vertex groups: 4 + Group: 'Spine', Weight: 0.026492 + Group: 'Spine1', Weight: 0.705238 + Group: 'Spine2', Weight: 0.143804 + Group: 'LeftShoulder', Weight: 0.070411 +Vertex 157: +Vertex groups: 4 + Group: 'Spine', Weight: 0.052493 + Group: 'Spine1', Weight: 0.713994 + Group: 'Spine2', Weight: 0.137710 + Group: 'LeftShoulder', Weight: 0.056620 +Vertex 158: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.661938 + Group: 'Spine2', Weight: 0.192220 + Group: 'LeftShoulder', Weight: 0.063398 + Group: 'RightShoulder', Weight: 0.015175 +Vertex 159: +Vertex groups: 4 + Group: 'Spine', Weight: 0.029169 + Group: 'Spine1', Weight: 0.746985 + Group: 'Spine2', Weight: 0.125204 + Group: 'LeftShoulder', Weight: 0.030137 +Vertex 160: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.550185 + Group: 'Spine2', Weight: 0.277266 + Group: 'LeftShoulder', Weight: 0.084799 + Group: 'RightShoulder', Weight: 0.025793 +Vertex 161: +Vertex groups: 4 + Group: 'Spine', Weight: 0.060964 + Group: 'Spine1', Weight: 0.769321 + Group: 'Spine2', Weight: 0.097066 + Group: 'LeftShoulder', Weight: 0.011281 +Vertex 162: +Vertex groups: 3 + Group: 'Spine', Weight: 0.089514 + Group: 'Spine1', Weight: 0.769191 + Group: 'Spine2', Weight: 0.076167 +Vertex 163: +Vertex groups: 4 + Group: 'Spine', Weight: 0.086262 + Group: 'Spine1', Weight: 0.673122 + Group: 'Spine2', Weight: 0.137456 + Group: 'LeftShoulder', Weight: 0.061897 +Vertex 164: +Vertex groups: 4 + Group: 'Spine', Weight: 0.075194 + Group: 'Spine1', Weight: 0.647614 + Group: 'Spine2', Weight: 0.152314 + Group: 'LeftShoulder', Weight: 0.080900 +Vertex 165: +Vertex groups: 4 + Group: 'Spine', Weight: 0.089400 + Group: 'Spine1', Weight: 0.692286 + Group: 'Spine2', Weight: 0.128606 + Group: 'LeftShoulder', Weight: 0.049439 +Vertex 166: +Vertex groups: 4 + Group: 'Spine', Weight: 0.094196 + Group: 'Spine1', Weight: 0.726584 + Group: 'Spine2', Weight: 0.104168 + Group: 'LeftShoulder', Weight: 0.020462 +Vertex 167: +Vertex groups: 5 + Group: 'Spine', Weight: 0.044598 + Group: 'Spine1', Weight: 0.560645 + Group: 'Spine2', Weight: 0.208051 + Group: 'LeftShoulder', Weight: 0.130420 + Group: 'LeftArm', Weight: 0.025876 +Vertex 168: +Vertex groups: 5 + Group: 'Spine', Weight: 0.010963 + Group: 'Spine1', Weight: 0.452094 + Group: 'Spine2', Weight: 0.268787 + Group: 'LeftShoulder', Weight: 0.182920 + Group: 'LeftArm', Weight: 0.052231 +Vertex 169: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.373334 + Group: 'Spine2', Weight: 0.263185 + Group: 'LeftShoulder', Weight: 0.257319 + Group: 'LeftArm', Weight: 0.070002 +Vertex 170: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.338481 + Group: 'Spine2', Weight: 0.240514 + Group: 'LeftShoulder', Weight: 0.313932 + Group: 'LeftArm', Weight: 0.073462 +Vertex 171: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.420059 + Group: 'Spine2', Weight: 0.214510 + Group: 'LeftShoulder', Weight: 0.273750 + Group: 'LeftArm', Weight: 0.052353 +Vertex 172: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.462496 + Group: 'Spine2', Weight: 0.230647 + Group: 'LeftShoulder', Weight: 0.225737 + Group: 'LeftArm', Weight: 0.014742 +Vertex 173: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.508261 + Group: 'Spine2', Weight: 0.274748 + Group: 'LeftShoulder', Weight: 0.135149 + Group: 'RightShoulder', Weight: 0.003828 +Vertex 174: +Vertex groups: 4 + Group: 'Spine', Weight: 0.252711 + Group: 'Spine1', Weight: 0.617941 + Group: 'Spine2', Weight: 0.036631 + Group: 'LeftUpLeg', Weight: 0.025757 +Vertex 175: +Vertex groups: 5 + Group: 'Spine', Weight: 0.259484 + Group: 'Spine1', Weight: 0.605364 + Group: 'Spine2', Weight: 0.044342 + Group: 'LeftShoulder', Weight: 0.004332 + Group: 'LeftUpLeg', Weight: 0.027183 +Vertex 176: +Vertex groups: 4 + Group: 'Spine', Weight: 0.259051 + Group: 'Spine1', Weight: 0.619665 + Group: 'Spine2', Weight: 0.024391 + Group: 'LeftUpLeg', Weight: 0.017707 +Vertex 177: +Vertex groups: 4 + Group: 'Hips', Weight: 0.017321 + Group: 'Spine', Weight: 0.255882 + Group: 'Spine1', Weight: 0.638342 + Group: 'Spine2', Weight: 0.006295 +Vertex 178: +Vertex groups: 4 + Group: 'Hips', Weight: 0.022721 + Group: 'Spine', Weight: 0.261125 + Group: 'Spine1', Weight: 0.634873 + Group: 'Spine2', Weight: 0.001777 +Vertex 179: +Vertex groups: 5 + Group: 'Hips', Weight: 0.011287 + Group: 'Spine', Weight: 0.265691 + Group: 'Spine1', Weight: 0.621377 + Group: 'Spine2', Weight: 0.012567 + Group: 'LeftUpLeg', Weight: 0.003771 +Vertex 180: +Vertex groups: 3 + Group: 'Neck', Weight: 0.063703 + Group: 'LeftShoulder', Weight: 0.880335 + Group: 'LeftArm', Weight: 0.009158 +Vertex 181: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.878972 + Group: 'LeftArm', Weight: 0.085310 +Vertex 182: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.037368 + Group: 'Neck', Weight: 0.005024 + Group: 'LeftShoulder', Weight: 0.879841 + Group: 'LeftArm', Weight: 0.010530 +Vertex 183: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.876451 + Group: 'LeftArm', Weight: 0.079441 +Vertex 184: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.063359 + Group: 'LeftShoulder', Weight: 0.805195 + Group: 'LeftArm', Weight: 0.095575 +Vertex 185: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.515562 + Group: 'Neck', Weight: 0.029424 + Group: 'LeftShoulder', Weight: 0.211202 + Group: 'RightShoulder', Weight: 0.211242 +Vertex 186: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.089698 + Group: 'LeftShoulder', Weight: 0.820348 + Group: 'LeftArm', Weight: 0.029093 +Vertex 187: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050835 + Group: 'Spine2', Weight: 0.136946 + Group: 'LeftShoulder', Weight: 0.706409 + Group: 'LeftArm', Weight: 0.083834 +Vertex 188: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068615 + Group: 'Spine2', Weight: 0.135435 + Group: 'LeftShoulder', Weight: 0.638852 + Group: 'LeftArm', Weight: 0.140019 +Vertex 189: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.196075 + Group: 'Spine2', Weight: 0.225871 + Group: 'LeftShoulder', Weight: 0.398980 + Group: 'LeftArm', Weight: 0.153109 +Vertex 190: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.130488 + Group: 'Spine2', Weight: 0.154487 + Group: 'LeftShoulder', Weight: 0.488842 + Group: 'LeftArm', Weight: 0.208456 +Vertex 191: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.072012 + Group: 'Spine2', Weight: 0.107823 + Group: 'LeftShoulder', Weight: 0.591275 + Group: 'LeftArm', Weight: 0.216075 +Vertex 192: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.033645 + Group: 'Spine2', Weight: 0.078047 + Group: 'LeftShoulder', Weight: 0.663330 + Group: 'LeftArm', Weight: 0.206008 +Vertex 193: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.024727 + Group: 'Spine2', Weight: 0.163914 + Group: 'LeftShoulder', Weight: 0.720658 + Group: 'LeftArm', Weight: 0.035236 +Vertex 194: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.009482 + Group: 'Spine2', Weight: 0.561119 + Group: 'LeftShoulder', Weight: 0.189187 + Group: 'RightShoulder', Weight: 0.189248 +Vertex 195: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.123327 + Group: 'Spine2', Weight: 0.187229 + Group: 'LeftShoulder', Weight: 0.532269 + Group: 'LeftArm', Weight: 0.136042 +Vertex 196: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.397639 + Group: 'Neck', Weight: 0.224857 + Group: 'LeftShoulder', Weight: 0.185148 + Group: 'RightShoulder', Weight: 0.185212 +Vertex 197: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.481329 + Group: 'Neck', Weight: 0.095102 + Group: 'LeftShoulder', Weight: 0.206181 + Group: 'RightShoulder', Weight: 0.206221 +Vertex 198: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.147482 + Group: 'Neck', Weight: 0.001283 + Group: 'LeftShoulder', Weight: 0.752597 + Group: 'RightShoulder', Weight: 0.024117 +Vertex 199: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.013182 + Group: 'Spine2', Weight: 0.241630 + Group: 'LeftShoulder', Weight: 0.641565 + Group: 'RightShoulder', Weight: 0.039644 +Vertex 200: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.016552 + Group: 'Neck', Weight: 0.150640 + Group: 'LeftShoulder', Weight: 0.784328 +Vertex 201: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.081327 + Group: 'Neck', Weight: 0.053944 + Group: 'LeftShoulder', Weight: 0.815862 + Group: 'RightShoulder', Weight: 0.006397 +Vertex 202: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.238347 + Group: 'Neck', Weight: 0.027601 + Group: 'LeftShoulder', Weight: 0.617473 + Group: 'RightShoulder', Weight: 0.080051 +Vertex 203: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.008248 + Group: 'Spine2', Weight: 0.341619 + Group: 'LeftShoulder', Weight: 0.508649 + Group: 'RightShoulder', Weight: 0.084964 +Vertex 204: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.170141 + Group: 'Neck', Weight: 0.083496 + Group: 'LeftShoulder', Weight: 0.663373 + Group: 'RightShoulder', Weight: 0.069422 +Vertex 205: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.127854 + Group: 'Neck', Weight: 0.181507 + Group: 'LeftShoulder', Weight: 0.617736 + Group: 'RightShoulder', Weight: 0.063409 +Vertex 206: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.139972 + Group: 'Neck', Weight: 0.547512 + Group: 'LeftShoulder', Weight: 0.153243 + Group: 'RightShoulder', Weight: 0.153348 +Vertex 207: +Vertex groups: 2 + Group: 'Neck', Weight: 0.739193 + Group: 'LeftShoulder', Weight: 0.203684 +Vertex 208: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.015450 + Group: 'Neck', Weight: 0.638099 + Group: 'LeftShoulder', Weight: 0.291211 + Group: 'RightShoulder', Weight: 0.004716 +Vertex 209: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.009799 + Group: 'Neck', Weight: 0.840453 + Group: 'LeftShoulder', Weight: 0.060423 + Group: 'RightShoulder', Weight: 0.060590 +Vertex 210: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.067356 + Group: 'Neck', Weight: 0.728569 + Group: 'LeftShoulder', Weight: 0.098666 + Group: 'RightShoulder', Weight: 0.098821 +Vertex 211: +Vertex groups: 5 + Group: 'Spine', Weight: 0.013914 + Group: 'Spine1', Weight: 0.328818 + Group: 'Spine2', Weight: 0.286529 + Group: 'LeftShoulder', Weight: 0.253403 + Group: 'LeftArm', Weight: 0.088975 +Vertex 212: +Vertex groups: 5 + Group: 'Spine', Weight: 0.053777 + Group: 'Spine1', Weight: 0.524093 + Group: 'Spine2', Weight: 0.204135 + Group: 'LeftShoulder', Weight: 0.154661 + Group: 'LeftArm', Weight: 0.049884 +Vertex 213: +Vertex groups: 5 + Group: 'Spine', Weight: 0.086125 + Group: 'Spine1', Weight: 0.630541 + Group: 'Spine2', Weight: 0.140075 + Group: 'LeftShoulder', Weight: 0.096186 + Group: 'LeftArm', Weight: 0.008797 +Vertex 214: +Vertex groups: 4 + Group: 'Spine', Weight: 0.147048 + Group: 'Spine1', Weight: 0.667461 + Group: 'Spine2', Weight: 0.087213 + Group: 'LeftShoulder', Weight: 0.055205 +Vertex 215: +Vertex groups: 5 + Group: 'Spine', Weight: 0.264963 + Group: 'Spine1', Weight: 0.601110 + Group: 'Spine2', Weight: 0.049594 + Group: 'LeftShoulder', Weight: 0.008737 + Group: 'LeftUpLeg', Weight: 0.020033 +Vertex 216: +Vertex groups: 3 + Group: 'Spine', Weight: 0.550706 + Group: 'Spine1', Weight: 0.309911 + Group: 'LeftUpLeg', Weight: 0.079976 +Vertex 217: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.261341 + Group: 'Spine2', Weight: 0.311738 + Group: 'LeftShoulder', Weight: 0.309535 + Group: 'LeftArm', Weight: 0.080854 +Vertex 218: +Vertex groups: 5 + Group: 'Spine', Weight: 0.041152 + Group: 'Spine1', Weight: 0.479474 + Group: 'Spine2', Weight: 0.249369 + Group: 'LeftShoulder', Weight: 0.167839 + Group: 'LeftArm', Weight: 0.037787 +Vertex 219: +Vertex groups: 5 + Group: 'Spine', Weight: 0.076224 + Group: 'Spine1', Weight: 0.624016 + Group: 'Spine2', Weight: 0.161558 + Group: 'LeftShoulder', Weight: 0.096686 + Group: 'LeftArm', Weight: 0.000904 +Vertex 220: +Vertex groups: 4 + Group: 'Spine', Weight: 0.137782 + Group: 'Spine1', Weight: 0.678986 + Group: 'Spine2', Weight: 0.094421 + Group: 'LeftShoulder', Weight: 0.052692 +Vertex 221: +Vertex groups: 5 + Group: 'Spine', Weight: 0.255599 + Group: 'Spine1', Weight: 0.620996 + Group: 'Spine2', Weight: 0.052145 + Group: 'LeftShoulder', Weight: 0.005821 + Group: 'LeftUpLeg', Weight: 0.002626 +Vertex 222: +Vertex groups: 3 + Group: 'Spine', Weight: 0.573574 + Group: 'Spine1', Weight: 0.311099 + Group: 'LeftUpLeg', Weight: 0.061273 +Vertex 223: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.103489 + Group: 'Spine2', Weight: 0.239356 + Group: 'LeftShoulder', Weight: 0.550791 + Group: 'LeftArm', Weight: 0.079932 +Vertex 224: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.059998 + Group: 'Spine2', Weight: 0.574832 + Group: 'LeftShoulder', Weight: 0.253970 + Group: 'RightShoulder', Weight: 0.082803 +Vertex 225: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.163932 + Group: 'Spine2', Weight: 0.666493 + Group: 'LeftShoulder', Weight: 0.072352 + Group: 'RightShoulder', Weight: 0.072451 +Vertex 226: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.075373 + Group: 'Spine2', Weight: 0.498855 + Group: 'LeftShoulder', Weight: 0.342303 + Group: 'RightShoulder', Weight: 0.044883 +Vertex 227: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.099040 + Group: 'Spine2', Weight: 0.336239 + Group: 'LeftShoulder', Weight: 0.483570 + Group: 'LeftArm', Weight: 0.034534 +Vertex 228: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.207038 + Group: 'Spine2', Weight: 0.376650 + Group: 'LeftShoulder', Weight: 0.323208 + Group: 'LeftArm', Weight: 0.057266 +Vertex 229: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.172630 + Group: 'Spine2', Weight: 0.476881 + Group: 'LeftShoulder', Weight: 0.276324 + Group: 'LeftArm', Weight: 0.013753 +Vertex 230: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.151459 + Group: 'Spine2', Weight: 0.594144 + Group: 'LeftShoulder', Weight: 0.180924 + Group: 'RightShoulder', Weight: 0.029934 +Vertex 231: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.265112 + Group: 'Spine2', Weight: 0.603131 + Group: 'LeftShoulder', Weight: 0.051840 + Group: 'RightShoulder', Weight: 0.051932 +Vertex 232: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.265855 + Group: 'Spine2', Weight: 0.571011 + Group: 'LeftShoulder', Weight: 0.097937 + Group: 'RightShoulder', Weight: 0.012741 +Vertex 233: +Vertex groups: 5 + Group: 'Spine', Weight: 0.018011 + Group: 'Spine1', Weight: 0.368493 + Group: 'Spine2', Weight: 0.375073 + Group: 'LeftShoulder', Weight: 0.171972 + Group: 'LeftArm', Weight: 0.017293 +Vertex 234: +Vertex groups: 3 + Group: 'Spine1', Weight: 0.319296 + Group: 'Spine2', Weight: 0.473073 + Group: 'LeftShoulder', Weight: 0.139170 +Vertex 235: +Vertex groups: 4 + Group: 'Spine', Weight: 0.066031 + Group: 'Spine1', Weight: 0.636597 + Group: 'Spine2', Weight: 0.184713 + Group: 'LeftShoulder', Weight: 0.079360 +Vertex 236: +Vertex groups: 4 + Group: 'Spine', Weight: 0.044695 + Group: 'Spine1', Weight: 0.648408 + Group: 'Spine2', Weight: 0.212861 + Group: 'LeftShoulder', Weight: 0.062421 +Vertex 237: +Vertex groups: 4 + Group: 'Spine', Weight: 0.123129 + Group: 'Spine1', Weight: 0.710520 + Group: 'Spine2', Weight: 0.095999 + Group: 'LeftShoulder', Weight: 0.033742 +Vertex 238: +Vertex groups: 4 + Group: 'Spine', Weight: 0.097602 + Group: 'Spine1', Weight: 0.763566 + Group: 'Spine2', Weight: 0.089542 + Group: 'LeftShoulder', Weight: 0.005389 +Vertex 239: +Vertex groups: 3 + Group: 'Spine', Weight: 0.258978 + Group: 'Spine1', Weight: 0.643398 + Group: 'Spine2', Weight: 0.038851 +Vertex 240: +Vertex groups: 3 + Group: 'Spine', Weight: 0.244145 + Group: 'Spine1', Weight: 0.688943 + Group: 'Spine2', Weight: 0.014789 +Vertex 241: +Vertex groups: 3 + Group: 'Spine', Weight: 0.617839 + Group: 'Spine1', Weight: 0.295506 + Group: 'LeftUpLeg', Weight: 0.036438 +Vertex 242: +Vertex groups: 2 + Group: 'Spine', Weight: 0.686909 + Group: 'Spine1', Weight: 0.257369 +Vertex 243: +Vertex groups: 5 + Group: 'Spine', Weight: 0.015904 + Group: 'Spine1', Weight: 0.699112 + Group: 'Spine2', Weight: 0.207451 + Group: 'LeftShoulder', Weight: 0.000311 + Group: 'RightShoulder', Weight: 0.000445 +Vertex 244: +Vertex groups: 4 + Group: 'Spine', Weight: 0.018822 + Group: 'Spine1', Weight: 0.673930 + Group: 'Spine2', Weight: 0.221913 + Group: 'LeftShoulder', Weight: 0.029894 +Vertex 245: +Vertex groups: 3 + Group: 'Spine', Weight: 0.072363 + Group: 'Spine1', Weight: 0.818055 + Group: 'Spine2', Weight: 0.076931 +Vertex 246: +Vertex groups: 3 + Group: 'Spine', Weight: 0.076678 + Group: 'Spine1', Weight: 0.809072 + Group: 'Spine2', Weight: 0.078713 +Vertex 247: +Vertex groups: 2 + Group: 'Spine', Weight: 0.254845 + Group: 'Spine1', Weight: 0.704656 +Vertex 248: +Vertex groups: 2 + Group: 'Spine', Weight: 0.757033 + Group: 'Spine1', Weight: 0.200464 +Vertex 249: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.055088 + Group: 'Spine2', Weight: 0.631068 + Group: 'LeftShoulder', Weight: 0.144115 + Group: 'RightShoulder', Weight: 0.144211 +Vertex 250: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.083822 + Group: 'Spine2', Weight: 0.643764 + Group: 'LeftShoulder', Weight: 0.164224 + Group: 'RightShoulder', Weight: 0.082628 +Vertex 251: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.087614 + Group: 'Spine2', Weight: 0.662811 + Group: 'LeftShoulder', Weight: 0.112638 + Group: 'RightShoulder', Weight: 0.112746 +Vertex 252: +Vertex groups: 4 + Group: 'Hips', Weight: 0.229668 + Group: 'Spine', Weight: 0.499370 + Group: 'Spine1', Weight: 0.086682 + Group: 'LeftUpLeg', Weight: 0.158317 +Vertex 253: +Vertex groups: 4 + Group: 'Hips', Weight: 0.077877 + Group: 'Spine', Weight: 0.543980 + Group: 'Spine1', Weight: 0.123107 + Group: 'LeftUpLeg', Weight: 0.235478 +Vertex 254: +Vertex groups: 4 + Group: 'Hips', Weight: 0.035722 + Group: 'Spine', Weight: 0.570494 + Group: 'Spine1', Weight: 0.143781 + Group: 'LeftUpLeg', Weight: 0.220802 +Vertex 255: +Vertex groups: 4 + Group: 'Hips', Weight: 0.142934 + Group: 'Spine', Weight: 0.521164 + Group: 'Spine1', Weight: 0.096712 + Group: 'LeftUpLeg', Weight: 0.219720 +Vertex 256: +Vertex groups: 5 + Group: 'Hips', Weight: 0.301138 + Group: 'Spine', Weight: 0.476768 + Group: 'Spine1', Weight: 0.083104 + Group: 'LeftUpLeg', Weight: 0.099584 + Group: 'RightUpLeg', Weight: 0.015262 +Vertex 257: +Vertex groups: 5 + Group: 'Hips', Weight: 0.319589 + Group: 'Spine', Weight: 0.476025 + Group: 'Spine1', Weight: 0.082860 + Group: 'LeftUpLeg', Weight: 0.057442 + Group: 'RightUpLeg', Weight: 0.057537 +Vertex 258: +Vertex groups: 3 + Group: 'Spine', Weight: 0.607296 + Group: 'Spine1', Weight: 0.150686 + Group: 'LeftUpLeg', Weight: 0.193023 +Vertex 259: +Vertex groups: 3 + Group: 'Spine', Weight: 0.658345 + Group: 'Spine1', Weight: 0.157031 + Group: 'LeftUpLeg', Weight: 0.140505 +Vertex 260: +Vertex groups: 3 + Group: 'Spine', Weight: 0.711531 + Group: 'Spine1', Weight: 0.163613 + Group: 'LeftUpLeg', Weight: 0.083937 +Vertex 261: +Vertex groups: 3 + Group: 'Spine', Weight: 0.771612 + Group: 'Spine1', Weight: 0.134439 + Group: 'LeftUpLeg', Weight: 0.055218 +Vertex 262: +Vertex groups: 2 + Group: 'Spine', Weight: 0.822411 + Group: 'Spine1', Weight: 0.111499 +Vertex 263: +Vertex groups: 3 + Group: 'Spine', Weight: 0.118450 + Group: 'Spine1', Weight: 0.810788 + Group: 'Spine2', Weight: 0.040633 +Vertex 264: +Vertex groups: 3 + Group: 'Spine', Weight: 0.131343 + Group: 'Spine1', Weight: 0.785977 + Group: 'Spine2', Weight: 0.052223 +Vertex 265: +Vertex groups: 4 + Group: 'Hips', Weight: 0.066217 + Group: 'Spine', Weight: 0.567275 + Group: 'Spine1', Weight: 0.164984 + Group: 'LeftUpLeg', Weight: 0.177656 +Vertex 266: +Vertex groups: 3 + Group: 'Spine', Weight: 0.607822 + Group: 'Spine1', Weight: 0.207398 + Group: 'LeftUpLeg', Weight: 0.132953 +Vertex 267: +Vertex groups: 4 + Group: 'Hips', Weight: 0.021653 + Group: 'Spine', Weight: 0.583481 + Group: 'Spine1', Weight: 0.193350 + Group: 'LeftUpLeg', Weight: 0.159216 +Vertex 268: +Vertex groups: 3 + Group: 'Spine', Weight: 0.653634 + Group: 'Spine1', Weight: 0.197559 + Group: 'LeftUpLeg', Weight: 0.103662 +Vertex 269: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.017304 + Group: 'Spine2', Weight: 0.404803 + Group: 'Neck', Weight: 0.280834 + Group: 'LeftShoulder', Weight: 0.129636 + Group: 'RightShoulder', Weight: 0.129754 +Vertex 270: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.011128 + Group: 'Spine2', Weight: 0.361696 + Group: 'Neck', Weight: 0.291072 + Group: 'LeftShoulder', Weight: 0.219847 + Group: 'RightShoulder', Weight: 0.074702 +Vertex 271: +Vertex groups: 2 + Group: 'Neck', Weight: 0.298788 + Group: 'Head', Weight: 0.689058 +Vertex 272: +Vertex groups: 2 + Group: 'Neck', Weight: 0.313623 + Group: 'Head', Weight: 0.673534 +Vertex 273: +Vertex groups: 2 + Group: 'Neck', Weight: 0.695012 + Group: 'Head', Weight: 0.260341 +Vertex 274: +Vertex groups: 2 + Group: 'Neck', Weight: 0.690646 + Group: 'Head', Weight: 0.258857 +Vertex 275: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.167259 + Group: 'Neck', Weight: 0.624797 + Group: 'Head', Weight: 0.013303 + Group: 'LeftShoulder', Weight: 0.079191 + Group: 'RightShoulder', Weight: 0.079346 +Vertex 276: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.133916 + Group: 'Neck', Weight: 0.646823 + Group: 'Head', Weight: 0.017134 + Group: 'LeftShoulder', Weight: 0.132386 + Group: 'RightShoulder', Weight: 0.026643 +Vertex 277: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.051504 + Group: 'Neck', Weight: 0.779424 + Group: 'Head', Weight: 0.081656 + Group: 'LeftShoulder', Weight: 0.058732 +Vertex 278: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.063557 + Group: 'Neck', Weight: 0.771851 + Group: 'Head', Weight: 0.075610 + Group: 'LeftShoulder', Weight: 0.031742 + Group: 'RightShoulder', Weight: 0.031996 +Vertex 279: +Vertex groups: 2 + Group: 'Neck', Weight: 0.690758 + Group: 'Head', Weight: 0.278735 +Vertex 280: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.091168 + Group: 'Neck', Weight: 0.670913 + Group: 'Head', Weight: 0.019995 + Group: 'LeftShoulder', Weight: 0.171115 +Vertex 281: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.005603 + Group: 'Neck', Weight: 0.806239 + Group: 'Head', Weight: 0.085958 + Group: 'LeftShoulder', Weight: 0.066884 +Vertex 282: +Vertex groups: 2 + Group: 'Neck', Weight: 0.736022 + Group: 'Head', Weight: 0.237417 +Vertex 283: +Vertex groups: 3 + Group: 'Neck', Weight: 0.704046 + Group: 'Head', Weight: 0.016982 + Group: 'LeftShoulder', Weight: 0.226904 +Vertex 284: +Vertex groups: 3 + Group: 'Neck', Weight: 0.826881 + Group: 'Head', Weight: 0.079899 + Group: 'LeftShoulder', Weight: 0.074592 +Vertex 285: +Vertex groups: 2 + Group: 'Neck', Weight: 0.702187 + Group: 'Head', Weight: 0.280865 +Vertex 286: +Vertex groups: 3 + Group: 'Neck', Weight: 0.750204 + Group: 'Head', Weight: 0.012663 + Group: 'LeftShoulder', Weight: 0.196879 +Vertex 287: +Vertex groups: 3 + Group: 'Neck', Weight: 0.844560 + Group: 'Head', Weight: 0.091704 + Group: 'LeftShoulder', Weight: 0.054140 +Vertex 288: +Vertex groups: 2 + Group: 'Neck', Weight: 0.705599 + Group: 'Head', Weight: 0.279059 +Vertex 289: +Vertex groups: 3 + Group: 'Neck', Weight: 0.875608 + Group: 'Head', Weight: 0.015779 + Group: 'LeftShoulder', Weight: 0.074781 +Vertex 290: +Vertex groups: 3 + Group: 'Neck', Weight: 0.864150 + Group: 'Head', Weight: 0.100749 + Group: 'LeftShoulder', Weight: 0.005804 +Vertex 291: +Vertex groups: 2 + Group: 'Neck', Weight: 0.736777 + Group: 'Head', Weight: 0.253083 +Vertex 292: +Vertex groups: 1 + Group: 'Neck', Weight: 0.927652 +Vertex 293: +Vertex groups: 2 + Group: 'Neck', Weight: 0.896126 + Group: 'Head', Weight: 0.083637 +Vertex 294: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.251303 + Group: 'Neck', Weight: 0.337916 + Group: 'LeftShoulder', Weight: 0.325872 + Group: 'RightShoulder', Weight: 0.027877 +Vertex 295: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.061158 + Group: 'Neck', Weight: 0.414475 + Group: 'LeftShoulder', Weight: 0.480255 +Vertex 296: +Vertex groups: 2 + Group: 'Neck', Weight: 0.784775 + Group: 'LeftShoulder', Weight: 0.164686 +Vertex 297: +Vertex groups: 3 + Group: 'Neck', Weight: 0.871290 + Group: 'LeftShoulder', Weight: 0.047418 + Group: 'RightShoulder', Weight: 0.047747 +Vertex 298: +Vertex groups: 2 + Group: 'Neck', Weight: 0.427854 + Group: 'Head', Weight: 0.565538 +Vertex 299: +Vertex groups: 2 + Group: 'Neck', Weight: 0.380002 + Group: 'Head', Weight: 0.612464 +Vertex 300: +Vertex groups: 2 + Group: 'Neck', Weight: 0.302014 + Group: 'Head', Weight: 0.691918 +Vertex 301: +Vertex groups: 2 + Group: 'Neck', Weight: 0.402827 + Group: 'Head', Weight: 0.575383 +Vertex 302: +Vertex groups: 2 + Group: 'Neck', Weight: 0.398216 + Group: 'Head', Weight: 0.578115 +Vertex 303: +Vertex groups: 2 + Group: 'Neck', Weight: 0.426405 + Group: 'Head', Weight: 0.554169 +Vertex 304: +Vertex groups: 2 + Group: 'Neck', Weight: 0.342611 + Group: 'Head', Weight: 0.644662 +Vertex 305: +Vertex groups: 2 + Group: 'Neck', Weight: 0.392070 + Group: 'Head', Weight: 0.595387 +Vertex 306: +Vertex groups: 2 + Group: 'Neck', Weight: 0.449819 + Group: 'Head', Weight: 0.538820 +Vertex 307: +Vertex groups: 2 + Group: 'Neck', Weight: 0.453463 + Group: 'Head', Weight: 0.539761 +Vertex 308: +Vertex groups: 2 + Group: 'Neck', Weight: 0.292055 + Group: 'Head', Weight: 0.702834 +Vertex 309: +Vertex groups: 2 + Group: 'Neck', Weight: 0.563517 + Group: 'Head', Weight: 0.426220 +Vertex 310: +Vertex groups: 2 + Group: 'Neck', Weight: 0.313698 + Group: 'Head', Weight: 0.682000 +Vertex 311: +Vertex groups: 2 + Group: 'Neck', Weight: 0.259674 + Group: 'Head', Weight: 0.736265 +Vertex 312: +Vertex groups: 2 + Group: 'Neck', Weight: 0.219772 + Group: 'Head', Weight: 0.776933 +Vertex 313: +Vertex groups: 2 + Group: 'Neck', Weight: 0.175975 + Group: 'Head', Weight: 0.821295 +Vertex 314: +Vertex groups: 2 + Group: 'Neck', Weight: 0.143321 + Group: 'Head', Weight: 0.854414 +Vertex 315: +Vertex groups: 2 + Group: 'Neck', Weight: 0.133777 + Group: 'Head', Weight: 0.864248 +Vertex 316: +Vertex groups: 2 + Group: 'Neck', Weight: 0.150477 + Group: 'Head', Weight: 0.847481 +Vertex 317: +Vertex groups: 2 + Group: 'Neck', Weight: 0.123807 + Group: 'Head', Weight: 0.874274 +Vertex 318: +Vertex groups: 2 + Group: 'Neck', Weight: 0.155484 + Group: 'Head', Weight: 0.842066 +Vertex 319: +Vertex groups: 2 + Group: 'Neck', Weight: 0.194308 + Group: 'Head', Weight: 0.802541 +Vertex 320: +Vertex groups: 2 + Group: 'Neck', Weight: 0.161175 + Group: 'Head', Weight: 0.836195 +Vertex 321: +Vertex groups: 2 + Group: 'Neck', Weight: 0.131073 + Group: 'Head', Weight: 0.866811 +Vertex 322: +Vertex groups: 2 + Group: 'Neck', Weight: 0.108522 + Group: 'Head', Weight: 0.889763 +Vertex 323: +Vertex groups: 2 + Group: 'Neck', Weight: 0.151660 + Group: 'Head', Weight: 0.846052 +Vertex 324: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098910 + Group: 'Head', Weight: 0.899634 +Vertex 325: +Vertex groups: 2 + Group: 'Neck', Weight: 0.198781 + Group: 'Head', Weight: 0.798446 +Vertex 326: +Vertex groups: 2 + Group: 'Neck', Weight: 0.214731 + Group: 'Head', Weight: 0.782405 +Vertex 327: +Vertex groups: 2 + Group: 'Neck', Weight: 0.165554 + Group: 'Head', Weight: 0.832552 +Vertex 328: +Vertex groups: 2 + Group: 'Neck', Weight: 0.340966 + Group: 'Head', Weight: 0.654000 +Vertex 329: +Vertex groups: 2 + Group: 'Neck', Weight: 0.268518 + Group: 'Head', Weight: 0.727685 +Vertex 330: +Vertex groups: 2 + Group: 'Neck', Weight: 0.173723 + Group: 'Head', Weight: 0.823776 +Vertex 331: +Vertex groups: 2 + Group: 'Neck', Weight: 0.113731 + Group: 'Head', Weight: 0.884641 +Vertex 332: +Vertex groups: 2 + Group: 'Neck', Weight: 0.116441 + Group: 'Head', Weight: 0.881977 +Vertex 333: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098041 + Group: 'Head', Weight: 0.900471 +Vertex 334: +Vertex groups: 2 + Group: 'Neck', Weight: 0.236883 + Group: 'Head', Weight: 0.760409 +Vertex 335: +Vertex groups: 2 + Group: 'Neck', Weight: 0.371536 + Group: 'Head', Weight: 0.624263 +Vertex 336: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105234 + Group: 'Head', Weight: 0.893520 +Vertex 337: +Vertex groups: 2 + Group: 'Neck', Weight: 0.058572 + Group: 'Head', Weight: 0.940695 +Vertex 338: +Vertex groups: 2 + Group: 'Neck', Weight: 0.051763 + Group: 'Head', Weight: 0.947428 +Vertex 339: +Vertex groups: 2 + Group: 'Neck', Weight: 0.080167 + Group: 'Head', Weight: 0.918608 +Vertex 340: +Vertex groups: 2 + Group: 'Neck', Weight: 0.084874 + Group: 'Head', Weight: 0.913897 +Vertex 341: +Vertex groups: 2 + Group: 'Neck', Weight: 0.060856 + Group: 'Head', Weight: 0.938115 +Vertex 342: +Vertex groups: 2 + Group: 'Neck', Weight: 0.096311 + Group: 'Head', Weight: 0.902094 +Vertex 343: +Vertex groups: 2 + Group: 'Neck', Weight: 0.122168 + Group: 'Head', Weight: 0.875743 +Vertex 344: +Vertex groups: 2 + Group: 'Neck', Weight: 0.164150 + Group: 'Head', Weight: 0.832970 +Vertex 345: +Vertex groups: 2 + Group: 'Neck', Weight: 0.089684 + Group: 'Head', Weight: 0.908715 +Vertex 346: +Vertex groups: 2 + Group: 'Neck', Weight: 0.138035 + Group: 'Head', Weight: 0.859393 +Vertex 347: +Vertex groups: 2 + Group: 'Neck', Weight: 0.207753 + Group: 'Head', Weight: 0.788577 +Vertex 348: +Vertex groups: 2 + Group: 'Neck', Weight: 0.206351 + Group: 'Head', Weight: 0.789664 +Vertex 349: +Vertex groups: 2 + Group: 'Neck', Weight: 0.068869 + Group: 'Head', Weight: 0.929885 +Vertex 350: +Vertex groups: 2 + Group: 'Neck', Weight: 0.117697 + Group: 'Head', Weight: 0.880114 +Vertex 351: +Vertex groups: 2 + Group: 'Neck', Weight: 0.054132 + Group: 'Head', Weight: 0.944894 +Vertex 352: +Vertex groups: 2 + Group: 'Neck', Weight: 0.201643 + Group: 'Head', Weight: 0.794507 +Vertex 353: +Vertex groups: 2 + Group: 'Neck', Weight: 0.236246 + Group: 'Head', Weight: 0.759476 +Vertex 354: +Vertex groups: 2 + Group: 'Neck', Weight: 0.269266 + Group: 'Head', Weight: 0.726218 +Vertex 355: +Vertex groups: 2 + Group: 'Neck', Weight: 0.058093 + Group: 'Head', Weight: 0.940855 +Vertex 356: +Vertex groups: 2 + Group: 'Neck', Weight: 0.104130 + Group: 'Head', Weight: 0.893966 +Vertex 357: +Vertex groups: 2 + Group: 'Neck', Weight: 0.167199 + Group: 'Head', Weight: 0.829726 +Vertex 358: +Vertex groups: 2 + Group: 'Neck', Weight: 0.158510 + Group: 'Head', Weight: 0.838705 +Vertex 359: +Vertex groups: 2 + Group: 'Neck', Weight: 0.028792 + Group: 'Head', Weight: 0.959917 +Vertex 360: +Vertex groups: 2 + Group: 'Neck', Weight: 0.007923 + Group: 'Head', Weight: 0.970525 +Vertex 361: +Vertex groups: 2 + Group: 'Neck', Weight: 0.002513 + Group: 'Head', Weight: 0.973276 +Vertex 362: +Vertex groups: 1 + Group: 'Head', Weight: 0.977800 +Vertex 363: +Vertex groups: 1 + Group: 'Head', Weight: 0.987817 +Vertex 364: +Vertex groups: 1 + Group: 'Head', Weight: 0.989699 +Vertex 365: +Vertex groups: 2 + Group: 'Neck', Weight: 0.005864 + Group: 'Head', Weight: 0.971699 +Vertex 366: +Vertex groups: 2 + Group: 'Neck', Weight: 0.032144 + Group: 'Head', Weight: 0.958426 +Vertex 367: +Vertex groups: 1 + Group: 'Head', Weight: 0.985491 +Vertex 368: +Vertex groups: 1 + Group: 'Head', Weight: 0.994834 +Vertex 369: +Vertex groups: 1 + Group: 'Head', Weight: 0.998447 +Vertex 370: +Vertex groups: 2 + Group: 'Neck', Weight: 0.409702 + Group: 'Head', Weight: 0.581231 +Vertex 371: +Vertex groups: 2 + Group: 'Neck', Weight: 0.431927 + Group: 'Head', Weight: 0.561661 +Vertex 372: +Vertex groups: 2 + Group: 'Neck', Weight: 0.343484 + Group: 'Head', Weight: 0.648458 +Vertex 373: +Vertex groups: 2 + Group: 'Neck', Weight: 0.309227 + Group: 'Head', Weight: 0.682480 +Vertex 374: +Vertex groups: 2 + Group: 'Neck', Weight: 0.288983 + Group: 'Head', Weight: 0.703398 +Vertex 375: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280675 + Group: 'Head', Weight: 0.712237 +Vertex 376: +Vertex groups: 2 + Group: 'Neck', Weight: 0.274633 + Group: 'Head', Weight: 0.718116 +Vertex 377: +Vertex groups: 2 + Group: 'Neck', Weight: 0.276102 + Group: 'Head', Weight: 0.716618 +Vertex 378: +Vertex groups: 2 + Group: 'Neck', Weight: 0.284253 + Group: 'Head', Weight: 0.705924 +Vertex 379: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277862 + Group: 'Head', Weight: 0.713789 +Vertex 380: +Vertex groups: 2 + Group: 'Neck', Weight: 0.282565 + Group: 'Head', Weight: 0.708619 +Vertex 381: +Vertex groups: 2 + Group: 'Neck', Weight: 0.292295 + Group: 'Head', Weight: 0.698151 +Vertex 382: +Vertex groups: 2 + Group: 'Neck', Weight: 0.317066 + Group: 'Head', Weight: 0.672759 +Vertex 383: +Vertex groups: 2 + Group: 'Neck', Weight: 0.374366 + Group: 'Head', Weight: 0.614831 +Vertex 384: +Vertex groups: 2 + Group: 'Neck', Weight: 0.295033 + Group: 'Head', Weight: 0.698536 +Vertex 385: +Vertex groups: 2 + Group: 'Neck', Weight: 0.334549 + Group: 'Head', Weight: 0.661194 +Vertex 386: +Vertex groups: 2 + Group: 'Neck', Weight: 0.324371 + Group: 'Head', Weight: 0.671175 +Vertex 387: +Vertex groups: 2 + Group: 'Neck', Weight: 0.339219 + Group: 'Head', Weight: 0.656632 +Vertex 388: +Vertex groups: 2 + Group: 'Neck', Weight: 0.366009 + Group: 'Head', Weight: 0.630380 +Vertex 389: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363319 + Group: 'Head', Weight: 0.633273 +Vertex 390: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363971 + Group: 'Head', Weight: 0.632925 +Vertex 391: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363962 + Group: 'Head', Weight: 0.632896 +Vertex 392: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363262 + Group: 'Head', Weight: 0.633551 +Vertex 393: +Vertex groups: 2 + Group: 'Neck', Weight: 0.361434 + Group: 'Head', Weight: 0.635896 +Vertex 394: +Vertex groups: 2 + Group: 'Neck', Weight: 0.359948 + Group: 'Head', Weight: 0.637384 +Vertex 395: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363421 + Group: 'Head', Weight: 0.633723 +Vertex 396: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364507 + Group: 'Head', Weight: 0.632260 +Vertex 397: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363447 + Group: 'Head', Weight: 0.633560 +Vertex 398: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363277 + Group: 'Head', Weight: 0.633442 +Vertex 399: +Vertex groups: 2 + Group: 'Neck', Weight: 0.360066 + Group: 'Head', Weight: 0.637298 +Vertex 400: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363826 + Group: 'Head', Weight: 0.633031 +Vertex 401: +Vertex groups: 2 + Group: 'Neck', Weight: 0.365286 + Group: 'Head', Weight: 0.631794 +Vertex 402: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364191 + Group: 'Head', Weight: 0.632920 +Vertex 403: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364701 + Group: 'Head', Weight: 0.632282 +Vertex 404: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364300 + Group: 'Head', Weight: 0.632572 +Vertex 405: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364454 + Group: 'Head', Weight: 0.632244 +Vertex 406: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364862 + Group: 'Head', Weight: 0.632247 +Vertex 407: +Vertex groups: 2 + Group: 'Neck', Weight: 0.359894 + Group: 'Head', Weight: 0.636777 +Vertex 408: +Vertex groups: 2 + Group: 'Neck', Weight: 0.359271 + Group: 'Head', Weight: 0.637382 +Vertex 409: +Vertex groups: 2 + Group: 'Neck', Weight: 0.358470 + Group: 'Head', Weight: 0.638171 +Vertex 410: +Vertex groups: 2 + Group: 'Neck', Weight: 0.357448 + Group: 'Head', Weight: 0.639147 +Vertex 411: +Vertex groups: 2 + Group: 'Neck', Weight: 0.358201 + Group: 'Head', Weight: 0.638340 +Vertex 412: +Vertex groups: 2 + Group: 'Neck', Weight: 0.360088 + Group: 'Head', Weight: 0.636364 +Vertex 413: +Vertex groups: 2 + Group: 'Neck', Weight: 0.357756 + Group: 'Head', Weight: 0.638447 +Vertex 414: +Vertex groups: 2 + Group: 'Neck', Weight: 0.353638 + Group: 'Head', Weight: 0.642617 +Vertex 415: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363935 + Group: 'Head', Weight: 0.632591 +Vertex 416: +Vertex groups: 2 + Group: 'Neck', Weight: 0.352594 + Group: 'Head', Weight: 0.643754 +Vertex 417: +Vertex groups: 2 + Group: 'Neck', Weight: 0.356030 + Group: 'Head', Weight: 0.640383 +Vertex 418: +Vertex groups: 2 + Group: 'Neck', Weight: 0.357208 + Group: 'Head', Weight: 0.639219 +Vertex 419: +Vertex groups: 2 + Group: 'Neck', Weight: 0.357696 + Group: 'Head', Weight: 0.638742 +Vertex 420: +Vertex groups: 2 + Group: 'Neck', Weight: 0.339157 + Group: 'Head', Weight: 0.656697 +Vertex 421: +Vertex groups: 2 + Group: 'Neck', Weight: 0.351584 + Group: 'Head', Weight: 0.644610 +Vertex 422: +Vertex groups: 2 + Group: 'Neck', Weight: 0.352204 + Group: 'Head', Weight: 0.644004 +Vertex 423: +Vertex groups: 2 + Group: 'Neck', Weight: 0.316539 + Group: 'Head', Weight: 0.678626 +Vertex 424: +Vertex groups: 2 + Group: 'Neck', Weight: 0.336096 + Group: 'Head', Weight: 0.659286 +Vertex 425: +Vertex groups: 2 + Group: 'Neck', Weight: 0.315563 + Group: 'Head', Weight: 0.678102 +Vertex 426: +Vertex groups: 2 + Group: 'Neck', Weight: 0.349237 + Group: 'Head', Weight: 0.646891 +Vertex 427: +Vertex groups: 2 + Group: 'Neck', Weight: 0.344003 + Group: 'Head', Weight: 0.651947 +Vertex 428: +Vertex groups: 2 + Group: 'Neck', Weight: 0.346442 + Group: 'Head', Weight: 0.649609 +Vertex 429: +Vertex groups: 2 + Group: 'Neck', Weight: 0.349986 + Group: 'Head', Weight: 0.645900 +Vertex 430: +Vertex groups: 2 + Group: 'Neck', Weight: 0.338698 + Group: 'Head', Weight: 0.657144 +Vertex 431: +Vertex groups: 2 + Group: 'Neck', Weight: 0.320851 + Group: 'Head', Weight: 0.674626 +Vertex 432: +Vertex groups: 2 + Group: 'Neck', Weight: 0.322423 + Group: 'Head', Weight: 0.673088 +Vertex 433: +Vertex groups: 2 + Group: 'Neck', Weight: 0.301540 + Group: 'Head', Weight: 0.693381 +Vertex 434: +Vertex groups: 2 + Group: 'Neck', Weight: 0.303244 + Group: 'Head', Weight: 0.691703 +Vertex 435: +Vertex groups: 2 + Group: 'Neck', Weight: 0.283237 + Group: 'Head', Weight: 0.710842 +Vertex 436: +Vertex groups: 2 + Group: 'Neck', Weight: 0.284225 + Group: 'Head', Weight: 0.709862 +Vertex 437: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277233 + Group: 'Head', Weight: 0.716270 +Vertex 438: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277773 + Group: 'Head', Weight: 0.715693 +Vertex 439: +Vertex groups: 2 + Group: 'Neck', Weight: 0.337191 + Group: 'Head', Weight: 0.658606 +Vertex 440: +Vertex groups: 2 + Group: 'Neck', Weight: 0.315369 + Group: 'Head', Weight: 0.679925 +Vertex 441: +Vertex groups: 2 + Group: 'Neck', Weight: 0.359105 + Group: 'Head', Weight: 0.636876 +Vertex 442: +Vertex groups: 2 + Group: 'Neck', Weight: 0.289205 + Group: 'Head', Weight: 0.704653 +Vertex 443: +Vertex groups: 2 + Group: 'Neck', Weight: 0.287538 + Group: 'Head', Weight: 0.706549 +Vertex 444: +Vertex groups: 2 + Group: 'Neck', Weight: 0.310242 + Group: 'Head', Weight: 0.684442 +Vertex 445: +Vertex groups: 2 + Group: 'Neck', Weight: 0.329201 + Group: 'Head', Weight: 0.665646 +Vertex 446: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280951 + Group: 'Head', Weight: 0.712462 +Vertex 447: +Vertex groups: 2 + Group: 'Neck', Weight: 0.333152 + Group: 'Head', Weight: 0.662327 +Vertex 448: +Vertex groups: 2 + Group: 'Neck', Weight: 0.317654 + Group: 'Head', Weight: 0.680255 +Vertex 449: +Vertex groups: 2 + Group: 'Neck', Weight: 0.283565 + Group: 'Head', Weight: 0.714675 +Vertex 450: +Vertex groups: 2 + Group: 'Neck', Weight: 0.274163 + Group: 'Head', Weight: 0.724194 +Vertex 451: +Vertex groups: 2 + Group: 'Neck', Weight: 0.265212 + Group: 'Head', Weight: 0.733255 +Vertex 452: +Vertex groups: 2 + Group: 'Neck', Weight: 0.113253 + Group: 'Head', Weight: 0.885977 +Vertex 453: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098515 + Group: 'Head', Weight: 0.900800 +Vertex 454: +Vertex groups: 2 + Group: 'Neck', Weight: 0.058169 + Group: 'Head', Weight: 0.941389 +Vertex 455: +Vertex groups: 2 + Group: 'Neck', Weight: 0.075120 + Group: 'Head', Weight: 0.924333 +Vertex 456: +Vertex groups: 2 + Group: 'Neck', Weight: 0.160140 + Group: 'Head', Weight: 0.838834 +Vertex 457: +Vertex groups: 2 + Group: 'Neck', Weight: 0.189030 + Group: 'Head', Weight: 0.809800 +Vertex 458: +Vertex groups: 2 + Group: 'Neck', Weight: 0.255042 + Group: 'Head', Weight: 0.743489 +Vertex 459: +Vertex groups: 2 + Group: 'Neck', Weight: 0.296290 + Group: 'Head', Weight: 0.701815 +Vertex 460: +Vertex groups: 2 + Group: 'Neck', Weight: 0.346592 + Group: 'Head', Weight: 0.651026 +Vertex 461: +Vertex groups: 2 + Group: 'Neck', Weight: 0.356489 + Group: 'Head', Weight: 0.640969 +Vertex 462: +Vertex groups: 2 + Group: 'Neck', Weight: 0.353879 + Group: 'Head', Weight: 0.643625 +Vertex 463: +Vertex groups: 2 + Group: 'Neck', Weight: 0.348329 + Group: 'Head', Weight: 0.649256 +Vertex 464: +Vertex groups: 2 + Group: 'Neck', Weight: 0.329732 + Group: 'Head', Weight: 0.668074 +Vertex 465: +Vertex groups: 2 + Group: 'Neck', Weight: 0.350564 + Group: 'Head', Weight: 0.646970 +Vertex 466: +Vertex groups: 2 + Group: 'Neck', Weight: 0.332571 + Group: 'Head', Weight: 0.665208 +Vertex 467: +Vertex groups: 2 + Group: 'Neck', Weight: 0.314386 + Group: 'Head', Weight: 0.683549 +Vertex 468: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294864 + Group: 'Head', Weight: 0.703255 +Vertex 469: +Vertex groups: 2 + Group: 'Neck', Weight: 0.288058 + Group: 'Head', Weight: 0.710131 +Vertex 470: +Vertex groups: 2 + Group: 'Neck', Weight: 0.284580 + Group: 'Head', Weight: 0.713641 +Vertex 471: +Vertex groups: 2 + Group: 'Neck', Weight: 0.285080 + Group: 'Head', Weight: 0.713126 +Vertex 472: +Vertex groups: 2 + Group: 'Neck', Weight: 0.289249 + Group: 'Head', Weight: 0.708901 +Vertex 473: +Vertex groups: 2 + Group: 'Neck', Weight: 0.305425 + Group: 'Head', Weight: 0.692578 +Vertex 474: +Vertex groups: 2 + Group: 'Neck', Weight: 0.305949 + Group: 'Head', Weight: 0.692063 +Vertex 475: +Vertex groups: 2 + Group: 'Neck', Weight: 0.306404 + Group: 'Head', Weight: 0.691605 +Vertex 476: +Vertex groups: 2 + Group: 'Neck', Weight: 0.317769 + Group: 'Head', Weight: 0.680130 +Vertex 477: +Vertex groups: 2 + Group: 'Neck', Weight: 0.305752 + Group: 'Head', Weight: 0.692224 +Vertex 478: +Vertex groups: 2 + Group: 'Neck', Weight: 0.340000 + Group: 'Head', Weight: 0.657608 +Vertex 479: +Vertex groups: 2 + Group: 'Neck', Weight: 0.314901 + Group: 'Head', Weight: 0.682901 +Vertex 480: +Vertex groups: 2 + Group: 'Neck', Weight: 0.295462 + Group: 'Head', Weight: 0.702604 +Vertex 481: +Vertex groups: 2 + Group: 'Neck', Weight: 0.282775 + Group: 'Head', Weight: 0.715436 +Vertex 482: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280627 + Group: 'Head', Weight: 0.717625 +Vertex 483: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280429 + Group: 'Head', Weight: 0.717842 +Vertex 484: +Vertex groups: 2 + Group: 'Neck', Weight: 0.281703 + Group: 'Head', Weight: 0.716558 +Vertex 485: +Vertex groups: 2 + Group: 'Neck', Weight: 0.288292 + Group: 'Head', Weight: 0.709895 +Vertex 486: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277604 + Group: 'Head', Weight: 0.720708 +Vertex 487: +Vertex groups: 2 + Group: 'Neck', Weight: 0.278588 + Group: 'Head', Weight: 0.719710 +Vertex 488: +Vertex groups: 2 + Group: 'Neck', Weight: 0.274276 + Group: 'Head', Weight: 0.724084 +Vertex 489: +Vertex groups: 2 + Group: 'Neck', Weight: 0.266129 + Group: 'Head', Weight: 0.732325 +Vertex 490: +Vertex groups: 2 + Group: 'Neck', Weight: 0.253834 + Group: 'Head', Weight: 0.744696 +Vertex 491: +Vertex groups: 2 + Group: 'Neck', Weight: 0.185356 + Group: 'Head', Weight: 0.813486 +Vertex 492: +Vertex groups: 2 + Group: 'Neck', Weight: 0.156678 + Group: 'Head', Weight: 0.842311 +Vertex 493: +Vertex groups: 2 + Group: 'Neck', Weight: 0.113566 + Group: 'Head', Weight: 0.885659 +Vertex 494: +Vertex groups: 2 + Group: 'Neck', Weight: 0.101088 + Group: 'Head', Weight: 0.898209 +Vertex 495: +Vertex groups: 2 + Group: 'Neck', Weight: 0.271192 + Group: 'Head', Weight: 0.727206 +Vertex 496: +Vertex groups: 2 + Group: 'Neck', Weight: 0.272150 + Group: 'Head', Weight: 0.726247 +Vertex 497: +Vertex groups: 2 + Group: 'Neck', Weight: 0.271573 + Group: 'Head', Weight: 0.726825 +Vertex 498: +Vertex groups: 2 + Group: 'Neck', Weight: 0.276914 + Group: 'Head', Weight: 0.721406 +Vertex 499: +Vertex groups: 2 + Group: 'Neck', Weight: 0.275056 + Group: 'Head', Weight: 0.723298 +Vertex 500: +Vertex groups: 2 + Group: 'Neck', Weight: 0.265026 + Group: 'Head', Weight: 0.733422 +Vertex 501: +Vertex groups: 2 + Group: 'Neck', Weight: 0.253232 + Group: 'Head', Weight: 0.745283 +Vertex 502: +Vertex groups: 2 + Group: 'Neck', Weight: 0.186411 + Group: 'Head', Weight: 0.812418 +Vertex 503: +Vertex groups: 2 + Group: 'Neck', Weight: 0.159898 + Group: 'Head', Weight: 0.839068 +Vertex 504: +Vertex groups: 2 + Group: 'Neck', Weight: 0.304920 + Group: 'Head', Weight: 0.693096 +Vertex 505: +Vertex groups: 2 + Group: 'Neck', Weight: 0.297082 + Group: 'Head', Weight: 0.701012 +Vertex 506: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294681 + Group: 'Head', Weight: 0.703433 +Vertex 507: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294270 + Group: 'Head', Weight: 0.703845 +Vertex 508: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294231 + Group: 'Head', Weight: 0.703880 +Vertex 509: +Vertex groups: 2 + Group: 'Neck', Weight: 0.296341 + Group: 'Head', Weight: 0.701747 +Vertex 510: +Vertex groups: 2 + Group: 'Neck', Weight: 0.301783 + Group: 'Head', Weight: 0.696256 +Vertex 511: +Vertex groups: 2 + Group: 'Neck', Weight: 0.302162 + Group: 'Head', Weight: 0.695880 +Vertex 512: +Vertex groups: 2 + Group: 'Neck', Weight: 0.296991 + Group: 'Head', Weight: 0.701095 +Vertex 513: +Vertex groups: 2 + Group: 'Neck', Weight: 0.279468 + Group: 'Head', Weight: 0.718715 +Vertex 514: +Vertex groups: 2 + Group: 'Neck', Weight: 0.265721 + Group: 'Head', Weight: 0.732597 +Vertex 515: +Vertex groups: 2 + Group: 'Neck', Weight: 0.253992 + Group: 'Head', Weight: 0.744436 +Vertex 516: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277179 + Group: 'Head', Weight: 0.721081 +Vertex 517: +Vertex groups: 2 + Group: 'Neck', Weight: 0.270445 + Group: 'Head', Weight: 0.727886 +Vertex 518: +Vertex groups: 2 + Group: 'Neck', Weight: 0.261837 + Group: 'Head', Weight: 0.736573 +Vertex 519: +Vertex groups: 2 + Group: 'Neck', Weight: 0.276849 + Group: 'Head', Weight: 0.721449 +Vertex 520: +Vertex groups: 2 + Group: 'Neck', Weight: 0.272922 + Group: 'Head', Weight: 0.725427 +Vertex 521: +Vertex groups: 2 + Group: 'Neck', Weight: 0.268691 + Group: 'Head', Weight: 0.729700 +Vertex 522: +Vertex groups: 2 + Group: 'Neck', Weight: 0.262768 + Group: 'Head', Weight: 0.735676 +Vertex 523: +Vertex groups: 2 + Group: 'Neck', Weight: 0.254420 + Group: 'Head', Weight: 0.744065 +Vertex 524: +Vertex groups: 2 + Group: 'Neck', Weight: 0.236179 + Group: 'Head', Weight: 0.762378 +Vertex 525: +Vertex groups: 2 + Group: 'Neck', Weight: 0.237084 + Group: 'Head', Weight: 0.761538 +Vertex 526: +Vertex groups: 2 + Group: 'Neck', Weight: 0.237306 + Group: 'Head', Weight: 0.761305 +Vertex 527: +Vertex groups: 2 + Group: 'Neck', Weight: 0.232573 + Group: 'Head', Weight: 0.766037 +Vertex 528: +Vertex groups: 2 + Group: 'Neck', Weight: 0.189465 + Group: 'Head', Weight: 0.809331 +Vertex 529: +Vertex groups: 2 + Group: 'Neck', Weight: 0.164596 + Group: 'Head', Weight: 0.834330 +Vertex 530: +Vertex groups: 2 + Group: 'Neck', Weight: 0.225609 + Group: 'Head', Weight: 0.772984 +Vertex 531: +Vertex groups: 2 + Group: 'Neck', Weight: 0.241953 + Group: 'Head', Weight: 0.756518 +Vertex 532: +Vertex groups: 2 + Group: 'Neck', Weight: 0.199002 + Group: 'Head', Weight: 0.799728 +Vertex 533: +Vertex groups: 2 + Group: 'Neck', Weight: 0.257363 + Group: 'Head', Weight: 0.740969 +Vertex 534: +Vertex groups: 2 + Group: 'Neck', Weight: 0.275431 + Group: 'Head', Weight: 0.722733 +Vertex 535: +Vertex groups: 2 + Group: 'Neck', Weight: 0.269327 + Group: 'Head', Weight: 0.728792 +Vertex 536: +Vertex groups: 2 + Group: 'Neck', Weight: 0.227010 + Group: 'Head', Weight: 0.771517 +Vertex 537: +Vertex groups: 2 + Group: 'Neck', Weight: 0.245284 + Group: 'Head', Weight: 0.753067 +Vertex 538: +Vertex groups: 2 + Group: 'Neck', Weight: 0.170092 + Group: 'Head', Weight: 0.828793 +Vertex 539: +Vertex groups: 2 + Group: 'Neck', Weight: 0.217659 + Group: 'Head', Weight: 0.780912 +Vertex 540: +Vertex groups: 2 + Group: 'Neck', Weight: 0.205433 + Group: 'Head', Weight: 0.793251 +Vertex 541: +Vertex groups: 2 + Group: 'Neck', Weight: 0.222903 + Group: 'Head', Weight: 0.775579 +Vertex 542: +Vertex groups: 2 + Group: 'Neck', Weight: 0.207163 + Group: 'Head', Weight: 0.791412 +Vertex 543: +Vertex groups: 2 + Group: 'Neck', Weight: 0.211366 + Group: 'Head', Weight: 0.787090 +Vertex 544: +Vertex groups: 2 + Group: 'Neck', Weight: 0.200369 + Group: 'Head', Weight: 0.798160 +Vertex 545: +Vertex groups: 2 + Group: 'Neck', Weight: 0.198659 + Group: 'Head', Weight: 0.799772 +Vertex 546: +Vertex groups: 2 + Group: 'Neck', Weight: 0.188725 + Group: 'Head', Weight: 0.809826 +Vertex 547: +Vertex groups: 2 + Group: 'Neck', Weight: 0.175121 + Group: 'Head', Weight: 0.823410 +Vertex 548: +Vertex groups: 2 + Group: 'Neck', Weight: 0.163686 + Group: 'Head', Weight: 0.834970 +Vertex 549: +Vertex groups: 2 + Group: 'Neck', Weight: 0.145643 + Group: 'Head', Weight: 0.853052 +Vertex 550: +Vertex groups: 2 + Group: 'Neck', Weight: 0.139231 + Group: 'Head', Weight: 0.859564 +Vertex 551: +Vertex groups: 2 + Group: 'Neck', Weight: 0.118107 + Group: 'Head', Weight: 0.880791 +Vertex 552: +Vertex groups: 2 + Group: 'Neck', Weight: 0.123056 + Group: 'Head', Weight: 0.875856 +Vertex 553: +Vertex groups: 2 + Group: 'Neck', Weight: 0.099333 + Group: 'Head', Weight: 0.899757 +Vertex 554: +Vertex groups: 2 + Group: 'Neck', Weight: 0.111951 + Group: 'Head', Weight: 0.887071 +Vertex 555: +Vertex groups: 2 + Group: 'Neck', Weight: 0.089437 + Group: 'Head', Weight: 0.909783 +Vertex 556: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105063 + Group: 'Head', Weight: 0.894046 +Vertex 557: +Vertex groups: 2 + Group: 'Neck', Weight: 0.087748 + Group: 'Head', Weight: 0.911554 +Vertex 558: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098761 + Group: 'Head', Weight: 0.900462 +Vertex 559: +Vertex groups: 2 + Group: 'Neck', Weight: 0.087278 + Group: 'Head', Weight: 0.911995 +Vertex 560: +Vertex groups: 2 + Group: 'Neck', Weight: 0.099109 + Group: 'Head', Weight: 0.900076 +Vertex 561: +Vertex groups: 2 + Group: 'Neck', Weight: 0.094936 + Group: 'Head', Weight: 0.904350 +Vertex 562: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105143 + Group: 'Head', Weight: 0.894074 +Vertex 563: +Vertex groups: 2 + Group: 'Neck', Weight: 0.110238 + Group: 'Head', Weight: 0.888981 +Vertex 564: +Vertex groups: 2 + Group: 'Neck', Weight: 0.117007 + Group: 'Head', Weight: 0.882163 +Vertex 565: +Vertex groups: 2 + Group: 'Neck', Weight: 0.125126 + Group: 'Head', Weight: 0.874013 +Vertex 566: +Vertex groups: 2 + Group: 'Neck', Weight: 0.131127 + Group: 'Head', Weight: 0.867971 +Vertex 567: +Vertex groups: 2 + Group: 'Neck', Weight: 0.119308 + Group: 'Head', Weight: 0.879877 +Vertex 568: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105124 + Group: 'Head', Weight: 0.894138 +Vertex 569: +Vertex groups: 2 + Group: 'Neck', Weight: 0.176562 + Group: 'Head', Weight: 0.822268 +Vertex 570: +Vertex groups: 2 + Group: 'Neck', Weight: 0.194271 + Group: 'Head', Weight: 0.804393 +Vertex 571: +Vertex groups: 2 + Group: 'Neck', Weight: 0.191948 + Group: 'Head', Weight: 0.806652 +Vertex 572: +Vertex groups: 2 + Group: 'Neck', Weight: 0.178185 + Group: 'Head', Weight: 0.820438 +Vertex 573: +Vertex groups: 2 + Group: 'Neck', Weight: 0.155763 + Group: 'Head', Weight: 0.842967 +Vertex 574: +Vertex groups: 2 + Group: 'Neck', Weight: 0.137587 + Group: 'Head', Weight: 0.861250 +Vertex 575: +Vertex groups: 2 + Group: 'Neck', Weight: 0.126885 + Group: 'Head', Weight: 0.872026 +Vertex 576: +Vertex groups: 2 + Group: 'Neck', Weight: 0.121084 + Group: 'Head', Weight: 0.877886 +Vertex 577: +Vertex groups: 2 + Group: 'Neck', Weight: 0.113657 + Group: 'Head', Weight: 0.885390 +Vertex 578: +Vertex groups: 2 + Group: 'Neck', Weight: 0.107428 + Group: 'Head', Weight: 0.891694 +Vertex 579: +Vertex groups: 2 + Group: 'Neck', Weight: 0.104764 + Group: 'Head', Weight: 0.894415 +Vertex 580: +Vertex groups: 2 + Group: 'Neck', Weight: 0.109934 + Group: 'Head', Weight: 0.889251 +Vertex 581: +Vertex groups: 2 + Group: 'Neck', Weight: 0.123330 + Group: 'Head', Weight: 0.875800 +Vertex 582: +Vertex groups: 2 + Group: 'Neck', Weight: 0.138308 + Group: 'Head', Weight: 0.860743 +Vertex 583: +Vertex groups: 2 + Group: 'Neck', Weight: 0.237956 + Group: 'Head', Weight: 0.760400 +Vertex 584: +Vertex groups: 2 + Group: 'Neck', Weight: 0.222002 + Group: 'Head', Weight: 0.776376 +Vertex 585: +Vertex groups: 2 + Group: 'Neck', Weight: 0.232093 + Group: 'Head', Weight: 0.766254 +Vertex 586: +Vertex groups: 2 + Group: 'Neck', Weight: 0.227343 + Group: 'Head', Weight: 0.770839 +Vertex 587: +Vertex groups: 2 + Group: 'Neck', Weight: 0.185663 + Group: 'Head', Weight: 0.812732 +Vertex 588: +Vertex groups: 2 + Group: 'Neck', Weight: 0.153740 + Group: 'Head', Weight: 0.844831 +Vertex 589: +Vertex groups: 2 + Group: 'Neck', Weight: 0.117826 + Group: 'Head', Weight: 0.881025 +Vertex 590: +Vertex groups: 2 + Group: 'Neck', Weight: 0.091983 + Group: 'Head', Weight: 0.907132 +Vertex 591: +Vertex groups: 2 + Group: 'Neck', Weight: 0.177647 + Group: 'Head', Weight: 0.821163 +Vertex 592: +Vertex groups: 2 + Group: 'Neck', Weight: 0.187924 + Group: 'Head', Weight: 0.810782 +Vertex 593: +Vertex groups: 2 + Group: 'Neck', Weight: 0.186176 + Group: 'Head', Weight: 0.812476 +Vertex 594: +Vertex groups: 2 + Group: 'Neck', Weight: 0.171770 + Group: 'Head', Weight: 0.826914 +Vertex 595: +Vertex groups: 2 + Group: 'Neck', Weight: 0.155728 + Group: 'Head', Weight: 0.843032 +Vertex 596: +Vertex groups: 2 + Group: 'Neck', Weight: 0.139321 + Group: 'Head', Weight: 0.859539 +Vertex 597: +Vertex groups: 2 + Group: 'Neck', Weight: 0.124099 + Group: 'Head', Weight: 0.874865 +Vertex 598: +Vertex groups: 2 + Group: 'Neck', Weight: 0.121762 + Group: 'Head', Weight: 0.877225 +Vertex 599: +Vertex groups: 2 + Group: 'Neck', Weight: 0.115449 + Group: 'Head', Weight: 0.883597 +Vertex 600: +Vertex groups: 2 + Group: 'Neck', Weight: 0.109338 + Group: 'Head', Weight: 0.889774 +Vertex 601: +Vertex groups: 2 + Group: 'Neck', Weight: 0.106466 + Group: 'Head', Weight: 0.892693 +Vertex 602: +Vertex groups: 2 + Group: 'Neck', Weight: 0.110809 + Group: 'Head', Weight: 0.888367 +Vertex 603: +Vertex groups: 2 + Group: 'Neck', Weight: 0.126178 + Group: 'Head', Weight: 0.872933 +Vertex 604: +Vertex groups: 2 + Group: 'Neck', Weight: 0.137495 + Group: 'Head', Weight: 0.861558 +Vertex 605: +Vertex groups: 2 + Group: 'Neck', Weight: 0.121360 + Group: 'Head', Weight: 0.877620 +Vertex 606: +Vertex groups: 2 + Group: 'Neck', Weight: 0.126142 + Group: 'Head', Weight: 0.872791 +Vertex 607: +Vertex groups: 2 + Group: 'Neck', Weight: 0.115660 + Group: 'Head', Weight: 0.883381 +Vertex 608: +Vertex groups: 2 + Group: 'Neck', Weight: 0.191111 + Group: 'Head', Weight: 0.807570 +Vertex 609: +Vertex groups: 2 + Group: 'Neck', Weight: 0.177051 + Group: 'Head', Weight: 0.821768 +Vertex 610: +Vertex groups: 2 + Group: 'Neck', Weight: 0.109217 + Group: 'Head', Weight: 0.889893 +Vertex 611: +Vertex groups: 2 + Group: 'Neck', Weight: 0.187452 + Group: 'Head', Weight: 0.811183 +Vertex 612: +Vertex groups: 2 + Group: 'Neck', Weight: 0.106049 + Group: 'Head', Weight: 0.893118 +Vertex 613: +Vertex groups: 2 + Group: 'Neck', Weight: 0.172917 + Group: 'Head', Weight: 0.825754 +Vertex 614: +Vertex groups: 2 + Group: 'Neck', Weight: 0.110916 + Group: 'Head', Weight: 0.888261 +Vertex 615: +Vertex groups: 2 + Group: 'Neck', Weight: 0.154846 + Group: 'Head', Weight: 0.843910 +Vertex 616: +Vertex groups: 2 + Group: 'Neck', Weight: 0.124781 + Group: 'Head', Weight: 0.874339 +Vertex 617: +Vertex groups: 2 + Group: 'Neck', Weight: 0.137949 + Group: 'Head', Weight: 0.860910 +Vertex 618: +Vertex groups: 2 + Group: 'Neck', Weight: 0.137506 + Group: 'Head', Weight: 0.861547 +Vertex 619: +Vertex groups: 2 + Group: 'Neck', Weight: 0.136954 + Group: 'Head', Weight: 0.862144 +Vertex 620: +Vertex groups: 2 + Group: 'Neck', Weight: 0.135221 + Group: 'Head', Weight: 0.863883 +Vertex 621: +Vertex groups: 2 + Group: 'Neck', Weight: 0.140436 + Group: 'Head', Weight: 0.858633 +Vertex 622: +Vertex groups: 2 + Group: 'Neck', Weight: 0.146977 + Group: 'Head', Weight: 0.852044 +Vertex 623: +Vertex groups: 2 + Group: 'Neck', Weight: 0.153753 + Group: 'Head', Weight: 0.845221 +Vertex 624: +Vertex groups: 2 + Group: 'Neck', Weight: 0.162966 + Group: 'Head', Weight: 0.835945 +Vertex 625: +Vertex groups: 2 + Group: 'Neck', Weight: 0.162005 + Group: 'Head', Weight: 0.836908 +Vertex 626: +Vertex groups: 2 + Group: 'Neck', Weight: 0.162530 + Group: 'Head', Weight: 0.836381 +Vertex 627: +Vertex groups: 2 + Group: 'Neck', Weight: 0.334105 + Group: 'Head', Weight: 0.663471 +Vertex 628: +Vertex groups: 2 + Group: 'Neck', Weight: 0.261951 + Group: 'Head', Weight: 0.736145 +Vertex 629: +Vertex groups: 2 + Group: 'Neck', Weight: 0.344705 + Group: 'Head', Weight: 0.652667 +Vertex 630: +Vertex groups: 2 + Group: 'Neck', Weight: 0.355787 + Group: 'Head', Weight: 0.641249 +Vertex 631: +Vertex groups: 2 + Group: 'Neck', Weight: 0.264501 + Group: 'Head', Weight: 0.733429 +Vertex 632: +Vertex groups: 2 + Group: 'Neck', Weight: 0.284293 + Group: 'Head', Weight: 0.713312 +Vertex 633: +Vertex groups: 2 + Group: 'Neck', Weight: 0.242947 + Group: 'Head', Weight: 0.755279 +Vertex 634: +Vertex groups: 2 + Group: 'Neck', Weight: 0.242213 + Group: 'Head', Weight: 0.755689 +Vertex 635: +Vertex groups: 2 + Group: 'Neck', Weight: 0.204626 + Group: 'Head', Weight: 0.793512 +Vertex 636: +Vertex groups: 2 + Group: 'Neck', Weight: 0.169857 + Group: 'Head', Weight: 0.828487 +Vertex 637: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364908 + Group: 'Head', Weight: 0.630762 +Vertex 638: +Vertex groups: 2 + Group: 'Neck', Weight: 0.367003 + Group: 'Head', Weight: 0.629575 +Vertex 639: +Vertex groups: 2 + Group: 'Neck', Weight: 0.371002 + Group: 'Head', Weight: 0.624216 +Vertex 640: +Vertex groups: 2 + Group: 'Neck', Weight: 0.340211 + Group: 'Head', Weight: 0.656707 +Vertex 641: +Vertex groups: 2 + Group: 'Neck', Weight: 0.352020 + Group: 'Head', Weight: 0.641935 +Vertex 642: +Vertex groups: 2 + Group: 'Neck', Weight: 0.386612 + Group: 'Head', Weight: 0.608821 +Vertex 643: +Vertex groups: 2 + Group: 'Neck', Weight: 0.271978 + Group: 'Head', Weight: 0.725350 +Vertex 644: +Vertex groups: 2 + Group: 'Neck', Weight: 0.379090 + Group: 'Head', Weight: 0.613359 +Vertex 645: +Vertex groups: 2 + Group: 'Neck', Weight: 0.407122 + Group: 'Head', Weight: 0.587240 +Vertex 646: +Vertex groups: 2 + Group: 'Neck', Weight: 0.383879 + Group: 'Head', Weight: 0.611980 +Vertex 647: +Vertex groups: 2 + Group: 'Neck', Weight: 0.255938 + Group: 'Head', Weight: 0.741391 +Vertex 648: +Vertex groups: 2 + Group: 'Neck', Weight: 0.174559 + Group: 'Head', Weight: 0.823612 +Vertex 649: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114164 + Group: 'Head', Weight: 0.884664 +Vertex 650: +Vertex groups: 2 + Group: 'Neck', Weight: 0.108644 + Group: 'Head', Weight: 0.890169 +Vertex 651: +Vertex groups: 2 + Group: 'Neck', Weight: 0.082123 + Group: 'Head', Weight: 0.917037 +Vertex 652: +Vertex groups: 2 + Group: 'Neck', Weight: 0.072367 + Group: 'Head', Weight: 0.926832 +Vertex 653: +Vertex groups: 2 + Group: 'Neck', Weight: 0.057348 + Group: 'Head', Weight: 0.942091 +Vertex 654: +Vertex groups: 2 + Group: 'Neck', Weight: 0.041459 + Group: 'Head', Weight: 0.953774 +Vertex 655: +Vertex groups: 2 + Group: 'Neck', Weight: 0.072838 + Group: 'Head', Weight: 0.926492 +Vertex 656: +Vertex groups: 2 + Group: 'Neck', Weight: 0.067399 + Group: 'Head', Weight: 0.932015 +Vertex 657: +Vertex groups: 2 + Group: 'Neck', Weight: 0.070630 + Group: 'Head', Weight: 0.928802 +Vertex 658: +Vertex groups: 2 + Group: 'Neck', Weight: 0.082007 + Group: 'Head', Weight: 0.917385 +Vertex 659: +Vertex groups: 2 + Group: 'Neck', Weight: 0.079017 + Group: 'Head', Weight: 0.920408 +Vertex 660: +Vertex groups: 2 + Group: 'Neck', Weight: 0.059365 + Group: 'Head', Weight: 0.940183 +Vertex 661: +Vertex groups: 2 + Group: 'Neck', Weight: 0.060228 + Group: 'Head', Weight: 0.939304 +Vertex 662: +Vertex groups: 2 + Group: 'Neck', Weight: 0.054637 + Group: 'Head', Weight: 0.944913 +Vertex 663: +Vertex groups: 2 + Group: 'Neck', Weight: 0.052154 + Group: 'Head', Weight: 0.947378 +Vertex 664: +Vertex groups: 2 + Group: 'Neck', Weight: 0.044683 + Group: 'Head', Weight: 0.952288 +Vertex 665: +Vertex groups: 2 + Group: 'Neck', Weight: 0.041486 + Group: 'Head', Weight: 0.953897 +Vertex 666: +Vertex groups: 2 + Group: 'Neck', Weight: 0.029296 + Group: 'Head', Weight: 0.960029 +Vertex 667: +Vertex groups: 2 + Group: 'Neck', Weight: 0.022258 + Group: 'Head', Weight: 0.963562 +Vertex 668: +Vertex groups: 2 + Group: 'Neck', Weight: 0.018135 + Group: 'Head', Weight: 0.965616 +Vertex 669: +Vertex groups: 2 + Group: 'Neck', Weight: 0.003753 + Group: 'Head', Weight: 0.972811 +Vertex 670: +Vertex groups: 2 + Group: 'Neck', Weight: 0.017675 + Group: 'Head', Weight: 0.965820 +Vertex 671: +Vertex groups: 1 + Group: 'Head', Weight: 0.980992 +Vertex 672: +Vertex groups: 1 + Group: 'Head', Weight: 0.992048 +Vertex 673: +Vertex groups: 1 + Group: 'Head', Weight: 0.988843 +Vertex 674: +Vertex groups: 1 + Group: 'Head', Weight: 0.977489 +Vertex 675: +Vertex groups: 1 + Group: 'Head', Weight: 0.982162 +Vertex 676: +Vertex groups: 1 + Group: 'Head', Weight: 0.979177 +Vertex 677: +Vertex groups: 1 + Group: 'Head', Weight: 0.988933 +Vertex 678: +Vertex groups: 1 + Group: 'Head', Weight: 0.981366 +Vertex 679: +Vertex groups: 2 + Group: 'Neck', Weight: 0.111088 + Group: 'Head', Weight: 0.886860 +Vertex 680: +Vertex groups: 2 + Group: 'Neck', Weight: 0.306554 + Group: 'Head', Weight: 0.687670 +Vertex 681: +Vertex groups: 2 + Group: 'Neck', Weight: 0.062974 + Group: 'Head', Weight: 0.935884 +Vertex 682: +Vertex groups: 2 + Group: 'Neck', Weight: 0.186381 + Group: 'Head', Weight: 0.810128 +Vertex 683: +Vertex groups: 2 + Group: 'Neck', Weight: 0.344640 + Group: 'Head', Weight: 0.649821 +Vertex 684: +Vertex groups: 2 + Group: 'Neck', Weight: 0.016641 + Group: 'Head', Weight: 0.966092 +Vertex 685: +Vertex groups: 1 + Group: 'Head', Weight: 0.984081 +Vertex 686: +Vertex groups: 1 + Group: 'Head', Weight: 0.990814 +Vertex 687: +Vertex groups: 2 + Group: 'Neck', Weight: 0.020041 + Group: 'Head', Weight: 0.964692 +Vertex 688: +Vertex groups: 2 + Group: 'Neck', Weight: 0.023049 + Group: 'Head', Weight: 0.963178 +Vertex 689: +Vertex groups: 2 + Group: 'Neck', Weight: 0.009796 + Group: 'Head', Weight: 0.969848 +Vertex 690: +Vertex groups: 2 + Group: 'Neck', Weight: 0.006208 + Group: 'Head', Weight: 0.971647 +Vertex 691: +Vertex groups: 2 + Group: 'Neck', Weight: 0.005256 + Group: 'Head', Weight: 0.972111 +Vertex 692: +Vertex groups: 1 + Group: 'Head', Weight: 0.975304 +Vertex 693: +Vertex groups: 2 + Group: 'Neck', Weight: 0.005274 + Group: 'Head', Weight: 0.972126 +Vertex 694: +Vertex groups: 2 + Group: 'Neck', Weight: 0.561694 + Group: 'LeftShoulder', Weight: 0.386554 +Vertex 695: +Vertex groups: 2 + Group: 'Neck', Weight: 0.102076 + Group: 'Head', Weight: 0.896099 +Vertex 696: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.101249 + Group: 'Neck', Weight: 0.345689 + Group: 'LeftShoulder', Weight: 0.470498 + Group: 'RightShoulder', Weight: 0.074582 +Vertex 697: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.209424 + Group: 'LeftArm', Weight: 0.780614 +Vertex 698: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.200073 + Group: 'LeftArm', Weight: 0.793572 +Vertex 699: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.326216 + Group: 'LeftArm', Weight: 0.634826 +Vertex 700: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.231045 + Group: 'LeftArm', Weight: 0.748983 +Vertex 701: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.197940 + Group: 'LeftArm', Weight: 0.794956 +Vertex 702: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.250800 + Group: 'LeftArm', Weight: 0.736461 +Vertex 703: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.353334 + Group: 'LeftArm', Weight: 0.622152 +Vertex 704: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.162214 + Group: 'LeftArm', Weight: 0.811776 +Vertex 705: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.099811 + Group: 'LeftArm', Weight: 0.889380 +Vertex 706: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.073964 + Group: 'LeftArm', Weight: 0.921038 +Vertex 707: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.061447 + Group: 'LeftArm', Weight: 0.935647 +Vertex 708: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.072772 + Group: 'LeftArm', Weight: 0.923292 +Vertex 709: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.118467 + Group: 'LeftArm', Weight: 0.872811 +Vertex 710: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.228177 + Group: 'LeftArm', Weight: 0.750215 +Vertex 711: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.109714 + Group: 'Spine2', Weight: 0.119250 + Group: 'LeftShoulder', Weight: 0.551870 + Group: 'LeftArm', Weight: 0.205381 +Vertex 712: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050473 + Group: 'Spine2', Weight: 0.057707 + Group: 'LeftShoulder', Weight: 0.700512 + Group: 'LeftArm', Weight: 0.176513 +Vertex 713: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.006365 + Group: 'LeftShoulder', Weight: 0.797414 + Group: 'LeftArm', Weight: 0.138714 +Vertex 714: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.078085 + Group: 'Spine2', Weight: 0.077803 + Group: 'LeftShoulder', Weight: 0.612954 + Group: 'LeftArm', Weight: 0.219182 +Vertex 715: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.117240 + Group: 'Spine2', Weight: 0.135216 + Group: 'LeftShoulder', Weight: 0.531128 + Group: 'LeftArm', Weight: 0.201908 +Vertex 716: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.837226 + Group: 'LeftArm', Weight: 0.125685 +Vertex 717: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.846427 + Group: 'LeftArm', Weight: 0.120903 +Vertex 718: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.853764 + Group: 'LeftArm', Weight: 0.118558 +Vertex 719: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.849291 + Group: 'LeftArm', Weight: 0.115411 +Vertex 720: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.048707 + Group: 'LeftShoulder', Weight: 0.787971 + Group: 'LeftArm', Weight: 0.133074 +Vertex 721: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.017822 + Group: 'Spine2', Weight: 0.062440 + Group: 'LeftShoulder', Weight: 0.656677 + Group: 'LeftArm', Weight: 0.238025 +Vertex 722: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.062542 + Group: 'Spine2', Weight: 0.092323 + Group: 'LeftShoulder', Weight: 0.589820 + Group: 'LeftArm', Weight: 0.244226 +Vertex 723: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.105504 + Group: 'Spine2', Weight: 0.126256 + Group: 'LeftShoulder', Weight: 0.511267 + Group: 'LeftArm', Weight: 0.242417 +Vertex 724: +Vertex groups: 5 + Group: 'Hips', Weight: 0.420213 + Group: 'Spine', Weight: 0.379145 + Group: 'Spine1', Weight: 0.065791 + Group: 'LeftUpLeg', Weight: 0.064734 + Group: 'RightUpLeg', Weight: 0.064834 +Vertex 725: +Vertex groups: 5 + Group: 'Hips', Weight: 0.385206 + Group: 'Spine', Weight: 0.392955 + Group: 'Spine1', Weight: 0.067912 + Group: 'LeftUpLeg', Weight: 0.112570 + Group: 'RightUpLeg', Weight: 0.021515 +Vertex 726: +Vertex groups: 4 + Group: 'Hips', Weight: 0.286756 + Group: 'Spine', Weight: 0.426134 + Group: 'Spine1', Weight: 0.069535 + Group: 'LeftUpLeg', Weight: 0.191783 +Vertex 727: +Vertex groups: 4 + Group: 'Hips', Weight: 0.156800 + Group: 'Spine', Weight: 0.484187 + Group: 'Spine1', Weight: 0.084965 + Group: 'LeftUpLeg', Weight: 0.255506 +Vertex 728: +Vertex groups: 4 + Group: 'Hips', Weight: 0.080279 + Group: 'Spine', Weight: 0.523243 + Group: 'Spine1', Weight: 0.107432 + Group: 'LeftUpLeg', Weight: 0.271133 +Vertex 729: +Vertex groups: 4 + Group: 'Hips', Weight: 0.040030 + Group: 'Spine', Weight: 0.554674 + Group: 'Spine1', Weight: 0.123644 + Group: 'LeftUpLeg', Weight: 0.256994 +Vertex 730: +Vertex groups: 4 + Group: 'Hips', Weight: 0.002445 + Group: 'Spine', Weight: 0.596933 + Group: 'Spine1', Weight: 0.126416 + Group: 'LeftUpLeg', Weight: 0.229169 +Vertex 731: +Vertex groups: 3 + Group: 'Spine', Weight: 0.664469 + Group: 'Spine1', Weight: 0.125373 + Group: 'LeftUpLeg', Weight: 0.166644 +Vertex 732: +Vertex groups: 4 + Group: 'Spine', Weight: 0.832028 + Group: 'Spine1', Weight: 0.081709 + Group: 'LeftUpLeg', Weight: 0.010237 + Group: 'RightUpLeg', Weight: 0.010379 +Vertex 733: +Vertex groups: 3 + Group: 'Spine', Weight: 0.784227 + Group: 'Spine1', Weight: 0.109111 + Group: 'LeftUpLeg', Weight: 0.063210 +Vertex 734: +Vertex groups: 3 + Group: 'Spine', Weight: 0.728520 + Group: 'Spine1', Weight: 0.121701 + Group: 'LeftUpLeg', Weight: 0.107264 +Vertex 735: +Vertex groups: 5 + Group: 'Hips', Weight: 0.526422 + Group: 'Spine', Weight: 0.236660 + Group: 'Spine1', Weight: 0.030898 + Group: 'LeftUpLeg', Weight: 0.148660 + Group: 'RightUpLeg', Weight: 0.038761 +Vertex 736: +Vertex groups: 4 + Group: 'Hips', Weight: 0.377137 + Group: 'Spine', Weight: 0.282237 + Group: 'Spine1', Weight: 0.043337 + Group: 'LeftUpLeg', Weight: 0.268808 +Vertex 737: +Vertex groups: 4 + Group: 'Hips', Weight: 0.180741 + Group: 'Spine', Weight: 0.363535 + Group: 'Spine1', Weight: 0.061053 + Group: 'LeftUpLeg', Weight: 0.379131 +Vertex 738: +Vertex groups: 4 + Group: 'Hips', Weight: 0.080777 + Group: 'Spine', Weight: 0.450207 + Group: 'Spine1', Weight: 0.078579 + Group: 'LeftUpLeg', Weight: 0.375857 +Vertex 739: +Vertex groups: 4 + Group: 'Hips', Weight: 0.043846 + Group: 'Spine', Weight: 0.489146 + Group: 'Spine1', Weight: 0.088246 + Group: 'LeftUpLeg', Weight: 0.360226 +Vertex 740: +Vertex groups: 4 + Group: 'Hips', Weight: 0.005170 + Group: 'Spine', Weight: 0.539390 + Group: 'Spine1', Weight: 0.085957 + Group: 'LeftUpLeg', Weight: 0.330290 +Vertex 741: +Vertex groups: 5 + Group: 'Hips', Weight: 0.018977 + Group: 'Spine', Weight: 0.778342 + Group: 'Spine1', Weight: 0.065581 + Group: 'LeftUpLeg', Weight: 0.090147 + Group: 'RightUpLeg', Weight: 0.001323 +Vertex 742: +Vertex groups: 5 + Group: 'Hips', Weight: 0.020636 + Group: 'Spine', Weight: 0.815577 + Group: 'Spine1', Weight: 0.054207 + Group: 'LeftUpLeg', Weight: 0.040552 + Group: 'RightUpLeg', Weight: 0.040718 +Vertex 743: +Vertex groups: 4 + Group: 'Hips', Weight: 0.009271 + Group: 'Spine', Weight: 0.703936 + Group: 'Spine1', Weight: 0.076243 + Group: 'LeftUpLeg', Weight: 0.166184 +Vertex 744: +Vertex groups: 4 + Group: 'Hips', Weight: 0.002074 + Group: 'Spine', Weight: 0.630330 + Group: 'Spine1', Weight: 0.084295 + Group: 'LeftUpLeg', Weight: 0.239291 +Vertex 745: +Vertex groups: 5 + Group: 'Hips', Weight: 0.563782 + Group: 'Spine', Weight: 0.230651 + Group: 'Spine1', Weight: 0.029434 + Group: 'LeftUpLeg', Weight: 0.081223 + Group: 'RightUpLeg', Weight: 0.081332 +Vertex 746: +Vertex groups: 3 + Group: 'Hips', Weight: 0.422171 + Group: 'LeftUpLeg', Weight: 0.367546 + Group: 'RightUpLeg', Weight: 0.204860 +Vertex 747: +Vertex groups: 3 + Group: 'Hips', Weight: 0.273366 + Group: 'LeftUpLeg', Weight: 0.487755 + Group: 'RightUpLeg', Weight: 0.232981 +Vertex 748: +Vertex groups: 3 + Group: 'Hips', Weight: 0.088914 + Group: 'LeftUpLeg', Weight: 0.867683 + Group: 'RightUpLeg', Weight: 0.025935 +Vertex 749: +Vertex groups: 3 + Group: 'Hips', Weight: 0.074970 + Group: 'LeftUpLeg', Weight: 0.894806 + Group: 'RightUpLeg', Weight: 0.000471 +Vertex 750: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.959245 +Vertex 751: +Vertex groups: 2 + Group: 'Hips', Weight: 0.029513 + Group: 'LeftUpLeg', Weight: 0.930847 +Vertex 752: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.979637 +Vertex 753: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.990267 +Vertex 754: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.990188 +Vertex 755: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.986310 +Vertex 756: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.973835 +Vertex 757: +Vertex groups: 2 + Group: 'Hips', Weight: 0.005454 + Group: 'LeftUpLeg', Weight: 0.961888 +Vertex 758: +Vertex groups: 2 + Group: 'Hips', Weight: 0.050387 + Group: 'LeftUpLeg', Weight: 0.931896 +Vertex 759: +Vertex groups: 3 + Group: 'Hips', Weight: 0.338948 + Group: 'LeftUpLeg', Weight: 0.470126 + Group: 'RightUpLeg', Weight: 0.176258 +Vertex 760: +Vertex groups: 4 + Group: 'Hips', Weight: 0.230882 + Group: 'Spine', Weight: 0.022355 + Group: 'LeftUpLeg', Weight: 0.613864 + Group: 'RightUpLeg', Weight: 0.116416 +Vertex 761: +Vertex groups: 3 + Group: 'Hips', Weight: 0.240449 + Group: 'LeftUpLeg', Weight: 0.707891 + Group: 'RightUpLeg', Weight: 0.010908 +Vertex 762: +Vertex groups: 2 + Group: 'Hips', Weight: 0.108625 + Group: 'LeftUpLeg', Weight: 0.849895 +Vertex 763: +Vertex groups: 3 + Group: 'Hips', Weight: 0.058397 + Group: 'Spine', Weight: 0.014445 + Group: 'LeftUpLeg', Weight: 0.897875 +Vertex 764: +Vertex groups: 3 + Group: 'Hips', Weight: 0.014292 + Group: 'Spine', Weight: 0.013239 + Group: 'LeftUpLeg', Weight: 0.927381 +Vertex 765: +Vertex groups: 2 + Group: 'Spine', Weight: 0.018287 + Group: 'LeftUpLeg', Weight: 0.946701 +Vertex 766: +Vertex groups: 2 + Group: 'Spine', Weight: 0.038478 + Group: 'LeftUpLeg', Weight: 0.919737 +Vertex 767: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.987070 +Vertex 768: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.987759 +Vertex 769: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.990163 +Vertex 770: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.993221 +Vertex 771: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.995676 +Vertex 772: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.996089 +Vertex 773: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.996513 +Vertex 774: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.993907 +Vertex 775: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.994883 +Vertex 776: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.987831 +Vertex 777: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.989769 +Vertex 778: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.990446 +Vertex 779: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.991466 +Vertex 780: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.992578 +Vertex 781: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.993162 +Vertex 782: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.992284 +Vertex 783: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.990343 +Vertex 784: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.990696 +Vertex 785: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.991804 +Vertex 786: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.992530 +Vertex 787: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.994005 +Vertex 788: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.994898 +Vertex 789: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.993887 +Vertex 790: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.996137 +Vertex 791: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.998155 +Vertex 792: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.998374 +Vertex 793: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.997985 +Vertex 794: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.997030 +Vertex 795: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.996162 +Vertex 796: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.995290 +Vertex 797: +Vertex groups: 4 + Group: 'Hips', Weight: 0.112750 + Group: 'Spine', Weight: 0.024565 + Group: 'LeftUpLeg', Weight: 0.793145 + Group: 'RightUpLeg', Weight: 0.054011 +Vertex 798: +Vertex groups: 3 + Group: 'Hips', Weight: 0.053543 + Group: 'Spine', Weight: 0.045422 + Group: 'LeftUpLeg', Weight: 0.870540 +Vertex 799: +Vertex groups: 3 + Group: 'Hips', Weight: 0.294173 + Group: 'LeftUpLeg', Weight: 0.639143 + Group: 'RightUpLeg', Weight: 0.054568 +Vertex 800: +Vertex groups: 3 + Group: 'Hips', Weight: 0.360260 + Group: 'LeftUpLeg', Weight: 0.533581 + Group: 'RightUpLeg', Weight: 0.098534 +Vertex 801: +Vertex groups: 3 + Group: 'Hips', Weight: 0.065945 + Group: 'LeftUpLeg', Weight: 0.888726 + Group: 'RightUpLeg', Weight: 0.024928 +Vertex 802: +Vertex groups: 3 + Group: 'Hips', Weight: 0.091614 + Group: 'LeftUpLeg', Weight: 0.843825 + Group: 'RightUpLeg', Weight: 0.057280 +Vertex 803: +Vertex groups: 3 + Group: 'Hips', Weight: 0.080773 + Group: 'LeftUpLeg', Weight: 0.852878 + Group: 'RightUpLeg', Weight: 0.059754 +Vertex 804: +Vertex groups: 3 + Group: 'Hips', Weight: 0.089991 + Group: 'LeftUpLeg', Weight: 0.851521 + Group: 'RightUpLeg', Weight: 0.052418 +Vertex 805: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.669043 + Group: 'LeftLeg', Weight: 0.329945 +Vertex 806: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.673390 + Group: 'LeftLeg', Weight: 0.325901 +Vertex 807: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.289288 + Group: 'LeftLeg', Weight: 0.710261 +Vertex 808: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.284133 + Group: 'LeftLeg', Weight: 0.715531 +Vertex 809: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.782746 + Group: 'LeftLeg', Weight: 0.215704 +Vertex 810: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.787745 + Group: 'LeftLeg', Weight: 0.211215 +Vertex 811: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.652201 + Group: 'LeftLeg', Weight: 0.347306 +Vertex 812: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.327707 + Group: 'LeftLeg', Weight: 0.672032 +Vertex 813: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.744457 + Group: 'LeftLeg', Weight: 0.254914 +Vertex 814: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.564868 + Group: 'LeftLeg', Weight: 0.434867 +Vertex 815: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.391312 + Group: 'LeftLeg', Weight: 0.608499 +Vertex 816: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.694866 + Group: 'LeftLeg', Weight: 0.304890 +Vertex 817: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.377169 + Group: 'LeftLeg', Weight: 0.622685 +Vertex 818: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.698493 + Group: 'LeftLeg', Weight: 0.301406 +Vertex 819: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.685122 + Group: 'LeftLeg', Weight: 0.314822 +Vertex 820: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.687331 + Group: 'LeftLeg', Weight: 0.312561 +Vertex 821: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.659143 + Group: 'LeftLeg', Weight: 0.340328 +Vertex 822: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.681101 + Group: 'LeftLeg', Weight: 0.318624 +Vertex 823: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.148525 + Group: 'LeftLeg', Weight: 0.851195 +Vertex 824: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.128115 + Group: 'LeftLeg', Weight: 0.871686 +Vertex 825: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.098974 + Group: 'LeftLeg', Weight: 0.900781 +Vertex 826: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.086875 + Group: 'LeftLeg', Weight: 0.912947 +Vertex 827: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.148625 + Group: 'LeftLeg', Weight: 0.851228 +Vertex 828: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.093630 + Group: 'LeftLeg', Weight: 0.906258 +Vertex 829: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.229076 + Group: 'LeftLeg', Weight: 0.770790 +Vertex 830: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.147436 + Group: 'LeftLeg', Weight: 0.852489 +Vertex 831: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.171980 + Group: 'LeftLeg', Weight: 0.827976 +Vertex 832: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.208606 + Group: 'LeftLeg', Weight: 0.791364 +Vertex 833: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.217304 + Group: 'LeftLeg', Weight: 0.782645 +Vertex 834: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.305262 + Group: 'LeftLeg', Weight: 0.694455 +Vertex 835: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.270865 + Group: 'LeftLeg', Weight: 0.728991 +Vertex 836: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.649841 + Group: 'LeftLeg', Weight: 0.348993 +Vertex 837: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.336645 + Group: 'LeftLeg', Weight: 0.662761 +Vertex 838: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.754743 + Group: 'LeftLeg', Weight: 0.243547 +Vertex 839: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.590982 + Group: 'LeftLeg', Weight: 0.407904 +Vertex 840: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.381463 + Group: 'LeftLeg', Weight: 0.617825 +Vertex 841: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.667954 + Group: 'LeftLeg', Weight: 0.330624 +Vertex 842: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.393440 + Group: 'LeftLeg', Weight: 0.605810 +Vertex 843: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.562449 + Group: 'LeftLeg', Weight: 0.436518 +Vertex 844: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.607830 + Group: 'LeftLeg', Weight: 0.390959 +Vertex 845: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.617460 + Group: 'LeftLeg', Weight: 0.381350 +Vertex 846: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.651978 + Group: 'LeftLeg', Weight: 0.347145 +Vertex 847: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.172983 + Group: 'LeftLeg', Weight: 0.826673 +Vertex 848: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.126972 + Group: 'LeftLeg', Weight: 0.872738 +Vertex 849: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.253898 + Group: 'LeftLeg', Weight: 0.745608 +Vertex 850: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.227387 + Group: 'LeftLeg', Weight: 0.772151 +Vertex 851: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.305818 + Group: 'LeftLeg', Weight: 0.693598 +Vertex 852: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.342542 + Group: 'LeftLeg', Weight: 0.656791 +Vertex 853: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.363969 + Group: 'LeftLeg', Weight: 0.635362 +Vertex 854: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.335093 + Group: 'LeftLeg', Weight: 0.664446 +Vertex 855: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.903743 + Group: 'LeftLeg', Weight: 0.095620 +Vertex 856: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.847533 + Group: 'LeftLeg', Weight: 0.150599 +Vertex 857: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.873166 + Group: 'LeftLeg', Weight: 0.123205 +Vertex 858: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.919338 + Group: 'LeftLeg', Weight: 0.078621 +Vertex 859: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.809041 + Group: 'LeftLeg', Weight: 0.188599 +Vertex 860: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.810224 + Group: 'LeftLeg', Weight: 0.187219 +Vertex 861: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.921010 + Group: 'LeftLeg', Weight: 0.078718 +Vertex 862: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.880908 + Group: 'LeftLeg', Weight: 0.117829 +Vertex 863: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.812174 + Group: 'LeftLeg', Weight: 0.185307 +Vertex 864: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.903610 + Group: 'LeftLeg', Weight: 0.092910 +Vertex 865: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.837286 + Group: 'LeftLeg', Weight: 0.159880 +Vertex 866: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.922682 + Group: 'LeftLeg', Weight: 0.077181 +Vertex 867: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.916981 + Group: 'LeftLeg', Weight: 0.082769 +Vertex 868: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.920032 + Group: 'LeftLeg', Weight: 0.078771 +Vertex 869: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.910016 + Group: 'LeftLeg', Weight: 0.089485 +Vertex 870: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.957774 + Group: 'LeftLeg', Weight: 0.020985 +Vertex 871: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.952217 + Group: 'LeftLeg', Weight: 0.025702 +Vertex 872: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.937774 + Group: 'LeftLeg', Weight: 0.053763 +Vertex 873: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.985604 +Vertex 874: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.985460 +Vertex 875: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.981349 +Vertex 876: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.979875 +Vertex 877: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.972214 +Vertex 878: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.943384 + Group: 'LeftLeg', Weight: 0.046627 +Vertex 879: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.969616 + Group: 'LeftLeg', Weight: 0.001555 +Vertex 880: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.938842 + Group: 'LeftLeg', Weight: 0.051711 +Vertex 881: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.962048 + Group: 'LeftLeg', Weight: 0.009554 +Vertex 882: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.942683 + Group: 'LeftLeg', Weight: 0.045095 +Vertex 883: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.987930 +Vertex 884: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.976297 +Vertex 885: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.986326 +Vertex 886: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.066250 + Group: 'LeftLeg', Weight: 0.933586 +Vertex 887: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.021725 + Group: 'LeftLeg', Weight: 0.963869 +Vertex 888: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.016767 + Group: 'LeftLeg', Weight: 0.966571 +Vertex 889: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.979523 +Vertex 890: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.078535 + Group: 'LeftLeg', Weight: 0.921248 +Vertex 891: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.008377 + Group: 'LeftLeg', Weight: 0.970492 +Vertex 892: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.052635 + Group: 'LeftLeg', Weight: 0.947105 +Vertex 893: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.066121 + Group: 'LeftLeg', Weight: 0.933639 +Vertex 894: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.991626 +Vertex 895: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.052226 + Group: 'LeftLeg', Weight: 0.947664 +Vertex 896: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.037146 + Group: 'LeftLeg', Weight: 0.956349 +Vertex 897: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.989356 +Vertex 898: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.983744 +Vertex 899: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.989954 +Vertex 900: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.074203 + Group: 'LeftFoot', Weight: 0.863924 + Group: 'LeftToeBase', Weight: 0.061869 +Vertex 901: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.095505 + Group: 'LeftFoot', Weight: 0.857679 + Group: 'LeftToeBase', Weight: 0.043624 +Vertex 902: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.080358 + Group: 'LeftFoot', Weight: 0.885753 + Group: 'LeftToeBase', Weight: 0.017773 +Vertex 903: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.056053 + Group: 'LeftFoot', Weight: 0.911754 + Group: 'LeftToeBase', Weight: 0.014383 +Vertex 904: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.011724 + Group: 'LeftFoot', Weight: 0.948091 +Vertex 905: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.026076 + Group: 'LeftFoot', Weight: 0.955273 +Vertex 906: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.140353 + Group: 'LeftFoot', Weight: 0.854370 +Vertex 907: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.241786 + Group: 'LeftFoot', Weight: 0.752444 +Vertex 908: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.222678 + Group: 'LeftFoot', Weight: 0.772543 +Vertex 909: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.064872 + Group: 'LeftFoot', Weight: 0.884874 + Group: 'LeftToeBase', Weight: 0.050251 +Vertex 910: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.070153 + Group: 'LeftFoot', Weight: 0.895300 + Group: 'LeftToeBase', Weight: 0.019088 +Vertex 911: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.078382 + Group: 'LeftFoot', Weight: 0.897005 +Vertex 912: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.098336 + Group: 'LeftFoot', Weight: 0.884242 +Vertex 913: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.126546 + Group: 'LeftFoot', Weight: 0.860873 +Vertex 914: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.184284 + Group: 'LeftFoot', Weight: 0.807639 +Vertex 915: +Vertex groups: 3 + Group: 'Hips', Weight: 0.463045 + Group: 'LeftUpLeg', Weight: 0.265688 + Group: 'RightUpLeg', Weight: 0.265816 +Vertex 916: +Vertex groups: 3 + Group: 'Hips', Weight: 0.334307 + Group: 'LeftUpLeg', Weight: 0.329903 + Group: 'RightUpLeg', Weight: 0.329962 +Vertex 917: +Vertex groups: 3 + Group: 'Hips', Weight: 0.394494 + Group: 'LeftUpLeg', Weight: 0.296209 + Group: 'RightUpLeg', Weight: 0.296280 +Vertex 918: +Vertex groups: 3 + Group: 'Hips', Weight: 0.367171 + Group: 'LeftUpLeg', Weight: 0.408057 + Group: 'RightUpLeg', Weight: 0.198620 +Vertex 919: +Vertex groups: 4 + Group: 'Hips', Weight: 0.353319 + Group: 'Spine', Weight: 0.032453 + Group: 'LeftUpLeg', Weight: 0.421858 + Group: 'RightUpLeg', Weight: 0.180776 +Vertex 920: +Vertex groups: 4 + Group: 'Hips', Weight: 0.405472 + Group: 'Spine', Weight: 0.001429 + Group: 'LeftUpLeg', Weight: 0.283252 + Group: 'RightUpLeg', Weight: 0.283321 +Vertex 921: +Vertex groups: 4 + Group: 'Hips', Weight: 0.399408 + Group: 'Spine', Weight: 0.052386 + Group: 'LeftUpLeg', Weight: 0.272444 + Group: 'RightUpLeg', Weight: 0.272507 +Vertex 922: +Vertex groups: 4 + Group: 'Hips', Weight: 0.396543 + Group: 'Spine', Weight: 0.133169 + Group: 'LeftUpLeg', Weight: 0.231776 + Group: 'RightUpLeg', Weight: 0.231842 +Vertex 923: +Vertex groups: 5 + Group: 'Hips', Weight: 0.068547 + Group: 'Spine', Weight: 0.751541 + Group: 'Spine1', Weight: 0.018734 + Group: 'LeftUpLeg', Weight: 0.071246 + Group: 'RightUpLeg', Weight: 0.071337 +Vertex 924: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.997675 +Vertex 925: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.992369 +Vertex 926: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.997053 +Vertex 927: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.994768 +Vertex 928: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.203638 + Group: 'LeftToeBase', Weight: 0.793223 +Vertex 929: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.036832 + Group: 'LeftToeBase', Weight: 0.956003 +Vertex 930: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.976395 +Vertex 931: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.975577 +Vertex 932: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.085424 + Group: 'LeftToeBase', Weight: 0.914326 +Vertex 933: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.075968 + Group: 'LeftToeBase', Weight: 0.923817 +Vertex 934: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.237880 + Group: 'LeftToeBase', Weight: 0.761563 +Vertex 935: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.214619 + Group: 'LeftToeBase', Weight: 0.784834 +Vertex 936: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.911255 + Group: 'LeftToeBase', Weight: 0.084568 +Vertex 937: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.796188 + Group: 'LeftToeBase', Weight: 0.199141 +Vertex 938: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.007988 + Group: 'LeftFoot', Weight: 0.941588 + Group: 'LeftToeBase', Weight: 0.008836 +Vertex 939: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.924169 + Group: 'LeftToeBase', Weight: 0.055820 +Vertex 940: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.050345 + Group: 'LeftFoot', Weight: 0.927005 +Vertex 941: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.015064 + Group: 'LeftFoot', Weight: 0.934493 + Group: 'LeftToeBase', Weight: 0.015950 +Vertex 942: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.075257 + Group: 'LeftFoot', Weight: 0.907937 +Vertex 943: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.037952 + Group: 'LeftFoot', Weight: 0.931253 +Vertex 944: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.075816 + Group: 'LeftFoot', Weight: 0.906555 +Vertex 945: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.044716 + Group: 'LeftFoot', Weight: 0.928226 +Vertex 946: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.065751 + Group: 'LeftFoot', Weight: 0.912721 +Vertex 947: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.034151 + Group: 'LeftFoot', Weight: 0.929020 + Group: 'LeftToeBase', Weight: 0.007808 +Vertex 948: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.049186 + Group: 'LeftFoot', Weight: 0.921567 + Group: 'LeftToeBase', Weight: 0.007678 +Vertex 949: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.016734 + Group: 'LeftFoot', Weight: 0.929362 + Group: 'LeftToeBase', Weight: 0.024540 +Vertex 950: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.028635 + Group: 'LeftFoot', Weight: 0.922168 + Group: 'LeftToeBase', Weight: 0.027027 +Vertex 951: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.001400 + Group: 'LeftFoot', Weight: 0.922622 + Group: 'LeftToeBase', Weight: 0.051678 +Vertex 952: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.903772 + Group: 'LeftToeBase', Weight: 0.075498 +Vertex 953: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.887535 + Group: 'LeftToeBase', Weight: 0.098234 +Vertex 954: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.644981 + Group: 'LeftToeBase', Weight: 0.350473 +Vertex 955: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.495213 + Group: 'LeftToeBase', Weight: 0.503105 +Vertex 956: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.843052 + Group: 'LeftToeBase', Weight: 0.148256 +Vertex 957: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.872582 + Group: 'LeftToeBase', Weight: 0.113109 +Vertex 958: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.314618 + Group: 'LeftToeBase', Weight: 0.682784 +Vertex 959: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.222211 + Group: 'LeftToeBase', Weight: 0.776822 +Vertex 960: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.148504 + Group: 'LeftToeBase', Weight: 0.850139 +Vertex 961: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.129279 + Group: 'LeftToeBase', Weight: 0.870059 +Vertex 962: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.062794 + Group: 'LeftToeBase', Weight: 0.936626 +Vertex 963: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.060320 + Group: 'LeftToeBase', Weight: 0.939306 +Vertex 964: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.003286 + Group: 'LeftToeBase', Weight: 0.973098 +Vertex 965: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.003381 + Group: 'LeftToeBase', Weight: 0.973117 +Vertex 966: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.989706 +Vertex 967: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.988336 +Vertex 968: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.144497 + Group: 'LeftToeBase', Weight: 0.853968 +Vertex 969: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.141078 + Group: 'LeftToeBase', Weight: 0.856893 +Vertex 970: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.024743 + Group: 'LeftFoot', Weight: 0.911295 + Group: 'LeftToeBase', Weight: 0.051332 +Vertex 971: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.997922 +Vertex 972: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.997938 +Vertex 973: +Vertex groups: 4 + Group: 'Hips', Weight: 0.676126 + Group: 'Spine', Weight: 0.082159 + Group: 'LeftUpLeg', Weight: 0.113149 + Group: 'RightUpLeg', Weight: 0.113280 +Vertex 974: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.892740 + Group: 'LeftToeBase', Weight: 0.084078 +Vertex 975: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.699526 + Group: 'LeftToeBase', Weight: 0.290916 +Vertex 976: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.353199 + Group: 'LeftToeBase', Weight: 0.641955 +Vertex 977: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.157718 + Group: 'LeftToeBase', Weight: 0.840236 +Vertex 978: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.059939 + Group: 'LeftToeBase', Weight: 0.939372 +Vertex 979: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.007598 + Group: 'LeftToeBase', Weight: 0.970866 +Vertex 980: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.096196 + Group: 'LeftToeBase', Weight: 0.902416 +Vertex 981: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.987656 +Vertex 982: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.996477 +Vertex 983: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.988566 +Vertex 984: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.983268 +Vertex 985: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.020440 + Group: 'LeftToeBase', Weight: 0.964615 +Vertex 986: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.115006 + Group: 'LeftToeBase', Weight: 0.884582 +Vertex 987: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.273572 + Group: 'LeftToeBase', Weight: 0.725697 +Vertex 988: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.939661 + Group: 'LeftToeBase', Weight: 0.055586 +Vertex 989: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.016376 + Group: 'LeftFoot', Weight: 0.955266 +Vertex 990: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.093309 + Group: 'LeftFoot', Weight: 0.895917 +Vertex 991: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.118549 + Group: 'LeftFoot', Weight: 0.870535 +Vertex 992: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.134358 + Group: 'LeftFoot', Weight: 0.854788 +Vertex 993: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.113377 + Group: 'LeftFoot', Weight: 0.873446 +Vertex 994: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.083078 + Group: 'LeftFoot', Weight: 0.898356 +Vertex 995: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.062214 + Group: 'LeftFoot', Weight: 0.912004 + Group: 'LeftToeBase', Weight: 0.001562 +Vertex 996: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.996806 +Vertex 997: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.030910 + Group: 'LeftFoot', Weight: 0.868218 + Group: 'LeftToeBase', Weight: 0.091325 +Vertex 998: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.006682 + Group: 'LeftFoot', Weight: 0.900480 + Group: 'LeftToeBase', Weight: 0.071178 +Vertex 999: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.046430 + Group: 'LeftToeBase', Weight: 0.951107 +Vertex 1000: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.050630 + Group: 'LeftToeBase', Weight: 0.948836 +Vertex 1001: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.994411 +Vertex 1002: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.994240 +Vertex 1003: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.979810 +Vertex 1004: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.336080 + Group: 'LeftToeBase', Weight: 0.658741 +Vertex 1005: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.332377 + Group: 'LeftToeBase', Weight: 0.663796 +Vertex 1006: +Vertex groups: 3 + Group: 'Hips', Weight: 0.594491 + Group: 'LeftUpLeg', Weight: 0.198240 + Group: 'RightUpLeg', Weight: 0.198408 +Vertex 1007: +Vertex groups: 3 + Group: 'Hips', Weight: 0.662607 + Group: 'LeftUpLeg', Weight: 0.161677 + Group: 'RightUpLeg', Weight: 0.161855 +Vertex 1008: +Vertex groups: 3 + Group: 'Hips', Weight: 0.586867 + Group: 'LeftUpLeg', Weight: 0.293101 + Group: 'RightUpLeg', Weight: 0.107042 +Vertex 1009: +Vertex groups: 4 + Group: 'Hips', Weight: 0.344445 + Group: 'Spine', Weight: 0.282127 + Group: 'LeftUpLeg', Weight: 0.180613 + Group: 'RightUpLeg', Weight: 0.180691 +Vertex 1010: +Vertex groups: 4 + Group: 'Hips', Weight: 0.235537 + Group: 'Spine', Weight: 0.458433 + Group: 'LeftUpLeg', Weight: 0.144481 + Group: 'RightUpLeg', Weight: 0.144567 +Vertex 1011: +Vertex groups: 2 + Group: 'Spine', Weight: 0.010482 + Group: 'LeftUpLeg', Weight: 0.945949 +Vertex 1012: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.985564 +Vertex 1013: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.987461 +Vertex 1014: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.012846 + Group: 'LeftToeBase', Weight: 0.968312 +Vertex 1015: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.070835 + Group: 'LeftToeBase', Weight: 0.928553 +Vertex 1016: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.290324 + Group: 'LeftToeBase', Weight: 0.707199 +Vertex 1017: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.909171 + Group: 'LeftToeBase', Weight: 0.067935 +Vertex 1018: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.026071 + Group: 'LeftFoot', Weight: 0.846201 + Group: 'LeftToeBase', Weight: 0.115761 +Vertex 1019: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.258642 + Group: 'LeftToeBase', Weight: 0.737226 +Vertex 1020: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.045179 + Group: 'LeftToeBase', Weight: 0.951736 +Vertex 1021: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.975359 +Vertex 1022: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.036055 + Group: 'LeftToeBase', Weight: 0.956727 +Vertex 1023: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.246949 + Group: 'LeftToeBase', Weight: 0.752091 +Vertex 1024: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.934068 + Group: 'LeftToeBase', Weight: 0.058577 +Vertex 1025: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.137493 + Group: 'LeftToeBase', Weight: 0.861334 +Vertex 1026: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.113777 + Group: 'LeftToeBase', Weight: 0.884512 +Vertex 1027: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.113027 + Group: 'LeftToeBase', Weight: 0.886434 +Vertex 1028: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.417374 + Group: 'LeftToeBase', Weight: 0.575482 +Vertex 1029: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.762265 + Group: 'LeftToeBase', Weight: 0.236246 +Vertex 1030: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.587199 + Group: 'LeftToeBase', Weight: 0.411189 +Vertex 1031: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.721479 + Group: 'LeftToeBase', Weight: 0.277041 +Vertex 1032: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.718358 + Group: 'LeftToeBase', Weight: 0.273284 +Vertex 1033: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.684448 + Group: 'LeftToeBase', Weight: 0.303861 +Vertex 1034: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.684867 + Group: 'LeftToeBase', Weight: 0.309357 +Vertex 1035: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.546616 + Group: 'LeftToeBase', Weight: 0.444208 +Vertex 1036: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.712746 + Group: 'LeftToeBase', Weight: 0.284641 +Vertex 1037: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.741968 + Group: 'LeftToeBase', Weight: 0.241378 +Vertex 1038: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.008247 + Group: 'LeftFoot', Weight: 0.859908 + Group: 'LeftToeBase', Weight: 0.110967 +Vertex 1039: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.738495 + Group: 'LeftToeBase', Weight: 0.257174 +Vertex 1040: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.794679 + Group: 'LeftToeBase', Weight: 0.197265 +Vertex 1041: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.841532 + Group: 'LeftToeBase', Weight: 0.142140 +Vertex 1042: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.219430 + Group: 'LeftFoot', Weight: 0.765532 +Vertex 1043: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.193852 + Group: 'LeftFoot', Weight: 0.793766 +Vertex 1044: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.288708 + Group: 'LeftFoot', Weight: 0.706411 +Vertex 1045: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.228241 + Group: 'LeftFoot', Weight: 0.763576 +Vertex 1046: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.155984 + Group: 'LeftFoot', Weight: 0.834632 +Vertex 1047: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.120756 + Group: 'LeftFoot', Weight: 0.874030 +Vertex 1048: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.098418 + Group: 'LeftFoot', Weight: 0.900611 +Vertex 1049: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.436003 + Group: 'LeftFoot', Weight: 0.563591 +Vertex 1050: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.472041 + Group: 'LeftFoot', Weight: 0.527379 +Vertex 1051: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.197602 + Group: 'LeftFoot', Weight: 0.784564 +Vertex 1052: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.196949 + Group: 'LeftFoot', Weight: 0.791467 +Vertex 1053: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.432646 + Group: 'LeftFoot', Weight: 0.565311 +Vertex 1054: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.399369 + Group: 'LeftFoot', Weight: 0.597717 +Vertex 1055: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.466616 + Group: 'LeftFoot', Weight: 0.532208 +Vertex 1056: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.178380 + Group: 'LeftFoot', Weight: 0.806170 +Vertex 1057: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.911613 + Group: 'LeftToeBase', Weight: 0.067991 +Vertex 1058: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.012611 + Group: 'LeftFoot', Weight: 0.918125 + Group: 'LeftToeBase', Weight: 0.050569 +Vertex 1059: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.050317 + Group: 'LeftFoot', Weight: 0.916019 + Group: 'LeftToeBase', Weight: 0.017324 +Vertex 1060: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.868310 + Group: 'LeftToeBase', Weight: 0.123316 +Vertex 1061: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.962611 + Group: 'LeftToeBase', Weight: 0.004608 +Vertex 1062: +Vertex groups: 1 + Group: 'LeftFoot', Weight: 0.972301 +Vertex 1063: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.008037 + Group: 'LeftFoot', Weight: 0.963975 +Vertex 1064: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.998577 +Vertex 1065: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.998205 +Vertex 1066: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.991711 +Vertex 1067: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.974952 +Vertex 1068: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.082572 + Group: 'LeftToeBase', Weight: 0.917198 +Vertex 1069: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.222110 + Group: 'LeftToeBase', Weight: 0.777330 +Vertex 1070: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.684777 + Group: 'LeftToeBase', Weight: 0.313451 +Vertex 1071: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.831616 + Group: 'LeftToeBase', Weight: 0.163713 +Vertex 1072: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.890334 + Group: 'LeftToeBase', Weight: 0.099334 +Vertex 1073: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.925533 + Group: 'LeftToeBase', Weight: 0.054146 +Vertex 1074: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.019641 + Group: 'LeftFoot', Weight: 0.934075 + Group: 'LeftToeBase', Weight: 0.012208 +Vertex 1075: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.051066 + Group: 'LeftFoot', Weight: 0.926618 +Vertex 1076: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.054222 + Group: 'LeftFoot', Weight: 0.923650 +Vertex 1077: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.040787 + Group: 'LeftFoot', Weight: 0.927457 + Group: 'LeftToeBase', Weight: 0.004299 +Vertex 1078: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.020097 + Group: 'LeftFoot', Weight: 0.928625 + Group: 'LeftToeBase', Weight: 0.022652 +Vertex 1079: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.004561 + Group: 'LeftFoot', Weight: 0.922587 + Group: 'LeftToeBase', Weight: 0.050132 +Vertex 1080: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.910002 + Group: 'LeftToeBase', Weight: 0.068663 +Vertex 1081: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.888715 + Group: 'LeftToeBase', Weight: 0.095876 +Vertex 1082: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.757991 + Group: 'LeftToeBase', Weight: 0.236767 +Vertex 1083: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.533022 + Group: 'LeftToeBase', Weight: 0.464560 +Vertex 1084: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.842784 + Group: 'LeftToeBase', Weight: 0.147779 +Vertex 1085: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.276227 + Group: 'LeftToeBase', Weight: 0.722306 +Vertex 1086: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.137593 + Group: 'LeftToeBase', Weight: 0.861576 +Vertex 1087: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.061538 + Group: 'LeftToeBase', Weight: 0.938034 +Vertex 1088: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.004127 + Group: 'LeftToeBase', Weight: 0.972729 +Vertex 1089: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.989172 +Vertex 1090: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.963625 +Vertex 1091: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.957156 +Vertex 1092: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.949773 +Vertex 1093: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.992290 +Vertex 1094: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.994739 +Vertex 1095: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.992446 +Vertex 1096: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.985679 +Vertex 1097: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.980345 +Vertex 1098: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.951252 +Vertex 1099: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.975550 +Vertex 1100: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.948322 +Vertex 1101: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.967308 +Vertex 1102: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.950912 +Vertex 1103: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.995383 +Vertex 1104: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.986197 +Vertex 1105: +Vertex groups: 4 + Group: 'Hips', Weight: 0.119793 + Group: 'Spine', Weight: 0.653903 + Group: 'LeftUpLeg', Weight: 0.100354 + Group: 'RightUpLeg', Weight: 0.100445 +Vertex 1106: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.098189 + Group: 'LeftFoot', Weight: 0.868083 + Group: 'LeftToeBase', Weight: 0.017446 +Vertex 1107: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.107764 + Group: 'LeftFoot', Weight: 0.868400 +Vertex 1108: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.108724 + Group: 'LeftFoot', Weight: 0.866129 + Group: 'LeftToeBase', Weight: 0.000286 +Vertex 1109: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.078747 + Group: 'LeftFoot', Weight: 0.898112 +Vertex 1110: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.114796 + Group: 'LeftFoot', Weight: 0.841460 + Group: 'LeftToeBase', Weight: 0.037477 +Vertex 1111: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.762833 + Group: 'LeftToeBase', Weight: 0.216845 +Vertex 1112: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.106985 + Group: 'LeftFoot', Weight: 0.874568 +Vertex 1113: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.128677 + Group: 'LeftFoot', Weight: 0.857663 +Vertex 1114: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.166601 + Group: 'LeftFoot', Weight: 0.823647 +Vertex 1115: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.236024 + Group: 'LeftFoot', Weight: 0.758028 +Vertex 1116: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.334895 + Group: 'LeftFoot', Weight: 0.661402 +Vertex 1117: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.336468 + Group: 'LeftFoot', Weight: 0.660751 +Vertex 1118: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.171887 + Group: 'LeftFoot', Weight: 0.824957 +Vertex 1119: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.131090 + Group: 'LeftFoot', Weight: 0.835849 + Group: 'LeftToeBase', Weight: 0.016111 +Vertex 1120: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.038758 + Group: 'LeftFoot', Weight: 0.951204 +Vertex 1121: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.048459 + Group: 'LeftFoot', Weight: 0.936101 +Vertex 1122: +Vertex groups: 4 + Group: 'Hips', Weight: 0.610053 + Group: 'Spine', Weight: 0.030128 + Group: 'LeftUpLeg', Weight: 0.278632 + Group: 'RightUpLeg', Weight: 0.063719 +Vertex 1123: +Vertex groups: 3 + Group: 'Hips', Weight: 0.632930 + Group: 'LeftUpLeg', Weight: 0.256147 + Group: 'RightUpLeg', Weight: 0.088604 +Vertex 1124: +Vertex groups: 3 + Group: 'Hips', Weight: 0.690997 + Group: 'LeftUpLeg', Weight: 0.140839 + Group: 'RightUpLeg', Weight: 0.141015 +Vertex 1125: +Vertex groups: 4 + Group: 'Hips', Weight: 0.689714 + Group: 'Spine', Weight: 0.034969 + Group: 'LeftUpLeg', Weight: 0.129831 + Group: 'RightUpLeg', Weight: 0.129989 +Vertex 1126: +Vertex groups: 3 + Group: 'Hips', Weight: 0.538805 + Group: 'LeftUpLeg', Weight: 0.306363 + Group: 'RightUpLeg', Weight: 0.147198 +Vertex 1127: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.814045 + Group: 'LeftToeBase', Weight: 0.163426 +Vertex 1128: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.888922 + Group: 'LeftToeBase', Weight: 0.108152 +Vertex 1129: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.846088 + Group: 'LeftToeBase', Weight: 0.141860 +Vertex 1130: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.859984 + Group: 'LeftToeBase', Weight: 0.122153 +Vertex 1131: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.872463 + Group: 'LeftToeBase', Weight: 0.123105 +Vertex 1132: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.881323 + Group: 'LeftToeBase', Weight: 0.115769 +Vertex 1133: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.941313 + Group: 'LeftFoot', Weight: 0.058149 +Vertex 1134: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.903961 + Group: 'LeftFoot', Weight: 0.094464 +Vertex 1135: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.909247 + Group: 'LeftFoot', Weight: 0.089508 +Vertex 1136: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.921086 + Group: 'LeftFoot', Weight: 0.077867 +Vertex 1137: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.951932 + Group: 'LeftFoot', Weight: 0.045692 +Vertex 1138: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.956458 + Group: 'LeftFoot', Weight: 0.036822 +Vertex 1139: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.879840 + Group: 'LeftFoot', Weight: 0.117844 +Vertex 1140: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.898473 + Group: 'LeftFoot', Weight: 0.099947 +Vertex 1141: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.933492 + Group: 'LeftFoot', Weight: 0.065898 +Vertex 1142: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.896055 + Group: 'LeftFoot', Weight: 0.102031 +Vertex 1143: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.918864 + Group: 'LeftFoot', Weight: 0.080235 +Vertex 1144: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.961385 + Group: 'LeftFoot', Weight: 0.027014 +Vertex 1145: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.938904 + Group: 'LeftFoot', Weight: 0.060690 +Vertex 1146: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.948228 + Group: 'LeftFoot', Weight: 0.051530 +Vertex 1147: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.884974 + Group: 'LeftFoot', Weight: 0.112980 +Vertex 1148: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.943322 + Group: 'LeftToeBase', Weight: 0.040645 +Vertex 1149: +Vertex groups: 1 + Group: 'LeftFoot', Weight: 0.972829 +Vertex 1150: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.106782 + Group: 'LeftFoot', Weight: 0.889704 +Vertex 1151: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.063434 + Group: 'LeftFoot', Weight: 0.922210 +Vertex 1152: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.095510 + Group: 'LeftFoot', Weight: 0.898799 +Vertex 1153: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.062523 + Group: 'LeftFoot', Weight: 0.935838 +Vertex 1154: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.055525 + Group: 'LeftFoot', Weight: 0.940128 +Vertex 1155: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.167905 + Group: 'LeftFoot', Weight: 0.830418 +Vertex 1156: +Vertex groups: 4 + Group: 'Hips', Weight: 0.585129 + Group: 'Spine', Weight: 0.124235 + Group: 'LeftUpLeg', Weight: 0.217205 + Group: 'RightUpLeg', Weight: 0.050440 +Vertex 1157: +Vertex groups: 4 + Group: 'Hips', Weight: 0.352891 + Group: 'Spine', Weight: 0.185222 + Group: 'Spine1', Weight: 0.011584 + Group: 'LeftUpLeg', Weight: 0.409743 +Vertex 1158: +Vertex groups: 4 + Group: 'Hips', Weight: 0.160468 + Group: 'Spine', Weight: 0.226354 + Group: 'Spine1', Weight: 0.025910 + Group: 'LeftUpLeg', Weight: 0.562447 +Vertex 1159: +Vertex groups: 4 + Group: 'Hips', Weight: 0.064587 + Group: 'Spine', Weight: 0.277555 + Group: 'Spine1', Weight: 0.044738 + Group: 'LeftUpLeg', Weight: 0.600082 +Vertex 1160: +Vertex groups: 4 + Group: 'Hips', Weight: 0.029004 + Group: 'Spine', Weight: 0.279811 + Group: 'Spine1', Weight: 0.042028 + Group: 'LeftUpLeg', Weight: 0.624425 +Vertex 1161: +Vertex groups: 4 + Group: 'Hips', Weight: 0.004751 + Group: 'Spine', Weight: 0.281027 + Group: 'Spine1', Weight: 0.025991 + Group: 'LeftUpLeg', Weight: 0.641909 +Vertex 1162: +Vertex groups: 3 + Group: 'Hips', Weight: 0.037551 + Group: 'Spine', Weight: 0.214595 + Group: 'LeftUpLeg', Weight: 0.702199 +Vertex 1163: +Vertex groups: 4 + Group: 'Hips', Weight: 0.095799 + Group: 'Spine', Weight: 0.184327 + Group: 'LeftUpLeg', Weight: 0.666724 + Group: 'RightUpLeg', Weight: 0.029495 +Vertex 1164: +Vertex groups: 4 + Group: 'Hips', Weight: 0.173945 + Group: 'Spine', Weight: 0.129484 + Group: 'LeftUpLeg', Weight: 0.614704 + Group: 'RightUpLeg', Weight: 0.073487 +Vertex 1165: +Vertex groups: 4 + Group: 'Hips', Weight: 0.250937 + Group: 'Spine', Weight: 0.111873 + Group: 'LeftUpLeg', Weight: 0.521022 + Group: 'RightUpLeg', Weight: 0.109643 +Vertex 1166: +Vertex groups: 4 + Group: 'Hips', Weight: 0.339080 + Group: 'Spine', Weight: 0.137269 + Group: 'LeftUpLeg', Weight: 0.371600 + Group: 'RightUpLeg', Weight: 0.144846 +Vertex 1167: +Vertex groups: 4 + Group: 'Hips', Weight: 0.296398 + Group: 'Spine', Weight: 0.269790 + Group: 'LeftUpLeg', Weight: 0.310484 + Group: 'RightUpLeg', Weight: 0.110482 +Vertex 1168: +Vertex groups: 4 + Group: 'Hips', Weight: 0.118889 + Group: 'Spine', Weight: 0.296487 + Group: 'LeftUpLeg', Weight: 0.517183 + Group: 'RightUpLeg', Weight: 0.047939 +Vertex 1169: +Vertex groups: 4 + Group: 'Hips', Weight: 0.050574 + Group: 'Spine', Weight: 0.347817 + Group: 'Spine1', Weight: 0.009014 + Group: 'LeftUpLeg', Weight: 0.547575 +Vertex 1170: +Vertex groups: 4 + Group: 'Hips', Weight: 0.406247 + Group: 'Spine', Weight: 0.084131 + Group: 'LeftUpLeg', Weight: 0.252474 + Group: 'RightUpLeg', Weight: 0.252536 +Vertex 1171: +Vertex groups: 4 + Group: 'Hips', Weight: 0.347643 + Group: 'Spine', Weight: 0.071616 + Group: 'LeftUpLeg', Weight: 0.409734 + Group: 'RightUpLeg', Weight: 0.166810 +Vertex 1172: +Vertex groups: 4 + Group: 'Hips', Weight: 0.257818 + Group: 'Spine', Weight: 0.063876 + Group: 'LeftUpLeg', Weight: 0.551266 + Group: 'RightUpLeg', Weight: 0.123073 +Vertex 1173: +Vertex groups: 4 + Group: 'Hips', Weight: 0.155686 + Group: 'Spine', Weight: 0.067295 + Group: 'LeftUpLeg', Weight: 0.701957 + Group: 'RightUpLeg', Weight: 0.070628 +Vertex 1174: +Vertex groups: 4 + Group: 'Hips', Weight: 0.068993 + Group: 'Spine', Weight: 0.084302 + Group: 'LeftUpLeg', Weight: 0.809855 + Group: 'RightUpLeg', Weight: 0.010312 +Vertex 1175: +Vertex groups: 3 + Group: 'Hips', Weight: 0.010890 + Group: 'Spine', Weight: 0.098267 + Group: 'LeftUpLeg', Weight: 0.848710 +Vertex 1176: +Vertex groups: 2 + Group: 'Spine', Weight: 0.097947 + Group: 'LeftUpLeg', Weight: 0.864440 +Vertex 1177: +Vertex groups: 3 + Group: 'Hips', Weight: 0.006414 + Group: 'Spine', Weight: 0.099499 + Group: 'LeftUpLeg', Weight: 0.851481 +Vertex 1178: +Vertex groups: 3 + Group: 'Hips', Weight: 0.052695 + Group: 'Spine', Weight: 0.101696 + Group: 'LeftUpLeg', Weight: 0.822836 +Vertex 1179: +Vertex groups: 3 + Group: 'Hips', Weight: 0.104876 + Group: 'Spine', Weight: 0.097105 + Group: 'LeftUpLeg', Weight: 0.772780 +Vertex 1180: +Vertex groups: 3 + Group: 'Hips', Weight: 0.212373 + Group: 'Spine', Weight: 0.085203 + Group: 'LeftUpLeg', Weight: 0.670857 +Vertex 1181: +Vertex groups: 4 + Group: 'Hips', Weight: 0.639068 + Group: 'Spine', Weight: 0.081611 + Group: 'LeftUpLeg', Weight: 0.193626 + Group: 'RightUpLeg', Weight: 0.070535 +Vertex 1182: +Vertex groups: 4 + Group: 'Hips', Weight: 0.327872 + Group: 'Spine', Weight: 0.062093 + Group: 'LeftUpLeg', Weight: 0.567060 + Group: 'RightUpLeg', Weight: 0.012963 +Vertex 1183: +Vertex groups: 3 + Group: 'Hips', Weight: 0.472663 + Group: 'LeftUpLeg', Weight: 0.447252 + Group: 'RightUpLeg', Weight: 0.053470 +Vertex 1184: +Vertex groups: 3 + Group: 'Hips', Weight: 0.498448 + Group: 'LeftUpLeg', Weight: 0.413609 + Group: 'RightUpLeg', Weight: 0.070818 +Vertex 1185: +Vertex groups: 3 + Group: 'Hips', Weight: 0.509919 + Group: 'LeftUpLeg', Weight: 0.381257 + Group: 'RightUpLeg', Weight: 0.097482 +Vertex 1186: +Vertex groups: 4 + Group: 'Hips', Weight: 0.647422 + Group: 'Spine', Weight: 0.123192 + Group: 'LeftUpLeg', Weight: 0.103175 + Group: 'RightUpLeg', Weight: 0.103296 +Vertex 1187: +Vertex groups: 4 + Group: 'Hips', Weight: 0.011943 + Group: 'Spine', Weight: 0.526740 + Group: 'Spine1', Weight: 0.057335 + Group: 'LeftUpLeg', Weight: 0.366197 +Vertex 1188: +Vertex groups: 4 + Group: 'Hips', Weight: 0.032059 + Group: 'Spine', Weight: 0.648908 + Group: 'Spine1', Weight: 0.053845 + Group: 'LeftUpLeg', Weight: 0.229536 +Vertex 1189: +Vertex groups: 5 + Group: 'Hips', Weight: 0.062563 + Group: 'Spine', Weight: 0.546846 + Group: 'Spine1', Weight: 0.022617 + Group: 'LeftUpLeg', Weight: 0.321090 + Group: 'RightUpLeg', Weight: 0.008699 +Vertex 1190: +Vertex groups: 5 + Group: 'Hips', Weight: 0.113365 + Group: 'Spine', Weight: 0.592741 + Group: 'Spine1', Weight: 0.002025 + Group: 'LeftUpLeg', Weight: 0.211400 + Group: 'RightUpLeg', Weight: 0.053951 +Vertex 1191: +Vertex groups: 4 + Group: 'Hips', Weight: 0.165579 + Group: 'Spine', Weight: 0.261628 + Group: 'LeftUpLeg', Weight: 0.491499 + Group: 'RightUpLeg', Weight: 0.066325 +Vertex 1192: +Vertex groups: 4 + Group: 'Hips', Weight: 0.258706 + Group: 'Spine', Weight: 0.385515 + Group: 'LeftUpLeg', Weight: 0.240822 + Group: 'RightUpLeg', Weight: 0.097346 +Vertex 1193: +Vertex groups: 5 + Group: 'Hips', Weight: 0.062523 + Group: 'Spine', Weight: 0.711881 + Group: 'Spine1', Weight: 0.033171 + Group: 'LeftUpLeg', Weight: 0.142339 + Group: 'RightUpLeg', Weight: 0.025581 +Vertex 1194: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.977577 +Vertex 1195: +Vertex groups: 3 + Group: 'Hips', Weight: 0.189418 + Group: 'LeftUpLeg', Weight: 0.691850 + Group: 'RightUpLeg', Weight: 0.108848 +Vertex 1196: +Vertex groups: 3 + Group: 'Hips', Weight: 0.208437 + Group: 'LeftUpLeg', Weight: 0.672477 + Group: 'RightUpLeg', Weight: 0.114087 +Vertex 1197: +Vertex groups: 3 + Group: 'Hips', Weight: 0.081010 + Group: 'LeftUpLeg', Weight: 0.857923 + Group: 'RightUpLeg', Weight: 0.031279 +Vertex 1198: +Vertex groups: 2 + Group: 'Hips', Weight: 0.031572 + Group: 'LeftUpLeg', Weight: 0.917408 +Vertex 1199: +Vertex groups: 3 + Group: 'Hips', Weight: 0.153958 + Group: 'LeftUpLeg', Weight: 0.714467 + Group: 'RightUpLeg', Weight: 0.125779 +Vertex 1200: +Vertex groups: 2 + Group: 'Hips', Weight: 0.060153 + Group: 'LeftUpLeg', Weight: 0.919703 +Vertex 1201: +Vertex groups: 3 + Group: 'Hips', Weight: 0.159967 + Group: 'LeftUpLeg', Weight: 0.792528 + Group: 'RightUpLeg', Weight: 0.032724 +Vertex 1202: +Vertex groups: 3 + Group: 'Hips', Weight: 0.192275 + Group: 'LeftUpLeg', Weight: 0.733373 + Group: 'RightUpLeg', Weight: 0.069146 +Vertex 1203: +Vertex groups: 3 + Group: 'Hips', Weight: 0.162603 + Group: 'LeftUpLeg', Weight: 0.733213 + Group: 'RightUpLeg', Weight: 0.084246 +Vertex 1204: +Vertex groups: 2 + Group: 'Hips', Weight: 0.020539 + Group: 'LeftUpLeg', Weight: 0.946852 +Vertex 1205: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.957417 +Vertex 1206: +Vertex groups: 2 + Group: 'Hips', Weight: 0.110389 + Group: 'LeftUpLeg', Weight: 0.860579 +Vertex 1207: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.968299 +Vertex 1208: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.977468 +Vertex 1209: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.978047 +Vertex 1210: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.982244 +Vertex 1211: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.984854 +Vertex 1212: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.985224 +Vertex 1213: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.980780 +Vertex 1214: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.974013 +Vertex 1215: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.962932 + Group: 'LeftHand', Weight: 0.019515 +Vertex 1216: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.966114 + Group: 'LeftHand', Weight: 0.013498 +Vertex 1217: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.965399 + Group: 'LeftHand', Weight: 0.015345 +Vertex 1218: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.966982 + Group: 'LeftHand', Weight: 0.012965 +Vertex 1219: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.976180 +Vertex 1220: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.978163 +Vertex 1221: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.978474 +Vertex 1222: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.084902 + Group: 'LeftForeArm', Weight: 0.914687 +Vertex 1223: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.038214 + Group: 'LeftForeArm', Weight: 0.955648 +Vertex 1224: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.041240 + Group: 'LeftForeArm', Weight: 0.954155 +Vertex 1225: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.114389 + Group: 'LeftForeArm', Weight: 0.885496 +Vertex 1226: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.242827 + Group: 'LeftForeArm', Weight: 0.756969 +Vertex 1227: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.168061 + Group: 'LeftForeArm', Weight: 0.831710 +Vertex 1228: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.072313 + Group: 'LeftForeArm', Weight: 0.927386 +Vertex 1229: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.038995 + Group: 'LeftForeArm', Weight: 0.955236 +Vertex 1230: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.976664 +Vertex 1231: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.055618 + Group: 'LeftForeArm', Weight: 0.944137 +Vertex 1232: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.000749 + Group: 'LeftForeArm', Weight: 0.974137 +Vertex 1233: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.033687 + Group: 'LeftForeArm', Weight: 0.957561 +Vertex 1234: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.037071 + Group: 'LeftForeArm', Weight: 0.956193 +Vertex 1235: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.103623 + Group: 'LeftArm', Weight: 0.866497 +Vertex 1236: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.112060 + Group: 'LeftArm', Weight: 0.855139 +Vertex 1237: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.973968 +Vertex 1238: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.025826 + Group: 'LeftArm', Weight: 0.954139 +Vertex 1239: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991108 +Vertex 1240: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.098118 + Group: 'LeftArm', Weight: 0.878951 +Vertex 1241: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.119323 + Group: 'LeftArm', Weight: 0.861286 +Vertex 1242: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.094708 + Group: 'LeftArm', Weight: 0.878902 +Vertex 1243: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.097818 + Group: 'LeftArm', Weight: 0.879680 +Vertex 1244: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.983958 +Vertex 1245: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.989939 +Vertex 1246: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.989252 +Vertex 1247: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.975304 +Vertex 1248: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.801330 + Group: 'LeftForeArm', Weight: 0.198283 +Vertex 1249: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.815796 + Group: 'LeftForeArm', Weight: 0.184115 +Vertex 1250: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.783524 + Group: 'LeftForeArm', Weight: 0.216447 +Vertex 1251: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.805312 + Group: 'LeftForeArm', Weight: 0.194379 +Vertex 1252: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.839377 + Group: 'LeftForeArm', Weight: 0.160589 +Vertex 1253: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.858915 + Group: 'LeftForeArm', Weight: 0.141003 +Vertex 1254: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.827417 + Group: 'LeftForeArm', Weight: 0.172523 +Vertex 1255: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.811600 + Group: 'LeftForeArm', Weight: 0.188027 +Vertex 1256: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.815533 + Group: 'LeftForeArm', Weight: 0.184336 +Vertex 1257: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.812544 + Group: 'LeftForeArm', Weight: 0.187249 +Vertex 1258: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.607471 + Group: 'LeftForeArm', Weight: 0.392492 +Vertex 1259: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.761655 + Group: 'LeftForeArm', Weight: 0.238207 +Vertex 1260: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.918246 + Group: 'LeftForeArm', Weight: 0.081486 +Vertex 1261: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.977092 +Vertex 1262: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991370 +Vertex 1263: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.987444 +Vertex 1264: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.997854 +Vertex 1265: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.981087 +Vertex 1266: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.985092 +Vertex 1267: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.979809 +Vertex 1268: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.984710 +Vertex 1269: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.990725 +Vertex 1270: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.994445 +Vertex 1271: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.996634 +Vertex 1272: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.998772 +Vertex 1273: +Vertex groups: 1 + Group: 'LeftArm', Weight: 1.000318 +Vertex 1274: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.848196 + Group: 'LeftForeArm', Weight: 0.151765 +Vertex 1275: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.212947 + Group: 'LeftForeArm', Weight: 0.786996 +Vertex 1276: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.856169 + Group: 'LeftForeArm', Weight: 0.143526 +Vertex 1277: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.453469 + Group: 'LeftForeArm', Weight: 0.546424 +Vertex 1278: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.033015 + Group: 'LeftForeArm', Weight: 0.958253 +Vertex 1279: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.091799 + Group: 'LeftForeArm', Weight: 0.907824 +Vertex 1280: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.113144 + Group: 'LeftForeArm', Weight: 0.886641 +Vertex 1281: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.071851 + Group: 'LeftForeArm', Weight: 0.927633 +Vertex 1282: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.064014 + Group: 'LeftForeArm', Weight: 0.935831 +Vertex 1283: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.075032 + Group: 'LeftForeArm', Weight: 0.924840 +Vertex 1284: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.944174 + Group: 'LeftForeArm', Weight: 0.055782 +Vertex 1285: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.954058 + Group: 'LeftForeArm', Weight: 0.041739 +Vertex 1286: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.951260 + Group: 'LeftForeArm', Weight: 0.047045 +Vertex 1287: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.832846 + Group: 'LeftForeArm', Weight: 0.167026 +Vertex 1288: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.202791 + Group: 'RightHand', Weight: 0.765916 + Group: 'RightHandPinky1', Weight: 0.004521 +Vertex 1289: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.418449 + Group: 'RightHand', Weight: 0.567971 +Vertex 1290: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.054533 + Group: 'RightHand', Weight: 0.933015 +Vertex 1291: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.115959 + Group: 'RightHand', Weight: 0.842883 + Group: 'RightHandPinky1', Weight: 0.016514 +Vertex 1292: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.078842 + Group: 'RightHand', Weight: 0.874937 + Group: 'RightHandPinky1', Weight: 0.009227 +Vertex 1293: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.066943 + Group: 'RightHand', Weight: 0.889034 +Vertex 1294: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.068702 + Group: 'RightHand', Weight: 0.884853 + Group: 'RightHandThumb1', Weight: 0.019629 +Vertex 1295: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.117495 + Group: 'RightHand', Weight: 0.829198 + Group: 'RightHandThumb1', Weight: 0.045677 +Vertex 1296: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.155097 + Group: 'RightHand', Weight: 0.814305 + Group: 'RightHandThumb1', Weight: 0.008181 +Vertex 1297: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.336061 + Group: 'RightHand', Weight: 0.618435 + Group: 'RightHandThumb1', Weight: 0.037016 +Vertex 1298: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.310580 + Group: 'RightHand', Weight: 0.653321 + Group: 'RightHandThumb1', Weight: 0.019193 +Vertex 1299: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.048259 + Group: 'RightHand', Weight: 0.945827 +Vertex 1300: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.127773 + Group: 'RightHand', Weight: 0.866697 +Vertex 1301: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.998641 +Vertex 1302: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.997987 +Vertex 1303: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991908 +Vertex 1304: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.998240 +Vertex 1305: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.992845 +Vertex 1306: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.987412 +Vertex 1307: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.983232 +Vertex 1308: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.980032 +Vertex 1309: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.988615 +Vertex 1310: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.981729 +Vertex 1311: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.985488 +Vertex 1312: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.994747 +Vertex 1313: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.996757 +Vertex 1314: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.770642 + Group: 'RightArm', Weight: 0.204831 +Vertex 1315: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.778735 + Group: 'RightArm', Weight: 0.203119 +Vertex 1316: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.733510 + Group: 'RightArm', Weight: 0.222683 +Vertex 1317: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.011689 + Group: 'RightShoulder', Weight: 0.726471 + Group: 'RightArm', Weight: 0.222309 +Vertex 1318: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.030096 + Group: 'RightShoulder', Weight: 0.623628 + Group: 'RightArm', Weight: 0.307982 +Vertex 1319: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.045893 + Group: 'Spine2', Weight: 0.068616 + Group: 'RightShoulder', Weight: 0.574754 + Group: 'RightArm', Weight: 0.300256 +Vertex 1320: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068272 + Group: 'Spine2', Weight: 0.083299 + Group: 'RightShoulder', Weight: 0.524804 + Group: 'RightArm', Weight: 0.313836 +Vertex 1321: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.074432 + Group: 'Spine2', Weight: 0.085908 + Group: 'RightShoulder', Weight: 0.568714 + Group: 'RightArm', Weight: 0.261289 +Vertex 1322: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.019528 + Group: 'Spine2', Weight: 0.029585 + Group: 'RightShoulder', Weight: 0.652818 + Group: 'RightArm', Weight: 0.261778 +Vertex 1323: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.076050 + Group: 'Spine2', Weight: 0.083039 + Group: 'RightShoulder', Weight: 0.572663 + Group: 'RightArm', Weight: 0.258219 +Vertex 1324: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.058931 + Group: 'Spine2', Weight: 0.060339 + Group: 'RightShoulder', Weight: 0.603461 + Group: 'RightArm', Weight: 0.267942 +Vertex 1325: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.748726 + Group: 'RightArm', Weight: 0.227525 +Vertex 1326: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.750254 + Group: 'RightArm', Weight: 0.232222 +Vertex 1327: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.994002 +Vertex 1328: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.993985 +Vertex 1329: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.992396 +Vertex 1330: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.993189 +Vertex 1331: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.990005 +Vertex 1332: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.987139 +Vertex 1333: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.983448 +Vertex 1334: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.982430 +Vertex 1335: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.992042 +Vertex 1336: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.986439 +Vertex 1337: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.990405 +Vertex 1338: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.992617 +Vertex 1339: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.993303 +Vertex 1340: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.960670 + Group: 'RightForeArm', Weight: 0.025525 +Vertex 1341: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.957409 + Group: 'RightForeArm', Weight: 0.032188 +Vertex 1342: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.967218 + Group: 'RightForeArm', Weight: 0.014637 +Vertex 1343: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.972244 + Group: 'RightForeArm', Weight: 0.004969 +Vertex 1344: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.962397 + Group: 'RightForeArm', Weight: 0.023624 +Vertex 1345: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.983442 +Vertex 1346: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991748 +Vertex 1347: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.959310 + Group: 'RightForeArm', Weight: 0.028981 +Vertex 1348: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.989556 +Vertex 1349: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.984845 +Vertex 1350: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.977675 +Vertex 1351: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.967714 + Group: 'RightForeArm', Weight: 0.012073 +Vertex 1352: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.977860 +Vertex 1353: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.285430 + Group: 'RightForeArm', Weight: 0.714397 +Vertex 1354: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.187466 + Group: 'RightForeArm', Weight: 0.812437 +Vertex 1355: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.190654 + Group: 'RightForeArm', Weight: 0.809239 +Vertex 1356: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.272071 + Group: 'RightForeArm', Weight: 0.727882 +Vertex 1357: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.485166 + Group: 'RightForeArm', Weight: 0.514752 +Vertex 1358: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.486143 + Group: 'RightForeArm', Weight: 0.513792 +Vertex 1359: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.236630 + Group: 'RightForeArm', Weight: 0.763199 +Vertex 1360: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.197145 + Group: 'RightForeArm', Weight: 0.802765 +Vertex 1361: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.234383 + Group: 'RightForeArm', Weight: 0.765577 +Vertex 1362: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.209092 + Group: 'RightForeArm', Weight: 0.790772 +Vertex 1363: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.211178 + Group: 'RightForeArm', Weight: 0.788788 +Vertex 1364: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.442098 + Group: 'RightForeArm', Weight: 0.557859 +Vertex 1365: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.205957 + Group: 'RightForeArm', Weight: 0.793966 +Vertex 1366: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.133116 + Group: 'Spine2', Weight: 0.144091 + Group: 'RightShoulder', Weight: 0.526636 + Group: 'RightArm', Weight: 0.179775 +Vertex 1367: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.147516 + Group: 'Spine2', Weight: 0.169777 + Group: 'RightShoulder', Weight: 0.491456 + Group: 'RightArm', Weight: 0.173313 +Vertex 1368: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.092159 + Group: 'Spine2', Weight: 0.089950 + Group: 'RightShoulder', Weight: 0.610334 + Group: 'RightArm', Weight: 0.193708 +Vertex 1369: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.063096 + Group: 'Spine2', Weight: 0.072116 + Group: 'RightShoulder', Weight: 0.710194 + Group: 'RightArm', Weight: 0.136758 +Vertex 1370: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.022224 + Group: 'RightShoulder', Weight: 0.817565 + Group: 'RightArm', Weight: 0.102020 +Vertex 1371: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.020431 + Group: 'Spine2', Weight: 0.093061 + Group: 'Neck', Weight: 0.051334 + Group: 'RightShoulder', Weight: 0.774938 + Group: 'RightArm', Weight: 0.013457 +Vertex 1372: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.099703 + Group: 'Spine2', Weight: 0.188427 + Group: 'Neck', Weight: 0.019205 + Group: 'RightShoulder', Weight: 0.616051 + Group: 'RightArm', Weight: 0.031998 +Vertex 1373: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.030246 + Group: 'Spine2', Weight: 0.210407 + Group: 'Neck', Weight: 0.131554 + Group: 'LeftShoulder', Weight: 0.005902 + Group: 'RightShoulder', Weight: 0.568509 +Vertex 1374: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.113948 + Group: 'Spine2', Weight: 0.493934 + Group: 'Neck', Weight: 0.069088 + Group: 'LeftShoulder', Weight: 0.044556 + Group: 'RightShoulder', Weight: 0.253594 +Vertex 1375: +Vertex groups: 3 + Group: 'Spine', Weight: 0.140612 + Group: 'Spine1', Weight: 0.727280 + Group: 'Spine2', Weight: 0.063979 +Vertex 1376: +Vertex groups: 4 + Group: 'Hips', Weight: 0.074146 + Group: 'Spine', Weight: 0.585458 + Group: 'Spine1', Weight: 0.252259 + Group: 'RightUpLeg', Weight: 0.056548 +Vertex 1377: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.253065 + Group: 'Spine2', Weight: 0.473405 + Group: 'Neck', Weight: 0.021779 + Group: 'LeftShoulder', Weight: 0.029372 + Group: 'RightShoulder', Weight: 0.170733 +Vertex 1378: +Vertex groups: 4 + Group: 'Spine', Weight: 0.053783 + Group: 'Spine1', Weight: 0.738365 + Group: 'Spine2', Weight: 0.121295 + Group: 'RightShoulder', Weight: 0.043103 +Vertex 1379: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.210305 + Group: 'Spine2', Weight: 0.293892 + Group: 'RightShoulder', Weight: 0.405070 + Group: 'RightArm', Weight: 0.033019 +Vertex 1380: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.184364 + Group: 'Spine2', Weight: 0.176431 + Group: 'RightShoulder', Weight: 0.518768 + Group: 'RightArm', Weight: 0.090814 +Vertex 1381: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.201023 + Group: 'Spine2', Weight: 0.180391 + Group: 'RightShoulder', Weight: 0.474425 + Group: 'RightArm', Weight: 0.119865 +Vertex 1382: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.205005 + Group: 'Spine2', Weight: 0.227090 + Group: 'RightShoulder', Weight: 0.413387 + Group: 'RightArm', Weight: 0.131337 +Vertex 1383: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.206962 + Group: 'Spine2', Weight: 0.239874 + Group: 'RightShoulder', Weight: 0.392583 + Group: 'RightArm', Weight: 0.135924 +Vertex 1384: +Vertex groups: 3 + Group: 'Neck', Weight: 0.002003 + Group: 'RightShoulder', Weight: 0.866341 + Group: 'RightArm', Weight: 0.085365 +Vertex 1385: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.010626 + Group: 'Neck', Weight: 0.074799 + Group: 'RightShoulder', Weight: 0.846951 + Group: 'RightArm', Weight: 0.009928 +Vertex 1386: +Vertex groups: 4 + Group: 'Spine', Weight: 0.029420 + Group: 'Spine1', Weight: 0.726344 + Group: 'Spine2', Weight: 0.133502 + Group: 'RightShoulder', Weight: 0.057359 +Vertex 1387: +Vertex groups: 4 + Group: 'Spine', Weight: 0.001577 + Group: 'Spine1', Weight: 0.669935 + Group: 'Spine2', Weight: 0.173440 + Group: 'RightShoulder', Weight: 0.079034 +Vertex 1388: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.036553 + Group: 'Neck', Weight: 0.165377 + Group: 'RightShoulder', Weight: 0.752238 +Vertex 1389: +Vertex groups: 2 + Group: 'Neck', Weight: 0.199365 + Group: 'RightShoulder', Weight: 0.753993 +Vertex 1390: +Vertex groups: 3 + Group: 'Neck', Weight: 0.091005 + Group: 'RightShoulder', Weight: 0.855817 + Group: 'RightArm', Weight: 0.013402 +Vertex 1391: +Vertex groups: 3 + Group: 'Neck', Weight: 0.018651 + Group: 'RightShoulder', Weight: 0.872221 + Group: 'RightArm', Weight: 0.080387 +Vertex 1392: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.241819 + Group: 'Neck', Weight: 0.282173 + Group: 'LeftShoulder', Weight: 0.027033 + Group: 'RightShoulder', Weight: 0.390232 +Vertex 1393: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.055041 + Group: 'Spine2', Weight: 0.461320 + Group: 'Neck', Weight: 0.164047 + Group: 'LeftShoulder', Weight: 0.081714 + Group: 'RightShoulder', Weight: 0.219085 +Vertex 1394: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.017436 + Group: 'Spine2', Weight: 0.242767 + Group: 'Neck', Weight: 0.191823 + Group: 'LeftShoulder', Weight: 0.024582 + Group: 'RightShoulder', Weight: 0.473755 +Vertex 1395: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.025997 + Group: 'Spine2', Weight: 0.398598 + Group: 'Neck', Weight: 0.243322 + Group: 'LeftShoulder', Weight: 0.078794 + Group: 'RightShoulder', Weight: 0.220615 +Vertex 1396: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.054424 + Group: 'Neck', Weight: 0.267891 + Group: 'RightShoulder', Weight: 0.637525 +Vertex 1397: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.053730 + Group: 'Neck', Weight: 0.340553 + Group: 'RightShoulder', Weight: 0.564883 +Vertex 1398: +Vertex groups: 2 + Group: 'Neck', Weight: 0.432701 + Group: 'RightShoulder', Weight: 0.519248 +Vertex 1399: +Vertex groups: 2 + Group: 'Neck', Weight: 0.310909 + Group: 'RightShoulder', Weight: 0.641995 +Vertex 1400: +Vertex groups: 5 + Group: 'Spine', Weight: 0.012494 + Group: 'Spine1', Weight: 0.381803 + Group: 'Spine2', Weight: 0.290403 + Group: 'RightShoulder', Weight: 0.215767 + Group: 'RightArm', Weight: 0.069373 +Vertex 1401: +Vertex groups: 5 + Group: 'Spine', Weight: 0.011444 + Group: 'Spine1', Weight: 0.341037 + Group: 'Spine2', Weight: 0.291755 + Group: 'RightShoulder', Weight: 0.243469 + Group: 'RightArm', Weight: 0.082812 +Vertex 1402: +Vertex groups: 5 + Group: 'Spine', Weight: 0.083356 + Group: 'Spine1', Weight: 0.651493 + Group: 'Spine2', Weight: 0.135003 + Group: 'RightShoulder', Weight: 0.084071 + Group: 'RightArm', Weight: 0.000711 +Vertex 1403: +Vertex groups: 5 + Group: 'Spine', Weight: 0.085921 + Group: 'Spine1', Weight: 0.639420 + Group: 'Spine2', Weight: 0.134030 + Group: 'RightShoulder', Weight: 0.092591 + Group: 'RightArm', Weight: 0.007818 +Vertex 1404: +Vertex groups: 4 + Group: 'Spine', Weight: 0.126068 + Group: 'Spine1', Weight: 0.691307 + Group: 'Spine2', Weight: 0.091660 + Group: 'RightShoulder', Weight: 0.043667 +Vertex 1405: +Vertex groups: 4 + Group: 'Spine', Weight: 0.146175 + Group: 'Spine1', Weight: 0.673061 + Group: 'Spine2', Weight: 0.082973 + Group: 'RightShoulder', Weight: 0.051830 +Vertex 1406: +Vertex groups: 4 + Group: 'Hips', Weight: 0.017838 + Group: 'Spine', Weight: 0.565023 + Group: 'Spine1', Weight: 0.271008 + Group: 'RightUpLeg', Weight: 0.095473 +Vertex 1407: +Vertex groups: 3 + Group: 'Spine', Weight: 0.543740 + Group: 'Spine1', Weight: 0.302722 + Group: 'RightUpLeg', Weight: 0.090405 +Vertex 1408: +Vertex groups: 4 + Group: 'Spine', Weight: 0.149153 + Group: 'Spine1', Weight: 0.702054 + Group: 'Spine2', Weight: 0.071719 + Group: 'RightShoulder', Weight: 0.010385 +Vertex 1409: +Vertex groups: 4 + Group: 'Hips', Weight: 0.054997 + Group: 'Spine', Weight: 0.576755 + Group: 'Spine1', Weight: 0.255937 + Group: 'RightUpLeg', Weight: 0.081048 +Vertex 1410: +Vertex groups: 3 + Group: 'Spine', Weight: 0.132917 + Group: 'Spine1', Weight: 0.752367 + Group: 'Spine2', Weight: 0.052715 +Vertex 1411: +Vertex groups: 4 + Group: 'Hips', Weight: 0.086164 + Group: 'Spine', Weight: 0.590010 + Group: 'Spine1', Weight: 0.249996 + Group: 'RightUpLeg', Weight: 0.026647 +Vertex 1412: +Vertex groups: 4 + Group: 'Spine', Weight: 0.066907 + Group: 'Spine1', Weight: 0.634573 + Group: 'Spine2', Weight: 0.183312 + Group: 'RightShoulder', Weight: 0.073937 +Vertex 1413: +Vertex groups: 4 + Group: 'Spine', Weight: 0.064406 + Group: 'Spine1', Weight: 0.611721 + Group: 'Spine2', Weight: 0.191103 + Group: 'RightShoulder', Weight: 0.088460 +Vertex 1414: +Vertex groups: 4 + Group: 'Spine', Weight: 0.068130 + Group: 'Spine1', Weight: 0.655747 + Group: 'Spine2', Weight: 0.173957 + Group: 'RightShoulder', Weight: 0.062628 +Vertex 1415: +Vertex groups: 4 + Group: 'Spine', Weight: 0.069622 + Group: 'Spine1', Weight: 0.731967 + Group: 'Spine2', Weight: 0.119270 + Group: 'RightShoulder', Weight: 0.029864 +Vertex 1416: +Vertex groups: 5 + Group: 'Spine', Weight: 0.036786 + Group: 'Spine1', Weight: 0.551030 + Group: 'Spine2', Weight: 0.229543 + Group: 'RightShoulder', Weight: 0.125459 + Group: 'RightArm', Weight: 0.016438 +Vertex 1417: +Vertex groups: 5 + Group: 'Spine', Weight: 0.051706 + Group: 'Spine1', Weight: 0.562636 + Group: 'Spine2', Weight: 0.195062 + Group: 'RightShoulder', Weight: 0.134091 + Group: 'RightArm', Weight: 0.033103 +Vertex 1418: +Vertex groups: 5 + Group: 'Spine', Weight: 0.053597 + Group: 'Spine1', Weight: 0.542550 + Group: 'Spine2', Weight: 0.194230 + Group: 'RightShoulder', Weight: 0.147647 + Group: 'RightArm', Weight: 0.046249 +Vertex 1419: +Vertex groups: 5 + Group: 'Spine', Weight: 0.013981 + Group: 'Spine1', Weight: 0.508551 + Group: 'Spine2', Weight: 0.243286 + Group: 'RightShoulder', Weight: 0.158940 + Group: 'RightArm', Weight: 0.031880 +Vertex 1420: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.423890 + Group: 'Spine2', Weight: 0.237993 + Group: 'RightShoulder', Weight: 0.243216 + Group: 'RightArm', Weight: 0.055954 +Vertex 1421: +Vertex groups: 5 + Group: 'Spine', Weight: 0.000681 + Group: 'Spine1', Weight: 0.464949 + Group: 'Spine2', Weight: 0.238338 + Group: 'RightShoulder', Weight: 0.203814 + Group: 'RightArm', Weight: 0.050854 +Vertex 1422: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.490448 + Group: 'Spine2', Weight: 0.209612 + Group: 'RightShoulder', Weight: 0.214505 + Group: 'RightArm', Weight: 0.035174 +Vertex 1423: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.529872 + Group: 'Spine2', Weight: 0.207211 + Group: 'RightShoulder', Weight: 0.183890 + Group: 'RightArm', Weight: 0.011112 +Vertex 1424: +Vertex groups: 3 + Group: 'Spine1', Weight: 0.573408 + Group: 'Spine2', Weight: 0.216050 + Group: 'RightShoulder', Weight: 0.133220 +Vertex 1425: +Vertex groups: 3 + Group: 'Spine1', Weight: 0.606914 + Group: 'Spine2', Weight: 0.213724 + Group: 'RightShoulder', Weight: 0.100513 +Vertex 1426: +Vertex groups: 4 + Group: 'Spine', Weight: 0.069380 + Group: 'Spine1', Weight: 0.696591 + Group: 'Spine2', Weight: 0.148393 + Group: 'RightShoulder', Weight: 0.044200 +Vertex 1427: +Vertex groups: 5 + Group: 'Spine', Weight: 0.001135 + Group: 'Spine1', Weight: 0.542671 + Group: 'Spine2', Weight: 0.201550 + Group: 'RightShoulder', Weight: 0.172101 + Group: 'RightArm', Weight: 0.024353 +Vertex 1428: +Vertex groups: 5 + Group: 'Spine', Weight: 0.020303 + Group: 'Spine1', Weight: 0.589268 + Group: 'Spine2', Weight: 0.195475 + Group: 'RightShoulder', Weight: 0.130167 + Group: 'RightArm', Weight: 0.010650 +Vertex 1429: +Vertex groups: 4 + Group: 'Spine', Weight: 0.047817 + Group: 'Spine1', Weight: 0.624310 + Group: 'Spine2', Weight: 0.185834 + Group: 'RightShoulder', Weight: 0.096900 +Vertex 1430: +Vertex groups: 5 + Group: 'Spine', Weight: 0.002341 + Group: 'Spine1', Weight: 0.607856 + Group: 'Spine2', Weight: 0.179980 + Group: 'RightShoulder', Weight: 0.134647 + Group: 'RightArm', Weight: 0.000944 +Vertex 1431: +Vertex groups: 4 + Group: 'Spine', Weight: 0.024945 + Group: 'Spine1', Weight: 0.655907 + Group: 'Spine2', Weight: 0.164079 + Group: 'RightShoulder', Weight: 0.098479 +Vertex 1432: +Vertex groups: 4 + Group: 'Spine', Weight: 0.049924 + Group: 'Spine1', Weight: 0.670762 + Group: 'Spine2', Weight: 0.161081 + Group: 'RightShoulder', Weight: 0.077553 +Vertex 1433: +Vertex groups: 4 + Group: 'Spine', Weight: 0.003107 + Group: 'Spine1', Weight: 0.656863 + Group: 'Spine2', Weight: 0.171496 + Group: 'RightShoulder', Weight: 0.095721 +Vertex 1434: +Vertex groups: 4 + Group: 'Spine', Weight: 0.026609 + Group: 'Spine1', Weight: 0.704956 + Group: 'Spine2', Weight: 0.143801 + Group: 'RightShoulder', Weight: 0.070579 +Vertex 1435: +Vertex groups: 4 + Group: 'Spine', Weight: 0.052565 + Group: 'Spine1', Weight: 0.713725 + Group: 'Spine2', Weight: 0.137686 + Group: 'RightShoulder', Weight: 0.056772 +Vertex 1436: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.661796 + Group: 'Spine2', Weight: 0.192238 + Group: 'LeftShoulder', Weight: 0.015092 + Group: 'RightShoulder', Weight: 0.063521 +Vertex 1437: +Vertex groups: 4 + Group: 'Spine', Weight: 0.029214 + Group: 'Spine1', Weight: 0.746869 + Group: 'Spine2', Weight: 0.125220 + Group: 'RightShoulder', Weight: 0.030320 +Vertex 1438: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.550026 + Group: 'Spine2', Weight: 0.277268 + Group: 'LeftShoulder', Weight: 0.025713 + Group: 'RightShoulder', Weight: 0.084949 +Vertex 1439: +Vertex groups: 4 + Group: 'Spine', Weight: 0.060999 + Group: 'Spine1', Weight: 0.769187 + Group: 'Spine2', Weight: 0.097078 + Group: 'RightShoulder', Weight: 0.011444 +Vertex 1440: +Vertex groups: 3 + Group: 'Spine', Weight: 0.089562 + Group: 'Spine1', Weight: 0.769028 + Group: 'Spine2', Weight: 0.076180 +Vertex 1441: +Vertex groups: 4 + Group: 'Spine', Weight: 0.086402 + Group: 'Spine1', Weight: 0.672660 + Group: 'Spine2', Weight: 0.137418 + Group: 'RightShoulder', Weight: 0.062103 +Vertex 1442: +Vertex groups: 4 + Group: 'Spine', Weight: 0.075342 + Group: 'Spine1', Weight: 0.647104 + Group: 'Spine2', Weight: 0.152256 + Group: 'RightShoulder', Weight: 0.081155 +Vertex 1443: +Vertex groups: 4 + Group: 'Spine', Weight: 0.089521 + Group: 'Spine1', Weight: 0.691902 + Group: 'Spine2', Weight: 0.128572 + Group: 'RightShoulder', Weight: 0.049771 +Vertex 1444: +Vertex groups: 4 + Group: 'Spine', Weight: 0.094288 + Group: 'Spine1', Weight: 0.726291 + Group: 'Spine2', Weight: 0.104159 + Group: 'RightShoulder', Weight: 0.020697 +Vertex 1445: +Vertex groups: 5 + Group: 'Spine', Weight: 0.044844 + Group: 'Spine1', Weight: 0.560239 + Group: 'Spine2', Weight: 0.207851 + Group: 'RightShoulder', Weight: 0.130743 + Group: 'RightArm', Weight: 0.026054 +Vertex 1446: +Vertex groups: 5 + Group: 'Spine', Weight: 0.011152 + Group: 'Spine1', Weight: 0.451884 + Group: 'Spine2', Weight: 0.268392 + Group: 'RightShoulder', Weight: 0.183280 + Group: 'RightArm', Weight: 0.052329 +Vertex 1447: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.373208 + Group: 'Spine2', Weight: 0.262771 + Group: 'RightShoulder', Weight: 0.257660 + Group: 'RightArm', Weight: 0.070089 +Vertex 1448: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.338363 + Group: 'Spine2', Weight: 0.240164 + Group: 'RightShoulder', Weight: 0.314244 + Group: 'RightArm', Weight: 0.073534 +Vertex 1449: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.419815 + Group: 'Spine2', Weight: 0.214308 + Group: 'RightShoulder', Weight: 0.274058 + Group: 'RightArm', Weight: 0.052415 +Vertex 1450: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.462231 + Group: 'Spine2', Weight: 0.230504 + Group: 'RightShoulder', Weight: 0.226033 + Group: 'RightArm', Weight: 0.014839 +Vertex 1451: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.508034 + Group: 'Spine2', Weight: 0.274683 + Group: 'LeftShoulder', Weight: 0.003800 + Group: 'RightShoulder', Weight: 0.135375 +Vertex 1452: +Vertex groups: 4 + Group: 'Spine', Weight: 0.252767 + Group: 'Spine1', Weight: 0.617422 + Group: 'Spine2', Weight: 0.036793 + Group: 'RightUpLeg', Weight: 0.026111 +Vertex 1453: +Vertex groups: 5 + Group: 'Spine', Weight: 0.259528 + Group: 'Spine1', Weight: 0.604790 + Group: 'Spine2', Weight: 0.044541 + Group: 'RightShoulder', Weight: 0.004619 + Group: 'RightUpLeg', Weight: 0.027563 +Vertex 1454: +Vertex groups: 4 + Group: 'Spine', Weight: 0.259087 + Group: 'Spine1', Weight: 0.619262 + Group: 'Spine2', Weight: 0.024511 + Group: 'RightUpLeg', Weight: 0.018003 +Vertex 1455: +Vertex groups: 4 + Group: 'Hips', Weight: 0.017367 + Group: 'Spine', Weight: 0.255899 + Group: 'Spine1', Weight: 0.638197 + Group: 'Spine2', Weight: 0.006336 +Vertex 1456: +Vertex groups: 5 + Group: 'Hips', Weight: 0.011370 + Group: 'Spine', Weight: 0.265714 + Group: 'Spine1', Weight: 0.621100 + Group: 'Spine2', Weight: 0.012647 + Group: 'RightUpLeg', Weight: 0.003991 +Vertex 1457: +Vertex groups: 3 + Group: 'Neck', Weight: 0.063587 + Group: 'RightShoulder', Weight: 0.880432 + Group: 'RightArm', Weight: 0.009161 +Vertex 1458: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.879007 + Group: 'RightArm', Weight: 0.085311 +Vertex 1459: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.037329 + Group: 'Neck', Weight: 0.004943 + Group: 'RightShoulder', Weight: 0.879891 + Group: 'RightArm', Weight: 0.010535 +Vertex 1460: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.876478 + Group: 'RightArm', Weight: 0.079443 +Vertex 1461: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.063291 + Group: 'RightShoulder', Weight: 0.805246 + Group: 'RightArm', Weight: 0.095583 +Vertex 1462: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.089632 + Group: 'RightShoulder', Weight: 0.820409 + Group: 'RightArm', Weight: 0.029104 +Vertex 1463: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050854 + Group: 'Spine2', Weight: 0.136775 + Group: 'RightShoulder', Weight: 0.706523 + Group: 'RightArm', Weight: 0.083853 +Vertex 1464: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068626 + Group: 'Spine2', Weight: 0.135236 + Group: 'RightShoulder', Weight: 0.638982 + Group: 'RightArm', Weight: 0.140045 +Vertex 1465: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.196031 + Group: 'Spine2', Weight: 0.225434 + Group: 'RightShoulder', Weight: 0.399276 + Group: 'RightArm', Weight: 0.153198 +Vertex 1466: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.130463 + Group: 'Spine2', Weight: 0.154191 + Group: 'RightShoulder', Weight: 0.489042 + Group: 'RightArm', Weight: 0.208514 +Vertex 1467: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.072009 + Group: 'Spine2', Weight: 0.107643 + Group: 'RightShoulder', Weight: 0.591394 + Group: 'RightArm', Weight: 0.216104 +Vertex 1468: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.033653 + Group: 'Spine2', Weight: 0.077931 + Group: 'RightShoulder', Weight: 0.663408 + Group: 'RightArm', Weight: 0.206024 +Vertex 1469: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.024776 + Group: 'Spine2', Weight: 0.163757 + Group: 'RightShoulder', Weight: 0.720769 + Group: 'RightArm', Weight: 0.035263 +Vertex 1470: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.123322 + Group: 'Spine2', Weight: 0.186921 + Group: 'RightShoulder', Weight: 0.532474 + Group: 'RightArm', Weight: 0.136089 +Vertex 1471: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.147412 + Group: 'Neck', Weight: 0.001232 + Group: 'LeftShoulder', Weight: 0.024107 + Group: 'RightShoulder', Weight: 0.752672 +Vertex 1472: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.013239 + Group: 'Spine2', Weight: 0.241470 + Group: 'LeftShoulder', Weight: 0.039638 + Group: 'RightShoulder', Weight: 0.641690 +Vertex 1473: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.016578 + Group: 'Neck', Weight: 0.150379 + Group: 'RightShoulder', Weight: 0.784542 +Vertex 1474: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.081310 + Group: 'Neck', Weight: 0.053874 + Group: 'LeftShoulder', Weight: 0.006390 + Group: 'RightShoulder', Weight: 0.815939 +Vertex 1475: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.238301 + Group: 'Neck', Weight: 0.027551 + Group: 'LeftShoulder', Weight: 0.080036 + Group: 'RightShoulder', Weight: 0.617543 +Vertex 1476: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.008291 + Group: 'Spine2', Weight: 0.341499 + Group: 'LeftShoulder', Weight: 0.084947 + Group: 'RightShoulder', Weight: 0.508761 +Vertex 1477: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.170129 + Group: 'Neck', Weight: 0.083431 + Group: 'LeftShoulder', Weight: 0.069407 + Group: 'RightShoulder', Weight: 0.663454 +Vertex 1478: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.127861 + Group: 'Neck', Weight: 0.181327 + Group: 'LeftShoulder', Weight: 0.063395 + Group: 'RightShoulder', Weight: 0.617907 +Vertex 1479: +Vertex groups: 2 + Group: 'Neck', Weight: 0.737955 + Group: 'RightShoulder', Weight: 0.204652 +Vertex 1480: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.015640 + Group: 'Neck', Weight: 0.636907 + Group: 'LeftShoulder', Weight: 0.004811 + Group: 'RightShoulder', Weight: 0.292168 +Vertex 1481: +Vertex groups: 5 + Group: 'Spine', Weight: 0.014122 + Group: 'Spine1', Weight: 0.328670 + Group: 'Spine2', Weight: 0.286027 + Group: 'RightShoulder', Weight: 0.253787 + Group: 'RightArm', Weight: 0.089086 +Vertex 1482: +Vertex groups: 5 + Group: 'Spine', Weight: 0.053925 + Group: 'Spine1', Weight: 0.523572 + Group: 'Spine2', Weight: 0.203967 + Group: 'RightShoulder', Weight: 0.155024 + Group: 'RightArm', Weight: 0.050044 +Vertex 1483: +Vertex groups: 5 + Group: 'Spine', Weight: 0.086308 + Group: 'Spine1', Weight: 0.629848 + Group: 'Spine2', Weight: 0.140088 + Group: 'RightShoulder', Weight: 0.096491 + Group: 'RightArm', Weight: 0.008965 +Vertex 1484: +Vertex groups: 4 + Group: 'Spine', Weight: 0.147234 + Group: 'Spine1', Weight: 0.666727 + Group: 'Spine2', Weight: 0.087311 + Group: 'RightShoulder', Weight: 0.055434 +Vertex 1485: +Vertex groups: 5 + Group: 'Spine', Weight: 0.265012 + Group: 'Spine1', Weight: 0.600513 + Group: 'Spine2', Weight: 0.049820 + Group: 'RightShoulder', Weight: 0.009047 + Group: 'RightUpLeg', Weight: 0.020405 +Vertex 1486: +Vertex groups: 3 + Group: 'Spine', Weight: 0.549999 + Group: 'Spine1', Weight: 0.310039 + Group: 'RightUpLeg', Weight: 0.080291 +Vertex 1487: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.261278 + Group: 'Spine2', Weight: 0.311212 + Group: 'RightShoulder', Weight: 0.309905 + Group: 'RightArm', Weight: 0.080944 +Vertex 1488: +Vertex groups: 5 + Group: 'Spine', Weight: 0.041431 + Group: 'Spine1', Weight: 0.479046 + Group: 'Spine2', Weight: 0.249138 + Group: 'RightShoulder', Weight: 0.168204 + Group: 'RightArm', Weight: 0.037966 +Vertex 1489: +Vertex groups: 5 + Group: 'Spine', Weight: 0.076411 + Group: 'Spine1', Weight: 0.623347 + Group: 'Spine2', Weight: 0.161573 + Group: 'RightShoulder', Weight: 0.096988 + Group: 'RightArm', Weight: 0.001054 +Vertex 1490: +Vertex groups: 4 + Group: 'Spine', Weight: 0.137993 + Group: 'Spine1', Weight: 0.678244 + Group: 'Spine2', Weight: 0.094538 + Group: 'RightShoulder', Weight: 0.052915 +Vertex 1491: +Vertex groups: 5 + Group: 'Spine', Weight: 0.255706 + Group: 'Spine1', Weight: 0.620365 + Group: 'Spine2', Weight: 0.052273 + Group: 'RightShoulder', Weight: 0.006125 + Group: 'RightUpLeg', Weight: 0.002947 +Vertex 1492: +Vertex groups: 3 + Group: 'Spine', Weight: 0.572839 + Group: 'Spine1', Weight: 0.311289 + Group: 'RightUpLeg', Weight: 0.061558 +Vertex 1493: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.103528 + Group: 'Spine2', Weight: 0.239013 + Group: 'RightShoulder', Weight: 0.551005 + Group: 'RightArm', Weight: 0.079969 +Vertex 1494: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.060056 + Group: 'Spine2', Weight: 0.574506 + Group: 'LeftShoulder', Weight: 0.082794 + Group: 'RightShoulder', Weight: 0.254216 +Vertex 1495: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.075465 + Group: 'Spine2', Weight: 0.498348 + Group: 'LeftShoulder', Weight: 0.044916 + Group: 'RightShoulder', Weight: 0.342645 +Vertex 1496: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.099111 + Group: 'Spine2', Weight: 0.335827 + Group: 'RightShoulder', Weight: 0.483828 + Group: 'RightArm', Weight: 0.034602 +Vertex 1497: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.207092 + Group: 'Spine2', Weight: 0.376038 + Group: 'RightShoulder', Weight: 0.323585 + Group: 'RightArm', Weight: 0.057338 +Vertex 1498: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.172758 + Group: 'Spine2', Weight: 0.476235 + Group: 'RightShoulder', Weight: 0.276700 + Group: 'RightArm', Weight: 0.013861 +Vertex 1499: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.151605 + Group: 'Spine2', Weight: 0.593590 + Group: 'LeftShoulder', Weight: 0.029947 + Group: 'RightShoulder', Weight: 0.181245 +Vertex 1500: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.265983 + Group: 'Spine2', Weight: 0.570557 + Group: 'LeftShoulder', Weight: 0.012723 + Group: 'RightShoulder', Weight: 0.098183 +Vertex 1501: +Vertex groups: 5 + Group: 'Spine', Weight: 0.018247 + Group: 'Spine1', Weight: 0.368406 + Group: 'Spine2', Weight: 0.374546 + Group: 'RightShoulder', Weight: 0.172340 + Group: 'RightArm', Weight: 0.017443 +Vertex 1502: +Vertex groups: 3 + Group: 'Spine1', Weight: 0.319364 + Group: 'Spine2', Weight: 0.472492 + Group: 'RightShoulder', Weight: 0.139503 +Vertex 1503: +Vertex groups: 4 + Group: 'Spine', Weight: 0.066214 + Group: 'Spine1', Weight: 0.635981 + Group: 'Spine2', Weight: 0.184742 + Group: 'RightShoulder', Weight: 0.079631 +Vertex 1504: +Vertex groups: 4 + Group: 'Spine', Weight: 0.044982 + Group: 'Spine1', Weight: 0.647900 + Group: 'Spine2', Weight: 0.212913 + Group: 'RightShoulder', Weight: 0.062648 +Vertex 1505: +Vertex groups: 4 + Group: 'Spine', Weight: 0.123365 + Group: 'Spine1', Weight: 0.709800 + Group: 'Spine2', Weight: 0.096138 + Group: 'RightShoulder', Weight: 0.034130 +Vertex 1506: +Vertex groups: 4 + Group: 'Spine', Weight: 0.097821 + Group: 'Spine1', Weight: 0.762965 + Group: 'Spine2', Weight: 0.089689 + Group: 'RightShoulder', Weight: 0.005672 +Vertex 1507: +Vertex groups: 3 + Group: 'Spine', Weight: 0.259156 + Group: 'Spine1', Weight: 0.642766 + Group: 'Spine2', Weight: 0.039116 +Vertex 1508: +Vertex groups: 3 + Group: 'Spine', Weight: 0.244404 + Group: 'Spine1', Weight: 0.688367 + Group: 'Spine2', Weight: 0.015006 +Vertex 1509: +Vertex groups: 3 + Group: 'Spine', Weight: 0.617083 + Group: 'Spine1', Weight: 0.295806 + Group: 'RightUpLeg', Weight: 0.036910 +Vertex 1510: +Vertex groups: 2 + Group: 'Spine', Weight: 0.686215 + Group: 'Spine1', Weight: 0.257781 +Vertex 1511: +Vertex groups: 4 + Group: 'Spine', Weight: 0.018963 + Group: 'Spine1', Weight: 0.673636 + Group: 'Spine2', Weight: 0.221982 + Group: 'RightShoulder', Weight: 0.030175 +Vertex 1512: +Vertex groups: 3 + Group: 'Spine', Weight: 0.076792 + Group: 'Spine1', Weight: 0.808771 + Group: 'Spine2', Weight: 0.078799 +Vertex 1513: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.083879 + Group: 'Spine2', Weight: 0.643505 + Group: 'LeftShoulder', Weight: 0.082594 + Group: 'RightShoulder', Weight: 0.164433 +Vertex 1514: +Vertex groups: 4 + Group: 'Hips', Weight: 0.229614 + Group: 'Spine', Weight: 0.498970 + Group: 'Spine1', Weight: 0.086803 + Group: 'RightUpLeg', Weight: 0.158625 +Vertex 1515: +Vertex groups: 4 + Group: 'Hips', Weight: 0.077905 + Group: 'Spine', Weight: 0.543264 + Group: 'Spine1', Weight: 0.123301 + Group: 'RightUpLeg', Weight: 0.235892 +Vertex 1516: +Vertex groups: 4 + Group: 'Hips', Weight: 0.035819 + Group: 'Spine', Weight: 0.569691 + Group: 'Spine1', Weight: 0.143995 + Group: 'RightUpLeg', Weight: 0.221237 +Vertex 1517: +Vertex groups: 4 + Group: 'Hips', Weight: 0.142916 + Group: 'Spine', Weight: 0.520580 + Group: 'Spine1', Weight: 0.096877 + Group: 'RightUpLeg', Weight: 0.220103 +Vertex 1518: +Vertex groups: 5 + Group: 'Hips', Weight: 0.301082 + Group: 'Spine', Weight: 0.476579 + Group: 'Spine1', Weight: 0.083171 + Group: 'LeftUpLeg', Weight: 0.015197 + Group: 'RightUpLeg', Weight: 0.099780 +Vertex 1519: +Vertex groups: 3 + Group: 'Spine', Weight: 0.606420 + Group: 'Spine1', Weight: 0.150934 + Group: 'RightUpLeg', Weight: 0.193471 +Vertex 1520: +Vertex groups: 3 + Group: 'Spine', Weight: 0.657432 + Group: 'Spine1', Weight: 0.157325 + Group: 'RightUpLeg', Weight: 0.140931 +Vertex 1521: +Vertex groups: 3 + Group: 'Spine', Weight: 0.710665 + Group: 'Spine1', Weight: 0.163954 + Group: 'RightUpLeg', Weight: 0.084277 +Vertex 1522: +Vertex groups: 3 + Group: 'Spine', Weight: 0.770903 + Group: 'Spine1', Weight: 0.134774 + Group: 'RightUpLeg', Weight: 0.055466 +Vertex 1523: +Vertex groups: 3 + Group: 'Spine', Weight: 0.131473 + Group: 'Spine1', Weight: 0.785682 + Group: 'Spine2', Weight: 0.052291 +Vertex 1524: +Vertex groups: 4 + Group: 'Hips', Weight: 0.066260 + Group: 'Spine', Weight: 0.566542 + Group: 'Spine1', Weight: 0.165188 + Group: 'RightUpLeg', Weight: 0.178043 +Vertex 1525: +Vertex groups: 3 + Group: 'Spine', Weight: 0.606975 + Group: 'Spine1', Weight: 0.207633 + Group: 'RightUpLeg', Weight: 0.133350 +Vertex 1526: +Vertex groups: 4 + Group: 'Hips', Weight: 0.021765 + Group: 'Spine', Weight: 0.582682 + Group: 'Spine1', Weight: 0.193561 + Group: 'RightUpLeg', Weight: 0.159615 +Vertex 1527: +Vertex groups: 3 + Group: 'Spine', Weight: 0.652751 + Group: 'Spine1', Weight: 0.197856 + Group: 'RightUpLeg', Weight: 0.104037 +Vertex 1528: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.011156 + Group: 'Spine2', Weight: 0.361557 + Group: 'Neck', Weight: 0.290994 + Group: 'LeftShoulder', Weight: 0.074650 + Group: 'RightShoulder', Weight: 0.220066 +Vertex 1529: +Vertex groups: 2 + Group: 'Neck', Weight: 0.313756 + Group: 'Head', Weight: 0.673348 +Vertex 1530: +Vertex groups: 2 + Group: 'Neck', Weight: 0.694592 + Group: 'Head', Weight: 0.260586 +Vertex 1531: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.133977 + Group: 'Neck', Weight: 0.646258 + Group: 'Head', Weight: 0.017377 + Group: 'LeftShoulder', Weight: 0.026586 + Group: 'RightShoulder', Weight: 0.132775 +Vertex 1532: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.051561 + Group: 'Neck', Weight: 0.778955 + Group: 'Head', Weight: 0.081829 + Group: 'RightShoulder', Weight: 0.058996 +Vertex 1533: +Vertex groups: 2 + Group: 'Neck', Weight: 0.689819 + Group: 'Head', Weight: 0.279402 +Vertex 1534: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.091255 + Group: 'Neck', Weight: 0.669994 + Group: 'Head', Weight: 0.020406 + Group: 'RightShoulder', Weight: 0.171698 +Vertex 1535: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.005805 + Group: 'Neck', Weight: 0.805201 + Group: 'Head', Weight: 0.086398 + Group: 'RightShoulder', Weight: 0.067345 +Vertex 1536: +Vertex groups: 2 + Group: 'Neck', Weight: 0.734624 + Group: 'Head', Weight: 0.238499 +Vertex 1537: +Vertex groups: 3 + Group: 'Neck', Weight: 0.702559 + Group: 'Head', Weight: 0.017654 + Group: 'RightShoulder', Weight: 0.227882 +Vertex 1538: +Vertex groups: 3 + Group: 'Neck', Weight: 0.825455 + Group: 'Head', Weight: 0.080561 + Group: 'RightShoulder', Weight: 0.075219 +Vertex 1539: +Vertex groups: 2 + Group: 'Neck', Weight: 0.700479 + Group: 'Head', Weight: 0.282344 +Vertex 1540: +Vertex groups: 3 + Group: 'Neck', Weight: 0.748709 + Group: 'Head', Weight: 0.013380 + Group: 'RightShoulder', Weight: 0.197879 +Vertex 1541: +Vertex groups: 3 + Group: 'Neck', Weight: 0.843118 + Group: 'Head', Weight: 0.092520 + Group: 'RightShoulder', Weight: 0.054672 +Vertex 1542: +Vertex groups: 2 + Group: 'Neck', Weight: 0.704309 + Group: 'Head', Weight: 0.280153 +Vertex 1543: +Vertex groups: 3 + Group: 'Neck', Weight: 0.874496 + Group: 'Head', Weight: 0.016460 + Group: 'RightShoulder', Weight: 0.075454 +Vertex 1544: +Vertex groups: 3 + Group: 'Neck', Weight: 0.863059 + Group: 'Head', Weight: 0.101450 + Group: 'RightShoulder', Weight: 0.006485 +Vertex 1545: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.251135 + Group: 'Neck', Weight: 0.337647 + Group: 'LeftShoulder', Weight: 0.027856 + Group: 'RightShoulder', Weight: 0.326214 +Vertex 1546: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.061180 + Group: 'Neck', Weight: 0.413666 + Group: 'RightShoulder', Weight: 0.480834 +Vertex 1547: +Vertex groups: 2 + Group: 'Neck', Weight: 0.783507 + Group: 'RightShoulder', Weight: 0.165649 +Vertex 1548: +Vertex groups: 2 + Group: 'Neck', Weight: 0.379335 + Group: 'Head', Weight: 0.613056 +Vertex 1549: +Vertex groups: 2 + Group: 'Neck', Weight: 0.300685 + Group: 'Head', Weight: 0.693183 +Vertex 1550: +Vertex groups: 2 + Group: 'Neck', Weight: 0.402963 + Group: 'Head', Weight: 0.575152 +Vertex 1551: +Vertex groups: 2 + Group: 'Neck', Weight: 0.426507 + Group: 'Head', Weight: 0.553923 +Vertex 1552: +Vertex groups: 2 + Group: 'Neck', Weight: 0.342814 + Group: 'Head', Weight: 0.644365 +Vertex 1553: +Vertex groups: 2 + Group: 'Neck', Weight: 0.392229 + Group: 'Head', Weight: 0.595096 +Vertex 1554: +Vertex groups: 2 + Group: 'Neck', Weight: 0.449590 + Group: 'Head', Weight: 0.538892 +Vertex 1555: +Vertex groups: 2 + Group: 'Neck', Weight: 0.452099 + Group: 'Head', Weight: 0.541030 +Vertex 1556: +Vertex groups: 2 + Group: 'Neck', Weight: 0.290712 + Group: 'Head', Weight: 0.704118 +Vertex 1557: +Vertex groups: 2 + Group: 'Neck', Weight: 0.561944 + Group: 'Head', Weight: 0.427647 +Vertex 1558: +Vertex groups: 2 + Group: 'Neck', Weight: 0.312602 + Group: 'Head', Weight: 0.683042 +Vertex 1559: +Vertex groups: 2 + Group: 'Neck', Weight: 0.258182 + Group: 'Head', Weight: 0.737715 +Vertex 1560: +Vertex groups: 2 + Group: 'Neck', Weight: 0.218108 + Group: 'Head', Weight: 0.778571 +Vertex 1561: +Vertex groups: 2 + Group: 'Neck', Weight: 0.173527 + Group: 'Head', Weight: 0.823741 +Vertex 1562: +Vertex groups: 2 + Group: 'Neck', Weight: 0.139565 + Group: 'Head', Weight: 0.858200 +Vertex 1563: +Vertex groups: 2 + Group: 'Neck', Weight: 0.130504 + Group: 'Head', Weight: 0.867545 +Vertex 1564: +Vertex groups: 2 + Group: 'Neck', Weight: 0.148625 + Group: 'Head', Weight: 0.849333 +Vertex 1565: +Vertex groups: 2 + Group: 'Neck', Weight: 0.119266 + Group: 'Head', Weight: 0.878862 +Vertex 1566: +Vertex groups: 2 + Group: 'Neck', Weight: 0.152202 + Group: 'Head', Weight: 0.845366 +Vertex 1567: +Vertex groups: 2 + Group: 'Neck', Weight: 0.191950 + Group: 'Head', Weight: 0.804890 +Vertex 1568: +Vertex groups: 2 + Group: 'Neck', Weight: 0.157953 + Group: 'Head', Weight: 0.839433 +Vertex 1569: +Vertex groups: 2 + Group: 'Neck', Weight: 0.126658 + Group: 'Head', Weight: 0.871270 +Vertex 1570: +Vertex groups: 2 + Group: 'Neck', Weight: 0.103151 + Group: 'Head', Weight: 0.895198 +Vertex 1571: +Vertex groups: 2 + Group: 'Neck', Weight: 0.148829 + Group: 'Head', Weight: 0.848895 +Vertex 1572: +Vertex groups: 2 + Group: 'Neck', Weight: 0.092636 + Group: 'Head', Weight: 0.905988 +Vertex 1573: +Vertex groups: 2 + Group: 'Neck', Weight: 0.197348 + Group: 'Head', Weight: 0.799858 +Vertex 1574: +Vertex groups: 2 + Group: 'Neck', Weight: 0.213529 + Group: 'Head', Weight: 0.783582 +Vertex 1575: +Vertex groups: 2 + Group: 'Neck', Weight: 0.164900 + Group: 'Head', Weight: 0.833193 +Vertex 1576: +Vertex groups: 2 + Group: 'Neck', Weight: 0.339538 + Group: 'Head', Weight: 0.655367 +Vertex 1577: +Vertex groups: 2 + Group: 'Neck', Weight: 0.267240 + Group: 'Head', Weight: 0.728921 +Vertex 1578: +Vertex groups: 2 + Group: 'Neck', Weight: 0.171821 + Group: 'Head', Weight: 0.825671 +Vertex 1579: +Vertex groups: 2 + Group: 'Neck', Weight: 0.109702 + Group: 'Head', Weight: 0.888711 +Vertex 1580: +Vertex groups: 2 + Group: 'Neck', Weight: 0.113828 + Group: 'Head', Weight: 0.884611 +Vertex 1581: +Vertex groups: 2 + Group: 'Neck', Weight: 0.091792 + Group: 'Head', Weight: 0.906800 +Vertex 1582: +Vertex groups: 2 + Group: 'Neck', Weight: 0.236262 + Group: 'Head', Weight: 0.761002 +Vertex 1583: +Vertex groups: 2 + Group: 'Neck', Weight: 0.370576 + Group: 'Head', Weight: 0.625170 +Vertex 1584: +Vertex groups: 2 + Group: 'Neck', Weight: 0.104186 + Group: 'Head', Weight: 0.894571 +Vertex 1585: +Vertex groups: 2 + Group: 'Neck', Weight: 0.056940 + Group: 'Head', Weight: 0.942347 +Vertex 1586: +Vertex groups: 2 + Group: 'Neck', Weight: 0.031542 + Group: 'Head', Weight: 0.958589 +Vertex 1587: +Vertex groups: 2 + Group: 'Neck', Weight: 0.074146 + Group: 'Head', Weight: 0.924711 +Vertex 1588: +Vertex groups: 2 + Group: 'Neck', Weight: 0.080074 + Group: 'Head', Weight: 0.918757 +Vertex 1589: +Vertex groups: 2 + Group: 'Neck', Weight: 0.053476 + Group: 'Head', Weight: 0.945608 +Vertex 1590: +Vertex groups: 2 + Group: 'Neck', Weight: 0.090652 + Group: 'Head', Weight: 0.907828 +Vertex 1591: +Vertex groups: 2 + Group: 'Neck', Weight: 0.117029 + Group: 'Head', Weight: 0.880941 +Vertex 1592: +Vertex groups: 2 + Group: 'Neck', Weight: 0.161298 + Group: 'Head', Weight: 0.835829 +Vertex 1593: +Vertex groups: 2 + Group: 'Neck', Weight: 0.079141 + Group: 'Head', Weight: 0.919425 +Vertex 1594: +Vertex groups: 2 + Group: 'Neck', Weight: 0.133562 + Group: 'Head', Weight: 0.863912 +Vertex 1595: +Vertex groups: 2 + Group: 'Neck', Weight: 0.205764 + Group: 'Head', Weight: 0.790545 +Vertex 1596: +Vertex groups: 2 + Group: 'Neck', Weight: 0.204096 + Group: 'Head', Weight: 0.791903 +Vertex 1597: +Vertex groups: 2 + Group: 'Neck', Weight: 0.064955 + Group: 'Head', Weight: 0.933858 +Vertex 1598: +Vertex groups: 2 + Group: 'Neck', Weight: 0.115081 + Group: 'Head', Weight: 0.882755 +Vertex 1599: +Vertex groups: 2 + Group: 'Neck', Weight: 0.200263 + Group: 'Head', Weight: 0.795870 +Vertex 1600: +Vertex groups: 2 + Group: 'Neck', Weight: 0.235731 + Group: 'Head', Weight: 0.759974 +Vertex 1601: +Vertex groups: 2 + Group: 'Neck', Weight: 0.056876 + Group: 'Head', Weight: 0.942088 +Vertex 1602: +Vertex groups: 2 + Group: 'Neck', Weight: 0.103041 + Group: 'Head', Weight: 0.895063 +Vertex 1603: +Vertex groups: 2 + Group: 'Neck', Weight: 0.166439 + Group: 'Head', Weight: 0.830479 +Vertex 1604: +Vertex groups: 2 + Group: 'Neck', Weight: 0.024886 + Group: 'Head', Weight: 0.961900 +Vertex 1605: +Vertex groups: 2 + Group: 'Neck', Weight: 0.006942 + Group: 'Head', Weight: 0.971022 +Vertex 1606: +Vertex groups: 1 + Group: 'Head', Weight: 0.974650 +Vertex 1607: +Vertex groups: 1 + Group: 'Head', Weight: 0.986983 +Vertex 1608: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004697 + Group: 'Head', Weight: 0.972295 +Vertex 1609: +Vertex groups: 2 + Group: 'Neck', Weight: 0.030439 + Group: 'Head', Weight: 0.959292 +Vertex 1610: +Vertex groups: 1 + Group: 'Head', Weight: 0.980283 +Vertex 1611: +Vertex groups: 1 + Group: 'Head', Weight: 0.992743 +Vertex 1612: +Vertex groups: 2 + Group: 'Neck', Weight: 0.409474 + Group: 'Head', Weight: 0.581341 +Vertex 1613: +Vertex groups: 2 + Group: 'Neck', Weight: 0.431055 + Group: 'Head', Weight: 0.562448 +Vertex 1614: +Vertex groups: 2 + Group: 'Neck', Weight: 0.343564 + Group: 'Head', Weight: 0.648297 +Vertex 1615: +Vertex groups: 2 + Group: 'Neck', Weight: 0.309353 + Group: 'Head', Weight: 0.682298 +Vertex 1616: +Vertex groups: 2 + Group: 'Neck', Weight: 0.289042 + Group: 'Head', Weight: 0.703310 +Vertex 1617: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280701 + Group: 'Head', Weight: 0.712196 +Vertex 1618: +Vertex groups: 2 + Group: 'Neck', Weight: 0.276115 + Group: 'Head', Weight: 0.716597 +Vertex 1619: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277884 + Group: 'Head', Weight: 0.713757 +Vertex 1620: +Vertex groups: 2 + Group: 'Neck', Weight: 0.282612 + Group: 'Head', Weight: 0.708552 +Vertex 1621: +Vertex groups: 2 + Group: 'Neck', Weight: 0.292386 + Group: 'Head', Weight: 0.698024 +Vertex 1622: +Vertex groups: 2 + Group: 'Neck', Weight: 0.317236 + Group: 'Head', Weight: 0.672519 +Vertex 1623: +Vertex groups: 2 + Group: 'Neck', Weight: 0.374507 + Group: 'Head', Weight: 0.614574 +Vertex 1624: +Vertex groups: 2 + Group: 'Neck', Weight: 0.295070 + Group: 'Head', Weight: 0.698474 +Vertex 1625: +Vertex groups: 2 + Group: 'Neck', Weight: 0.334552 + Group: 'Head', Weight: 0.661181 +Vertex 1626: +Vertex groups: 2 + Group: 'Neck', Weight: 0.324374 + Group: 'Head', Weight: 0.671167 +Vertex 1627: +Vertex groups: 2 + Group: 'Neck', Weight: 0.365980 + Group: 'Head', Weight: 0.630392 +Vertex 1628: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363316 + Group: 'Head', Weight: 0.633263 +Vertex 1629: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363985 + Group: 'Head', Weight: 0.632907 +Vertex 1630: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363278 + Group: 'Head', Weight: 0.633528 +Vertex 1631: +Vertex groups: 2 + Group: 'Neck', Weight: 0.359976 + Group: 'Head', Weight: 0.637353 +Vertex 1632: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363454 + Group: 'Head', Weight: 0.633683 +Vertex 1633: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364507 + Group: 'Head', Weight: 0.632245 +Vertex 1634: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363473 + Group: 'Head', Weight: 0.633522 +Vertex 1635: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363287 + Group: 'Head', Weight: 0.633422 +Vertex 1636: +Vertex groups: 2 + Group: 'Neck', Weight: 0.360083 + Group: 'Head', Weight: 0.637278 +Vertex 1637: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363833 + Group: 'Head', Weight: 0.633021 +Vertex 1638: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364210 + Group: 'Head', Weight: 0.632897 +Vertex 1639: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364724 + Group: 'Head', Weight: 0.632252 +Vertex 1640: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364318 + Group: 'Head', Weight: 0.632545 +Vertex 1641: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364454 + Group: 'Head', Weight: 0.632231 +Vertex 1642: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364874 + Group: 'Head', Weight: 0.632233 +Vertex 1643: +Vertex groups: 2 + Group: 'Neck', Weight: 0.359276 + Group: 'Head', Weight: 0.637374 +Vertex 1644: +Vertex groups: 2 + Group: 'Neck', Weight: 0.358479 + Group: 'Head', Weight: 0.638158 +Vertex 1645: +Vertex groups: 2 + Group: 'Neck', Weight: 0.357457 + Group: 'Head', Weight: 0.639130 +Vertex 1646: +Vertex groups: 2 + Group: 'Neck', Weight: 0.358207 + Group: 'Head', Weight: 0.638323 +Vertex 1647: +Vertex groups: 2 + Group: 'Neck', Weight: 0.360085 + Group: 'Head', Weight: 0.636354 +Vertex 1648: +Vertex groups: 2 + Group: 'Neck', Weight: 0.357745 + Group: 'Head', Weight: 0.638443 +Vertex 1649: +Vertex groups: 2 + Group: 'Neck', Weight: 0.353641 + Group: 'Head', Weight: 0.642603 +Vertex 1650: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363924 + Group: 'Head', Weight: 0.632587 +Vertex 1651: +Vertex groups: 2 + Group: 'Neck', Weight: 0.352600 + Group: 'Head', Weight: 0.643740 +Vertex 1652: +Vertex groups: 2 + Group: 'Neck', Weight: 0.356037 + Group: 'Head', Weight: 0.640371 +Vertex 1653: +Vertex groups: 2 + Group: 'Neck', Weight: 0.357212 + Group: 'Head', Weight: 0.639212 +Vertex 1654: +Vertex groups: 2 + Group: 'Neck', Weight: 0.339159 + Group: 'Head', Weight: 0.656693 +Vertex 1655: +Vertex groups: 2 + Group: 'Neck', Weight: 0.351586 + Group: 'Head', Weight: 0.644605 +Vertex 1656: +Vertex groups: 2 + Group: 'Neck', Weight: 0.316548 + Group: 'Head', Weight: 0.678603 +Vertex 1657: +Vertex groups: 2 + Group: 'Neck', Weight: 0.336090 + Group: 'Head', Weight: 0.659270 +Vertex 1658: +Vertex groups: 2 + Group: 'Neck', Weight: 0.315610 + Group: 'Head', Weight: 0.678015 +Vertex 1659: +Vertex groups: 2 + Group: 'Neck', Weight: 0.349242 + Group: 'Head', Weight: 0.646881 +Vertex 1660: +Vertex groups: 2 + Group: 'Neck', Weight: 0.344005 + Group: 'Head', Weight: 0.651934 +Vertex 1661: +Vertex groups: 2 + Group: 'Neck', Weight: 0.346447 + Group: 'Head', Weight: 0.649597 +Vertex 1662: +Vertex groups: 2 + Group: 'Neck', Weight: 0.349974 + Group: 'Head', Weight: 0.645896 +Vertex 1663: +Vertex groups: 2 + Group: 'Neck', Weight: 0.338702 + Group: 'Head', Weight: 0.657135 +Vertex 1664: +Vertex groups: 2 + Group: 'Neck', Weight: 0.322425 + Group: 'Head', Weight: 0.673084 +Vertex 1665: +Vertex groups: 2 + Group: 'Neck', Weight: 0.303247 + Group: 'Head', Weight: 0.691695 +Vertex 1666: +Vertex groups: 2 + Group: 'Neck', Weight: 0.284230 + Group: 'Head', Weight: 0.709851 +Vertex 1667: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277779 + Group: 'Head', Weight: 0.715682 +Vertex 1668: +Vertex groups: 2 + Group: 'Neck', Weight: 0.337195 + Group: 'Head', Weight: 0.658594 +Vertex 1669: +Vertex groups: 2 + Group: 'Neck', Weight: 0.315374 + Group: 'Head', Weight: 0.679911 +Vertex 1670: +Vertex groups: 2 + Group: 'Neck', Weight: 0.359072 + Group: 'Head', Weight: 0.636890 +Vertex 1671: +Vertex groups: 2 + Group: 'Neck', Weight: 0.289225 + Group: 'Head', Weight: 0.704617 +Vertex 1672: +Vertex groups: 2 + Group: 'Neck', Weight: 0.287549 + Group: 'Head', Weight: 0.706527 +Vertex 1673: +Vertex groups: 2 + Group: 'Neck', Weight: 0.310257 + Group: 'Head', Weight: 0.684408 +Vertex 1674: +Vertex groups: 2 + Group: 'Neck', Weight: 0.329200 + Group: 'Head', Weight: 0.665619 +Vertex 1675: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280967 + Group: 'Head', Weight: 0.712436 +Vertex 1676: +Vertex groups: 2 + Group: 'Neck', Weight: 0.333151 + Group: 'Head', Weight: 0.662310 +Vertex 1677: +Vertex groups: 2 + Group: 'Neck', Weight: 0.353900 + Group: 'Head', Weight: 0.643602 +Vertex 1678: +Vertex groups: 2 + Group: 'Neck', Weight: 0.348348 + Group: 'Head', Weight: 0.649235 +Vertex 1679: +Vertex groups: 2 + Group: 'Neck', Weight: 0.329771 + Group: 'Head', Weight: 0.668033 +Vertex 1680: +Vertex groups: 2 + Group: 'Neck', Weight: 0.350606 + Group: 'Head', Weight: 0.646925 +Vertex 1681: +Vertex groups: 2 + Group: 'Neck', Weight: 0.314426 + Group: 'Head', Weight: 0.683507 +Vertex 1682: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294882 + Group: 'Head', Weight: 0.703237 +Vertex 1683: +Vertex groups: 2 + Group: 'Neck', Weight: 0.288089 + Group: 'Head', Weight: 0.710100 +Vertex 1684: +Vertex groups: 2 + Group: 'Neck', Weight: 0.284640 + Group: 'Head', Weight: 0.713579 +Vertex 1685: +Vertex groups: 2 + Group: 'Neck', Weight: 0.285160 + Group: 'Head', Weight: 0.713043 +Vertex 1686: +Vertex groups: 2 + Group: 'Neck', Weight: 0.289350 + Group: 'Head', Weight: 0.708797 +Vertex 1687: +Vertex groups: 2 + Group: 'Neck', Weight: 0.305509 + Group: 'Head', Weight: 0.692490 +Vertex 1688: +Vertex groups: 2 + Group: 'Neck', Weight: 0.305971 + Group: 'Head', Weight: 0.692040 +Vertex 1689: +Vertex groups: 2 + Group: 'Neck', Weight: 0.317857 + Group: 'Head', Weight: 0.680037 +Vertex 1690: +Vertex groups: 2 + Group: 'Neck', Weight: 0.305885 + Group: 'Head', Weight: 0.692085 +Vertex 1691: +Vertex groups: 2 + Group: 'Neck', Weight: 0.340080 + Group: 'Head', Weight: 0.657522 +Vertex 1692: +Vertex groups: 2 + Group: 'Neck', Weight: 0.315047 + Group: 'Head', Weight: 0.682746 +Vertex 1693: +Vertex groups: 2 + Group: 'Neck', Weight: 0.295595 + Group: 'Head', Weight: 0.702467 +Vertex 1694: +Vertex groups: 2 + Group: 'Neck', Weight: 0.282888 + Group: 'Head', Weight: 0.715320 +Vertex 1695: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280717 + Group: 'Head', Weight: 0.717533 +Vertex 1696: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280491 + Group: 'Head', Weight: 0.717778 +Vertex 1697: +Vertex groups: 2 + Group: 'Neck', Weight: 0.281737 + Group: 'Head', Weight: 0.716524 +Vertex 1698: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277632 + Group: 'Head', Weight: 0.720680 +Vertex 1699: +Vertex groups: 2 + Group: 'Neck', Weight: 0.274307 + Group: 'Head', Weight: 0.724052 +Vertex 1700: +Vertex groups: 2 + Group: 'Neck', Weight: 0.266168 + Group: 'Head', Weight: 0.732286 +Vertex 1701: +Vertex groups: 2 + Group: 'Neck', Weight: 0.253885 + Group: 'Head', Weight: 0.744644 +Vertex 1702: +Vertex groups: 2 + Group: 'Neck', Weight: 0.185456 + Group: 'Head', Weight: 0.813386 +Vertex 1703: +Vertex groups: 2 + Group: 'Neck', Weight: 0.156826 + Group: 'Head', Weight: 0.842161 +Vertex 1704: +Vertex groups: 2 + Group: 'Neck', Weight: 0.113874 + Group: 'Head', Weight: 0.885348 +Vertex 1705: +Vertex groups: 2 + Group: 'Neck', Weight: 0.101525 + Group: 'Head', Weight: 0.897768 +Vertex 1706: +Vertex groups: 2 + Group: 'Neck', Weight: 0.272183 + Group: 'Head', Weight: 0.726214 +Vertex 1707: +Vertex groups: 2 + Group: 'Neck', Weight: 0.271631 + Group: 'Head', Weight: 0.726766 +Vertex 1708: +Vertex groups: 2 + Group: 'Neck', Weight: 0.276972 + Group: 'Head', Weight: 0.721347 +Vertex 1709: +Vertex groups: 2 + Group: 'Neck', Weight: 0.275111 + Group: 'Head', Weight: 0.723242 +Vertex 1710: +Vertex groups: 2 + Group: 'Neck', Weight: 0.265100 + Group: 'Head', Weight: 0.733347 +Vertex 1711: +Vertex groups: 2 + Group: 'Neck', Weight: 0.253325 + Group: 'Head', Weight: 0.745188 +Vertex 1712: +Vertex groups: 2 + Group: 'Neck', Weight: 0.186591 + Group: 'Head', Weight: 0.812235 +Vertex 1713: +Vertex groups: 2 + Group: 'Neck', Weight: 0.160139 + Group: 'Head', Weight: 0.838823 +Vertex 1714: +Vertex groups: 2 + Group: 'Neck', Weight: 0.304970 + Group: 'Head', Weight: 0.693044 +Vertex 1715: +Vertex groups: 2 + Group: 'Neck', Weight: 0.297118 + Group: 'Head', Weight: 0.700974 +Vertex 1716: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294729 + Group: 'Head', Weight: 0.703383 +Vertex 1717: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294328 + Group: 'Head', Weight: 0.703785 +Vertex 1718: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294301 + Group: 'Head', Weight: 0.703807 +Vertex 1719: +Vertex groups: 2 + Group: 'Neck', Weight: 0.296417 + Group: 'Head', Weight: 0.701669 +Vertex 1720: +Vertex groups: 2 + Group: 'Neck', Weight: 0.301854 + Group: 'Head', Weight: 0.696182 +Vertex 1721: +Vertex groups: 2 + Group: 'Neck', Weight: 0.302204 + Group: 'Head', Weight: 0.695837 +Vertex 1722: +Vertex groups: 2 + Group: 'Neck', Weight: 0.297049 + Group: 'Head', Weight: 0.701036 +Vertex 1723: +Vertex groups: 2 + Group: 'Neck', Weight: 0.279647 + Group: 'Head', Weight: 0.718531 +Vertex 1724: +Vertex groups: 2 + Group: 'Neck', Weight: 0.265934 + Group: 'Head', Weight: 0.732379 +Vertex 1725: +Vertex groups: 2 + Group: 'Neck', Weight: 0.254208 + Group: 'Head', Weight: 0.744216 +Vertex 1726: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277314 + Group: 'Head', Weight: 0.720943 +Vertex 1727: +Vertex groups: 2 + Group: 'Neck', Weight: 0.270600 + Group: 'Head', Weight: 0.727728 +Vertex 1728: +Vertex groups: 2 + Group: 'Neck', Weight: 0.262001 + Group: 'Head', Weight: 0.736405 +Vertex 1729: +Vertex groups: 2 + Group: 'Neck', Weight: 0.276943 + Group: 'Head', Weight: 0.721353 +Vertex 1730: +Vertex groups: 2 + Group: 'Neck', Weight: 0.273027 + Group: 'Head', Weight: 0.725320 +Vertex 1731: +Vertex groups: 2 + Group: 'Neck', Weight: 0.268801 + Group: 'Head', Weight: 0.729588 +Vertex 1732: +Vertex groups: 2 + Group: 'Neck', Weight: 0.262874 + Group: 'Head', Weight: 0.735568 +Vertex 1733: +Vertex groups: 2 + Group: 'Neck', Weight: 0.254554 + Group: 'Head', Weight: 0.743928 +Vertex 1734: +Vertex groups: 2 + Group: 'Neck', Weight: 0.236369 + Group: 'Head', Weight: 0.762184 +Vertex 1735: +Vertex groups: 2 + Group: 'Neck', Weight: 0.237367 + Group: 'Head', Weight: 0.761244 +Vertex 1736: +Vertex groups: 2 + Group: 'Neck', Weight: 0.232689 + Group: 'Head', Weight: 0.765920 +Vertex 1737: +Vertex groups: 2 + Group: 'Neck', Weight: 0.189746 + Group: 'Head', Weight: 0.809046 +Vertex 1738: +Vertex groups: 2 + Group: 'Neck', Weight: 0.164948 + Group: 'Head', Weight: 0.833974 +Vertex 1739: +Vertex groups: 2 + Group: 'Neck', Weight: 0.225861 + Group: 'Head', Weight: 0.772728 +Vertex 1740: +Vertex groups: 2 + Group: 'Neck', Weight: 0.242219 + Group: 'Head', Weight: 0.756246 +Vertex 1741: +Vertex groups: 2 + Group: 'Neck', Weight: 0.199366 + Group: 'Head', Weight: 0.799358 +Vertex 1742: +Vertex groups: 2 + Group: 'Neck', Weight: 0.257625 + Group: 'Head', Weight: 0.740700 +Vertex 1743: +Vertex groups: 2 + Group: 'Neck', Weight: 0.275654 + Group: 'Head', Weight: 0.722503 +Vertex 1744: +Vertex groups: 2 + Group: 'Neck', Weight: 0.269620 + Group: 'Head', Weight: 0.728491 +Vertex 1745: +Vertex groups: 2 + Group: 'Neck', Weight: 0.227390 + Group: 'Head', Weight: 0.771130 +Vertex 1746: +Vertex groups: 2 + Group: 'Neck', Weight: 0.245649 + Group: 'Head', Weight: 0.752695 +Vertex 1747: +Vertex groups: 2 + Group: 'Neck', Weight: 0.170518 + Group: 'Head', Weight: 0.828361 +Vertex 1748: +Vertex groups: 2 + Group: 'Neck', Weight: 0.218161 + Group: 'Head', Weight: 0.780402 +Vertex 1749: +Vertex groups: 2 + Group: 'Neck', Weight: 0.205952 + Group: 'Head', Weight: 0.792723 +Vertex 1750: +Vertex groups: 2 + Group: 'Neck', Weight: 0.223585 + Group: 'Head', Weight: 0.774884 +Vertex 1751: +Vertex groups: 2 + Group: 'Neck', Weight: 0.207960 + Group: 'Head', Weight: 0.790603 +Vertex 1752: +Vertex groups: 2 + Group: 'Neck', Weight: 0.212319 + Group: 'Head', Weight: 0.786122 +Vertex 1753: +Vertex groups: 2 + Group: 'Neck', Weight: 0.201575 + Group: 'Head', Weight: 0.796937 +Vertex 1754: +Vertex groups: 2 + Group: 'Neck', Weight: 0.199669 + Group: 'Head', Weight: 0.798745 +Vertex 1755: +Vertex groups: 2 + Group: 'Neck', Weight: 0.190526 + Group: 'Head', Weight: 0.808002 +Vertex 1756: +Vertex groups: 2 + Group: 'Neck', Weight: 0.175978 + Group: 'Head', Weight: 0.822537 +Vertex 1757: +Vertex groups: 2 + Group: 'Neck', Weight: 0.164697 + Group: 'Head', Weight: 0.833944 +Vertex 1758: +Vertex groups: 2 + Group: 'Neck', Weight: 0.146183 + Group: 'Head', Weight: 0.852499 +Vertex 1759: +Vertex groups: 2 + Group: 'Neck', Weight: 0.139947 + Group: 'Head', Weight: 0.858835 +Vertex 1760: +Vertex groups: 2 + Group: 'Neck', Weight: 0.118437 + Group: 'Head', Weight: 0.880451 +Vertex 1761: +Vertex groups: 2 + Group: 'Neck', Weight: 0.123647 + Group: 'Head', Weight: 0.875255 +Vertex 1762: +Vertex groups: 2 + Group: 'Neck', Weight: 0.099737 + Group: 'Head', Weight: 0.899345 +Vertex 1763: +Vertex groups: 2 + Group: 'Neck', Weight: 0.112575 + Group: 'Head', Weight: 0.886438 +Vertex 1764: +Vertex groups: 2 + Group: 'Neck', Weight: 0.090061 + Group: 'Head', Weight: 0.909151 +Vertex 1765: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105779 + Group: 'Head', Weight: 0.893320 +Vertex 1766: +Vertex groups: 2 + Group: 'Neck', Weight: 0.088600 + Group: 'Head', Weight: 0.910693 +Vertex 1767: +Vertex groups: 2 + Group: 'Neck', Weight: 0.099558 + Group: 'Head', Weight: 0.899657 +Vertex 1768: +Vertex groups: 2 + Group: 'Neck', Weight: 0.088052 + Group: 'Head', Weight: 0.911213 +Vertex 1769: +Vertex groups: 2 + Group: 'Neck', Weight: 0.099885 + Group: 'Head', Weight: 0.899292 +Vertex 1770: +Vertex groups: 2 + Group: 'Neck', Weight: 0.095765 + Group: 'Head', Weight: 0.903513 +Vertex 1771: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105892 + Group: 'Head', Weight: 0.893317 +Vertex 1772: +Vertex groups: 2 + Group: 'Neck', Weight: 0.110864 + Group: 'Head', Weight: 0.888348 +Vertex 1773: +Vertex groups: 2 + Group: 'Neck', Weight: 0.117635 + Group: 'Head', Weight: 0.881529 +Vertex 1774: +Vertex groups: 2 + Group: 'Neck', Weight: 0.125641 + Group: 'Head', Weight: 0.873493 +Vertex 1775: +Vertex groups: 2 + Group: 'Neck', Weight: 0.131669 + Group: 'Head', Weight: 0.867423 +Vertex 1776: +Vertex groups: 2 + Group: 'Neck', Weight: 0.119747 + Group: 'Head', Weight: 0.879433 +Vertex 1777: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105712 + Group: 'Head', Weight: 0.893545 +Vertex 1778: +Vertex groups: 2 + Group: 'Neck', Weight: 0.177101 + Group: 'Head', Weight: 0.821722 +Vertex 1779: +Vertex groups: 2 + Group: 'Neck', Weight: 0.195028 + Group: 'Head', Weight: 0.803625 +Vertex 1780: +Vertex groups: 2 + Group: 'Neck', Weight: 0.193053 + Group: 'Head', Weight: 0.805531 +Vertex 1781: +Vertex groups: 2 + Group: 'Neck', Weight: 0.179545 + Group: 'Head', Weight: 0.819061 +Vertex 1782: +Vertex groups: 2 + Group: 'Neck', Weight: 0.156796 + Group: 'Head', Weight: 0.841919 +Vertex 1783: +Vertex groups: 2 + Group: 'Neck', Weight: 0.138439 + Group: 'Head', Weight: 0.860385 +Vertex 1784: +Vertex groups: 2 + Group: 'Neck', Weight: 0.127631 + Group: 'Head', Weight: 0.871268 +Vertex 1785: +Vertex groups: 2 + Group: 'Neck', Weight: 0.121849 + Group: 'Head', Weight: 0.877110 +Vertex 1786: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114440 + Group: 'Head', Weight: 0.884597 +Vertex 1787: +Vertex groups: 2 + Group: 'Neck', Weight: 0.108223 + Group: 'Head', Weight: 0.890890 +Vertex 1788: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105543 + Group: 'Head', Weight: 0.893627 +Vertex 1789: +Vertex groups: 2 + Group: 'Neck', Weight: 0.110657 + Group: 'Head', Weight: 0.888520 +Vertex 1790: +Vertex groups: 2 + Group: 'Neck', Weight: 0.123951 + Group: 'Head', Weight: 0.875172 +Vertex 1791: +Vertex groups: 2 + Group: 'Neck', Weight: 0.138873 + Group: 'Head', Weight: 0.860170 +Vertex 1792: +Vertex groups: 2 + Group: 'Neck', Weight: 0.238423 + Group: 'Head', Weight: 0.759922 +Vertex 1793: +Vertex groups: 2 + Group: 'Neck', Weight: 0.222747 + Group: 'Head', Weight: 0.775617 +Vertex 1794: +Vertex groups: 2 + Group: 'Neck', Weight: 0.232670 + Group: 'Head', Weight: 0.765665 +Vertex 1795: +Vertex groups: 2 + Group: 'Neck', Weight: 0.227954 + Group: 'Head', Weight: 0.770212 +Vertex 1796: +Vertex groups: 2 + Group: 'Neck', Weight: 0.186298 + Group: 'Head', Weight: 0.812081 +Vertex 1797: +Vertex groups: 2 + Group: 'Neck', Weight: 0.154104 + Group: 'Head', Weight: 0.844453 +Vertex 1798: +Vertex groups: 2 + Group: 'Neck', Weight: 0.117948 + Group: 'Head', Weight: 0.880895 +Vertex 1799: +Vertex groups: 2 + Group: 'Neck', Weight: 0.092172 + Group: 'Head', Weight: 0.906937 +Vertex 1800: +Vertex groups: 2 + Group: 'Neck', Weight: 0.178232 + Group: 'Head', Weight: 0.820570 +Vertex 1801: +Vertex groups: 2 + Group: 'Neck', Weight: 0.188669 + Group: 'Head', Weight: 0.810027 +Vertex 1802: +Vertex groups: 2 + Group: 'Neck', Weight: 0.187174 + Group: 'Head', Weight: 0.811464 +Vertex 1803: +Vertex groups: 2 + Group: 'Neck', Weight: 0.172909 + Group: 'Head', Weight: 0.825760 +Vertex 1804: +Vertex groups: 2 + Group: 'Neck', Weight: 0.156802 + Group: 'Head', Weight: 0.841943 +Vertex 1805: +Vertex groups: 2 + Group: 'Neck', Weight: 0.140318 + Group: 'Head', Weight: 0.858528 +Vertex 1806: +Vertex groups: 2 + Group: 'Neck', Weight: 0.124957 + Group: 'Head', Weight: 0.873996 +Vertex 1807: +Vertex groups: 2 + Group: 'Neck', Weight: 0.122616 + Group: 'Head', Weight: 0.876360 +Vertex 1808: +Vertex groups: 2 + Group: 'Neck', Weight: 0.116277 + Group: 'Head', Weight: 0.882760 +Vertex 1809: +Vertex groups: 2 + Group: 'Neck', Weight: 0.110142 + Group: 'Head', Weight: 0.888961 +Vertex 1810: +Vertex groups: 2 + Group: 'Neck', Weight: 0.107250 + Group: 'Head', Weight: 0.891899 +Vertex 1811: +Vertex groups: 2 + Group: 'Neck', Weight: 0.111530 + Group: 'Head', Weight: 0.887638 +Vertex 1812: +Vertex groups: 2 + Group: 'Neck', Weight: 0.126798 + Group: 'Head', Weight: 0.872307 +Vertex 1813: +Vertex groups: 2 + Group: 'Neck', Weight: 0.138072 + Group: 'Head', Weight: 0.860975 +Vertex 1814: +Vertex groups: 2 + Group: 'Neck', Weight: 0.122174 + Group: 'Head', Weight: 0.876795 +Vertex 1815: +Vertex groups: 2 + Group: 'Neck', Weight: 0.126959 + Group: 'Head', Weight: 0.871963 +Vertex 1816: +Vertex groups: 2 + Group: 'Neck', Weight: 0.116479 + Group: 'Head', Weight: 0.882551 +Vertex 1817: +Vertex groups: 2 + Group: 'Neck', Weight: 0.191875 + Group: 'Head', Weight: 0.806796 +Vertex 1818: +Vertex groups: 2 + Group: 'Neck', Weight: 0.177618 + Group: 'Head', Weight: 0.821193 +Vertex 1819: +Vertex groups: 2 + Group: 'Neck', Weight: 0.110021 + Group: 'Head', Weight: 0.889080 +Vertex 1820: +Vertex groups: 2 + Group: 'Neck', Weight: 0.188496 + Group: 'Head', Weight: 0.810125 +Vertex 1821: +Vertex groups: 2 + Group: 'Neck', Weight: 0.106829 + Group: 'Head', Weight: 0.892329 +Vertex 1822: +Vertex groups: 2 + Group: 'Neck', Weight: 0.174104 + Group: 'Head', Weight: 0.824551 +Vertex 1823: +Vertex groups: 2 + Group: 'Neck', Weight: 0.111636 + Group: 'Head', Weight: 0.887533 +Vertex 1824: +Vertex groups: 2 + Group: 'Neck', Weight: 0.155916 + Group: 'Head', Weight: 0.842825 +Vertex 1825: +Vertex groups: 2 + Group: 'Neck', Weight: 0.125404 + Group: 'Head', Weight: 0.873709 +Vertex 1826: +Vertex groups: 2 + Group: 'Neck', Weight: 0.139008 + Group: 'Head', Weight: 0.859836 +Vertex 1827: +Vertex groups: 2 + Group: 'Neck', Weight: 0.138081 + Group: 'Head', Weight: 0.860966 +Vertex 1828: +Vertex groups: 2 + Group: 'Neck', Weight: 0.135415 + Group: 'Head', Weight: 0.863687 +Vertex 1829: +Vertex groups: 2 + Group: 'Neck', Weight: 0.140745 + Group: 'Head', Weight: 0.858321 +Vertex 1830: +Vertex groups: 2 + Group: 'Neck', Weight: 0.147391 + Group: 'Head', Weight: 0.851625 +Vertex 1831: +Vertex groups: 2 + Group: 'Neck', Weight: 0.154218 + Group: 'Head', Weight: 0.844750 +Vertex 1832: +Vertex groups: 2 + Group: 'Neck', Weight: 0.163488 + Group: 'Head', Weight: 0.835417 +Vertex 1833: +Vertex groups: 2 + Group: 'Neck', Weight: 0.162544 + Group: 'Head', Weight: 0.836362 +Vertex 1834: +Vertex groups: 2 + Group: 'Neck', Weight: 0.163064 + Group: 'Head', Weight: 0.835840 +Vertex 1835: +Vertex groups: 2 + Group: 'Neck', Weight: 0.334217 + Group: 'Head', Weight: 0.663349 +Vertex 1836: +Vertex groups: 2 + Group: 'Neck', Weight: 0.262302 + Group: 'Head', Weight: 0.735783 +Vertex 1837: +Vertex groups: 2 + Group: 'Neck', Weight: 0.344788 + Group: 'Head', Weight: 0.652571 +Vertex 1838: +Vertex groups: 2 + Group: 'Neck', Weight: 0.355810 + Group: 'Head', Weight: 0.641210 +Vertex 1839: +Vertex groups: 2 + Group: 'Neck', Weight: 0.264849 + Group: 'Head', Weight: 0.733067 +Vertex 1840: +Vertex groups: 2 + Group: 'Neck', Weight: 0.284510 + Group: 'Head', Weight: 0.713077 +Vertex 1841: +Vertex groups: 2 + Group: 'Neck', Weight: 0.243437 + Group: 'Head', Weight: 0.754777 +Vertex 1842: +Vertex groups: 2 + Group: 'Neck', Weight: 0.242556 + Group: 'Head', Weight: 0.755329 +Vertex 1843: +Vertex groups: 2 + Group: 'Neck', Weight: 0.204987 + Group: 'Head', Weight: 0.793134 +Vertex 1844: +Vertex groups: 2 + Group: 'Neck', Weight: 0.170009 + Group: 'Head', Weight: 0.828319 +Vertex 1845: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364820 + Group: 'Head', Weight: 0.630823 +Vertex 1846: +Vertex groups: 2 + Group: 'Neck', Weight: 0.366951 + Group: 'Head', Weight: 0.629606 +Vertex 1847: +Vertex groups: 2 + Group: 'Neck', Weight: 0.370821 + Group: 'Head', Weight: 0.624359 +Vertex 1848: +Vertex groups: 2 + Group: 'Neck', Weight: 0.340169 + Group: 'Head', Weight: 0.656724 +Vertex 1849: +Vertex groups: 2 + Group: 'Neck', Weight: 0.351924 + Group: 'Head', Weight: 0.641970 +Vertex 1850: +Vertex groups: 2 + Group: 'Neck', Weight: 0.386268 + Group: 'Head', Weight: 0.609118 +Vertex 1851: +Vertex groups: 2 + Group: 'Neck', Weight: 0.272008 + Group: 'Head', Weight: 0.725295 +Vertex 1852: +Vertex groups: 2 + Group: 'Neck', Weight: 0.378904 + Group: 'Head', Weight: 0.613455 +Vertex 1853: +Vertex groups: 2 + Group: 'Neck', Weight: 0.406507 + Group: 'Head', Weight: 0.587787 +Vertex 1854: +Vertex groups: 2 + Group: 'Neck', Weight: 0.383196 + Group: 'Head', Weight: 0.612613 +Vertex 1855: +Vertex groups: 2 + Group: 'Neck', Weight: 0.255741 + Group: 'Head', Weight: 0.741559 +Vertex 1856: +Vertex groups: 2 + Group: 'Neck', Weight: 0.174400 + Group: 'Head', Weight: 0.823755 +Vertex 1857: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114034 + Group: 'Head', Weight: 0.884787 +Vertex 1858: +Vertex groups: 2 + Group: 'Neck', Weight: 0.108176 + Group: 'Head', Weight: 0.890634 +Vertex 1859: +Vertex groups: 2 + Group: 'Neck', Weight: 0.082003 + Group: 'Head', Weight: 0.917155 +Vertex 1860: +Vertex groups: 2 + Group: 'Neck', Weight: 0.071744 + Group: 'Head', Weight: 0.927461 +Vertex 1861: +Vertex groups: 2 + Group: 'Neck', Weight: 0.057702 + Group: 'Head', Weight: 0.941733 +Vertex 1862: +Vertex groups: 2 + Group: 'Neck', Weight: 0.041388 + Group: 'Head', Weight: 0.953811 +Vertex 1863: +Vertex groups: 2 + Group: 'Neck', Weight: 0.073342 + Group: 'Head', Weight: 0.925982 +Vertex 1864: +Vertex groups: 2 + Group: 'Neck', Weight: 0.068220 + Group: 'Head', Weight: 0.931185 +Vertex 1865: +Vertex groups: 2 + Group: 'Neck', Weight: 0.071702 + Group: 'Head', Weight: 0.927720 +Vertex 1866: +Vertex groups: 2 + Group: 'Neck', Weight: 0.082997 + Group: 'Head', Weight: 0.916386 +Vertex 1867: +Vertex groups: 2 + Group: 'Neck', Weight: 0.080074 + Group: 'Head', Weight: 0.919342 +Vertex 1868: +Vertex groups: 2 + Group: 'Neck', Weight: 0.061790 + Group: 'Head', Weight: 0.937739 +Vertex 1869: +Vertex groups: 2 + Group: 'Neck', Weight: 0.062000 + Group: 'Head', Weight: 0.937518 +Vertex 1870: +Vertex groups: 2 + Group: 'Neck', Weight: 0.056101 + Group: 'Head', Weight: 0.943436 +Vertex 1871: +Vertex groups: 2 + Group: 'Neck', Weight: 0.053178 + Group: 'Head', Weight: 0.946344 +Vertex 1872: +Vertex groups: 2 + Group: 'Neck', Weight: 0.047005 + Group: 'Head', Weight: 0.951115 +Vertex 1873: +Vertex groups: 2 + Group: 'Neck', Weight: 0.034545 + Group: 'Head', Weight: 0.957382 +Vertex 1874: +Vertex groups: 2 + Group: 'Neck', Weight: 0.026766 + Group: 'Head', Weight: 0.961288 +Vertex 1875: +Vertex groups: 2 + Group: 'Neck', Weight: 0.021399 + Group: 'Head', Weight: 0.963969 +Vertex 1876: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004670 + Group: 'Head', Weight: 0.972351 +Vertex 1877: +Vertex groups: 2 + Group: 'Neck', Weight: 0.019719 + Group: 'Head', Weight: 0.964789 +Vertex 1878: +Vertex groups: 1 + Group: 'Head', Weight: 0.978842 +Vertex 1879: +Vertex groups: 1 + Group: 'Head', Weight: 0.987383 +Vertex 1880: +Vertex groups: 1 + Group: 'Head', Weight: 0.975061 +Vertex 1881: +Vertex groups: 1 + Group: 'Head', Weight: 0.979360 +Vertex 1882: +Vertex groups: 1 + Group: 'Head', Weight: 0.985479 +Vertex 1883: +Vertex groups: 1 + Group: 'Head', Weight: 0.977394 +Vertex 1884: +Vertex groups: 2 + Group: 'Neck', Weight: 0.109279 + Group: 'Head', Weight: 0.888685 +Vertex 1885: +Vertex groups: 2 + Group: 'Neck', Weight: 0.305978 + Group: 'Head', Weight: 0.688205 +Vertex 1886: +Vertex groups: 2 + Group: 'Neck', Weight: 0.060671 + Group: 'Head', Weight: 0.938220 +Vertex 1887: +Vertex groups: 2 + Group: 'Neck', Weight: 0.185300 + Group: 'Head', Weight: 0.811199 +Vertex 1888: +Vertex groups: 2 + Group: 'Neck', Weight: 0.014560 + Group: 'Head', Weight: 0.967148 +Vertex 1889: +Vertex groups: 1 + Group: 'Head', Weight: 0.982223 +Vertex 1890: +Vertex groups: 1 + Group: 'Head', Weight: 0.986013 +Vertex 1891: +Vertex groups: 2 + Group: 'Neck', Weight: 0.025482 + Group: 'Head', Weight: 0.961949 +Vertex 1892: +Vertex groups: 2 + Group: 'Neck', Weight: 0.016398 + Group: 'Head', Weight: 0.966518 +Vertex 1893: +Vertex groups: 2 + Group: 'Neck', Weight: 0.011976 + Group: 'Head', Weight: 0.968736 +Vertex 1894: +Vertex groups: 2 + Group: 'Neck', Weight: 0.009754 + Group: 'Head', Weight: 0.969840 +Vertex 1895: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004224 + Group: 'Head', Weight: 0.972652 +Vertex 1896: +Vertex groups: 2 + Group: 'Neck', Weight: 0.560448 + Group: 'RightShoulder', Weight: 0.387483 +Vertex 1897: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.101270 + Group: 'Neck', Weight: 0.345387 + Group: 'LeftShoulder', Weight: 0.074556 + Group: 'RightShoulder', Weight: 0.470779 +Vertex 1898: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.209431 + Group: 'RightArm', Weight: 0.780615 +Vertex 1899: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.200078 + Group: 'RightArm', Weight: 0.793573 +Vertex 1900: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.326239 + Group: 'RightArm', Weight: 0.634830 +Vertex 1901: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.231058 + Group: 'RightArm', Weight: 0.748985 +Vertex 1902: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.197944 + Group: 'RightArm', Weight: 0.794957 +Vertex 1903: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.250808 + Group: 'RightArm', Weight: 0.736462 +Vertex 1904: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.353348 + Group: 'RightArm', Weight: 0.622155 +Vertex 1905: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.162230 + Group: 'RightArm', Weight: 0.811779 +Vertex 1906: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.099818 + Group: 'RightArm', Weight: 0.889381 +Vertex 1907: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.073967 + Group: 'RightArm', Weight: 0.921038 +Vertex 1908: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.061449 + Group: 'RightArm', Weight: 0.935648 +Vertex 1909: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.072774 + Group: 'RightArm', Weight: 0.923293 +Vertex 1910: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.118472 + Group: 'RightArm', Weight: 0.872812 +Vertex 1911: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.228190 + Group: 'RightArm', Weight: 0.750218 +Vertex 1912: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.109703 + Group: 'Spine2', Weight: 0.119016 + Group: 'RightShoulder', Weight: 0.552031 + Group: 'RightArm', Weight: 0.205425 +Vertex 1913: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050463 + Group: 'Spine2', Weight: 0.057627 + Group: 'RightShoulder', Weight: 0.700582 + Group: 'RightArm', Weight: 0.176525 +Vertex 1914: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.006301 + Group: 'RightShoulder', Weight: 0.797455 + Group: 'RightArm', Weight: 0.138719 +Vertex 1915: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.078070 + Group: 'Spine2', Weight: 0.077672 + Group: 'RightShoulder', Weight: 0.613054 + Group: 'RightArm', Weight: 0.219206 +Vertex 1916: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.117231 + Group: 'Spine2', Weight: 0.134934 + Group: 'RightShoulder', Weight: 0.531313 + Group: 'RightArm', Weight: 0.201963 +Vertex 1917: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.837260 + Group: 'RightArm', Weight: 0.125687 +Vertex 1918: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.846464 + Group: 'RightArm', Weight: 0.120904 +Vertex 1919: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.853790 + Group: 'RightArm', Weight: 0.118559 +Vertex 1920: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.849314 + Group: 'RightArm', Weight: 0.115413 +Vertex 1921: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.048595 + Group: 'RightShoulder', Weight: 0.788013 + Group: 'RightArm', Weight: 0.133081 +Vertex 1922: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.017828 + Group: 'Spine2', Weight: 0.062346 + Group: 'RightShoulder', Weight: 0.656739 + Group: 'RightArm', Weight: 0.238038 +Vertex 1923: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.062538 + Group: 'Spine2', Weight: 0.092168 + Group: 'RightShoulder', Weight: 0.589923 + Group: 'RightArm', Weight: 0.244251 +Vertex 1924: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.105486 + Group: 'Spine2', Weight: 0.126015 + Group: 'RightShoulder', Weight: 0.511429 + Group: 'RightArm', Weight: 0.242464 +Vertex 1925: +Vertex groups: 5 + Group: 'Hips', Weight: 0.385065 + Group: 'Spine', Weight: 0.392847 + Group: 'Spine1', Weight: 0.067973 + Group: 'LeftUpLeg', Weight: 0.021450 + Group: 'RightUpLeg', Weight: 0.112777 +Vertex 1926: +Vertex groups: 4 + Group: 'Hips', Weight: 0.286594 + Group: 'Spine', Weight: 0.425835 + Group: 'Spine1', Weight: 0.069644 + Group: 'RightUpLeg', Weight: 0.192112 +Vertex 1927: +Vertex groups: 4 + Group: 'Hips', Weight: 0.156744 + Group: 'Spine', Weight: 0.483654 + Group: 'Spine1', Weight: 0.085119 + Group: 'RightUpLeg', Weight: 0.255894 +Vertex 1928: +Vertex groups: 4 + Group: 'Hips', Weight: 0.080297 + Group: 'Spine', Weight: 0.522545 + Group: 'Spine1', Weight: 0.107618 + Group: 'RightUpLeg', Weight: 0.271555 +Vertex 1929: +Vertex groups: 4 + Group: 'Hips', Weight: 0.040117 + Group: 'Spine', Weight: 0.553882 + Group: 'Spine1', Weight: 0.123854 + Group: 'RightUpLeg', Weight: 0.257438 +Vertex 1930: +Vertex groups: 4 + Group: 'Hips', Weight: 0.002550 + Group: 'Spine', Weight: 0.596061 + Group: 'Spine1', Weight: 0.126659 + Group: 'RightUpLeg', Weight: 0.229635 +Vertex 1931: +Vertex groups: 3 + Group: 'Spine', Weight: 0.663557 + Group: 'Spine1', Weight: 0.125660 + Group: 'RightUpLeg', Weight: 0.167095 +Vertex 1932: +Vertex groups: 3 + Group: 'Spine', Weight: 0.783563 + Group: 'Spine1', Weight: 0.109403 + Group: 'RightUpLeg', Weight: 0.063467 +Vertex 1933: +Vertex groups: 3 + Group: 'Spine', Weight: 0.727662 + Group: 'Spine1', Weight: 0.122021 + Group: 'RightUpLeg', Weight: 0.107637 +Vertex 1934: +Vertex groups: 5 + Group: 'Hips', Weight: 0.526165 + Group: 'Spine', Weight: 0.236665 + Group: 'Spine1', Weight: 0.030987 + Group: 'LeftUpLeg', Weight: 0.038697 + Group: 'RightUpLeg', Weight: 0.148891 +Vertex 1935: +Vertex groups: 4 + Group: 'Hips', Weight: 0.376758 + Group: 'Spine', Weight: 0.282149 + Group: 'Spine1', Weight: 0.043511 + Group: 'RightUpLeg', Weight: 0.269170 +Vertex 1936: +Vertex groups: 4 + Group: 'Hips', Weight: 0.180564 + Group: 'Spine', Weight: 0.363174 + Group: 'Spine1', Weight: 0.061177 + Group: 'RightUpLeg', Weight: 0.379507 +Vertex 1937: +Vertex groups: 4 + Group: 'Hips', Weight: 0.080770 + Group: 'Spine', Weight: 0.449590 + Group: 'Spine1', Weight: 0.078737 + Group: 'RightUpLeg', Weight: 0.376265 +Vertex 1938: +Vertex groups: 4 + Group: 'Hips', Weight: 0.043905 + Group: 'Spine', Weight: 0.488432 + Group: 'Spine1', Weight: 0.088427 + Group: 'RightUpLeg', Weight: 0.360658 +Vertex 1939: +Vertex groups: 4 + Group: 'Hips', Weight: 0.005260 + Group: 'Spine', Weight: 0.538589 + Group: 'Spine1', Weight: 0.086167 + Group: 'RightUpLeg', Weight: 0.330755 +Vertex 1940: +Vertex groups: 5 + Group: 'Hips', Weight: 0.019078 + Group: 'Spine', Weight: 0.777808 + Group: 'Spine1', Weight: 0.065765 + Group: 'LeftUpLeg', Weight: 0.001327 + Group: 'RightUpLeg', Weight: 0.090410 +Vertex 1941: +Vertex groups: 4 + Group: 'Hips', Weight: 0.009394 + Group: 'Spine', Weight: 0.703149 + Group: 'Spine1', Weight: 0.076485 + Group: 'RightUpLeg', Weight: 0.166591 +Vertex 1942: +Vertex groups: 4 + Group: 'Hips', Weight: 0.002186 + Group: 'Spine', Weight: 0.629459 + Group: 'Spine1', Weight: 0.084536 + Group: 'RightUpLeg', Weight: 0.239777 +Vertex 1943: +Vertex groups: 3 + Group: 'Hips', Weight: 0.421919 + Group: 'LeftUpLeg', Weight: 0.204857 + Group: 'RightUpLeg', Weight: 0.367798 +Vertex 1944: +Vertex groups: 3 + Group: 'Hips', Weight: 0.273323 + Group: 'LeftUpLeg', Weight: 0.232946 + Group: 'RightUpLeg', Weight: 0.487832 +Vertex 1945: +Vertex groups: 3 + Group: 'Hips', Weight: 0.088857 + Group: 'LeftUpLeg', Weight: 0.025934 + Group: 'RightUpLeg', Weight: 0.867738 +Vertex 1946: +Vertex groups: 3 + Group: 'Hips', Weight: 0.074913 + Group: 'LeftUpLeg', Weight: 0.000473 + Group: 'RightUpLeg', Weight: 0.894860 +Vertex 1947: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.959256 +Vertex 1948: +Vertex groups: 2 + Group: 'Hips', Weight: 0.029481 + Group: 'RightUpLeg', Weight: 0.930864 +Vertex 1949: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.979643 +Vertex 1950: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.990272 +Vertex 1951: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.990193 +Vertex 1952: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.986319 +Vertex 1953: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.973852 +Vertex 1954: +Vertex groups: 2 + Group: 'Hips', Weight: 0.005402 + Group: 'RightUpLeg', Weight: 0.961913 +Vertex 1955: +Vertex groups: 2 + Group: 'Hips', Weight: 0.050343 + Group: 'RightUpLeg', Weight: 0.931937 +Vertex 1956: +Vertex groups: 3 + Group: 'Hips', Weight: 0.338763 + Group: 'LeftUpLeg', Weight: 0.176265 + Group: 'RightUpLeg', Weight: 0.470300 +Vertex 1957: +Vertex groups: 4 + Group: 'Hips', Weight: 0.230803 + Group: 'Spine', Weight: 0.022351 + Group: 'LeftUpLeg', Weight: 0.116408 + Group: 'RightUpLeg', Weight: 0.613949 +Vertex 1958: +Vertex groups: 3 + Group: 'Hips', Weight: 0.240193 + Group: 'LeftUpLeg', Weight: 0.010930 + Group: 'RightUpLeg', Weight: 0.708119 +Vertex 1959: +Vertex groups: 2 + Group: 'Hips', Weight: 0.108514 + Group: 'RightUpLeg', Weight: 0.849998 +Vertex 1960: +Vertex groups: 3 + Group: 'Hips', Weight: 0.058339 + Group: 'Spine', Weight: 0.014400 + Group: 'RightUpLeg', Weight: 0.897941 +Vertex 1961: +Vertex groups: 3 + Group: 'Hips', Weight: 0.014231 + Group: 'Spine', Weight: 0.013177 + Group: 'RightUpLeg', Weight: 0.927428 +Vertex 1962: +Vertex groups: 2 + Group: 'Spine', Weight: 0.018202 + Group: 'RightUpLeg', Weight: 0.946733 +Vertex 1963: +Vertex groups: 2 + Group: 'Spine', Weight: 0.038387 + Group: 'RightUpLeg', Weight: 0.919774 +Vertex 1964: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.987070 +Vertex 1965: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.987759 +Vertex 1966: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.990163 +Vertex 1967: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.993221 +Vertex 1968: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.995676 +Vertex 1969: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.996089 +Vertex 1970: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.996513 +Vertex 1971: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.993907 +Vertex 1972: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.994883 +Vertex 1973: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.987831 +Vertex 1974: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.989769 +Vertex 1975: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.990446 +Vertex 1976: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.991466 +Vertex 1977: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.992578 +Vertex 1978: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.993162 +Vertex 1979: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.992284 +Vertex 1980: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.990343 +Vertex 1981: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.990696 +Vertex 1982: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.991804 +Vertex 1983: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.992530 +Vertex 1984: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.994005 +Vertex 1985: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.994898 +Vertex 1986: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.993887 +Vertex 1987: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.996137 +Vertex 1988: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.998155 +Vertex 1989: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.998374 +Vertex 1990: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.997985 +Vertex 1991: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.997030 +Vertex 1992: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.996162 +Vertex 1993: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.995290 +Vertex 1994: +Vertex groups: 4 + Group: 'Hips', Weight: 0.112711 + Group: 'Spine', Weight: 0.024540 + Group: 'LeftUpLeg', Weight: 0.054007 + Group: 'RightUpLeg', Weight: 0.793195 +Vertex 1995: +Vertex groups: 3 + Group: 'Hips', Weight: 0.053526 + Group: 'Spine', Weight: 0.045354 + Group: 'RightUpLeg', Weight: 0.870581 +Vertex 1996: +Vertex groups: 3 + Group: 'Hips', Weight: 0.293878 + Group: 'LeftUpLeg', Weight: 0.054582 + Group: 'RightUpLeg', Weight: 0.639411 +Vertex 1997: +Vertex groups: 3 + Group: 'Hips', Weight: 0.359976 + Group: 'LeftUpLeg', Weight: 0.098540 + Group: 'RightUpLeg', Weight: 0.533850 +Vertex 1998: +Vertex groups: 3 + Group: 'Hips', Weight: 0.065917 + Group: 'LeftUpLeg', Weight: 0.024926 + Group: 'RightUpLeg', Weight: 0.888755 +Vertex 1999: +Vertex groups: 3 + Group: 'Hips', Weight: 0.091578 + Group: 'LeftUpLeg', Weight: 0.057277 + Group: 'RightUpLeg', Weight: 0.843863 +Vertex 2000: +Vertex groups: 3 + Group: 'Hips', Weight: 0.080751 + Group: 'LeftUpLeg', Weight: 0.059747 + Group: 'RightUpLeg', Weight: 0.852906 +Vertex 2001: +Vertex groups: 3 + Group: 'Hips', Weight: 0.089949 + Group: 'LeftUpLeg', Weight: 0.052414 + Group: 'RightUpLeg', Weight: 0.851565 +Vertex 2002: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.669042 + Group: 'RightLeg', Weight: 0.329946 +Vertex 2003: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.673390 + Group: 'RightLeg', Weight: 0.325902 +Vertex 2004: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.289290 + Group: 'RightLeg', Weight: 0.710260 +Vertex 2005: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.284134 + Group: 'RightLeg', Weight: 0.715530 +Vertex 2006: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.782745 + Group: 'RightLeg', Weight: 0.215705 +Vertex 2007: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.787744 + Group: 'RightLeg', Weight: 0.211216 +Vertex 2008: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.652201 + Group: 'RightLeg', Weight: 0.347306 +Vertex 2009: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.327708 + Group: 'RightLeg', Weight: 0.672031 +Vertex 2010: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.744457 + Group: 'RightLeg', Weight: 0.254915 +Vertex 2011: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.564868 + Group: 'RightLeg', Weight: 0.434867 +Vertex 2012: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.391312 + Group: 'RightLeg', Weight: 0.608498 +Vertex 2013: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.694867 + Group: 'RightLeg', Weight: 0.304890 +Vertex 2014: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.377169 + Group: 'RightLeg', Weight: 0.622684 +Vertex 2015: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.698496 + Group: 'RightLeg', Weight: 0.301403 +Vertex 2016: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.685127 + Group: 'RightLeg', Weight: 0.314817 +Vertex 2017: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.687334 + Group: 'RightLeg', Weight: 0.312558 +Vertex 2018: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.659142 + Group: 'RightLeg', Weight: 0.340328 +Vertex 2019: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.681102 + Group: 'RightLeg', Weight: 0.318623 +Vertex 2020: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.148526 + Group: 'RightLeg', Weight: 0.851194 +Vertex 2021: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.128116 + Group: 'RightLeg', Weight: 0.871685 +Vertex 2022: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.098975 + Group: 'RightLeg', Weight: 0.900780 +Vertex 2023: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.086876 + Group: 'RightLeg', Weight: 0.912946 +Vertex 2024: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.148626 + Group: 'RightLeg', Weight: 0.851228 +Vertex 2025: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.093631 + Group: 'RightLeg', Weight: 0.906258 +Vertex 2026: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.229076 + Group: 'RightLeg', Weight: 0.770790 +Vertex 2027: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.147436 + Group: 'RightLeg', Weight: 0.852490 +Vertex 2028: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.171977 + Group: 'RightLeg', Weight: 0.827979 +Vertex 2029: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.208602 + Group: 'RightLeg', Weight: 0.791368 +Vertex 2030: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.217301 + Group: 'RightLeg', Weight: 0.782648 +Vertex 2031: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.305263 + Group: 'RightLeg', Weight: 0.694454 +Vertex 2032: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.270864 + Group: 'RightLeg', Weight: 0.728992 +Vertex 2033: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.649841 + Group: 'RightLeg', Weight: 0.348994 +Vertex 2034: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.336646 + Group: 'RightLeg', Weight: 0.662760 +Vertex 2035: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.754742 + Group: 'RightLeg', Weight: 0.243548 +Vertex 2036: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.590981 + Group: 'RightLeg', Weight: 0.407904 +Vertex 2037: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.381464 + Group: 'RightLeg', Weight: 0.617824 +Vertex 2038: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.667953 + Group: 'RightLeg', Weight: 0.330625 +Vertex 2039: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.393441 + Group: 'RightLeg', Weight: 0.605809 +Vertex 2040: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.562449 + Group: 'RightLeg', Weight: 0.436519 +Vertex 2041: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.607829 + Group: 'RightLeg', Weight: 0.390961 +Vertex 2042: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.617459 + Group: 'RightLeg', Weight: 0.381351 +Vertex 2043: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.651977 + Group: 'RightLeg', Weight: 0.347146 +Vertex 2044: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.172985 + Group: 'RightLeg', Weight: 0.826672 +Vertex 2045: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.126973 + Group: 'RightLeg', Weight: 0.872736 +Vertex 2046: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.253899 + Group: 'RightLeg', Weight: 0.745607 +Vertex 2047: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.227389 + Group: 'RightLeg', Weight: 0.772150 +Vertex 2048: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.305820 + Group: 'RightLeg', Weight: 0.693596 +Vertex 2049: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.342544 + Group: 'RightLeg', Weight: 0.656790 +Vertex 2050: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.363971 + Group: 'RightLeg', Weight: 0.635361 +Vertex 2051: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.335094 + Group: 'RightLeg', Weight: 0.664445 +Vertex 2052: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.903744 + Group: 'RightLeg', Weight: 0.095620 +Vertex 2053: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.847532 + Group: 'RightLeg', Weight: 0.150600 +Vertex 2054: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.873166 + Group: 'RightLeg', Weight: 0.123206 +Vertex 2055: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.919339 + Group: 'RightLeg', Weight: 0.078621 +Vertex 2056: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.809040 + Group: 'RightLeg', Weight: 0.188601 +Vertex 2057: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.810223 + Group: 'RightLeg', Weight: 0.187221 +Vertex 2058: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.921012 + Group: 'RightLeg', Weight: 0.078716 +Vertex 2059: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.880908 + Group: 'RightLeg', Weight: 0.117830 +Vertex 2060: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.812173 + Group: 'RightLeg', Weight: 0.185309 +Vertex 2061: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.903611 + Group: 'RightLeg', Weight: 0.092911 +Vertex 2062: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.837285 + Group: 'RightLeg', Weight: 0.159882 +Vertex 2063: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.922685 + Group: 'RightLeg', Weight: 0.077179 +Vertex 2064: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.916983 + Group: 'RightLeg', Weight: 0.082767 +Vertex 2065: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.920033 + Group: 'RightLeg', Weight: 0.078771 +Vertex 2066: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.910018 + Group: 'RightLeg', Weight: 0.089485 +Vertex 2067: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.957775 + Group: 'RightLeg', Weight: 0.020986 +Vertex 2068: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.952220 + Group: 'RightLeg', Weight: 0.025703 +Vertex 2069: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.937775 + Group: 'RightLeg', Weight: 0.053764 +Vertex 2070: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.985605 +Vertex 2071: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.985461 +Vertex 2072: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.981350 +Vertex 2073: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.979876 +Vertex 2074: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.972216 +Vertex 2075: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.943385 + Group: 'RightLeg', Weight: 0.046629 +Vertex 2076: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.969617 + Group: 'RightLeg', Weight: 0.001555 +Vertex 2077: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.938843 + Group: 'RightLeg', Weight: 0.051712 +Vertex 2078: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.962052 + Group: 'RightLeg', Weight: 0.009555 +Vertex 2079: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.942686 + Group: 'RightLeg', Weight: 0.045097 +Vertex 2080: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.987931 +Vertex 2081: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.976299 +Vertex 2082: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.986326 +Vertex 2083: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.066251 + Group: 'RightLeg', Weight: 0.933585 +Vertex 2084: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.021727 + Group: 'RightLeg', Weight: 0.963868 +Vertex 2085: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.016766 + Group: 'RightLeg', Weight: 0.966572 +Vertex 2086: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.979522 +Vertex 2087: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.078536 + Group: 'RightLeg', Weight: 0.921247 +Vertex 2088: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.008379 + Group: 'RightLeg', Weight: 0.970491 +Vertex 2089: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.052636 + Group: 'RightLeg', Weight: 0.947104 +Vertex 2090: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.066122 + Group: 'RightLeg', Weight: 0.933637 +Vertex 2091: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.991627 +Vertex 2092: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.052226 + Group: 'RightLeg', Weight: 0.947663 +Vertex 2093: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.037146 + Group: 'RightLeg', Weight: 0.956349 +Vertex 2094: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.989356 +Vertex 2095: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.983745 +Vertex 2096: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.989954 +Vertex 2097: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.074204 + Group: 'RightFoot', Weight: 0.863923 + Group: 'RightToeBase', Weight: 0.061869 +Vertex 2098: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.095506 + Group: 'RightFoot', Weight: 0.857677 + Group: 'RightToeBase', Weight: 0.043626 +Vertex 2099: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.080359 + Group: 'RightFoot', Weight: 0.885751 + Group: 'RightToeBase', Weight: 0.017774 +Vertex 2100: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.056054 + Group: 'RightFoot', Weight: 0.911752 + Group: 'RightToeBase', Weight: 0.014384 +Vertex 2101: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.011726 + Group: 'RightFoot', Weight: 0.948090 +Vertex 2102: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.026074 + Group: 'RightFoot', Weight: 0.955274 +Vertex 2103: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.140352 + Group: 'RightFoot', Weight: 0.854372 +Vertex 2104: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.241786 + Group: 'RightFoot', Weight: 0.752444 +Vertex 2105: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.222677 + Group: 'RightFoot', Weight: 0.772544 +Vertex 2106: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.064872 + Group: 'RightFoot', Weight: 0.884873 + Group: 'RightToeBase', Weight: 0.050251 +Vertex 2107: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.070153 + Group: 'RightFoot', Weight: 0.895300 + Group: 'RightToeBase', Weight: 0.019088 +Vertex 2108: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.078382 + Group: 'RightFoot', Weight: 0.897005 +Vertex 2109: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.098336 + Group: 'RightFoot', Weight: 0.884242 +Vertex 2110: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.126546 + Group: 'RightFoot', Weight: 0.860873 +Vertex 2111: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.184283 + Group: 'RightFoot', Weight: 0.807639 +Vertex 2112: +Vertex groups: 3 + Group: 'Hips', Weight: 0.367036 + Group: 'LeftUpLeg', Weight: 0.198609 + Group: 'RightUpLeg', Weight: 0.408199 +Vertex 2113: +Vertex groups: 4 + Group: 'Hips', Weight: 0.353205 + Group: 'Spine', Weight: 0.032459 + Group: 'LeftUpLeg', Weight: 0.180763 + Group: 'RightUpLeg', Weight: 0.421979 +Vertex 2114: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.997674 +Vertex 2115: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.992369 +Vertex 2116: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.997053 +Vertex 2117: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.994768 +Vertex 2118: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.203639 + Group: 'RightToeBase', Weight: 0.793221 +Vertex 2119: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.036834 + Group: 'RightToeBase', Weight: 0.956002 +Vertex 2120: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.976395 +Vertex 2121: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.975578 +Vertex 2122: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.085424 + Group: 'RightToeBase', Weight: 0.914327 +Vertex 2123: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.075967 + Group: 'RightToeBase', Weight: 0.923818 +Vertex 2124: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.237879 + Group: 'RightToeBase', Weight: 0.761564 +Vertex 2125: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.214618 + Group: 'RightToeBase', Weight: 0.784835 +Vertex 2126: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.911256 + Group: 'RightToeBase', Weight: 0.084567 +Vertex 2127: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.796190 + Group: 'RightToeBase', Weight: 0.199139 +Vertex 2128: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.007987 + Group: 'RightFoot', Weight: 0.941589 + Group: 'RightToeBase', Weight: 0.008835 +Vertex 2129: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.924170 + Group: 'RightToeBase', Weight: 0.055819 +Vertex 2130: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.050345 + Group: 'RightFoot', Weight: 0.927006 +Vertex 2131: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.015064 + Group: 'RightFoot', Weight: 0.934494 + Group: 'RightToeBase', Weight: 0.015949 +Vertex 2132: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.075257 + Group: 'RightFoot', Weight: 0.907937 +Vertex 2133: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.037951 + Group: 'RightFoot', Weight: 0.931254 +Vertex 2134: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.075816 + Group: 'RightFoot', Weight: 0.906556 +Vertex 2135: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.044715 + Group: 'RightFoot', Weight: 0.928227 +Vertex 2136: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.065750 + Group: 'RightFoot', Weight: 0.912722 +Vertex 2137: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.034150 + Group: 'RightFoot', Weight: 0.929021 + Group: 'RightToeBase', Weight: 0.007807 +Vertex 2138: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.049185 + Group: 'RightFoot', Weight: 0.921568 + Group: 'RightToeBase', Weight: 0.007678 +Vertex 2139: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.016734 + Group: 'RightFoot', Weight: 0.929363 + Group: 'RightToeBase', Weight: 0.024539 +Vertex 2140: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.028635 + Group: 'RightFoot', Weight: 0.922169 + Group: 'RightToeBase', Weight: 0.027026 +Vertex 2141: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.001399 + Group: 'RightFoot', Weight: 0.922623 + Group: 'RightToeBase', Weight: 0.051677 +Vertex 2142: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.903773 + Group: 'RightToeBase', Weight: 0.075498 +Vertex 2143: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.887536 + Group: 'RightToeBase', Weight: 0.098233 +Vertex 2144: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.644981 + Group: 'RightToeBase', Weight: 0.350473 +Vertex 2145: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.495213 + Group: 'RightToeBase', Weight: 0.503105 +Vertex 2146: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.843053 + Group: 'RightToeBase', Weight: 0.148255 +Vertex 2147: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.872582 + Group: 'RightToeBase', Weight: 0.113109 +Vertex 2148: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.314619 + Group: 'RightToeBase', Weight: 0.682784 +Vertex 2149: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.222212 + Group: 'RightToeBase', Weight: 0.776822 +Vertex 2150: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.148505 + Group: 'RightToeBase', Weight: 0.850139 +Vertex 2151: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.129279 + Group: 'RightToeBase', Weight: 0.870059 +Vertex 2152: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.062794 + Group: 'RightToeBase', Weight: 0.936626 +Vertex 2153: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.060320 + Group: 'RightToeBase', Weight: 0.939306 +Vertex 2154: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.003286 + Group: 'RightToeBase', Weight: 0.973098 +Vertex 2155: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.003382 + Group: 'RightToeBase', Weight: 0.973117 +Vertex 2156: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.989706 +Vertex 2157: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.988336 +Vertex 2158: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.144499 + Group: 'RightToeBase', Weight: 0.853966 +Vertex 2159: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.141080 + Group: 'RightToeBase', Weight: 0.856891 +Vertex 2160: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.024743 + Group: 'RightFoot', Weight: 0.911295 + Group: 'RightToeBase', Weight: 0.051332 +Vertex 2161: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.997922 +Vertex 2162: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.997938 +Vertex 2163: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.892739 + Group: 'RightToeBase', Weight: 0.084078 +Vertex 2164: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.699526 + Group: 'RightToeBase', Weight: 0.290916 +Vertex 2165: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.353200 + Group: 'RightToeBase', Weight: 0.641954 +Vertex 2166: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.157719 + Group: 'RightToeBase', Weight: 0.840235 +Vertex 2167: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.059939 + Group: 'RightToeBase', Weight: 0.939372 +Vertex 2168: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.007599 + Group: 'RightToeBase', Weight: 0.970865 +Vertex 2169: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.096197 + Group: 'RightToeBase', Weight: 0.902415 +Vertex 2170: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.987656 +Vertex 2171: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.996476 +Vertex 2172: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.988566 +Vertex 2173: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.983268 +Vertex 2174: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.020440 + Group: 'RightToeBase', Weight: 0.964615 +Vertex 2175: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.115006 + Group: 'RightToeBase', Weight: 0.884582 +Vertex 2176: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.273572 + Group: 'RightToeBase', Weight: 0.725697 +Vertex 2177: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.939661 + Group: 'RightToeBase', Weight: 0.055586 +Vertex 2178: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.016374 + Group: 'RightFoot', Weight: 0.955267 +Vertex 2179: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.093308 + Group: 'RightFoot', Weight: 0.895919 +Vertex 2180: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.118549 + Group: 'RightFoot', Weight: 0.870536 +Vertex 2181: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.134357 + Group: 'RightFoot', Weight: 0.854789 +Vertex 2182: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.113377 + Group: 'RightFoot', Weight: 0.873447 +Vertex 2183: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.083078 + Group: 'RightFoot', Weight: 0.898357 +Vertex 2184: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.062214 + Group: 'RightFoot', Weight: 0.912004 + Group: 'RightToeBase', Weight: 0.001562 +Vertex 2185: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.996806 +Vertex 2186: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.030912 + Group: 'RightFoot', Weight: 0.868216 + Group: 'RightToeBase', Weight: 0.091327 +Vertex 2187: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.006684 + Group: 'RightFoot', Weight: 0.900478 + Group: 'RightToeBase', Weight: 0.071179 +Vertex 2188: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.046433 + Group: 'RightToeBase', Weight: 0.951105 +Vertex 2189: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.050631 + Group: 'RightToeBase', Weight: 0.948835 +Vertex 2190: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.994410 +Vertex 2191: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.994239 +Vertex 2192: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.979810 +Vertex 2193: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.336081 + Group: 'RightToeBase', Weight: 0.658739 +Vertex 2194: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.332378 + Group: 'RightToeBase', Weight: 0.663794 +Vertex 2195: +Vertex groups: 3 + Group: 'Hips', Weight: 0.586404 + Group: 'LeftUpLeg', Weight: 0.107046 + Group: 'RightUpLeg', Weight: 0.293542 +Vertex 2196: +Vertex groups: 2 + Group: 'Spine', Weight: 0.010410 + Group: 'RightUpLeg', Weight: 0.945983 +Vertex 2197: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.985563 +Vertex 2198: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.987460 +Vertex 2199: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.012847 + Group: 'RightToeBase', Weight: 0.968311 +Vertex 2200: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.070836 + Group: 'RightToeBase', Weight: 0.928552 +Vertex 2201: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.290325 + Group: 'RightToeBase', Weight: 0.707198 +Vertex 2202: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.909170 + Group: 'RightToeBase', Weight: 0.067937 +Vertex 2203: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.026072 + Group: 'RightFoot', Weight: 0.846200 + Group: 'RightToeBase', Weight: 0.115762 +Vertex 2204: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.258643 + Group: 'RightToeBase', Weight: 0.737224 +Vertex 2205: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.045181 + Group: 'RightToeBase', Weight: 0.951735 +Vertex 2206: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.975358 +Vertex 2207: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.036056 + Group: 'RightToeBase', Weight: 0.956727 +Vertex 2208: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.246950 + Group: 'RightToeBase', Weight: 0.752090 +Vertex 2209: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.934067 + Group: 'RightToeBase', Weight: 0.058578 +Vertex 2210: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.137494 + Group: 'RightToeBase', Weight: 0.861333 +Vertex 2211: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.113778 + Group: 'RightToeBase', Weight: 0.884510 +Vertex 2212: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.113028 + Group: 'RightToeBase', Weight: 0.886433 +Vertex 2213: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.417375 + Group: 'RightToeBase', Weight: 0.575481 +Vertex 2214: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.762266 + Group: 'RightToeBase', Weight: 0.236245 +Vertex 2215: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.587199 + Group: 'RightToeBase', Weight: 0.411189 +Vertex 2216: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.721479 + Group: 'RightToeBase', Weight: 0.277041 +Vertex 2217: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.718357 + Group: 'RightToeBase', Weight: 0.273286 +Vertex 2218: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.684447 + Group: 'RightToeBase', Weight: 0.303862 +Vertex 2219: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.684865 + Group: 'RightToeBase', Weight: 0.309358 +Vertex 2220: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.546616 + Group: 'RightToeBase', Weight: 0.444209 +Vertex 2221: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.712745 + Group: 'RightToeBase', Weight: 0.284642 +Vertex 2222: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.741967 + Group: 'RightToeBase', Weight: 0.241379 +Vertex 2223: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.008248 + Group: 'RightFoot', Weight: 0.859907 + Group: 'RightToeBase', Weight: 0.110967 +Vertex 2224: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.738496 + Group: 'RightToeBase', Weight: 0.257174 +Vertex 2225: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.794679 + Group: 'RightToeBase', Weight: 0.197265 +Vertex 2226: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.841531 + Group: 'RightToeBase', Weight: 0.142140 +Vertex 2227: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.219432 + Group: 'RightFoot', Weight: 0.765530 +Vertex 2228: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.193854 + Group: 'RightFoot', Weight: 0.793764 +Vertex 2229: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.288708 + Group: 'RightFoot', Weight: 0.706411 +Vertex 2230: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.228242 + Group: 'RightFoot', Weight: 0.763575 +Vertex 2231: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.155986 + Group: 'RightFoot', Weight: 0.834630 +Vertex 2232: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.120757 + Group: 'RightFoot', Weight: 0.874028 +Vertex 2233: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.098418 + Group: 'RightFoot', Weight: 0.900611 +Vertex 2234: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.436005 + Group: 'RightFoot', Weight: 0.563589 +Vertex 2235: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.472042 + Group: 'RightFoot', Weight: 0.527378 +Vertex 2236: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.197604 + Group: 'RightFoot', Weight: 0.784562 +Vertex 2237: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.196950 + Group: 'RightFoot', Weight: 0.791466 +Vertex 2238: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.432647 + Group: 'RightFoot', Weight: 0.565311 +Vertex 2239: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.399369 + Group: 'RightFoot', Weight: 0.597717 +Vertex 2240: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.466617 + Group: 'RightFoot', Weight: 0.532207 +Vertex 2241: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.178382 + Group: 'RightFoot', Weight: 0.806169 +Vertex 2242: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.911614 + Group: 'RightToeBase', Weight: 0.067991 +Vertex 2243: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.012611 + Group: 'RightFoot', Weight: 0.918126 + Group: 'RightToeBase', Weight: 0.050568 +Vertex 2244: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.050317 + Group: 'RightFoot', Weight: 0.916019 + Group: 'RightToeBase', Weight: 0.017324 +Vertex 2245: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.868312 + Group: 'RightToeBase', Weight: 0.123315 +Vertex 2246: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.962613 + Group: 'RightToeBase', Weight: 0.004607 +Vertex 2247: +Vertex groups: 1 + Group: 'RightFoot', Weight: 0.972301 +Vertex 2248: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.008037 + Group: 'RightFoot', Weight: 0.963975 +Vertex 2249: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.998577 +Vertex 2250: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.998205 +Vertex 2251: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.991711 +Vertex 2252: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.974952 +Vertex 2253: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.082571 + Group: 'RightToeBase', Weight: 0.917199 +Vertex 2254: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.222109 + Group: 'RightToeBase', Weight: 0.777331 +Vertex 2255: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.684778 + Group: 'RightToeBase', Weight: 0.313450 +Vertex 2256: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.831618 + Group: 'RightToeBase', Weight: 0.163711 +Vertex 2257: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.890335 + Group: 'RightToeBase', Weight: 0.099333 +Vertex 2258: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.925534 + Group: 'RightToeBase', Weight: 0.054145 +Vertex 2259: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.019641 + Group: 'RightFoot', Weight: 0.934076 + Group: 'RightToeBase', Weight: 0.012207 +Vertex 2260: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.051066 + Group: 'RightFoot', Weight: 0.926619 +Vertex 2261: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.054221 + Group: 'RightFoot', Weight: 0.923651 +Vertex 2262: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.040787 + Group: 'RightFoot', Weight: 0.927457 + Group: 'RightToeBase', Weight: 0.004298 +Vertex 2263: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.020096 + Group: 'RightFoot', Weight: 0.928626 + Group: 'RightToeBase', Weight: 0.022651 +Vertex 2264: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.004560 + Group: 'RightFoot', Weight: 0.922588 + Group: 'RightToeBase', Weight: 0.050132 +Vertex 2265: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.910002 + Group: 'RightToeBase', Weight: 0.068663 +Vertex 2266: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.888715 + Group: 'RightToeBase', Weight: 0.095876 +Vertex 2267: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.757992 + Group: 'RightToeBase', Weight: 0.236766 +Vertex 2268: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.533022 + Group: 'RightToeBase', Weight: 0.464560 +Vertex 2269: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.842785 + Group: 'RightToeBase', Weight: 0.147778 +Vertex 2270: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.276228 + Group: 'RightToeBase', Weight: 0.722305 +Vertex 2271: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.137593 + Group: 'RightToeBase', Weight: 0.861576 +Vertex 2272: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.061538 + Group: 'RightToeBase', Weight: 0.938034 +Vertex 2273: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.004127 + Group: 'RightToeBase', Weight: 0.972728 +Vertex 2274: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.989172 +Vertex 2275: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.963632 +Vertex 2276: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.957171 +Vertex 2277: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.949781 +Vertex 2278: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.992291 +Vertex 2279: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.994741 +Vertex 2280: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.992449 +Vertex 2281: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.985682 +Vertex 2282: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.980354 +Vertex 2283: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.951260 +Vertex 2284: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.975555 +Vertex 2285: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.948332 +Vertex 2286: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.967322 +Vertex 2287: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.950924 +Vertex 2288: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.995384 +Vertex 2289: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.986203 +Vertex 2290: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.098190 + Group: 'RightFoot', Weight: 0.868082 + Group: 'RightToeBase', Weight: 0.017446 +Vertex 2291: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.107765 + Group: 'RightFoot', Weight: 0.868400 +Vertex 2292: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.108725 + Group: 'RightFoot', Weight: 0.866127 + Group: 'RightToeBase', Weight: 0.000287 +Vertex 2293: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.078748 + Group: 'RightFoot', Weight: 0.898110 +Vertex 2294: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.114797 + Group: 'RightFoot', Weight: 0.841458 + Group: 'RightToeBase', Weight: 0.037478 +Vertex 2295: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.762831 + Group: 'RightToeBase', Weight: 0.216846 +Vertex 2296: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.106985 + Group: 'RightFoot', Weight: 0.874567 +Vertex 2297: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.128677 + Group: 'RightFoot', Weight: 0.857662 +Vertex 2298: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.166600 + Group: 'RightFoot', Weight: 0.823647 +Vertex 2299: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.236024 + Group: 'RightFoot', Weight: 0.758029 +Vertex 2300: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.334896 + Group: 'RightFoot', Weight: 0.661402 +Vertex 2301: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.336469 + Group: 'RightFoot', Weight: 0.660750 +Vertex 2302: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.171886 + Group: 'RightFoot', Weight: 0.824958 +Vertex 2303: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.131091 + Group: 'RightFoot', Weight: 0.835847 + Group: 'RightToeBase', Weight: 0.016113 +Vertex 2304: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.038756 + Group: 'RightFoot', Weight: 0.951205 +Vertex 2305: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.048461 + Group: 'RightFoot', Weight: 0.936100 +Vertex 2306: +Vertex groups: 4 + Group: 'Hips', Weight: 0.609578 + Group: 'Spine', Weight: 0.030201 + Group: 'LeftUpLeg', Weight: 0.063722 + Group: 'RightUpLeg', Weight: 0.279054 +Vertex 2307: +Vertex groups: 3 + Group: 'Hips', Weight: 0.632467 + Group: 'LeftUpLeg', Weight: 0.088598 + Group: 'RightUpLeg', Weight: 0.256588 +Vertex 2308: +Vertex groups: 3 + Group: 'Hips', Weight: 0.538458 + Group: 'LeftUpLeg', Weight: 0.147190 + Group: 'RightUpLeg', Weight: 0.306709 +Vertex 2309: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.814043 + Group: 'RightToeBase', Weight: 0.163427 +Vertex 2310: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.888922 + Group: 'RightToeBase', Weight: 0.108152 +Vertex 2311: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.846086 + Group: 'RightToeBase', Weight: 0.141862 +Vertex 2312: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.859982 + Group: 'RightToeBase', Weight: 0.122155 +Vertex 2313: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.872462 + Group: 'RightToeBase', Weight: 0.123106 +Vertex 2314: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.881324 + Group: 'RightToeBase', Weight: 0.115768 +Vertex 2315: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.941314 + Group: 'RightFoot', Weight: 0.058149 +Vertex 2316: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.903961 + Group: 'RightFoot', Weight: 0.094464 +Vertex 2317: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.909246 + Group: 'RightFoot', Weight: 0.089508 +Vertex 2318: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.921086 + Group: 'RightFoot', Weight: 0.077867 +Vertex 2319: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.951932 + Group: 'RightFoot', Weight: 0.045691 +Vertex 2320: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.956458 + Group: 'RightFoot', Weight: 0.036821 +Vertex 2321: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.879839 + Group: 'RightFoot', Weight: 0.117844 +Vertex 2322: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.898473 + Group: 'RightFoot', Weight: 0.099947 +Vertex 2323: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.933492 + Group: 'RightFoot', Weight: 0.065898 +Vertex 2324: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.896055 + Group: 'RightFoot', Weight: 0.102031 +Vertex 2325: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.918864 + Group: 'RightFoot', Weight: 0.080235 +Vertex 2326: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.961386 + Group: 'RightFoot', Weight: 0.027013 +Vertex 2327: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.938904 + Group: 'RightFoot', Weight: 0.060690 +Vertex 2328: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.948228 + Group: 'RightFoot', Weight: 0.051530 +Vertex 2329: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.884974 + Group: 'RightFoot', Weight: 0.112980 +Vertex 2330: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.943323 + Group: 'RightToeBase', Weight: 0.040643 +Vertex 2331: +Vertex groups: 1 + Group: 'RightFoot', Weight: 0.972830 +Vertex 2332: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.106781 + Group: 'RightFoot', Weight: 0.889705 +Vertex 2333: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.063433 + Group: 'RightFoot', Weight: 0.922211 +Vertex 2334: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.095509 + Group: 'RightFoot', Weight: 0.898800 +Vertex 2335: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.062523 + Group: 'RightFoot', Weight: 0.935838 +Vertex 2336: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.055526 + Group: 'RightFoot', Weight: 0.940127 +Vertex 2337: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.167904 + Group: 'RightFoot', Weight: 0.830419 +Vertex 2338: +Vertex groups: 4 + Group: 'Hips', Weight: 0.584804 + Group: 'Spine', Weight: 0.124277 + Group: 'LeftUpLeg', Weight: 0.050418 + Group: 'RightUpLeg', Weight: 0.217475 +Vertex 2339: +Vertex groups: 4 + Group: 'Hips', Weight: 0.352461 + Group: 'Spine', Weight: 0.185197 + Group: 'Spine1', Weight: 0.011718 + Group: 'RightUpLeg', Weight: 0.410114 +Vertex 2340: +Vertex groups: 4 + Group: 'Hips', Weight: 0.160299 + Group: 'Spine', Weight: 0.226150 + Group: 'Spine1', Weight: 0.026067 + Group: 'RightUpLeg', Weight: 0.562716 +Vertex 2341: +Vertex groups: 4 + Group: 'Hips', Weight: 0.064560 + Group: 'Spine', Weight: 0.277187 + Group: 'Spine1', Weight: 0.044935 + Group: 'RightUpLeg', Weight: 0.600343 +Vertex 2342: +Vertex groups: 4 + Group: 'Hips', Weight: 0.029006 + Group: 'Spine', Weight: 0.279419 + Group: 'Spine1', Weight: 0.042230 + Group: 'RightUpLeg', Weight: 0.624676 +Vertex 2343: +Vertex groups: 4 + Group: 'Hips', Weight: 0.004782 + Group: 'Spine', Weight: 0.280634 + Group: 'Spine1', Weight: 0.026187 + Group: 'RightUpLeg', Weight: 0.642152 +Vertex 2344: +Vertex groups: 3 + Group: 'Hips', Weight: 0.037560 + Group: 'Spine', Weight: 0.214354 + Group: 'RightUpLeg', Weight: 0.702359 +Vertex 2345: +Vertex groups: 4 + Group: 'Hips', Weight: 0.095776 + Group: 'Spine', Weight: 0.184191 + Group: 'LeftUpLeg', Weight: 0.029492 + Group: 'RightUpLeg', Weight: 0.666843 +Vertex 2346: +Vertex groups: 4 + Group: 'Hips', Weight: 0.173885 + Group: 'Spine', Weight: 0.129428 + Group: 'LeftUpLeg', Weight: 0.073480 + Group: 'RightUpLeg', Weight: 0.614806 +Vertex 2347: +Vertex groups: 4 + Group: 'Hips', Weight: 0.250851 + Group: 'Spine', Weight: 0.111852 + Group: 'LeftUpLeg', Weight: 0.109632 + Group: 'RightUpLeg', Weight: 0.521128 +Vertex 2348: +Vertex groups: 4 + Group: 'Hips', Weight: 0.338962 + Group: 'Spine', Weight: 0.137265 + Group: 'LeftUpLeg', Weight: 0.144829 + Group: 'RightUpLeg', Weight: 0.371729 +Vertex 2349: +Vertex groups: 4 + Group: 'Hips', Weight: 0.296269 + Group: 'Spine', Weight: 0.269758 + Group: 'LeftUpLeg', Weight: 0.110463 + Group: 'RightUpLeg', Weight: 0.310641 +Vertex 2350: +Vertex groups: 4 + Group: 'Hips', Weight: 0.118864 + Group: 'Spine', Weight: 0.296291 + Group: 'LeftUpLeg', Weight: 0.047934 + Group: 'RightUpLeg', Weight: 0.517351 +Vertex 2351: +Vertex groups: 4 + Group: 'Hips', Weight: 0.050592 + Group: 'Spine', Weight: 0.347420 + Group: 'Spine1', Weight: 0.009201 + Group: 'RightUpLeg', Weight: 0.547829 +Vertex 2352: +Vertex groups: 4 + Group: 'Hips', Weight: 0.347535 + Group: 'Spine', Weight: 0.071618 + Group: 'LeftUpLeg', Weight: 0.166795 + Group: 'RightUpLeg', Weight: 0.409851 +Vertex 2353: +Vertex groups: 4 + Group: 'Hips', Weight: 0.257734 + Group: 'Spine', Weight: 0.063870 + Group: 'LeftUpLeg', Weight: 0.123063 + Group: 'RightUpLeg', Weight: 0.551361 +Vertex 2354: +Vertex groups: 4 + Group: 'Hips', Weight: 0.155633 + Group: 'Spine', Weight: 0.067275 + Group: 'LeftUpLeg', Weight: 0.070622 + Group: 'RightUpLeg', Weight: 0.702027 +Vertex 2355: +Vertex groups: 4 + Group: 'Hips', Weight: 0.068973 + Group: 'Spine', Weight: 0.084240 + Group: 'LeftUpLeg', Weight: 0.010309 + Group: 'RightUpLeg', Weight: 0.809919 +Vertex 2356: +Vertex groups: 3 + Group: 'Hips', Weight: 0.010883 + Group: 'Spine', Weight: 0.098161 + Group: 'RightUpLeg', Weight: 0.848786 +Vertex 2357: +Vertex groups: 2 + Group: 'Spine', Weight: 0.097818 + Group: 'RightUpLeg', Weight: 0.864526 +Vertex 2358: +Vertex groups: 3 + Group: 'Hips', Weight: 0.006384 + Group: 'Spine', Weight: 0.099370 + Group: 'RightUpLeg', Weight: 0.851577 +Vertex 2359: +Vertex groups: 3 + Group: 'Hips', Weight: 0.052650 + Group: 'Spine', Weight: 0.101581 + Group: 'RightUpLeg', Weight: 0.822948 +Vertex 2360: +Vertex groups: 3 + Group: 'Hips', Weight: 0.104772 + Group: 'Spine', Weight: 0.097027 + Group: 'RightUpLeg', Weight: 0.772918 +Vertex 2361: +Vertex groups: 3 + Group: 'Hips', Weight: 0.212163 + Group: 'Spine', Weight: 0.085184 + Group: 'RightUpLeg', Weight: 0.671049 +Vertex 2362: +Vertex groups: 4 + Group: 'Hips', Weight: 0.638800 + Group: 'Spine', Weight: 0.081643 + Group: 'LeftUpLeg', Weight: 0.070492 + Group: 'RightUpLeg', Weight: 0.193887 +Vertex 2363: +Vertex groups: 4 + Group: 'Hips', Weight: 0.327613 + Group: 'Spine', Weight: 0.062101 + Group: 'LeftUpLeg', Weight: 0.012959 + Group: 'RightUpLeg', Weight: 0.567290 +Vertex 2364: +Vertex groups: 3 + Group: 'Hips', Weight: 0.472133 + Group: 'LeftUpLeg', Weight: 0.053494 + Group: 'RightUpLeg', Weight: 0.447721 +Vertex 2365: +Vertex groups: 3 + Group: 'Hips', Weight: 0.497880 + Group: 'LeftUpLeg', Weight: 0.070852 + Group: 'RightUpLeg', Weight: 0.414115 +Vertex 2366: +Vertex groups: 3 + Group: 'Hips', Weight: 0.509408 + Group: 'LeftUpLeg', Weight: 0.097511 + Group: 'RightUpLeg', Weight: 0.381721 +Vertex 2367: +Vertex groups: 4 + Group: 'Hips', Weight: 0.012032 + Group: 'Spine', Weight: 0.526011 + Group: 'Spine1', Weight: 0.057514 + Group: 'RightUpLeg', Weight: 0.366639 +Vertex 2368: +Vertex groups: 4 + Group: 'Hips', Weight: 0.032175 + Group: 'Spine', Weight: 0.648202 + Group: 'Spine1', Weight: 0.054027 + Group: 'RightUpLeg', Weight: 0.229941 +Vertex 2369: +Vertex groups: 5 + Group: 'Hips', Weight: 0.062605 + Group: 'Spine', Weight: 0.546292 + Group: 'Spine1', Weight: 0.022860 + Group: 'LeftUpLeg', Weight: 0.008729 + Group: 'RightUpLeg', Weight: 0.321438 +Vertex 2370: +Vertex groups: 5 + Group: 'Hips', Weight: 0.113389 + Group: 'Spine', Weight: 0.592353 + Group: 'Spine1', Weight: 0.002173 + Group: 'LeftUpLeg', Weight: 0.053955 + Group: 'RightUpLeg', Weight: 0.211672 +Vertex 2371: +Vertex groups: 4 + Group: 'Hips', Weight: 0.165524 + Group: 'Spine', Weight: 0.261504 + Group: 'LeftUpLeg', Weight: 0.066317 + Group: 'RightUpLeg', Weight: 0.491647 +Vertex 2372: +Vertex groups: 4 + Group: 'Hips', Weight: 0.258597 + Group: 'Spine', Weight: 0.385429 + Group: 'LeftUpLeg', Weight: 0.097325 + Group: 'RightUpLeg', Weight: 0.241003 +Vertex 2373: +Vertex groups: 5 + Group: 'Hips', Weight: 0.062573 + Group: 'Spine', Weight: 0.711397 + Group: 'Spine1', Weight: 0.033414 + Group: 'LeftUpLeg', Weight: 0.025588 + Group: 'RightUpLeg', Weight: 0.142625 +Vertex 2374: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.977589 +Vertex 2375: +Vertex groups: 3 + Group: 'Hips', Weight: 0.189329 + Group: 'LeftUpLeg', Weight: 0.108847 + Group: 'RightUpLeg', Weight: 0.691938 +Vertex 2376: +Vertex groups: 3 + Group: 'Hips', Weight: 0.208329 + Group: 'LeftUpLeg', Weight: 0.114081 + Group: 'RightUpLeg', Weight: 0.672588 +Vertex 2377: +Vertex groups: 3 + Group: 'Hips', Weight: 0.080979 + Group: 'LeftUpLeg', Weight: 0.031276 + Group: 'RightUpLeg', Weight: 0.857959 +Vertex 2378: +Vertex groups: 2 + Group: 'Hips', Weight: 0.031543 + Group: 'RightUpLeg', Weight: 0.917432 +Vertex 2379: +Vertex groups: 3 + Group: 'Hips', Weight: 0.153929 + Group: 'LeftUpLeg', Weight: 0.125762 + Group: 'RightUpLeg', Weight: 0.714513 +Vertex 2380: +Vertex groups: 2 + Group: 'Hips', Weight: 0.060092 + Group: 'RightUpLeg', Weight: 0.919759 +Vertex 2381: +Vertex groups: 3 + Group: 'Hips', Weight: 0.159826 + Group: 'LeftUpLeg', Weight: 0.032734 + Group: 'RightUpLeg', Weight: 0.792658 +Vertex 2382: +Vertex groups: 3 + Group: 'Hips', Weight: 0.192139 + Group: 'LeftUpLeg', Weight: 0.069147 + Group: 'RightUpLeg', Weight: 0.733504 +Vertex 2383: +Vertex groups: 3 + Group: 'Hips', Weight: 0.162533 + Group: 'LeftUpLeg', Weight: 0.084245 + Group: 'RightUpLeg', Weight: 0.733284 +Vertex 2384: +Vertex groups: 2 + Group: 'Hips', Weight: 0.020468 + Group: 'RightUpLeg', Weight: 0.946887 +Vertex 2385: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.957433 +Vertex 2386: +Vertex groups: 2 + Group: 'Hips', Weight: 0.110281 + Group: 'RightUpLeg', Weight: 0.860677 +Vertex 2387: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.968320 +Vertex 2388: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.977483 +Vertex 2389: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.978046 +Vertex 2390: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.982243 +Vertex 2391: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.984852 +Vertex 2392: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.985223 +Vertex 2393: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.980779 +Vertex 2394: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.974014 +Vertex 2395: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.962933 + Group: 'RightHand', Weight: 0.019514 +Vertex 2396: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.966115 + Group: 'RightHand', Weight: 0.013497 +Vertex 2397: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.965400 + Group: 'RightHand', Weight: 0.015343 +Vertex 2398: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.966983 + Group: 'RightHand', Weight: 0.012962 +Vertex 2399: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.976181 +Vertex 2400: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.978163 +Vertex 2401: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.978473 +Vertex 2402: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.084902 + Group: 'RightForeArm', Weight: 0.914688 +Vertex 2403: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.038218 + Group: 'RightForeArm', Weight: 0.955646 +Vertex 2404: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.041244 + Group: 'RightForeArm', Weight: 0.954153 +Vertex 2405: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.114389 + Group: 'RightForeArm', Weight: 0.885496 +Vertex 2406: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.242825 + Group: 'RightForeArm', Weight: 0.756971 +Vertex 2407: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.168059 + Group: 'RightForeArm', Weight: 0.831712 +Vertex 2408: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.072315 + Group: 'RightForeArm', Weight: 0.927385 +Vertex 2409: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.038998 + Group: 'RightForeArm', Weight: 0.955235 +Vertex 2410: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.976664 +Vertex 2411: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.055620 + Group: 'RightForeArm', Weight: 0.944135 +Vertex 2412: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.000747 + Group: 'RightForeArm', Weight: 0.974138 +Vertex 2413: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.033684 + Group: 'RightForeArm', Weight: 0.957562 +Vertex 2414: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.037073 + Group: 'RightForeArm', Weight: 0.956192 +Vertex 2415: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.103643 + Group: 'RightArm', Weight: 0.866502 +Vertex 2416: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.112082 + Group: 'RightArm', Weight: 0.855144 +Vertex 2417: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.973968 +Vertex 2418: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.025836 + Group: 'RightArm', Weight: 0.954140 +Vertex 2419: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991109 +Vertex 2420: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.098133 + Group: 'RightArm', Weight: 0.878954 +Vertex 2421: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.119335 + Group: 'RightArm', Weight: 0.861288 +Vertex 2422: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.094725 + Group: 'RightArm', Weight: 0.878906 +Vertex 2423: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.097832 + Group: 'RightArm', Weight: 0.879683 +Vertex 2424: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.983958 +Vertex 2425: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.989940 +Vertex 2426: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.989252 +Vertex 2427: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.975305 +Vertex 2428: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.801330 + Group: 'RightForeArm', Weight: 0.198284 +Vertex 2429: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.815796 + Group: 'RightForeArm', Weight: 0.184114 +Vertex 2430: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.783525 + Group: 'RightForeArm', Weight: 0.216446 +Vertex 2431: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.805311 + Group: 'RightForeArm', Weight: 0.194379 +Vertex 2432: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.839379 + Group: 'RightForeArm', Weight: 0.160587 +Vertex 2433: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.858916 + Group: 'RightForeArm', Weight: 0.141002 +Vertex 2434: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.827417 + Group: 'RightForeArm', Weight: 0.172523 +Vertex 2435: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.811600 + Group: 'RightForeArm', Weight: 0.188028 +Vertex 2436: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.815533 + Group: 'RightForeArm', Weight: 0.184335 +Vertex 2437: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.812544 + Group: 'RightForeArm', Weight: 0.187249 +Vertex 2438: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.607470 + Group: 'RightForeArm', Weight: 0.392492 +Vertex 2439: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.761655 + Group: 'RightForeArm', Weight: 0.238207 +Vertex 2440: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.918247 + Group: 'RightForeArm', Weight: 0.081486 +Vertex 2441: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.977092 +Vertex 2442: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991370 +Vertex 2443: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.987444 +Vertex 2444: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.997854 +Vertex 2445: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.981088 +Vertex 2446: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.985092 +Vertex 2447: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.979809 +Vertex 2448: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.984710 +Vertex 2449: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.990725 +Vertex 2450: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.994445 +Vertex 2451: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.996634 +Vertex 2452: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.998772 +Vertex 2453: +Vertex groups: 1 + Group: 'RightArm', Weight: 1.000318 +Vertex 2454: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.848196 + Group: 'RightForeArm', Weight: 0.151764 +Vertex 2455: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.212949 + Group: 'RightForeArm', Weight: 0.786994 +Vertex 2456: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.856169 + Group: 'RightForeArm', Weight: 0.143527 +Vertex 2457: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.453469 + Group: 'RightForeArm', Weight: 0.546424 +Vertex 2458: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.033016 + Group: 'RightForeArm', Weight: 0.958253 +Vertex 2459: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.091797 + Group: 'RightForeArm', Weight: 0.907826 +Vertex 2460: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.113142 + Group: 'RightForeArm', Weight: 0.886643 +Vertex 2461: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.071849 + Group: 'RightForeArm', Weight: 0.927635 +Vertex 2462: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.064012 + Group: 'RightForeArm', Weight: 0.935833 +Vertex 2463: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.075031 + Group: 'RightForeArm', Weight: 0.924840 +Vertex 2464: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.944175 + Group: 'RightForeArm', Weight: 0.055782 +Vertex 2465: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.954059 + Group: 'RightForeArm', Weight: 0.041737 +Vertex 2466: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.951261 + Group: 'RightForeArm', Weight: 0.047044 +Vertex 2467: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.832847 + Group: 'RightForeArm', Weight: 0.167026 +Vertex 2468: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.961144 +Vertex 2469: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.079303 + Group: 'LeftHandMiddle1', Weight: 0.864221 + Group: 'LeftHandRing1', Weight: 0.006253 +Vertex 2470: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.996802 +Vertex 2471: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.916833 + Group: 'LeftHandRing3', Weight: 0.080327 +Vertex 2472: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.004169 + Group: 'LeftHandMiddle1', Weight: 0.832673 + Group: 'LeftHandRing1', Weight: 0.099464 +Vertex 2473: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.010783 + Group: 'LeftHandRing3_end', Weight: 0.968986 +Vertex 2474: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.926795 + Group: 'LeftHandMiddle1', Weight: 0.026740 +Vertex 2475: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.675341 + Group: 'LeftHandRing1', Weight: 0.251895 + Group: 'LeftHandRing2', Weight: 0.007547 +Vertex 2476: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.724020 + Group: 'LeftHandMiddle1', Weight: 0.246295 +Vertex 2477: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.901012 + Group: 'LeftHandMiddle1', Weight: 0.079125 +Vertex 2478: +Vertex groups: 1 + Group: 'LeftHandIndex1', Weight: 0.953621 +Vertex 2479: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.756775 + Group: 'LeftHandIndex2', Weight: 0.102537 + Group: 'LeftHandMiddle1', Weight: 0.105421 + Group: 'LeftHandMiddle2', Weight: 0.014365 +Vertex 2480: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.895317 + Group: 'LeftHandIndex2', Weight: 0.091135 +Vertex 2481: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.830782 + Group: 'LeftHandIndex2', Weight: 0.127727 + Group: 'LeftHandMiddle1', Weight: 0.010715 +Vertex 2482: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.706061 + Group: 'LeftHandMiddle2', Weight: 0.112650 + Group: 'LeftHandRing1', Weight: 0.078082 + Group: 'LeftHandRing2', Weight: 0.094147 +Vertex 2483: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.045458 + Group: 'LeftHandMiddle1', Weight: 0.825147 + Group: 'LeftHandMiddle2', Weight: 0.098417 +Vertex 2484: +Vertex groups: 2 + Group: 'LeftHandMiddle1', Weight: 0.796883 + Group: 'LeftHandMiddle2', Weight: 0.137225 +Vertex 2485: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.101736 + Group: 'LeftHandRing1', Weight: 0.799095 + Group: 'LeftHandRing2', Weight: 0.058247 +Vertex 2486: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.026968 + Group: 'LeftHandRing1', Weight: 0.811063 + Group: 'LeftHandRing2', Weight: 0.054082 + Group: 'LeftHandPinky1', Weight: 0.065857 +Vertex 2487: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.697787 + Group: 'LeftHandRing2', Weight: 0.052064 + Group: 'LeftHandPinky1', Weight: 0.172238 + Group: 'LeftHandPinky2', Weight: 0.056296 +Vertex 2488: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.580969 + Group: 'LeftHandRing2', Weight: 0.270438 + Group: 'LeftHandPinky2', Weight: 0.131095 +Vertex 2489: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.035730 + Group: 'LeftHandRing1', Weight: 0.677774 + Group: 'LeftHandRing2', Weight: 0.258476 +Vertex 2490: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.521144 + Group: 'LeftHandRing2', Weight: 0.430216 + Group: 'LeftHandPinky2', Weight: 0.004956 +Vertex 2491: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.097422 + Group: 'LeftHandPinky1', Weight: 0.789345 + Group: 'LeftHandPinky2', Weight: 0.108242 +Vertex 2492: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.022499 + Group: 'LeftHandPinky1', Weight: 0.866293 + Group: 'LeftHandPinky2', Weight: 0.094051 +Vertex 2493: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.887956 + Group: 'LeftHandPinky2', Weight: 0.099526 +Vertex 2494: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.073182 + Group: 'LeftHandIndex2', Weight: 0.827905 + Group: 'LeftHandMiddle2', Weight: 0.066315 +Vertex 2495: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.091444 + Group: 'LeftHandPinky2', Weight: 0.893115 +Vertex 2496: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.092687 + Group: 'LeftHandRing2', Weight: 0.024238 + Group: 'LeftHandPinky1', Weight: 0.098000 + Group: 'LeftHandPinky2', Weight: 0.760002 +Vertex 2497: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.001221 + Group: 'LeftHandPinky1', Weight: 0.090221 + Group: 'LeftHandPinky2', Weight: 0.869365 +Vertex 2498: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.103203 + Group: 'LeftHandIndex1', Weight: 0.005480 + Group: 'LeftHandMiddle1', Weight: 0.768843 + Group: 'LeftHandRing1', Weight: 0.089123 +Vertex 2499: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.018918 + Group: 'LeftHandMiddle1', Weight: 0.031095 + Group: 'LeftHandRing1', Weight: 0.749998 + Group: 'LeftHandPinky1', Weight: 0.162239 +Vertex 2500: +Vertex groups: 1 + Group: 'LeftHandPinky1', Weight: 0.970067 +Vertex 2501: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.361222 + Group: 'LeftHandMiddle1', Weight: 0.600954 +Vertex 2502: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.576825 + Group: 'LeftHandIndex2', Weight: 0.104352 + Group: 'LeftHandMiddle1', Weight: 0.234921 + Group: 'LeftHandMiddle2', Weight: 0.078760 +Vertex 2503: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.146299 + Group: 'LeftHandMiddle1', Weight: 0.806401 +Vertex 2504: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.156406 + Group: 'LeftHandIndex2', Weight: 0.036231 + Group: 'LeftHandMiddle1', Weight: 0.643732 + Group: 'LeftHandMiddle2', Weight: 0.148341 +Vertex 2505: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.478057 + Group: 'LeftHandMiddle2', Weight: 0.099620 + Group: 'LeftHandRing1', Weight: 0.171063 + Group: 'LeftHandRing2', Weight: 0.244968 +Vertex 2506: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.367456 + Group: 'LeftHandRing1', Weight: 0.553502 + Group: 'LeftHandRing2', Weight: 0.024818 +Vertex 2507: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.113128 + Group: 'LeftHandMiddle2', Weight: 0.003667 + Group: 'LeftHandRing1', Weight: 0.448418 + Group: 'LeftHandRing2', Weight: 0.405993 +Vertex 2508: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.190038 + Group: 'LeftHandRing1', Weight: 0.731484 + Group: 'LeftHandRing2', Weight: 0.024433 +Vertex 2509: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.539547 + Group: 'LeftHandRing2', Weight: 0.188657 + Group: 'LeftHandPinky1', Weight: 0.048948 + Group: 'LeftHandPinky2', Weight: 0.209871 +Vertex 2510: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.494214 + Group: 'LeftHandRing2', Weight: 0.002969 + Group: 'LeftHandPinky1', Weight: 0.371427 + Group: 'LeftHandPinky2', Weight: 0.093508 +Vertex 2511: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.199414 + Group: 'LeftHandRing2', Weight: 0.091060 + Group: 'LeftHandPinky1', Weight: 0.043485 + Group: 'LeftHandPinky2', Weight: 0.644654 +Vertex 2512: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.199680 + Group: 'LeftHandPinky1', Weight: 0.659393 + Group: 'LeftHandPinky2', Weight: 0.122696 +Vertex 2513: +Vertex groups: 1 + Group: 'LeftHandIndex1', Weight: 0.941101 +Vertex 2514: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.859458 + Group: 'LeftHandIndex2', Weight: 0.128680 +Vertex 2515: +Vertex groups: 3 + Group: 'LeftHandThumb2', Weight: 0.005425 + Group: 'LeftHandIndex1', Weight: 0.895992 + Group: 'LeftHandIndex2', Weight: 0.030889 +Vertex 2516: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.786442 + Group: 'LeftHandIndex2', Weight: 0.189456 +Vertex 2517: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.030784 + Group: 'LeftHandIndex3', Weight: 0.921714 + Group: 'LeftHandIndex3_end', Weight: 0.024487 +Vertex 2518: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.022032 + Group: 'LeftHandIndex2', Weight: 0.940438 +Vertex 2519: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.026354 + Group: 'LeftHandIndex3_end', Weight: 0.960162 +Vertex 2520: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.951106 + Group: 'LeftHandIndex3', Weight: 0.022475 +Vertex 2521: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.978680 +Vertex 2522: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.009919 + Group: 'LeftHandIndex3_end', Weight: 0.968885 +Vertex 2523: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.976845 +Vertex 2524: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.014379 + Group: 'LeftHandIndex3_end', Weight: 0.966651 +Vertex 2525: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.020087 + Group: 'LeftHandIndex3_end', Weight: 0.963455 +Vertex 2526: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.034468 + Group: 'LeftHandIndex3_end', Weight: 0.955929 +Vertex 2527: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.051883 + Group: 'LeftHandIndex3_end', Weight: 0.945615 +Vertex 2528: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998865 +Vertex 2529: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998915 +Vertex 2530: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998945 +Vertex 2531: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.997609 +Vertex 2532: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.995845 +Vertex 2533: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.995654 +Vertex 2534: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.994549 +Vertex 2535: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999324 +Vertex 2536: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999392 +Vertex 2537: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999409 +Vertex 2538: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999387 +Vertex 2539: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999306 +Vertex 2540: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999198 +Vertex 2541: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999251 +Vertex 2542: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999236 +Vertex 2543: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999332 +Vertex 2544: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998792 +Vertex 2545: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999359 +Vertex 2546: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999454 +Vertex 2547: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999365 +Vertex 2548: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998192 +Vertex 2549: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998762 +Vertex 2550: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998086 +Vertex 2551: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.997834 +Vertex 2552: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.020525 + Group: 'LeftHandIndex3', Weight: 0.929555 + Group: 'LeftHandIndex3_end', Weight: 0.019649 +Vertex 2553: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.024503 + Group: 'LeftHandIndex3', Weight: 0.932579 + Group: 'LeftHandIndex3_end', Weight: 0.009416 +Vertex 2554: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.009828 + Group: 'LeftHandIndex3', Weight: 0.936864 + Group: 'LeftHandIndex3_end', Weight: 0.015203 +Vertex 2555: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.013786 + Group: 'LeftHandIndex3', Weight: 0.937031 + Group: 'LeftHandIndex3_end', Weight: 0.010315 +Vertex 2556: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.021478 + Group: 'LeftHandIndex3', Weight: 0.925460 + Group: 'LeftHandIndex3_end', Weight: 0.025005 +Vertex 2557: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.027480 + Group: 'LeftHandIndex3', Weight: 0.914084 + Group: 'LeftHandIndex3_end', Weight: 0.041846 +Vertex 2558: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.053465 + Group: 'LeftHandIndex3', Weight: 0.914081 + Group: 'LeftHandIndex3_end', Weight: 0.010222 +Vertex 2559: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999188 +Vertex 2560: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999485 +Vertex 2561: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998918 +Vertex 2562: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998847 +Vertex 2563: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998806 +Vertex 2564: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999417 +Vertex 2565: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999423 +Vertex 2566: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999148 +Vertex 2567: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.924641 + Group: 'LeftHandIndex3', Weight: 0.037421 +Vertex 2568: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.101749 + Group: 'LeftHandIndex2', Weight: 0.890182 +Vertex 2569: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.951502 + Group: 'LeftHandIndex3', Weight: 0.030672 +Vertex 2570: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.156318 + Group: 'LeftHandIndex2', Weight: 0.835517 +Vertex 2571: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.937708 + Group: 'LeftHandIndex3', Weight: 0.051042 +Vertex 2572: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.930663 + Group: 'LeftHandIndex3', Weight: 0.046984 +Vertex 2573: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.195715 + Group: 'LeftHandIndex2', Weight: 0.786808 +Vertex 2574: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.901479 + Group: 'LeftHandIndex3', Weight: 0.071983 +Vertex 2575: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.884183 + Group: 'LeftHandIndex3', Weight: 0.082874 +Vertex 2576: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.883143 + Group: 'LeftHandIndex3', Weight: 0.066023 +Vertex 2577: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.166038 + Group: 'LeftHandIndex2', Weight: 0.717268 + Group: 'LeftHandMiddle1', Weight: 0.032858 + Group: 'LeftHandMiddle2', Weight: 0.070172 +Vertex 2578: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.345505 + Group: 'LeftHandIndex2', Weight: 0.305146 + Group: 'LeftHandMiddle1', Weight: 0.117519 + Group: 'LeftHandMiddle2', Weight: 0.224581 +Vertex 2579: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.108810 + Group: 'LeftHandIndex2', Weight: 0.087341 + Group: 'LeftHandMiddle1', Weight: 0.171198 + Group: 'LeftHandMiddle2', Weight: 0.624303 +Vertex 2580: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.020913 + Group: 'LeftHandIndex2', Weight: 0.007615 + Group: 'LeftHandMiddle1', Weight: 0.104429 + Group: 'LeftHandMiddle2', Weight: 0.820489 +Vertex 2581: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.253800 + Group: 'LeftHandIndex2', Weight: 0.369818 + Group: 'LeftHandMiddle1', Weight: 0.070323 + Group: 'LeftHandMiddle2', Weight: 0.292449 +Vertex 2582: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.118089 + Group: 'LeftHandIndex2', Weight: 0.155048 + Group: 'LeftHandMiddle1', Weight: 0.079474 + Group: 'LeftHandMiddle2', Weight: 0.631885 +Vertex 2583: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.058183 + Group: 'LeftHandIndex2', Weight: 0.077303 + Group: 'LeftHandMiddle1', Weight: 0.039801 + Group: 'LeftHandMiddle2', Weight: 0.784483 + Group: 'LeftHandMiddle3', Weight: 0.004510 +Vertex 2584: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.116641 + Group: 'LeftHandIndex2', Weight: 0.857030 +Vertex 2585: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.006078 + Group: 'LeftHandIndex2', Weight: 0.958573 +Vertex 2586: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.037676 + Group: 'LeftHandIndex2', Weight: 0.939811 +Vertex 2587: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.070431 + Group: 'LeftHandIndex2', Weight: 0.905388 +Vertex 2588: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.085920 + Group: 'LeftHandIndex2', Weight: 0.872731 +Vertex 2589: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.082211 + Group: 'LeftHandIndex2', Weight: 0.843390 + Group: 'LeftHandIndex3', Weight: 0.008503 + Group: 'LeftHandMiddle2', Weight: 0.004042 +Vertex 2590: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.117015 + Group: 'LeftHandIndex2', Weight: 0.710394 + Group: 'LeftHandMiddle1', Weight: 0.018343 + Group: 'LeftHandMiddle2', Weight: 0.109943 +Vertex 2591: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.211913 + Group: 'LeftHandIndex2', Weight: 0.748103 +Vertex 2592: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.724530 + Group: 'LeftHandIndex2', Weight: 0.221480 +Vertex 2593: +Vertex groups: 4 + Group: 'LeftHandThumb2', Weight: 0.016800 + Group: 'LeftHandIndex1', Weight: 0.844438 + Group: 'LeftHandIndex2', Weight: 0.041387 + Group: 'LeftHandMiddle1', Weight: 0.013387 +Vertex 2594: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.227102 + Group: 'LeftHandIndex2', Weight: 0.662686 + Group: 'LeftHandMiddle1', Weight: 0.018364 + Group: 'LeftHandMiddle2', Weight: 0.054118 +Vertex 2595: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.643064 + Group: 'LeftHandIndex2', Weight: 0.202406 + Group: 'LeftHandMiddle1', Weight: 0.068702 + Group: 'LeftHandMiddle2', Weight: 0.056199 +Vertex 2596: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.751457 + Group: 'LeftHandIndex2', Weight: 0.055126 + Group: 'LeftHandMiddle1', Weight: 0.106907 +Vertex 2597: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.211738 + Group: 'LeftHandIndex2', Weight: 0.391738 + Group: 'LeftHandMiddle1', Weight: 0.066271 + Group: 'LeftHandMiddle2', Weight: 0.307258 +Vertex 2598: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.120669 + Group: 'LeftHandIndex2', Weight: 0.179551 + Group: 'LeftHandMiddle1', Weight: 0.071422 + Group: 'LeftHandMiddle2', Weight: 0.602258 +Vertex 2599: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.258774 + Group: 'LeftHandIndex2', Weight: 0.326513 + Group: 'LeftHandMiddle1', Weight: 0.102632 + Group: 'LeftHandMiddle2', Weight: 0.283055 +Vertex 2600: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.148837 + Group: 'LeftHandIndex2', Weight: 0.159407 + Group: 'LeftHandMiddle1', Weight: 0.143082 + Group: 'LeftHandMiddle2', Weight: 0.513912 +Vertex 2601: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.268625 + Group: 'LeftHandIndex2', Weight: 0.461780 + Group: 'LeftHandMiddle1', Weight: 0.075383 + Group: 'LeftHandMiddle2', Weight: 0.167301 +Vertex 2602: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.440279 + Group: 'LeftHandIndex2', Weight: 0.188486 + Group: 'LeftHandMiddle1', Weight: 0.151336 + Group: 'LeftHandMiddle2', Weight: 0.182487 +Vertex 2603: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.626692 + Group: 'LeftHandIndex2', Weight: 0.044153 + Group: 'LeftHandMiddle1', Weight: 0.208500 + Group: 'LeftHandMiddle2', Weight: 0.031193 + Group: 'LeftHandRing1', Weight: 0.016146 +Vertex 2604: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.137579 + Group: 'LeftHandMiddle3_end', Weight: 0.861934 +Vertex 2605: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.102361 + Group: 'LeftHandMiddle3', Weight: 0.896141 +Vertex 2606: +Vertex groups: 1 + Group: 'LeftHandMiddle3', Weight: 0.981314 +Vertex 2607: +Vertex groups: 2 + Group: 'LeftHandMiddle1', Weight: 0.037128 + Group: 'LeftHandMiddle2', Weight: 0.922379 +Vertex 2608: +Vertex groups: 1 + Group: 'LeftHandMiddle3', Weight: 0.978897 +Vertex 2609: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.970936 + Group: 'LeftHandMiddle3_end', Weight: 0.002829 +Vertex 2610: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.965337 + Group: 'LeftHandMiddle3_end', Weight: 0.013374 +Vertex 2611: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.958119 + Group: 'LeftHandMiddle3_end', Weight: 0.026625 +Vertex 2612: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.956383 + Group: 'LeftHandMiddle3_end', Weight: 0.026954 +Vertex 2613: +Vertex groups: 1 + Group: 'LeftHandMiddle3', Weight: 0.972180 +Vertex 2614: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.962473 + Group: 'LeftHandMiddle3_end', Weight: 0.015546 +Vertex 2615: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.041334 + Group: 'LeftHandMiddle3_end', Weight: 0.954202 +Vertex 2616: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.038895 + Group: 'LeftHandMiddle3_end', Weight: 0.955414 +Vertex 2617: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.057140 + Group: 'LeftHandMiddle3_end', Weight: 0.942659 +Vertex 2618: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.067135 + Group: 'LeftHandMiddle3_end', Weight: 0.932584 +Vertex 2619: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.077176 + Group: 'LeftHandMiddle3_end', Weight: 0.922446 +Vertex 2620: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.073061 + Group: 'LeftHandMiddle3_end', Weight: 0.926616 +Vertex 2621: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.081530 + Group: 'LeftHandMiddle3_end', Weight: 0.918075 +Vertex 2622: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993541 +Vertex 2623: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.994352 +Vertex 2624: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.994355 +Vertex 2625: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993193 +Vertex 2626: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993134 +Vertex 2627: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.991590 +Vertex 2628: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.991944 +Vertex 2629: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.992566 +Vertex 2630: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993877 +Vertex 2631: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.004837 + Group: 'LeftHandMiddle3_end', Weight: 0.972465 +Vertex 2632: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.978774 +Vertex 2633: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.985771 +Vertex 2634: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.987818 +Vertex 2635: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.001119 + Group: 'LeftHandMiddle3_end', Weight: 0.974332 +Vertex 2636: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.031974 + Group: 'LeftHandMiddle3_end', Weight: 0.958863 +Vertex 2637: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.012545 + Group: 'LeftHandMiddle3_end', Weight: 0.968581 +Vertex 2638: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.009635 + Group: 'LeftHandMiddle3_end', Weight: 0.970044 +Vertex 2639: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.080993 + Group: 'LeftHandMiddle3', Weight: 0.916880 +Vertex 2640: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.083557 + Group: 'LeftHandMiddle3', Weight: 0.912680 +Vertex 2641: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.075501 + Group: 'LeftHandMiddle3', Weight: 0.920127 +Vertex 2642: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.086190 + Group: 'LeftHandMiddle3', Weight: 0.910405 +Vertex 2643: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.180765 + Group: 'LeftHandMiddle3', Weight: 0.816229 +Vertex 2644: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.184572 + Group: 'LeftHandMiddle3', Weight: 0.813834 +Vertex 2645: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.703308 + Group: 'LeftHandMiddle3', Weight: 0.294620 +Vertex 2646: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.987498 +Vertex 2647: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.992842 +Vertex 2648: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.987319 +Vertex 2649: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.984702 +Vertex 2650: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.986359 +Vertex 2651: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.988913 +Vertex 2652: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993859 +Vertex 2653: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.988336 +Vertex 2654: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.071353 + Group: 'LeftHandMiddle2', Weight: 0.839094 + Group: 'LeftHandRing2', Weight: 0.066870 +Vertex 2655: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.007890 + Group: 'LeftHandMiddle1', Weight: 0.015981 + Group: 'LeftHandMiddle2', Weight: 0.892004 +Vertex 2656: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.160687 + Group: 'LeftHandMiddle2', Weight: 0.708923 + Group: 'LeftHandRing2', Weight: 0.100314 +Vertex 2657: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.075465 + Group: 'LeftHandIndex2', Weight: 0.079150 + Group: 'LeftHandMiddle1', Weight: 0.076513 + Group: 'LeftHandMiddle2', Weight: 0.729200 +Vertex 2658: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.009041 + Group: 'LeftHandMiddle1', Weight: 0.044241 + Group: 'LeftHandMiddle2', Weight: 0.836023 + Group: 'LeftHandMiddle3', Weight: 0.005263 + Group: 'LeftHandRing2', Weight: 0.003363 +Vertex 2659: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.048958 + Group: 'LeftHandMiddle2', Weight: 0.786701 + Group: 'LeftHandRing2', Weight: 0.108394 +Vertex 2660: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.050321 + Group: 'LeftHandMiddle2', Weight: 0.825984 + Group: 'LeftHandRing2', Weight: 0.089755 +Vertex 2661: +Vertex groups: 2 + Group: 'LeftHandRing1', Weight: 0.052180 + Group: 'LeftHandRing2', Weight: 0.922087 +Vertex 2662: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.963642 +Vertex 2663: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.970445 +Vertex 2664: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.963438 + Group: 'LeftHandRing3_end', Weight: 0.012744 +Vertex 2665: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.954066 + Group: 'LeftHandRing3_end', Weight: 0.023503 +Vertex 2666: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.947663 + Group: 'LeftHandRing3_end', Weight: 0.019594 +Vertex 2667: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.956410 +Vertex 2668: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.952088 + Group: 'LeftHandRing3_end', Weight: 0.008629 +Vertex 2669: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.017246 + Group: 'LeftHandRing3_end', Weight: 0.965860 +Vertex 2670: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.005243 + Group: 'LeftHandRing3_end', Weight: 0.972387 +Vertex 2671: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.019291 + Group: 'LeftHandRing3_end', Weight: 0.965142 +Vertex 2672: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.025755 + Group: 'LeftHandRing3_end', Weight: 0.961646 +Vertex 2673: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.033794 + Group: 'LeftHandRing3_end', Weight: 0.957389 +Vertex 2674: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.019425 + Group: 'LeftHandRing3_end', Weight: 0.964608 +Vertex 2675: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.039530 + Group: 'LeftHandRing3_end', Weight: 0.954400 +Vertex 2676: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.998052 +Vertex 2677: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997921 +Vertex 2678: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997941 +Vertex 2679: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997639 +Vertex 2680: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997849 +Vertex 2681: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997580 +Vertex 2682: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997958 +Vertex 2683: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997930 +Vertex 2684: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.998067 +Vertex 2685: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.989498 +Vertex 2686: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.991334 +Vertex 2687: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.993026 +Vertex 2688: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.993363 +Vertex 2689: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.992002 +Vertex 2690: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.989670 +Vertex 2691: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.988409 +Vertex 2692: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.989866 +Vertex 2693: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.796173 + Group: 'LeftHandRing3', Weight: 0.201453 +Vertex 2694: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.250680 + Group: 'LeftHandRing3', Weight: 0.746005 +Vertex 2695: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.137601 + Group: 'LeftHandRing3', Weight: 0.858142 +Vertex 2696: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.197123 + Group: 'LeftHandRing3', Weight: 0.799092 +Vertex 2697: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.800586 + Group: 'LeftHandRing3', Weight: 0.194730 +Vertex 2698: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.932930 + Group: 'LeftHandRing3', Weight: 0.063482 +Vertex 2699: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.929077 + Group: 'LeftHandRing3', Weight: 0.066344 +Vertex 2700: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996205 +Vertex 2701: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996839 +Vertex 2702: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996771 +Vertex 2703: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.995486 +Vertex 2704: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996261 +Vertex 2705: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.995931 +Vertex 2706: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997224 +Vertex 2707: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996688 +Vertex 2708: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.066249 + Group: 'LeftHandRing2', Weight: 0.891464 + Group: 'LeftHandPinky2', Weight: 0.010263 +Vertex 2709: +Vertex groups: 3 + Group: 'LeftHandMiddle2', Weight: 0.003848 + Group: 'LeftHandRing1', Weight: 0.009867 + Group: 'LeftHandRing2', Weight: 0.914749 +Vertex 2710: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.024971 + Group: 'LeftHandMiddle2', Weight: 0.066716 + Group: 'LeftHandRing2', Weight: 0.854098 +Vertex 2711: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.027371 + Group: 'LeftHandMiddle2', Weight: 0.124762 + Group: 'LeftHandRing1', Weight: 0.020990 + Group: 'LeftHandRing2', Weight: 0.767748 +Vertex 2712: +Vertex groups: 4 + Group: 'LeftHandMiddle2', Weight: 0.009630 + Group: 'LeftHandRing1', Weight: 0.004978 + Group: 'LeftHandRing2', Weight: 0.891260 + Group: 'LeftHandRing3', Weight: 0.000783 +Vertex 2713: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.209455 + Group: 'LeftHandRing2', Weight: 0.588843 + Group: 'LeftHandPinky2', Weight: 0.145400 +Vertex 2714: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.095463 + Group: 'LeftHandRing2', Weight: 0.816365 + Group: 'LeftHandPinky2', Weight: 0.067306 +Vertex 2715: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.910964 + Group: 'LeftHandPinky3_end', Weight: 0.082541 +Vertex 2716: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.068693 + Group: 'LeftHandPinky3', Weight: 0.926302 +Vertex 2717: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.134957 + Group: 'LeftHandPinky3_end', Weight: 0.864341 +Vertex 2718: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.941604 + Group: 'LeftHandPinky3_end', Weight: 0.054437 +Vertex 2719: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.937994 + Group: 'LeftHandPinky3_end', Weight: 0.056132 +Vertex 2720: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.878208 + Group: 'LeftHandPinky3_end', Weight: 0.116333 +Vertex 2721: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.701752 + Group: 'LeftHandPinky3_end', Weight: 0.291763 +Vertex 2722: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.575834 + Group: 'LeftHandPinky3_end', Weight: 0.422407 +Vertex 2723: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.937464 + Group: 'LeftHandPinky3_end', Weight: 0.060254 +Vertex 2724: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.870069 + Group: 'LeftHandPinky3_end', Weight: 0.127660 +Vertex 2725: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.087874 + Group: 'LeftHandPinky3_end', Weight: 0.911710 +Vertex 2726: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.064759 + Group: 'LeftHandPinky3_end', Weight: 0.934841 +Vertex 2727: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.058787 + Group: 'LeftHandPinky3_end', Weight: 0.940800 +Vertex 2728: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.066525 + Group: 'LeftHandPinky3_end', Weight: 0.932882 +Vertex 2729: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.023422 + Group: 'LeftHandPinky3_end', Weight: 0.963054 +Vertex 2730: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.045717 + Group: 'LeftHandPinky3_end', Weight: 0.951960 +Vertex 2731: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.030438 + Group: 'LeftHandPinky3_end', Weight: 0.959638 +Vertex 2732: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993442 +Vertex 2733: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991804 +Vertex 2734: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991934 +Vertex 2735: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.990583 +Vertex 2736: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991564 +Vertex 2737: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993107 +Vertex 2738: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.994440 +Vertex 2739: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.994362 +Vertex 2740: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993266 +Vertex 2741: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.003947 + Group: 'LeftHandPinky3_end', Weight: 0.972802 +Vertex 2742: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.978331 +Vertex 2743: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.976842 +Vertex 2744: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.002886 + Group: 'LeftHandPinky3_end', Weight: 0.973419 +Vertex 2745: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.990480 +Vertex 2746: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.020810 + Group: 'LeftHandPinky3_end', Weight: 0.964412 +Vertex 2747: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.987621 +Vertex 2748: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991248 +Vertex 2749: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.070448 + Group: 'LeftHandPinky3', Weight: 0.921907 +Vertex 2750: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.055687 + Group: 'LeftHandPinky3', Weight: 0.931102 +Vertex 2751: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.061742 + Group: 'LeftHandPinky3', Weight: 0.923575 +Vertex 2752: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.070401 + Group: 'LeftHandPinky3', Weight: 0.910512 +Vertex 2753: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.050644 + Group: 'LeftHandPinky3', Weight: 0.933309 +Vertex 2754: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.063975 + Group: 'LeftHandPinky3', Weight: 0.932010 +Vertex 2755: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.043345 + Group: 'LeftHandPinky3', Weight: 0.947047 +Vertex 2756: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.985981 +Vertex 2757: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.987723 +Vertex 2758: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.995217 +Vertex 2759: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993212 +Vertex 2760: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.996275 +Vertex 2761: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.987442 +Vertex 2762: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.986773 +Vertex 2763: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.989281 +Vertex 2764: +Vertex groups: 2 + Group: 'LeftHandMiddle1', Weight: 0.141200 + Group: 'LeftHandMiddle2', Weight: 0.818707 +Vertex 2765: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.277448 + Group: 'LeftHandMiddle2', Weight: 0.298294 + Group: 'LeftHandRing1', Weight: 0.091474 + Group: 'LeftHandRing2', Weight: 0.326443 +Vertex 2766: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.108656 + Group: 'LeftHandMiddle2', Weight: 0.081675 + Group: 'LeftHandRing1', Weight: 0.103703 + Group: 'LeftHandRing2', Weight: 0.701349 +Vertex 2767: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.205173 + Group: 'LeftHandIndex2', Weight: 0.104965 + Group: 'LeftHandMiddle1', Weight: 0.298336 + Group: 'LeftHandMiddle2', Weight: 0.334070 +Vertex 2768: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.277219 + Group: 'LeftHandIndex2', Weight: 0.009122 + Group: 'LeftHandMiddle1', Weight: 0.492876 + Group: 'LeftHandMiddle2', Weight: 0.069013 + Group: 'LeftHandRing1', Weight: 0.071157 +Vertex 2769: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.075502 + Group: 'LeftHandIndex2', Weight: 0.028097 + Group: 'LeftHandMiddle1', Weight: 0.138907 + Group: 'LeftHandMiddle2', Weight: 0.652406 + Group: 'LeftHandRing2', Weight: 0.057233 +Vertex 2770: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.153075 + Group: 'LeftHandMiddle1', Weight: 0.521072 + Group: 'LeftHandMiddle2', Weight: 0.105384 + Group: 'LeftHandRing1', Weight: 0.116323 + Group: 'LeftHandRing2', Weight: 0.040022 +Vertex 2771: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.311505 + Group: 'LeftHandIndex2', Weight: 0.246598 + Group: 'LeftHandMiddle1', Weight: 0.146881 + Group: 'LeftHandMiddle2', Weight: 0.259747 +Vertex 2772: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.208639 + Group: 'LeftHandIndex2', Weight: 0.167469 + Group: 'LeftHandMiddle1', Weight: 0.201378 + Group: 'LeftHandMiddle2', Weight: 0.381083 +Vertex 2773: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.071046 + Group: 'LeftHandMiddle2', Weight: 0.602885 + Group: 'LeftHandRing1', Weight: 0.037680 + Group: 'LeftHandRing2', Weight: 0.249654 +Vertex 2774: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.072666 + Group: 'LeftHandMiddle2', Weight: 0.266670 + Group: 'LeftHandRing1', Weight: 0.080378 + Group: 'LeftHandRing2', Weight: 0.557965 +Vertex 2775: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.011331 + Group: 'LeftHandMiddle1', Weight: 0.109972 + Group: 'LeftHandMiddle2', Weight: 0.596501 + Group: 'LeftHandRing1', Weight: 0.029461 + Group: 'LeftHandRing2', Weight: 0.192037 +Vertex 2776: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.459683 + Group: 'LeftHandRing1', Weight: 0.259227 + Group: 'LeftHandMiddle2', Weight: 0.102101 + Group: 'LeftHandRing2', Weight: 0.095133 + Group: 'LeftHandIndex1', Weight: 0.083856 +Vertex 2777: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.062311 + Group: 'LeftHandMiddle2', Weight: 0.182782 + Group: 'LeftHandRing1', Weight: 0.057735 + Group: 'LeftHandRing2', Weight: 0.655245 +Vertex 2778: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.457327 + Group: 'LeftHandMiddle1', Weight: 0.272488 + Group: 'LeftHandRing2', Weight: 0.146298 + Group: 'LeftHandMiddle2', Weight: 0.069240 + Group: 'LeftHandPinky1', Weight: 0.054647 +Vertex 2779: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.112418 + Group: 'LeftHandMiddle2', Weight: 0.540312 + Group: 'LeftHandRing1', Weight: 0.029079 + Group: 'LeftHandRing2', Weight: 0.261160 +Vertex 2780: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.104124 + Group: 'LeftHandMiddle2', Weight: 0.391362 + Group: 'LeftHandRing1', Weight: 0.038291 + Group: 'LeftHandRing2', Weight: 0.416966 +Vertex 2781: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.308515 + Group: 'LeftHandRing2', Weight: 0.414200 + Group: 'LeftHandPinky2', Weight: 0.236548 +Vertex 2782: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.140075 + Group: 'LeftHandRing2', Weight: 0.187139 + Group: 'LeftHandPinky2', Weight: 0.603066 + Group: 'LeftHandPinky3', Weight: 0.036202 +Vertex 2783: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.059932 + Group: 'LeftHandRing1', Weight: 0.477637 + Group: 'LeftHandRing2', Weight: 0.139516 + Group: 'LeftHandPinky1', Weight: 0.197543 + Group: 'LeftHandPinky2', Weight: 0.081258 +Vertex 2784: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.022762 + Group: 'LeftHandRing1', Weight: 0.315878 + Group: 'LeftHandRing2', Weight: 0.086338 + Group: 'LeftHandPinky1', Weight: 0.367940 + Group: 'LeftHandPinky2', Weight: 0.158273 +Vertex 2785: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.287153 + Group: 'LeftHandRing2', Weight: 0.453407 + Group: 'LeftHandPinky2', Weight: 0.204717 +Vertex 2786: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.143809 + Group: 'LeftHandRing2', Weight: 0.210943 + Group: 'LeftHandPinky1', Weight: 0.013837 + Group: 'LeftHandPinky2', Weight: 0.556727 + Group: 'LeftHandPinky3', Weight: 0.044155 +Vertex 2787: +Vertex groups: 2 + Group: 'LeftHandRing1', Weight: 0.143749 + Group: 'LeftHandRing2', Weight: 0.819255 +Vertex 2788: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.020576 + Group: 'LeftHandMiddle2', Weight: 0.001540 + Group: 'LeftHandRing1', Weight: 0.116179 + Group: 'LeftHandRing2', Weight: 0.816288 +Vertex 2789: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.192719 + Group: 'LeftHandRing2', Weight: 0.728518 + Group: 'LeftHandPinky2', Weight: 0.065128 +Vertex 2790: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.283835 + Group: 'LeftHandRing2', Weight: 0.564903 + Group: 'LeftHandPinky2', Weight: 0.122670 +Vertex 2791: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.911135 + Group: 'LeftHandMiddle3', Weight: 0.077375 +Vertex 2792: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.919737 + Group: 'LeftHandMiddle3', Weight: 0.062396 +Vertex 2793: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.884550 + Group: 'LeftHandMiddle3', Weight: 0.099837 +Vertex 2794: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.847322 + Group: 'LeftHandMiddle3', Weight: 0.112286 +Vertex 2795: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.855777 + Group: 'LeftHandMiddle3', Weight: 0.118650 +Vertex 2796: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.895888 + Group: 'LeftHandMiddle3', Weight: 0.075247 +Vertex 2797: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.932505 + Group: 'LeftHandMiddle3', Weight: 0.038535 +Vertex 2798: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.846776 + Group: 'LeftHandMiddle3', Weight: 0.120438 +Vertex 2799: +Vertex groups: 1 + Group: 'LeftHandRing2', Weight: 0.971694 +Vertex 2800: +Vertex groups: 1 + Group: 'LeftHandRing2', Weight: 0.967795 +Vertex 2801: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.956900 + Group: 'LeftHandRing3', Weight: 0.012459 +Vertex 2802: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.892313 + Group: 'LeftHandRing3', Weight: 0.084739 +Vertex 2803: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.838956 + Group: 'LeftHandRing3', Weight: 0.131030 +Vertex 2804: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.867595 + Group: 'LeftHandRing3', Weight: 0.104502 +Vertex 2805: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.914600 + Group: 'LeftHandRing3', Weight: 0.032311 +Vertex 2806: +Vertex groups: 1 + Group: 'LeftHandRing2', Weight: 0.950191 +Vertex 2807: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.924430 + Group: 'LeftHandPinky3', Weight: 0.051360 +Vertex 2808: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.930687 + Group: 'LeftHandPinky3', Weight: 0.055116 +Vertex 2809: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.870333 + Group: 'LeftHandPinky3', Weight: 0.079930 +Vertex 2810: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.069789 + Group: 'LeftHandRing2', Weight: 0.091071 + Group: 'LeftHandPinky2', Weight: 0.757076 + Group: 'LeftHandPinky3', Weight: 0.064500 +Vertex 2811: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.038317 + Group: 'LeftHandRing2', Weight: 0.054797 + Group: 'LeftHandPinky1', Weight: 0.014267 + Group: 'LeftHandPinky2', Weight: 0.794412 + Group: 'LeftHandPinky3', Weight: 0.070225 +Vertex 2812: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.835282 + Group: 'LeftHandPinky3', Weight: 0.121395 +Vertex 2813: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.891580 + Group: 'LeftHandPinky3', Weight: 0.094579 +Vertex 2814: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.914854 + Group: 'LeftHandPinky3', Weight: 0.074248 +Vertex 2815: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.218269 + Group: 'LeftHandRing2', Weight: 0.606047 + Group: 'LeftHandPinky2', Weight: 0.147056 +Vertex 2816: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.091570 + Group: 'LeftHandPinky2', Weight: 0.895421 +Vertex 2817: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.091363 + Group: 'LeftHandPinky2', Weight: 0.885927 +Vertex 2818: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.848590 + Group: 'LeftHandPinky2', Weight: 0.138671 +Vertex 2819: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.803568 + Group: 'LeftHandPinky2', Weight: 0.163804 +Vertex 2820: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.013341 + Group: 'LeftHandPinky1', Weight: 0.164303 + Group: 'LeftHandPinky2', Weight: 0.772427 +Vertex 2821: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.074465 + Group: 'LeftHandPinky1', Weight: 0.773028 + Group: 'LeftHandPinky2', Weight: 0.115414 +Vertex 2822: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.274996 + Group: 'LeftHandMiddle2', Weight: 0.340705 + Group: 'LeftHandRing1', Weight: 0.050056 + Group: 'LeftHandRing2', Weight: 0.326522 +Vertex 2823: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.104308 + Group: 'LeftHandMiddle2', Weight: 0.117327 + Group: 'LeftHandRing1', Weight: 0.052256 + Group: 'LeftHandRing2', Weight: 0.719152 +Vertex 2824: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.261822 + Group: 'LeftHandMiddle2', Weight: 0.356812 + Group: 'LeftHandRing1', Weight: 0.016412 + Group: 'LeftHandRing2', Weight: 0.337220 +Vertex 2825: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.110198 + Group: 'LeftHandMiddle2', Weight: 0.137560 + Group: 'LeftHandRing1', Weight: 0.046775 + Group: 'LeftHandRing2', Weight: 0.692285 +Vertex 2826: +Vertex groups: 4 + Group: 'LeftHandMiddle2', Weight: 0.024369 + Group: 'LeftHandRing1', Weight: 0.098846 + Group: 'LeftHandRing2', Weight: 0.772345 + Group: 'LeftHandPinky2', Weight: 0.010105 +Vertex 2827: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.561280 + Group: 'LeftHandRing2', Weight: 0.165261 + Group: 'LeftHandMiddle1', Weight: 0.165058 + Group: 'LeftHandPinky1', Weight: 0.089946 + Group: 'LeftHandMiddle2', Weight: 0.018455 +Vertex 2828: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.011585 + Group: 'LeftHandThumb2', Weight: 0.008756 + Group: 'LeftHandIndex1', Weight: 0.920381 +Vertex 2829: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.036313 + Group: 'LeftHandIndex1', Weight: 0.729008 + Group: 'LeftHandMiddle1', Weight: 0.210212 +Vertex 2830: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.001391 + Group: 'LeftHandIndex1', Weight: 0.390990 + Group: 'LeftHandMiddle1', Weight: 0.562377 +Vertex 2831: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.011256 + Group: 'LeftHandIndex1', Weight: 0.132122 + Group: 'LeftHandMiddle1', Weight: 0.813353 +Vertex 2832: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.062134 + Group: 'LeftHandMiddle1', Weight: 0.376990 + Group: 'LeftHandRing1', Weight: 0.512185 +Vertex 2833: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.037848 + Group: 'LeftHandMiddle1', Weight: 0.185543 + Group: 'LeftHandRing1', Weight: 0.713060 + Group: 'LeftHandPinky1', Weight: 0.012186 +Vertex 2834: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.375980 + Group: 'LeftHandPinky1', Weight: 0.549193 + Group: 'LeftHandPinky2', Weight: 0.036972 +Vertex 2835: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.147366 + Group: 'LeftHandPinky1', Weight: 0.793648 + Group: 'LeftHandPinky2', Weight: 0.042453 +Vertex 2836: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.057275 + Group: 'LeftHandIndex1', Weight: 0.084123 + Group: 'LeftHandMiddle1', Weight: 0.830670 +Vertex 2837: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.116786 + Group: 'LeftHandMiddle1', Weight: 0.600661 + Group: 'LeftHandRing1', Weight: 0.245409 +Vertex 2838: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.066290 + Group: 'LeftHandMiddle1', Weight: 0.110132 + Group: 'LeftHandRing1', Weight: 0.749874 + Group: 'LeftHandPinky1', Weight: 0.062304 +Vertex 2839: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.000527 + Group: 'LeftHandRing1', Weight: 0.592324 + Group: 'LeftHandPinky1', Weight: 0.342787 +Vertex 2840: +Vertex groups: 2 + Group: 'LeftHandRing1', Weight: 0.065940 + Group: 'LeftHandPinky1', Weight: 0.910456 +Vertex 2841: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.118521 + Group: 'LeftHandThumb2', Weight: 0.143717 + Group: 'LeftHandIndex1', Weight: 0.710689 +Vertex 2842: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.106100 + Group: 'LeftHandThumb2', Weight: 0.190022 + Group: 'LeftHandIndex1', Weight: 0.655382 +Vertex 2843: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.180721 + Group: 'LeftHandRing2', Weight: 0.033174 + Group: 'LeftHandPinky1', Weight: 0.467200 + Group: 'LeftHandPinky2', Weight: 0.262899 +Vertex 2844: +Vertex groups: 1 + Group: 'LeftHandPinky1', Weight: 0.964439 +Vertex 2845: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.933213 + Group: 'LeftHandPinky2', Weight: 0.014773 +Vertex 2846: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.010292 + Group: 'LeftHandRing1', Weight: 0.009548 + Group: 'LeftHandPinky1', Weight: 0.894473 + Group: 'LeftHandPinky2', Weight: 0.016510 +Vertex 2847: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.034531 + Group: 'LeftHandRing1', Weight: 0.069388 + Group: 'LeftHandPinky1', Weight: 0.832797 + Group: 'LeftHandPinky2', Weight: 0.011916 +Vertex 2848: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.072889 + Group: 'LeftHandThumb1', Weight: 0.607158 + Group: 'LeftHandThumb2', Weight: 0.064755 + Group: 'LeftHandIndex1', Weight: 0.248971 +Vertex 2849: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.007056 + Group: 'LeftHand', Weight: 0.928725 + Group: 'LeftHandThumb1', Weight: 0.023751 +Vertex 2850: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.100799 + Group: 'LeftHand', Weight: 0.781677 + Group: 'LeftHandThumb1', Weight: 0.111992 +Vertex 2851: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.165624 + Group: 'LeftHand', Weight: 0.647145 + Group: 'LeftHandThumb1', Weight: 0.181853 +Vertex 2852: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.056347 + Group: 'LeftHand', Weight: 0.359026 + Group: 'LeftHandThumb1', Weight: 0.571658 +Vertex 2853: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.157567 + Group: 'LeftHand', Weight: 0.571171 + Group: 'LeftHandThumb1', Weight: 0.263778 +Vertex 2854: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.065960 + Group: 'LeftHand', Weight: 0.312500 + Group: 'LeftHandThumb1', Weight: 0.610333 +Vertex 2855: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.332768 + Group: 'LeftHandThumb1', Weight: 0.073035 + Group: 'LeftHandIndex1', Weight: 0.550410 + Group: 'LeftHandMiddle1', Weight: 0.012802 +Vertex 2856: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.830788 + Group: 'LeftHandIndex1', Weight: 0.106787 + Group: 'LeftHandMiddle1', Weight: 0.012932 +Vertex 2857: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.036755 + Group: 'LeftHand', Weight: 0.672576 + Group: 'LeftHandThumb1', Weight: 0.266160 +Vertex 2858: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.007189 + Group: 'LeftHand', Weight: 0.241108 + Group: 'LeftHandThumb1', Weight: 0.714226 +Vertex 2859: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.139300 + Group: 'LeftHandThumb1', Weight: 0.819525 +Vertex 2860: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.358509 + Group: 'LeftHandThumb1', Weight: 0.573124 + Group: 'LeftHandPinky1', Weight: 0.013065 +Vertex 2861: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.232110 + Group: 'LeftHandThumb1', Weight: 0.644568 + Group: 'LeftHandIndex1', Weight: 0.010206 + Group: 'LeftHandPinky1', Weight: 0.040670 +Vertex 2862: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.096388 + Group: 'LeftHandThumb1', Weight: 0.816292 + Group: 'LeftHandThumb2', Weight: 0.017829 +Vertex 2863: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.071924 + Group: 'LeftHandThumb1', Weight: 0.680346 + Group: 'LeftHandThumb2', Weight: 0.097446 + Group: 'LeftHandIndex1', Weight: 0.091622 +Vertex 2864: +Vertex groups: 5 + Group: 'LeftHandThumb1', Weight: 0.580952 + Group: 'LeftHand', Weight: 0.184980 + Group: 'LeftHandIndex1', Weight: 0.141773 + Group: 'LeftHandThumb2', Weight: 0.054019 + Group: 'LeftHandPinky1', Weight: 0.038275 +Vertex 2865: +Vertex groups: 5 + Group: 'LeftHandThumb1', Weight: 0.209667 + Group: 'LeftHandThumb2', Weight: 0.383308 + Group: 'LeftHandThumb3', Weight: 0.018222 + Group: 'LeftHandIndex1', Weight: 0.297824 + Group: 'LeftHandMiddle1', Weight: 0.006383 +Vertex 2866: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.642096 + Group: 'LeftHandThumb2', Weight: 0.137461 + Group: 'LeftHandThumb1', Weight: 0.127513 + Group: 'LeftHandMiddle1', Weight: 0.077025 + Group: 'LeftHand', Weight: 0.015905 +Vertex 2867: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.196033 + Group: 'LeftHandThumb2', Weight: 0.354453 + Group: 'LeftHandThumb3', Weight: 0.053208 + Group: 'LeftHandIndex1', Weight: 0.354220 +Vertex 2868: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.104022 + Group: 'LeftHandThumb2', Weight: 0.171172 + Group: 'LeftHandIndex1', Weight: 0.636663 + Group: 'LeftHandMiddle1', Weight: 0.000459 +Vertex 2869: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.184870 + Group: 'LeftHandThumb2', Weight: 0.387571 + Group: 'LeftHandThumb3', Weight: 0.049141 + Group: 'LeftHandIndex1', Weight: 0.359741 +Vertex 2870: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.237698 + Group: 'LeftHandThumb2', Weight: 0.389387 + Group: 'LeftHandThumb3', Weight: 0.001766 + Group: 'LeftHandIndex1', Weight: 0.334555 +Vertex 2871: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.307520 + Group: 'LeftHandThumb2', Weight: 0.578119 + Group: 'LeftHandIndex1', Weight: 0.093280 +Vertex 2872: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.861266 + Group: 'LeftHandThumb2', Weight: 0.106802 +Vertex 2873: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.849859 + Group: 'LeftHandThumb2', Weight: 0.136959 +Vertex 2874: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.015961 + Group: 'LeftHandThumb1', Weight: 0.158429 + Group: 'LeftHandThumb2', Weight: 0.070186 + Group: 'LeftHandIndex1', Weight: 0.729646 +Vertex 2875: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.296802 + Group: 'LeftHandThumb2', Weight: 0.306187 + Group: 'LeftHandIndex1', Weight: 0.368685 +Vertex 2876: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.898526 + Group: 'LeftHandThumb2', Weight: 0.047283 + Group: 'LeftHandIndex1', Weight: 0.016044 +Vertex 2877: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.925450 + Group: 'LeftHandThumb2', Weight: 0.036656 +Vertex 2878: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.133801 + Group: 'LeftHandThumb1', Weight: 0.828835 +Vertex 2879: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.118676 + Group: 'LeftHandThumb1', Weight: 0.845311 +Vertex 2880: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.100376 + Group: 'LeftHandThumb1', Weight: 0.864993 +Vertex 2881: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.117107 + Group: 'LeftHandThumb1', Weight: 0.104241 + Group: 'LeftHandIndex1', Weight: 0.747456 +Vertex 2882: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.729898 + Group: 'LeftHandIndex1', Weight: 0.025962 + Group: 'LeftHandMiddle1', Weight: 0.174168 + Group: 'LeftHandRing1', Weight: 0.025865 +Vertex 2883: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.805781 + Group: 'LeftHandMiddle1', Weight: 0.080896 + Group: 'LeftHandRing1', Weight: 0.060215 + Group: 'LeftHandPinky1', Weight: 0.021036 +Vertex 2884: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.822291 + Group: 'LeftHandPinky1', Weight: 0.123224 +Vertex 2885: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.325893 + Group: 'LeftHandRing1', Weight: 0.052446 + Group: 'LeftHandPinky1', Weight: 0.607005 +Vertex 2886: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.121240 + Group: 'LeftHandRing1', Weight: 0.141269 + Group: 'LeftHandPinky1', Weight: 0.723064 +Vertex 2887: +Vertex groups: 1 + Group: 'LeftHandPinky1', Weight: 0.953058 +Vertex 2888: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.060839 + Group: 'LeftHandPinky1', Weight: 0.927969 +Vertex 2889: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.050535 + Group: 'LeftHandThumb1', Weight: 0.842684 + Group: 'LeftHandThumb2', Weight: 0.013623 + Group: 'LeftHandIndex1', Weight: 0.070811 +Vertex 2890: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.664521 + Group: 'LeftHandThumb2', Weight: 0.278311 + Group: 'LeftHandIndex1', Weight: 0.039115 +Vertex 2891: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.000822 + Group: 'LeftHandThumb1', Weight: 0.663987 + Group: 'LeftHandThumb2', Weight: 0.148660 + Group: 'LeftHandIndex1', Weight: 0.156117 +Vertex 2892: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.238455 + Group: 'LeftHandThumb1', Weight: 0.510812 + Group: 'LeftHandIndex1', Weight: 0.221838 +Vertex 2893: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.095597 + Group: 'LeftHandThumb1', Weight: 0.836130 + Group: 'LeftHandIndex1', Weight: 0.048632 +Vertex 2894: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.053472 + Group: 'LeftHandThumb1', Weight: 0.908799 +Vertex 2895: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.040242 + Group: 'LeftHandThumb1', Weight: 0.919091 +Vertex 2896: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.605289 + Group: 'LeftHandThumb1', Weight: 0.244986 + Group: 'LeftHandIndex1', Weight: 0.130776 +Vertex 2897: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.879781 + Group: 'LeftHandThumb1', Weight: 0.089889 +Vertex 2898: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.277821 + Group: 'LeftHandThumb1', Weight: 0.667525 + Group: 'LeftHandIndex1', Weight: 0.019240 +Vertex 2899: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.037077 + Group: 'LeftHand', Weight: 0.641277 + Group: 'LeftHandThumb1', Weight: 0.299618 +Vertex 2900: +Vertex groups: 1 + Group: 'LeftHand', Weight: 0.937484 +Vertex 2901: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.917843 + Group: 'LeftHandPinky1', Weight: 0.063063 +Vertex 2902: +Vertex groups: 1 + Group: 'LeftHand', Weight: 0.966306 +Vertex 2903: +Vertex groups: 1 + Group: 'LeftHand', Weight: 0.967154 +Vertex 2904: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.051253 + Group: 'LeftHand', Weight: 0.931140 +Vertex 2905: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.945536 + Group: 'LeftHandPinky1', Weight: 0.007722 +Vertex 2906: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.319693 + Group: 'LeftHandPinky1', Weight: 0.658517 +Vertex 2907: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.038549 + Group: 'LeftHand', Weight: 0.724514 + Group: 'LeftHandPinky1', Weight: 0.221647 +Vertex 2908: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.727409 + Group: 'LeftHandPinky1', Weight: 0.245512 +Vertex 2909: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.029869 + Group: 'LeftHand', Weight: 0.855992 + Group: 'LeftHandPinky1', Weight: 0.097023 +Vertex 2910: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.131350 + Group: 'LeftHand', Weight: 0.826251 + Group: 'LeftHandPinky1', Weight: 0.027220 +Vertex 2911: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.083766 + Group: 'LeftHand', Weight: 0.796385 + Group: 'LeftHandPinky1', Weight: 0.112431 +Vertex 2912: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.068231 + Group: 'LeftHand', Weight: 0.800752 + Group: 'LeftHandPinky1', Weight: 0.116740 +Vertex 2913: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.028295 + Group: 'LeftHand', Weight: 0.699306 + Group: 'LeftHandPinky1', Weight: 0.242266 +Vertex 2914: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.273435 + Group: 'LeftHandPinky1', Weight: 0.692649 +Vertex 2915: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.071215 + Group: 'LeftHandPinky1', Weight: 0.902154 +Vertex 2916: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.058137 + Group: 'LeftHandPinky1', Weight: 0.927450 +Vertex 2917: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.273577 + Group: 'LeftHandPinky1', Weight: 0.701255 +Vertex 2918: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.034655 + Group: 'LeftHand', Weight: 0.704517 + Group: 'LeftHandPinky1', Weight: 0.240802 +Vertex 2919: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.077048 + Group: 'LeftHand', Weight: 0.794616 + Group: 'LeftHandPinky1', Weight: 0.119115 +Vertex 2920: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.110418 + Group: 'LeftHand', Weight: 0.804639 + Group: 'LeftHandPinky1', Weight: 0.076444 +Vertex 2921: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.088048 + Group: 'LeftHand', Weight: 0.829988 + Group: 'LeftHandPinky1', Weight: 0.071197 +Vertex 2922: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.071048 + Group: 'LeftHand', Weight: 0.835841 + Group: 'LeftHandPinky1', Weight: 0.075436 +Vertex 2923: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.056431 + Group: 'LeftHand', Weight: 0.803190 + Group: 'LeftHandPinky1', Weight: 0.118059 +Vertex 2924: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.020276 + Group: 'LeftHand', Weight: 0.709848 + Group: 'LeftHandPinky1', Weight: 0.224643 +Vertex 2925: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.293493 + Group: 'LeftHandPinky1', Weight: 0.659999 +Vertex 2926: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.087406 + Group: 'LeftHandPinky1', Weight: 0.870599 +Vertex 2927: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.288131 + Group: 'LeftHandThumb1', Weight: 0.030871 + Group: 'LeftHandPinky1', Weight: 0.636076 +Vertex 2928: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.003454 + Group: 'LeftHand', Weight: 0.696282 + Group: 'LeftHandThumb1', Weight: 0.038842 + Group: 'LeftHandPinky1', Weight: 0.220406 +Vertex 2929: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.037364 + Group: 'LeftHand', Weight: 0.799619 + Group: 'LeftHandThumb1', Weight: 0.019752 + Group: 'LeftHandPinky1', Weight: 0.114821 +Vertex 2930: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.109102 + Group: 'LeftHandRing1', Weight: 0.033765 + Group: 'LeftHandPinky1', Weight: 0.806273 +Vertex 2931: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.021768 + Group: 'LeftHand', Weight: 0.813371 + Group: 'LeftHandThumb1', Weight: 0.069478 + Group: 'LeftHandPinky1', Weight: 0.071721 +Vertex 2932: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.018720 + Group: 'LeftHand', Weight: 0.781045 + Group: 'LeftHandThumb1', Weight: 0.145455 + Group: 'LeftHandPinky1', Weight: 0.010262 +Vertex 2933: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.706787 + Group: 'LeftHandThumb1', Weight: 0.099355 + Group: 'LeftHandPinky1', Weight: 0.151627 +Vertex 2934: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.630768 + Group: 'LeftHandThumb1', Weight: 0.278889 + Group: 'LeftHandPinky1', Weight: 0.052703 +Vertex 2935: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.521816 + Group: 'LeftHandThumb1', Weight: 0.117582 + Group: 'LeftHandRing1', Weight: 0.037185 + Group: 'LeftHandPinky1', Weight: 0.290663 +Vertex 2936: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.503803 + Group: 'LeftHandThumb1', Weight: 0.315431 + Group: 'LeftHandRing1', Weight: 0.004175 + Group: 'LeftHandPinky1', Weight: 0.105606 +Vertex 2937: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.763264 + Group: 'LeftHandThumb2', Weight: 0.218251 +Vertex 2938: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.903310 + Group: 'LeftHandThumb2', Weight: 0.065749 +Vertex 2939: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.036561 + Group: 'LeftHandThumb1', Weight: 0.912809 + Group: 'LeftHandThumb2', Weight: 0.013476 +Vertex 2940: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.084211 + Group: 'LeftHandThumb1', Weight: 0.875191 +Vertex 2941: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.021471 + Group: 'LeftHandThumb1', Weight: 0.854656 + Group: 'LeftHandThumb2', Weight: 0.080393 +Vertex 2942: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.039617 + Group: 'LeftHandThumb1', Weight: 0.901151 + Group: 'LeftHandThumb2', Weight: 0.029761 +Vertex 2943: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.864972 + Group: 'LeftHandThumb2', Weight: 0.093695 +Vertex 2944: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.732468 + Group: 'LeftHandThumb2', Weight: 0.235895 +Vertex 2945: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.864771 + Group: 'LeftHandThumb3_end', Weight: 0.129307 +Vertex 2946: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.823937 + Group: 'LeftHandThumb3_end', Weight: 0.155126 +Vertex 2947: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.821606 + Group: 'LeftHandThumb3_end', Weight: 0.151260 +Vertex 2948: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.818642 + Group: 'LeftHandThumb3_end', Weight: 0.162972 +Vertex 2949: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.844692 + Group: 'LeftHandThumb3_end', Weight: 0.143065 +Vertex 2950: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.851697 + Group: 'LeftHandThumb3_end', Weight: 0.142789 +Vertex 2951: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.885650 + Group: 'LeftHandThumb3_end', Weight: 0.108908 +Vertex 2952: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.989765 +Vertex 2953: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.854520 + Group: 'LeftHandThumb3_end', Weight: 0.130774 +Vertex 2954: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.011432 + Group: 'LeftHandThumb3_end', Weight: 0.968908 +Vertex 2955: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.055318 + Group: 'LeftHandThumb3_end', Weight: 0.943758 +Vertex 2956: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.068443 + Group: 'LeftHandThumb3_end', Weight: 0.929982 +Vertex 2957: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.065366 + Group: 'LeftHandThumb3_end', Weight: 0.932790 +Vertex 2958: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.061396 + Group: 'LeftHandThumb3_end', Weight: 0.937127 +Vertex 2959: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.048169 + Group: 'LeftHandThumb3_end', Weight: 0.950300 +Vertex 2960: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.054968 + Group: 'LeftHandThumb3_end', Weight: 0.944015 +Vertex 2961: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998594 +Vertex 2962: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997753 +Vertex 2963: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997187 +Vertex 2964: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.996244 +Vertex 2965: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.996890 +Vertex 2966: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997025 +Vertex 2967: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998508 +Vertex 2968: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998068 +Vertex 2969: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998001 +Vertex 2970: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.982082 +Vertex 2971: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.981532 +Vertex 2972: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.984962 +Vertex 2973: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.992677 +Vertex 2974: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.988402 +Vertex 2975: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998420 +Vertex 2976: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.983780 +Vertex 2977: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.985282 +Vertex 2978: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.993081 +Vertex 2979: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.993709 +Vertex 2980: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997113 +Vertex 2981: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.993960 +Vertex 2982: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.995044 +Vertex 2983: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.991404 +Vertex 2984: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.996365 +Vertex 2985: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998950 +Vertex 2986: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.124197 + Group: 'LeftHandThumb3_end', Weight: 0.874685 +Vertex 2987: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.189701 + Group: 'LeftHandThumb3_end', Weight: 0.807386 +Vertex 2988: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.205975 + Group: 'LeftHandThumb3_end', Weight: 0.789319 +Vertex 2989: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.202305 + Group: 'LeftHandThumb3_end', Weight: 0.791543 +Vertex 2990: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.193259 + Group: 'LeftHandThumb3_end', Weight: 0.801959 +Vertex 2991: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.180402 + Group: 'LeftHandThumb3_end', Weight: 0.816316 +Vertex 2992: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.122722 + Group: 'LeftHandThumb3_end', Weight: 0.876107 +Vertex 2993: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.085580 + Group: 'LeftHandThumb3_end', Weight: 0.913816 +Vertex 2994: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.068439 + Group: 'LeftHandThumb3', Weight: 0.918787 +Vertex 2995: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.098780 + Group: 'LeftHandThumb3', Weight: 0.856901 +Vertex 2996: +Vertex groups: 3 + Group: 'LeftHandThumb2', Weight: 0.115830 + Group: 'LeftHandThumb3', Weight: 0.839209 + Group: 'LeftHandThumb3_end', Weight: 0.009775 +Vertex 2997: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.100937 + Group: 'LeftHandThumb3', Weight: 0.868882 +Vertex 2998: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.083498 + Group: 'LeftHandThumb3', Weight: 0.893185 +Vertex 2999: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.055221 + Group: 'LeftHandThumb3', Weight: 0.927945 +Vertex 3000: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.066811 + Group: 'LeftHandThumb3', Weight: 0.923209 +Vertex 3001: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.089580 + Group: 'LeftHandThumb3', Weight: 0.881423 +Vertex 3002: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.003960 + Group: 'LeftHandThumb2', Weight: 0.831961 + Group: 'LeftHandThumb3', Weight: 0.118251 +Vertex 3003: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.067525 + Group: 'LeftHandThumb2', Weight: 0.675611 + Group: 'LeftHandThumb3', Weight: 0.144033 + Group: 'LeftHandIndex1', Weight: 0.096145 +Vertex 3004: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.056421 + Group: 'LeftHandThumb2', Weight: 0.747786 + Group: 'LeftHandThumb3', Weight: 0.157340 + Group: 'LeftHandIndex1', Weight: 0.004034 +Vertex 3005: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.072604 + Group: 'LeftHandThumb2', Weight: 0.786057 + Group: 'LeftHandThumb3', Weight: 0.125891 +Vertex 3006: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.061900 + Group: 'LeftHandThumb2', Weight: 0.809955 + Group: 'LeftHandThumb3', Weight: 0.120684 +Vertex 3007: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.019327 + Group: 'LeftHandThumb2', Weight: 0.854478 + Group: 'LeftHandThumb3', Weight: 0.106996 +Vertex 3008: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.004332 + Group: 'LeftHandThumb2', Weight: 0.889283 + Group: 'LeftHandThumb3', Weight: 0.078130 +Vertex 3009: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.059620 + Group: 'LeftHandThumb2', Weight: 0.723946 + Group: 'LeftHandThumb3', Weight: 0.116664 + Group: 'LeftHandIndex1', Weight: 0.091705 +Vertex 3010: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.106597 + Group: 'LeftHandThumb2', Weight: 0.715377 + Group: 'LeftHandThumb3', Weight: 0.054052 + Group: 'LeftHandIndex1', Weight: 0.117663 +Vertex 3011: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.107815 + Group: 'LeftHandThumb2', Weight: 0.816794 + Group: 'LeftHandThumb3', Weight: 0.013710 + Group: 'LeftHandIndex1', Weight: 0.030907 +Vertex 3012: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.168641 + Group: 'LeftHandThumb2', Weight: 0.806583 +Vertex 3013: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.175160 + Group: 'LeftHandThumb2', Weight: 0.791247 + Group: 'LeftHandThumb3', Weight: 0.007570 +Vertex 3014: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.239739 + Group: 'LeftHandThumb2', Weight: 0.711208 + Group: 'LeftHandThumb3', Weight: 0.027319 +Vertex 3015: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.261956 + Group: 'LeftHandThumb2', Weight: 0.667978 + Group: 'LeftHandThumb3', Weight: 0.036919 +Vertex 3016: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.220903 + Group: 'LeftHandThumb2', Weight: 0.639715 + Group: 'LeftHandThumb3', Weight: 0.038874 + Group: 'LeftHandIndex1', Weight: 0.067187 +Vertex 3017: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.172629 + Group: 'LeftHandThumb2', Weight: 0.582023 + Group: 'LeftHandThumb3', Weight: 0.058224 + Group: 'LeftHandIndex1', Weight: 0.149299 +Vertex 3018: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.442834 + Group: 'LeftHandThumb1', Weight: 0.291966 + Group: 'LeftHand', Weight: 0.102219 + Group: 'LeftHandThumb2', Weight: 0.093561 + Group: 'LeftHandMiddle1', Weight: 0.069420 +Vertex 3019: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.046188 + Group: 'LeftHandThumb1', Weight: 0.453428 + Group: 'LeftHandThumb2', Weight: 0.218234 + Group: 'LeftHandIndex1', Weight: 0.200821 + Group: 'LeftHandMiddle1', Weight: 0.003909 +Vertex 3020: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.655531 + Group: 'LeftHandThumb2', Weight: 0.292862 +Vertex 3021: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.004767 + Group: 'LeftHandThumb1', Weight: 0.703291 + Group: 'LeftHandThumb2', Weight: 0.200322 + Group: 'LeftHandIndex1', Weight: 0.024684 +Vertex 3022: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.472709 + Group: 'LeftHandThumb1', Weight: 0.179445 + Group: 'LeftHandPinky1', Weight: 0.127641 + Group: 'LeftHandRing1', Weight: 0.114974 + Group: 'LeftHandIndex1', Weight: 0.105231 +Vertex 3023: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.630340 + Group: 'LeftHandMiddle1', Weight: 0.184890 + Group: 'LeftHandThumb1', Weight: 0.066465 + Group: 'LeftHandThumb2', Weight: 0.063020 + Group: 'LeftHandRing1', Weight: 0.055285 +Vertex 3024: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.471119 + Group: 'LeftHandMiddle1', Weight: 0.202009 + Group: 'LeftHandThumb1', Weight: 0.120714 + Group: 'LeftHand', Weight: 0.106069 + Group: 'LeftHandRing1', Weight: 0.100089 +Vertex 3025: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.393230 + Group: 'LeftHandRing1', Weight: 0.272201 + Group: 'LeftHandIndex1', Weight: 0.189076 + Group: 'LeftHand', Weight: 0.089237 + Group: 'LeftHandPinky1', Weight: 0.056256 +Vertex 3026: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.402064 + Group: 'LeftHandIndex1', Weight: 0.326192 + Group: 'LeftHandRing1', Weight: 0.142281 + Group: 'LeftHand', Weight: 0.066755 + Group: 'LeftHandThumb1', Weight: 0.062708 +Vertex 3027: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.591673 + Group: 'LeftHandRing1', Weight: 0.193214 + Group: 'LeftHandIndex1', Weight: 0.189621 + Group: 'LeftHandMiddle2', Weight: 0.015204 + Group: 'LeftHand', Weight: 0.010288 +Vertex 3028: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.546629 + Group: 'LeftHandIndex1', Weight: 0.318600 + Group: 'LeftHandRing1', Weight: 0.112473 + Group: 'LeftHandMiddle2', Weight: 0.014698 + Group: 'LeftHandThumb1', Weight: 0.007600 +Vertex 3029: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.501641 + Group: 'LeftHandRing1', Weight: 0.318040 + Group: 'LeftHandIndex1', Weight: 0.107083 + Group: 'LeftHandPinky1', Weight: 0.048843 + Group: 'LeftHandRing2', Weight: 0.024392 +Vertex 3030: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.600907 + Group: 'LeftHandMiddle1', Weight: 0.180221 + Group: 'LeftHandPinky1', Weight: 0.108235 + Group: 'LeftHandRing2', Weight: 0.088622 + Group: 'LeftHandIndex1', Weight: 0.022014 +Vertex 3031: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.473754 + Group: 'LeftHandMiddle1', Weight: 0.309080 + Group: 'LeftHandRing2', Weight: 0.084046 + Group: 'LeftHandPinky1', Weight: 0.069126 + Group: 'LeftHandIndex1', Weight: 0.063993 +Vertex 3032: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.472121 + Group: 'LeftHandMiddle1', Weight: 0.240690 + Group: 'LeftHand', Weight: 0.102761 + Group: 'LeftHandIndex1', Weight: 0.099686 + Group: 'LeftHandPinky1', Weight: 0.084742 +Vertex 3033: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.450187 + Group: 'LeftHandPinky1', Weight: 0.310954 + Group: 'LeftHand', Weight: 0.175835 + Group: 'LeftHandThumb1', Weight: 0.039725 + Group: 'LeftHandMiddle1', Weight: 0.023299 +Vertex 3034: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.339907 + Group: 'LeftHandRing1', Weight: 0.310780 + Group: 'LeftHandPinky1', Weight: 0.156825 + Group: 'LeftHandMiddle1', Weight: 0.105121 + Group: 'LeftHandThumb1', Weight: 0.087367 +Vertex 3035: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.222236 + Group: 'LeftHandThumb1', Weight: 0.063145 + Group: 'LeftHandIndex1', Weight: 0.003144 + Group: 'LeftHandRing1', Weight: 0.172624 + Group: 'LeftHandPinky1', Weight: 0.476157 +Vertex 3036: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.084499 + Group: 'LeftHandRing1', Weight: 0.112491 + Group: 'LeftHandPinky1', Weight: 0.738819 +Vertex 3037: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.043559 + Group: 'LeftHandRing1', Weight: 0.147759 + Group: 'LeftHandPinky1', Weight: 0.734000 + Group: 'LeftHandPinky2', Weight: 0.009107 +Vertex 3038: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.077805 + Group: 'LeftHandRing1', Weight: 0.605562 + Group: 'LeftHandRing2', Weight: 0.030378 + Group: 'LeftHandPinky1', Weight: 0.176057 + Group: 'LeftHandPinky2', Weight: 0.020286 +Vertex 3039: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.041685 + Group: 'LeftHandRing1', Weight: 0.496783 + Group: 'LeftHandRing2', Weight: 0.015165 + Group: 'LeftHandPinky1', Weight: 0.316962 + Group: 'LeftHandPinky2', Weight: 0.058551 +Vertex 3040: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.232041 + Group: 'LeftHandPinky1', Weight: 0.602925 + Group: 'LeftHandPinky2', Weight: 0.087236 +Vertex 3041: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.080658 + Group: 'LeftHandIndex1', Weight: 0.014617 + Group: 'LeftHandMiddle1', Weight: 0.070021 + Group: 'LeftHandRing1', Weight: 0.574352 + Group: 'LeftHandPinky1', Weight: 0.187265 +Vertex 3042: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.050026 + Group: 'LeftHandMiddle1', Weight: 0.042418 + Group: 'LeftHandRing1', Weight: 0.503093 + Group: 'LeftHandPinky1', Weight: 0.316594 + Group: 'LeftHandPinky2', Weight: 0.005787 +Vertex 3043: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.961144 +Vertex 3044: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.079314 + Group: 'RightHandMiddle1', Weight: 0.864207 + Group: 'RightHandRing1', Weight: 0.006270 +Vertex 3045: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.996803 +Vertex 3046: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.916781 + Group: 'RightHandRing3', Weight: 0.080321 +Vertex 3047: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.004176 + Group: 'RightHandMiddle1', Weight: 0.832676 + Group: 'RightHandRing1', Weight: 0.099487 +Vertex 3048: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.010773 + Group: 'RightHandRing3_end', Weight: 0.968991 +Vertex 3049: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.926789 + Group: 'RightHandMiddle1', Weight: 0.026740 +Vertex 3050: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.675355 + Group: 'RightHandRing1', Weight: 0.251954 + Group: 'RightHandRing2', Weight: 0.007415 +Vertex 3051: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.724034 + Group: 'RightHandMiddle1', Weight: 0.246280 +Vertex 3052: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.901014 + Group: 'RightHandMiddle1', Weight: 0.079121 +Vertex 3053: +Vertex groups: 1 + Group: 'RightHandIndex1', Weight: 0.953615 +Vertex 3054: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.756794 + Group: 'RightHandIndex2', Weight: 0.102535 + Group: 'RightHandMiddle1', Weight: 0.105404 + Group: 'RightHandMiddle2', Weight: 0.014367 +Vertex 3055: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.895303 + Group: 'RightHandIndex2', Weight: 0.091148 +Vertex 3056: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.830780 + Group: 'RightHandIndex2', Weight: 0.127732 + Group: 'RightHandMiddle1', Weight: 0.010706 +Vertex 3057: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.706081 + Group: 'RightHandMiddle2', Weight: 0.112648 + Group: 'RightHandRing1', Weight: 0.078145 + Group: 'RightHandRing2', Weight: 0.094077 +Vertex 3058: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.045479 + Group: 'RightHandMiddle1', Weight: 0.825124 + Group: 'RightHandMiddle2', Weight: 0.098428 +Vertex 3059: +Vertex groups: 2 + Group: 'RightHandMiddle1', Weight: 0.796882 + Group: 'RightHandMiddle2', Weight: 0.137228 +Vertex 3060: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.101742 + Group: 'RightHandRing1', Weight: 0.799621 + Group: 'RightHandRing2', Weight: 0.057789 +Vertex 3061: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.026949 + Group: 'RightHandRing1', Weight: 0.812280 + Group: 'RightHandRing2', Weight: 0.053016 + Group: 'RightHandPinky1', Weight: 0.066133 +Vertex 3062: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.700170 + Group: 'RightHandRing2', Weight: 0.049787 + Group: 'RightHandPinky1', Weight: 0.173052 + Group: 'RightHandPinky2', Weight: 0.055351 +Vertex 3063: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.594477 + Group: 'RightHandRing2', Weight: 0.259806 + Group: 'RightHandPinky2', Weight: 0.128834 +Vertex 3064: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.035733 + Group: 'RightHandRing1', Weight: 0.678802 + Group: 'RightHandRing2', Weight: 0.257654 +Vertex 3065: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.524783 + Group: 'RightHandRing2', Weight: 0.427346 + Group: 'RightHandPinky2', Weight: 0.003714 +Vertex 3066: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.094157 + Group: 'RightHandPinky1', Weight: 0.797338 + Group: 'RightHandPinky2', Weight: 0.103838 +Vertex 3067: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.017336 + Group: 'RightHandPinky1', Weight: 0.875194 + Group: 'RightHandPinky2', Weight: 0.088046 +Vertex 3068: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.895000 + Group: 'RightHandPinky2', Weight: 0.093705 +Vertex 3069: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.073179 + Group: 'RightHandIndex2', Weight: 0.827924 + Group: 'RightHandMiddle2', Weight: 0.066348 +Vertex 3070: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.092126 + Group: 'RightHandPinky2', Weight: 0.892565 +Vertex 3071: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.094763 + Group: 'RightHandRing2', Weight: 0.020521 + Group: 'RightHandPinky1', Weight: 0.098711 + Group: 'RightHandPinky2', Weight: 0.759145 +Vertex 3072: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.001653 + Group: 'RightHandPinky1', Weight: 0.091054 + Group: 'RightHandPinky2', Weight: 0.868760 +Vertex 3073: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.103200 + Group: 'RightHandIndex1', Weight: 0.005483 + Group: 'RightHandMiddle1', Weight: 0.768852 + Group: 'RightHandRing1', Weight: 0.089124 +Vertex 3074: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.018868 + Group: 'RightHandMiddle1', Weight: 0.031084 + Group: 'RightHandRing1', Weight: 0.749953 + Group: 'RightHandPinky1', Weight: 0.162659 +Vertex 3075: +Vertex groups: 1 + Group: 'RightHandPinky1', Weight: 0.972528 +Vertex 3076: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.361243 + Group: 'RightHandMiddle1', Weight: 0.600931 +Vertex 3077: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.576856 + Group: 'RightHandIndex2', Weight: 0.104348 + Group: 'RightHandMiddle1', Weight: 0.234890 + Group: 'RightHandMiddle2', Weight: 0.078765 +Vertex 3078: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.146314 + Group: 'RightHandMiddle1', Weight: 0.806381 +Vertex 3079: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.156428 + Group: 'RightHandIndex2', Weight: 0.036237 + Group: 'RightHandMiddle1', Weight: 0.643693 + Group: 'RightHandMiddle2', Weight: 0.148355 +Vertex 3080: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.478082 + Group: 'RightHandMiddle2', Weight: 0.099622 + Group: 'RightHandRing1', Weight: 0.171227 + Group: 'RightHandRing2', Weight: 0.244810 +Vertex 3081: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.367474 + Group: 'RightHandRing1', Weight: 0.553628 + Group: 'RightHandRing2', Weight: 0.024558 +Vertex 3082: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.113147 + Group: 'RightHandMiddle2', Weight: 0.003676 + Group: 'RightHandRing1', Weight: 0.448717 + Group: 'RightHandRing2', Weight: 0.405731 +Vertex 3083: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.190052 + Group: 'RightHandRing1', Weight: 0.731745 + Group: 'RightHandRing2', Weight: 0.023948 +Vertex 3084: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.554808 + Group: 'RightHandRing2', Weight: 0.176592 + Group: 'RightHandPinky1', Weight: 0.048500 + Group: 'RightHandPinky2', Weight: 0.207195 +Vertex 3085: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.496074 + Group: 'RightHandPinky1', Weight: 0.373335 + Group: 'RightHandPinky2', Weight: 0.091979 +Vertex 3086: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.205126 + Group: 'RightHandRing2', Weight: 0.086642 + Group: 'RightHandPinky1', Weight: 0.043072 + Group: 'RightHandPinky2', Weight: 0.643682 +Vertex 3087: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.198991 + Group: 'RightHandPinky1', Weight: 0.663112 + Group: 'RightHandPinky2', Weight: 0.120468 +Vertex 3088: +Vertex groups: 1 + Group: 'RightHandIndex1', Weight: 0.941093 +Vertex 3089: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.859444 + Group: 'RightHandIndex2', Weight: 0.128692 +Vertex 3090: +Vertex groups: 3 + Group: 'RightHandThumb2', Weight: 0.005431 + Group: 'RightHandIndex1', Weight: 0.895989 + Group: 'RightHandIndex2', Weight: 0.030899 +Vertex 3091: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.786437 + Group: 'RightHandIndex2', Weight: 0.189461 +Vertex 3092: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.030779 + Group: 'RightHandIndex3', Weight: 0.921718 + Group: 'RightHandIndex3_end', Weight: 0.024483 +Vertex 3093: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.022027 + Group: 'RightHandIndex2', Weight: 0.940445 +Vertex 3094: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.026345 + Group: 'RightHandIndex3_end', Weight: 0.960167 +Vertex 3095: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.951110 + Group: 'RightHandIndex3', Weight: 0.022470 +Vertex 3096: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.978680 +Vertex 3097: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.009931 + Group: 'RightHandIndex3_end', Weight: 0.968878 +Vertex 3098: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.976839 +Vertex 3099: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.014381 + Group: 'RightHandIndex3_end', Weight: 0.966651 +Vertex 3100: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.020079 + Group: 'RightHandIndex3_end', Weight: 0.963460 +Vertex 3101: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.034454 + Group: 'RightHandIndex3_end', Weight: 0.955936 +Vertex 3102: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.051876 + Group: 'RightHandIndex3_end', Weight: 0.945622 +Vertex 3103: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998865 +Vertex 3104: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998914 +Vertex 3105: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998945 +Vertex 3106: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.997610 +Vertex 3107: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.995846 +Vertex 3108: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.995655 +Vertex 3109: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.994551 +Vertex 3110: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999324 +Vertex 3111: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999392 +Vertex 3112: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999409 +Vertex 3113: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999387 +Vertex 3114: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999306 +Vertex 3115: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999198 +Vertex 3116: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999251 +Vertex 3117: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999237 +Vertex 3118: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999332 +Vertex 3119: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998793 +Vertex 3120: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999360 +Vertex 3121: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999454 +Vertex 3122: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999365 +Vertex 3123: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998193 +Vertex 3124: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998763 +Vertex 3125: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998087 +Vertex 3126: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.997835 +Vertex 3127: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.020529 + Group: 'RightHandIndex3', Weight: 0.929550 + Group: 'RightHandIndex3_end', Weight: 0.019653 +Vertex 3128: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.024514 + Group: 'RightHandIndex3', Weight: 0.932568 + Group: 'RightHandIndex3_end', Weight: 0.009426 +Vertex 3129: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.009839 + Group: 'RightHandIndex3', Weight: 0.936852 + Group: 'RightHandIndex3_end', Weight: 0.015214 +Vertex 3130: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.013788 + Group: 'RightHandIndex3', Weight: 0.937028 + Group: 'RightHandIndex3_end', Weight: 0.010318 +Vertex 3131: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.021471 + Group: 'RightHandIndex3', Weight: 0.925467 + Group: 'RightHandIndex3_end', Weight: 0.024998 +Vertex 3132: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.027469 + Group: 'RightHandIndex3', Weight: 0.914095 + Group: 'RightHandIndex3_end', Weight: 0.041835 +Vertex 3133: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.053458 + Group: 'RightHandIndex3', Weight: 0.914094 + Group: 'RightHandIndex3_end', Weight: 0.010212 +Vertex 3134: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999188 +Vertex 3135: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999485 +Vertex 3136: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998919 +Vertex 3137: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998848 +Vertex 3138: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998807 +Vertex 3139: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999417 +Vertex 3140: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999424 +Vertex 3141: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999149 +Vertex 3142: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.924654 + Group: 'RightHandIndex3', Weight: 0.037408 +Vertex 3143: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.101761 + Group: 'RightHandIndex2', Weight: 0.890169 +Vertex 3144: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.951497 + Group: 'RightHandIndex3', Weight: 0.030679 +Vertex 3145: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.156336 + Group: 'RightHandIndex2', Weight: 0.835498 +Vertex 3146: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.937698 + Group: 'RightHandIndex3', Weight: 0.051049 +Vertex 3147: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.930653 + Group: 'RightHandIndex3', Weight: 0.046995 +Vertex 3148: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.195731 + Group: 'RightHandIndex2', Weight: 0.786791 +Vertex 3149: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.901474 + Group: 'RightHandIndex3', Weight: 0.071985 +Vertex 3150: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.884188 + Group: 'RightHandIndex3', Weight: 0.082870 +Vertex 3151: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.883156 + Group: 'RightHandIndex3', Weight: 0.066016 +Vertex 3152: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.166032 + Group: 'RightHandIndex2', Weight: 0.717293 + Group: 'RightHandMiddle1', Weight: 0.032811 + Group: 'RightHandMiddle2', Weight: 0.070179 +Vertex 3153: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.345534 + Group: 'RightHandIndex2', Weight: 0.305144 + Group: 'RightHandMiddle1', Weight: 0.117473 + Group: 'RightHandMiddle2', Weight: 0.224606 +Vertex 3154: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.108829 + Group: 'RightHandIndex2', Weight: 0.087345 + Group: 'RightHandMiddle1', Weight: 0.171174 + Group: 'RightHandMiddle2', Weight: 0.624306 +Vertex 3155: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.020932 + Group: 'RightHandIndex2', Weight: 0.007622 + Group: 'RightHandMiddle1', Weight: 0.104423 + Group: 'RightHandMiddle2', Weight: 0.820482 +Vertex 3156: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.253824 + Group: 'RightHandIndex2', Weight: 0.369811 + Group: 'RightHandMiddle1', Weight: 0.070225 + Group: 'RightHandMiddle2', Weight: 0.292543 +Vertex 3157: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.118107 + Group: 'RightHandIndex2', Weight: 0.155045 + Group: 'RightHandMiddle1', Weight: 0.079386 + Group: 'RightHandMiddle2', Weight: 0.631971 +Vertex 3158: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.058196 + Group: 'RightHandIndex2', Weight: 0.077282 + Group: 'RightHandMiddle1', Weight: 0.039438 + Group: 'RightHandMiddle2', Weight: 0.784700 + Group: 'RightHandMiddle3', Weight: 0.004505 +Vertex 3159: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.116635 + Group: 'RightHandIndex2', Weight: 0.857041 +Vertex 3160: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.006088 + Group: 'RightHandIndex2', Weight: 0.958566 +Vertex 3161: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.037695 + Group: 'RightHandIndex2', Weight: 0.939797 +Vertex 3162: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.070441 + Group: 'RightHandIndex2', Weight: 0.905374 +Vertex 3163: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.085928 + Group: 'RightHandIndex2', Weight: 0.872721 +Vertex 3164: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.082216 + Group: 'RightHandIndex2', Weight: 0.843388 + Group: 'RightHandIndex3', Weight: 0.008500 + Group: 'RightHandMiddle2', Weight: 0.004204 +Vertex 3165: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.117023 + Group: 'RightHandIndex2', Weight: 0.710392 + Group: 'RightHandMiddle1', Weight: 0.018026 + Group: 'RightHandMiddle2', Weight: 0.110121 +Vertex 3166: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.211927 + Group: 'RightHandIndex2', Weight: 0.748088 +Vertex 3167: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.724543 + Group: 'RightHandIndex2', Weight: 0.221474 +Vertex 3168: +Vertex groups: 4 + Group: 'RightHandThumb2', Weight: 0.016803 + Group: 'RightHandIndex1', Weight: 0.844458 + Group: 'RightHandIndex2', Weight: 0.041403 + Group: 'RightHandMiddle1', Weight: 0.012952 +Vertex 3169: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.227119 + Group: 'RightHandIndex2', Weight: 0.662669 + Group: 'RightHandMiddle1', Weight: 0.017945 + Group: 'RightHandMiddle2', Weight: 0.054340 +Vertex 3170: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.643107 + Group: 'RightHandIndex2', Weight: 0.202378 + Group: 'RightHandMiddle1', Weight: 0.068227 + Group: 'RightHandMiddle2', Weight: 0.056653 +Vertex 3171: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.751535 + Group: 'RightHandIndex2', Weight: 0.055159 + Group: 'RightHandMiddle1', Weight: 0.106111 +Vertex 3172: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.211761 + Group: 'RightHandIndex2', Weight: 0.391715 + Group: 'RightHandMiddle1', Weight: 0.066050 + Group: 'RightHandMiddle2', Weight: 0.307512 +Vertex 3173: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.120688 + Group: 'RightHandIndex2', Weight: 0.179526 + Group: 'RightHandMiddle1', Weight: 0.071199 + Group: 'RightHandMiddle2', Weight: 0.602520 +Vertex 3174: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.258808 + Group: 'RightHandIndex2', Weight: 0.326449 + Group: 'RightHandMiddle1', Weight: 0.102131 + Group: 'RightHandMiddle2', Weight: 0.283657 +Vertex 3175: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.148862 + Group: 'RightHandIndex2', Weight: 0.159328 + Group: 'RightHandMiddle1', Weight: 0.142504 + Group: 'RightHandMiddle2', Weight: 0.514634 +Vertex 3176: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.268659 + Group: 'RightHandIndex2', Weight: 0.461729 + Group: 'RightHandMiddle1', Weight: 0.074971 + Group: 'RightHandMiddle2', Weight: 0.167785 +Vertex 3177: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.440337 + Group: 'RightHandIndex2', Weight: 0.188379 + Group: 'RightHandMiddle1', Weight: 0.150343 + Group: 'RightHandMiddle2', Weight: 0.183625 +Vertex 3178: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.626837 + Group: 'RightHandIndex2', Weight: 0.044297 + Group: 'RightHandMiddle1', Weight: 0.206907 + Group: 'RightHandMiddle2', Weight: 0.033360 + Group: 'RightHandRing1', Weight: 0.018085 +Vertex 3179: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.137581 + Group: 'RightHandMiddle3_end', Weight: 0.861932 +Vertex 3180: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.102356 + Group: 'RightHandMiddle3', Weight: 0.896147 +Vertex 3181: +Vertex groups: 1 + Group: 'RightHandMiddle3', Weight: 0.981317 +Vertex 3182: +Vertex groups: 2 + Group: 'RightHandMiddle1', Weight: 0.037112 + Group: 'RightHandMiddle2', Weight: 0.922387 +Vertex 3183: +Vertex groups: 1 + Group: 'RightHandMiddle3', Weight: 0.978895 +Vertex 3184: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.970930 + Group: 'RightHandMiddle3_end', Weight: 0.002839 +Vertex 3185: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.965330 + Group: 'RightHandMiddle3_end', Weight: 0.013385 +Vertex 3186: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.958114 + Group: 'RightHandMiddle3_end', Weight: 0.026633 +Vertex 3187: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.956384 + Group: 'RightHandMiddle3_end', Weight: 0.026951 +Vertex 3188: +Vertex groups: 1 + Group: 'RightHandMiddle3', Weight: 0.972187 +Vertex 3189: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.962478 + Group: 'RightHandMiddle3_end', Weight: 0.015537 +Vertex 3190: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.041360 + Group: 'RightHandMiddle3_end', Weight: 0.954189 +Vertex 3191: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.038917 + Group: 'RightHandMiddle3_end', Weight: 0.955403 +Vertex 3192: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.057148 + Group: 'RightHandMiddle3_end', Weight: 0.942651 +Vertex 3193: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.067139 + Group: 'RightHandMiddle3_end', Weight: 0.932580 +Vertex 3194: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.077175 + Group: 'RightHandMiddle3_end', Weight: 0.922447 +Vertex 3195: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.073052 + Group: 'RightHandMiddle3_end', Weight: 0.926625 +Vertex 3196: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.081525 + Group: 'RightHandMiddle3_end', Weight: 0.918080 +Vertex 3197: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993543 +Vertex 3198: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.994352 +Vertex 3199: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.994356 +Vertex 3200: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993193 +Vertex 3201: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993135 +Vertex 3202: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.991592 +Vertex 3203: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.991946 +Vertex 3204: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.992567 +Vertex 3205: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993878 +Vertex 3206: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.004840 + Group: 'RightHandMiddle3_end', Weight: 0.972463 +Vertex 3207: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.978771 +Vertex 3208: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.985766 +Vertex 3209: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.987813 +Vertex 3210: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.001111 + Group: 'RightHandMiddle3_end', Weight: 0.974336 +Vertex 3211: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.031972 + Group: 'RightHandMiddle3_end', Weight: 0.958865 +Vertex 3212: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.012543 + Group: 'RightHandMiddle3_end', Weight: 0.968582 +Vertex 3213: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.009630 + Group: 'RightHandMiddle3_end', Weight: 0.970047 +Vertex 3214: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.080998 + Group: 'RightHandMiddle3', Weight: 0.916876 +Vertex 3215: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.083573 + Group: 'RightHandMiddle3', Weight: 0.912668 +Vertex 3216: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.075521 + Group: 'RightHandMiddle3', Weight: 0.920114 +Vertex 3217: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.086212 + Group: 'RightHandMiddle3', Weight: 0.910393 +Vertex 3218: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.180778 + Group: 'RightHandMiddle3', Weight: 0.816223 +Vertex 3219: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.184557 + Group: 'RightHandMiddle3', Weight: 0.813850 +Vertex 3220: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.703353 + Group: 'RightHandMiddle3', Weight: 0.294577 +Vertex 3221: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.987498 +Vertex 3222: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.992839 +Vertex 3223: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.987322 +Vertex 3224: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.984703 +Vertex 3225: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.986362 +Vertex 3226: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.988911 +Vertex 3227: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993858 +Vertex 3228: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.988340 +Vertex 3229: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.071326 + Group: 'RightHandMiddle2', Weight: 0.839115 + Group: 'RightHandRing2', Weight: 0.066800 +Vertex 3230: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.007890 + Group: 'RightHandMiddle1', Weight: 0.015923 + Group: 'RightHandMiddle2', Weight: 0.892028 +Vertex 3231: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.160671 + Group: 'RightHandMiddle2', Weight: 0.708949 + Group: 'RightHandRing2', Weight: 0.100240 +Vertex 3232: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.075480 + Group: 'RightHandIndex2', Weight: 0.079077 + Group: 'RightHandMiddle1', Weight: 0.076034 + Group: 'RightHandMiddle2', Weight: 0.729817 +Vertex 3233: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.009040 + Group: 'RightHandMiddle1', Weight: 0.042218 + Group: 'RightHandMiddle2', Weight: 0.837432 + Group: 'RightHandMiddle3', Weight: 0.005174 + Group: 'RightHandRing2', Weight: 0.003379 +Vertex 3234: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.048119 + Group: 'RightHandMiddle2', Weight: 0.786672 + Group: 'RightHandRing2', Weight: 0.108031 +Vertex 3235: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.050176 + Group: 'RightHandMiddle2', Weight: 0.825981 + Group: 'RightHandRing2', Weight: 0.089539 +Vertex 3236: +Vertex groups: 2 + Group: 'RightHandRing1', Weight: 0.055068 + Group: 'RightHandRing2', Weight: 0.919817 +Vertex 3237: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.963638 +Vertex 3238: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.970439 +Vertex 3239: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.963433 + Group: 'RightHandRing3_end', Weight: 0.012751 +Vertex 3240: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.954063 + Group: 'RightHandRing3_end', Weight: 0.023507 +Vertex 3241: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.947665 + Group: 'RightHandRing3_end', Weight: 0.019591 +Vertex 3242: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.956416 +Vertex 3243: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.952095 + Group: 'RightHandRing3_end', Weight: 0.008621 +Vertex 3244: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.017254 + Group: 'RightHandRing3_end', Weight: 0.965856 +Vertex 3245: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.005255 + Group: 'RightHandRing3_end', Weight: 0.972380 +Vertex 3246: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.019301 + Group: 'RightHandRing3_end', Weight: 0.965137 +Vertex 3247: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.025756 + Group: 'RightHandRing3_end', Weight: 0.961646 +Vertex 3248: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.033793 + Group: 'RightHandRing3_end', Weight: 0.957389 +Vertex 3249: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.019416 + Group: 'RightHandRing3_end', Weight: 0.964613 +Vertex 3250: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.039520 + Group: 'RightHandRing3_end', Weight: 0.954405 +Vertex 3251: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.998053 +Vertex 3252: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997922 +Vertex 3253: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997941 +Vertex 3254: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997639 +Vertex 3255: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997849 +Vertex 3256: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997580 +Vertex 3257: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997959 +Vertex 3258: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997931 +Vertex 3259: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.998068 +Vertex 3260: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.989497 +Vertex 3261: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.991332 +Vertex 3262: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.993024 +Vertex 3263: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.993362 +Vertex 3264: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.992005 +Vertex 3265: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.989672 +Vertex 3266: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.988410 +Vertex 3267: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.989868 +Vertex 3268: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.796153 + Group: 'RightHandRing3', Weight: 0.201451 +Vertex 3269: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.250685 + Group: 'RightHandRing3', Weight: 0.745983 +Vertex 3270: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.137594 + Group: 'RightHandRing3', Weight: 0.858122 +Vertex 3271: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.197102 + Group: 'RightHandRing3', Weight: 0.799076 +Vertex 3272: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.800553 + Group: 'RightHandRing3', Weight: 0.194713 +Vertex 3273: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.932855 + Group: 'RightHandRing3', Weight: 0.063475 +Vertex 3274: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.929000 + Group: 'RightHandRing3', Weight: 0.066333 +Vertex 3275: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996206 +Vertex 3276: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996838 +Vertex 3277: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996772 +Vertex 3278: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.995487 +Vertex 3279: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996262 +Vertex 3280: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.995931 +Vertex 3281: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997224 +Vertex 3282: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996690 +Vertex 3283: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.073411 + Group: 'RightHandRing2', Weight: 0.885847 + Group: 'RightHandPinky2', Weight: 0.007908 +Vertex 3284: +Vertex groups: 3 + Group: 'RightHandMiddle2', Weight: 0.003868 + Group: 'RightHandRing1', Weight: 0.010704 + Group: 'RightHandRing2', Weight: 0.914407 +Vertex 3285: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.024889 + Group: 'RightHandMiddle2', Weight: 0.066767 + Group: 'RightHandRing1', Weight: 0.000001 + Group: 'RightHandRing2', Weight: 0.853748 +Vertex 3286: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.026878 + Group: 'RightHandMiddle2', Weight: 0.125034 + Group: 'RightHandRing1', Weight: 0.024427 + Group: 'RightHandRing2', Weight: 0.766218 +Vertex 3287: +Vertex groups: 4 + Group: 'RightHandMiddle2', Weight: 0.009060 + Group: 'RightHandRing1', Weight: 0.011881 + Group: 'RightHandRing2', Weight: 0.889081 + Group: 'RightHandRing3', Weight: 0.000729 +Vertex 3288: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.213756 + Group: 'RightHandRing2', Weight: 0.585964 + Group: 'RightHandPinky2', Weight: 0.145088 +Vertex 3289: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.100725 + Group: 'RightHandRing2', Weight: 0.812298 + Group: 'RightHandPinky2', Weight: 0.066560 +Vertex 3290: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.910966 + Group: 'RightHandPinky3_end', Weight: 0.082540 +Vertex 3291: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.068683 + Group: 'RightHandPinky3', Weight: 0.926304 +Vertex 3292: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.134959 + Group: 'RightHandPinky3_end', Weight: 0.864339 +Vertex 3293: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.941596 + Group: 'RightHandPinky3_end', Weight: 0.054444 +Vertex 3294: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.937982 + Group: 'RightHandPinky3_end', Weight: 0.056142 +Vertex 3295: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.878198 + Group: 'RightHandPinky3_end', Weight: 0.116343 +Vertex 3296: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.701742 + Group: 'RightHandPinky3_end', Weight: 0.291773 +Vertex 3297: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.575826 + Group: 'RightHandPinky3_end', Weight: 0.422416 +Vertex 3298: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.937470 + Group: 'RightHandPinky3_end', Weight: 0.060248 +Vertex 3299: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.870083 + Group: 'RightHandPinky3_end', Weight: 0.127647 +Vertex 3300: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.087884 + Group: 'RightHandPinky3_end', Weight: 0.911700 +Vertex 3301: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.064769 + Group: 'RightHandPinky3_end', Weight: 0.934832 +Vertex 3302: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.058789 + Group: 'RightHandPinky3_end', Weight: 0.940798 +Vertex 3303: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.066531 + Group: 'RightHandPinky3_end', Weight: 0.932877 +Vertex 3304: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.023414 + Group: 'RightHandPinky3_end', Weight: 0.963058 +Vertex 3305: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.045702 + Group: 'RightHandPinky3_end', Weight: 0.951968 +Vertex 3306: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.030416 + Group: 'RightHandPinky3_end', Weight: 0.959648 +Vertex 3307: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993444 +Vertex 3308: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991805 +Vertex 3309: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991934 +Vertex 3310: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.990583 +Vertex 3311: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991565 +Vertex 3312: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993108 +Vertex 3313: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.994442 +Vertex 3314: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.994364 +Vertex 3315: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993267 +Vertex 3316: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.003946 + Group: 'RightHandPinky3_end', Weight: 0.972803 +Vertex 3317: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.978330 +Vertex 3318: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.976838 +Vertex 3319: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.002898 + Group: 'RightHandPinky3_end', Weight: 0.973413 +Vertex 3320: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.990482 +Vertex 3321: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.020807 + Group: 'RightHandPinky3_end', Weight: 0.964413 +Vertex 3322: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.987623 +Vertex 3323: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991251 +Vertex 3324: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.070437 + Group: 'RightHandPinky3', Weight: 0.921903 +Vertex 3325: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.055664 + Group: 'RightHandPinky3', Weight: 0.931101 +Vertex 3326: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.061731 + Group: 'RightHandPinky3', Weight: 0.923582 +Vertex 3327: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.070424 + Group: 'RightHandPinky3', Weight: 0.910502 +Vertex 3328: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.050642 + Group: 'RightHandPinky3', Weight: 0.933315 +Vertex 3329: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.063967 + Group: 'RightHandPinky3', Weight: 0.932015 +Vertex 3330: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.043334 + Group: 'RightHandPinky3', Weight: 0.947054 +Vertex 3331: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.985981 +Vertex 3332: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.987722 +Vertex 3333: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.995220 +Vertex 3334: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993215 +Vertex 3335: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.996278 +Vertex 3336: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.987442 +Vertex 3337: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.986772 +Vertex 3338: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.989282 +Vertex 3339: +Vertex groups: 2 + Group: 'RightHandMiddle1', Weight: 0.141192 + Group: 'RightHandMiddle2', Weight: 0.818715 +Vertex 3340: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.277453 + Group: 'RightHandMiddle2', Weight: 0.298310 + Group: 'RightHandRing1', Weight: 0.091685 + Group: 'RightHandRing2', Weight: 0.326250 +Vertex 3341: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.108662 + Group: 'RightHandMiddle2', Weight: 0.081688 + Group: 'RightHandRing1', Weight: 0.104137 + Group: 'RightHandRing2', Weight: 0.700981 +Vertex 3342: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.205234 + Group: 'RightHandIndex2', Weight: 0.104691 + Group: 'RightHandMiddle1', Weight: 0.296335 + Group: 'RightHandMiddle2', Weight: 0.336607 +Vertex 3343: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.277548 + Group: 'RightHandIndex2', Weight: 0.009587 + Group: 'RightHandMiddle1', Weight: 0.488728 + Group: 'RightHandMiddle2', Weight: 0.071798 + Group: 'RightHandRing1', Weight: 0.073689 +Vertex 3344: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.075531 + Group: 'RightHandIndex2', Weight: 0.026533 + Group: 'RightHandMiddle1', Weight: 0.135021 + Group: 'RightHandMiddle2', Weight: 0.658132 + Group: 'RightHandRing2', Weight: 0.057435 +Vertex 3345: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.311550 + Group: 'RightHandIndex2', Weight: 0.246492 + Group: 'RightHandMiddle1', Weight: 0.146032 + Group: 'RightHandMiddle2', Weight: 0.260769 +Vertex 3346: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.208681 + Group: 'RightHandIndex2', Weight: 0.167323 + Group: 'RightHandMiddle1', Weight: 0.200293 + Group: 'RightHandMiddle2', Weight: 0.382437 +Vertex 3347: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.070630 + Group: 'RightHandMiddle2', Weight: 0.602759 + Group: 'RightHandRing1', Weight: 0.040906 + Group: 'RightHandRing2', Weight: 0.248754 +Vertex 3348: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.072482 + Group: 'RightHandMiddle2', Weight: 0.266712 + Group: 'RightHandRing1', Weight: 0.081367 + Group: 'RightHandRing2', Weight: 0.557236 +Vertex 3349: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.010504 + Group: 'RightHandMiddle1', Weight: 0.108896 + Group: 'RightHandMiddle2', Weight: 0.594694 + Group: 'RightHandRing1', Weight: 0.037023 + Group: 'RightHandRing2', Weight: 0.191423 +Vertex 3350: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.462181 + Group: 'RightHandRing1', Weight: 0.259955 + Group: 'RightHandMiddle2', Weight: 0.101560 + Group: 'RightHandRing2', Weight: 0.091944 + Group: 'RightHandIndex1', Weight: 0.084359 +Vertex 3351: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.061542 + Group: 'RightHandMiddle2', Weight: 0.184247 + Group: 'RightHandRing1', Weight: 0.062815 + Group: 'RightHandRing2', Weight: 0.649981 +Vertex 3352: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.466027 + Group: 'RightHandMiddle1', Weight: 0.277324 + Group: 'RightHandRing2', Weight: 0.139145 + Group: 'RightHandMiddle2', Weight: 0.068554 + Group: 'RightHandIndex1', Weight: 0.048950 +Vertex 3353: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.111677 + Group: 'RightHandMiddle2', Weight: 0.539604 + Group: 'RightHandRing1', Weight: 0.034880 + Group: 'RightHandRing2', Weight: 0.259963 +Vertex 3354: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.103424 + Group: 'RightHandMiddle2', Weight: 0.391408 + Group: 'RightHandRing1', Weight: 0.045192 + Group: 'RightHandRing2', Weight: 0.414498 +Vertex 3355: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.325443 + Group: 'RightHandRing2', Weight: 0.400993 + Group: 'RightHandPinky2', Weight: 0.233707 +Vertex 3356: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.146427 + Group: 'RightHandRing2', Weight: 0.182484 + Group: 'RightHandPinky2', Weight: 0.601928 + Group: 'RightHandPinky3', Weight: 0.036264 +Vertex 3357: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.054029 + Group: 'RightHandRing1', Weight: 0.489362 + Group: 'RightHandRing2', Weight: 0.133465 + Group: 'RightHandPinky1', Weight: 0.196825 + Group: 'RightHandPinky2', Weight: 0.084558 +Vertex 3358: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.017233 + Group: 'RightHandRing1', Weight: 0.325547 + Group: 'RightHandRing2', Weight: 0.083782 + Group: 'RightHandPinky1', Weight: 0.360172 + Group: 'RightHandPinky2', Weight: 0.162516 +Vertex 3359: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.292332 + Group: 'RightHandRing2', Weight: 0.449686 + Group: 'RightHandPinky2', Weight: 0.204427 +Vertex 3360: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.146601 + Group: 'RightHandRing2', Weight: 0.208827 + Group: 'RightHandPinky1', Weight: 0.012040 + Group: 'RightHandPinky2', Weight: 0.557252 + Group: 'RightHandPinky3', Weight: 0.044304 +Vertex 3361: +Vertex groups: 2 + Group: 'RightHandRing1', Weight: 0.150244 + Group: 'RightHandRing2', Weight: 0.814140 +Vertex 3362: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.020564 + Group: 'RightHandMiddle2', Weight: 0.001545 + Group: 'RightHandRing1', Weight: 0.117428 + Group: 'RightHandRing2', Weight: 0.815294 +Vertex 3363: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.224554 + Group: 'RightHandRing2', Weight: 0.703436 + Group: 'RightHandPinky2', Weight: 0.059727 +Vertex 3364: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.333218 + Group: 'RightHandRing2', Weight: 0.525961 + Group: 'RightHandPinky2', Weight: 0.114251 +Vertex 3365: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.911139 + Group: 'RightHandMiddle3', Weight: 0.077375 +Vertex 3366: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.919751 + Group: 'RightHandMiddle3', Weight: 0.062389 +Vertex 3367: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.884551 + Group: 'RightHandMiddle3', Weight: 0.099847 +Vertex 3368: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.847428 + Group: 'RightHandMiddle3', Weight: 0.112292 +Vertex 3369: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.855970 + Group: 'RightHandMiddle3', Weight: 0.118648 +Vertex 3370: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.895972 + Group: 'RightHandMiddle3', Weight: 0.075240 +Vertex 3371: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.932532 + Group: 'RightHandMiddle3', Weight: 0.038515 +Vertex 3372: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.846822 + Group: 'RightHandMiddle3', Weight: 0.120448 +Vertex 3373: +Vertex groups: 1 + Group: 'RightHandRing2', Weight: 0.971295 +Vertex 3374: +Vertex groups: 1 + Group: 'RightHandRing2', Weight: 0.967084 +Vertex 3375: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.956794 + Group: 'RightHandRing3', Weight: 0.012463 +Vertex 3376: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.892196 + Group: 'RightHandRing3', Weight: 0.084746 +Vertex 3377: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.838660 + Group: 'RightHandRing3', Weight: 0.131038 +Vertex 3378: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.867024 + Group: 'RightHandRing3', Weight: 0.104498 +Vertex 3379: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.914024 + Group: 'RightHandRing3', Weight: 0.032301 +Vertex 3380: +Vertex groups: 1 + Group: 'RightHandRing2', Weight: 0.949558 +Vertex 3381: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.924332 + Group: 'RightHandPinky3', Weight: 0.051366 +Vertex 3382: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.930632 + Group: 'RightHandPinky3', Weight: 0.055114 +Vertex 3383: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.870165 + Group: 'RightHandPinky3', Weight: 0.079956 +Vertex 3384: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.072338 + Group: 'RightHandRing2', Weight: 0.089353 + Group: 'RightHandPinky2', Weight: 0.756552 + Group: 'RightHandPinky3', Weight: 0.064616 +Vertex 3385: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.040871 + Group: 'RightHandRing2', Weight: 0.054260 + Group: 'RightHandPinky1', Weight: 0.013350 + Group: 'RightHandPinky2', Weight: 0.794327 + Group: 'RightHandPinky3', Weight: 0.070145 +Vertex 3386: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.835217 + Group: 'RightHandPinky3', Weight: 0.121490 +Vertex 3387: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.891589 + Group: 'RightHandPinky3', Weight: 0.094587 +Vertex 3388: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.914845 + Group: 'RightHandPinky3', Weight: 0.074246 +Vertex 3389: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.242515 + Group: 'RightHandRing2', Weight: 0.586931 + Group: 'RightHandPinky2', Weight: 0.143062 +Vertex 3390: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.091729 + Group: 'RightHandPinky2', Weight: 0.895251 +Vertex 3391: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.090965 + Group: 'RightHandPinky2', Weight: 0.886120 +Vertex 3392: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.850518 + Group: 'RightHandPinky2', Weight: 0.136890 +Vertex 3393: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.800442 + Group: 'RightHandPinky2', Weight: 0.165888 +Vertex 3394: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.015896 + Group: 'RightHandPinky1', Weight: 0.162448 + Group: 'RightHandPinky2', Weight: 0.773259 +Vertex 3395: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.077151 + Group: 'RightHandPinky1', Weight: 0.767140 + Group: 'RightHandPinky2', Weight: 0.118057 +Vertex 3396: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.274997 + Group: 'RightHandMiddle2', Weight: 0.340717 + Group: 'RightHandRing1', Weight: 0.050271 + Group: 'RightHandRing2', Weight: 0.326329 +Vertex 3397: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.104304 + Group: 'RightHandMiddle2', Weight: 0.117355 + Group: 'RightHandRing1', Weight: 0.052588 + Group: 'RightHandRing2', Weight: 0.718853 +Vertex 3398: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.261803 + Group: 'RightHandMiddle2', Weight: 0.356820 + Group: 'RightHandRing1', Weight: 0.016997 + Group: 'RightHandRing2', Weight: 0.336980 +Vertex 3399: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.110177 + Group: 'RightHandMiddle2', Weight: 0.137616 + Group: 'RightHandRing1', Weight: 0.047509 + Group: 'RightHandRing2', Weight: 0.691937 +Vertex 3400: +Vertex groups: 4 + Group: 'RightHandMiddle2', Weight: 0.022171 + Group: 'RightHandRing1', Weight: 0.108734 + Group: 'RightHandRing2', Weight: 0.766488 + Group: 'RightHandPinky2', Weight: 0.008962 +Vertex 3401: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.011598 + Group: 'RightHandThumb2', Weight: 0.008766 + Group: 'RightHandIndex1', Weight: 0.920366 +Vertex 3402: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.036311 + Group: 'RightHandIndex1', Weight: 0.729020 + Group: 'RightHandMiddle1', Weight: 0.210199 +Vertex 3403: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.001392 + Group: 'RightHandIndex1', Weight: 0.391009 + Group: 'RightHandMiddle1', Weight: 0.562355 +Vertex 3404: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.011259 + Group: 'RightHandIndex1', Weight: 0.132134 + Group: 'RightHandMiddle1', Weight: 0.813338 +Vertex 3405: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.062131 + Group: 'RightHandMiddle1', Weight: 0.377006 + Group: 'RightHandRing1', Weight: 0.512250 +Vertex 3406: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.037842 + Group: 'RightHandMiddle1', Weight: 0.185554 + Group: 'RightHandRing1', Weight: 0.713156 + Group: 'RightHandPinky1', Weight: 0.012359 +Vertex 3407: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.375556 + Group: 'RightHandPinky1', Weight: 0.551554 + Group: 'RightHandPinky2', Weight: 0.034484 +Vertex 3408: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.144629 + Group: 'RightHandPinky1', Weight: 0.799037 + Group: 'RightHandPinky2', Weight: 0.038165 +Vertex 3409: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.057276 + Group: 'RightHandIndex1', Weight: 0.084129 + Group: 'RightHandMiddle1', Weight: 0.830663 +Vertex 3410: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.116780 + Group: 'RightHandMiddle1', Weight: 0.600678 + Group: 'RightHandRing1', Weight: 0.245416 +Vertex 3411: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.066283 + Group: 'RightHandMiddle1', Weight: 0.110137 + Group: 'RightHandRing1', Weight: 0.749865 + Group: 'RightHandPinky1', Weight: 0.062464 +Vertex 3412: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.000401 + Group: 'RightHandRing1', Weight: 0.591949 + Group: 'RightHandPinky1', Weight: 0.343999 +Vertex 3413: +Vertex groups: 2 + Group: 'RightHandRing1', Weight: 0.063145 + Group: 'RightHandPinky1', Weight: 0.914869 +Vertex 3414: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.118532 + Group: 'RightHandThumb2', Weight: 0.143726 + Group: 'RightHandIndex1', Weight: 0.710669 +Vertex 3415: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.106110 + Group: 'RightHandThumb2', Weight: 0.190030 + Group: 'RightHandIndex1', Weight: 0.655370 +Vertex 3416: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.187988 + Group: 'RightHandRing2', Weight: 0.031661 + Group: 'RightHandPinky1', Weight: 0.456330 + Group: 'RightHandPinky2', Weight: 0.268246 +Vertex 3417: +Vertex groups: 1 + Group: 'RightHandPinky1', Weight: 0.965376 +Vertex 3418: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.932754 + Group: 'RightHandPinky2', Weight: 0.015067 +Vertex 3419: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.010725 + Group: 'RightHandRing1', Weight: 0.011068 + Group: 'RightHandPinky1', Weight: 0.892739 + Group: 'RightHandPinky2', Weight: 0.017792 +Vertex 3420: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.035236 + Group: 'RightHandRing1', Weight: 0.070877 + Group: 'RightHandPinky1', Weight: 0.829867 + Group: 'RightHandPinky2', Weight: 0.013699 +Vertex 3421: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.072890 + Group: 'RightHandThumb1', Weight: 0.607168 + Group: 'RightHandThumb2', Weight: 0.064759 + Group: 'RightHandIndex1', Weight: 0.248956 +Vertex 3422: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.007062 + Group: 'RightHand', Weight: 0.928719 + Group: 'RightHandThumb1', Weight: 0.023756 +Vertex 3423: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.100802 + Group: 'RightHand', Weight: 0.781673 + Group: 'RightHandThumb1', Weight: 0.111993 +Vertex 3424: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.165625 + Group: 'RightHand', Weight: 0.647146 + Group: 'RightHandThumb1', Weight: 0.181851 +Vertex 3425: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.056350 + Group: 'RightHand', Weight: 0.359037 + Group: 'RightHandThumb1', Weight: 0.571643 +Vertex 3426: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.157568 + Group: 'RightHand', Weight: 0.571175 + Group: 'RightHandThumb1', Weight: 0.263774 +Vertex 3427: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.065962 + Group: 'RightHand', Weight: 0.312511 + Group: 'RightHandThumb1', Weight: 0.610318 +Vertex 3428: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.332771 + Group: 'RightHandThumb1', Weight: 0.073042 + Group: 'RightHandIndex1', Weight: 0.550398 + Group: 'RightHandMiddle1', Weight: 0.012803 +Vertex 3429: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.830773 + Group: 'RightHandIndex1', Weight: 0.106794 + Group: 'RightHandMiddle1', Weight: 0.012937 +Vertex 3430: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.036755 + Group: 'RightHand', Weight: 0.672579 + Group: 'RightHandThumb1', Weight: 0.266158 +Vertex 3431: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.007191 + Group: 'RightHand', Weight: 0.241118 + Group: 'RightHandThumb1', Weight: 0.714214 +Vertex 3432: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.139304 + Group: 'RightHandThumb1', Weight: 0.819523 +Vertex 3433: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.358513 + Group: 'RightHandThumb1', Weight: 0.573127 + Group: 'RightHandPinky1', Weight: 0.013001 +Vertex 3434: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.232105 + Group: 'RightHandThumb1', Weight: 0.644589 + Group: 'RightHandIndex1', Weight: 0.010205 + Group: 'RightHandPinky1', Weight: 0.040535 +Vertex 3435: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.096383 + Group: 'RightHandThumb1', Weight: 0.816307 + Group: 'RightHandThumb2', Weight: 0.017824 +Vertex 3436: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.071920 + Group: 'RightHandThumb1', Weight: 0.680374 + Group: 'RightHandThumb2', Weight: 0.097442 + Group: 'RightHandIndex1', Weight: 0.091620 +Vertex 3437: +Vertex groups: 5 + Group: 'RightHandThumb1', Weight: 0.581130 + Group: 'RightHand', Weight: 0.185026 + Group: 'RightHandIndex1', Weight: 0.141814 + Group: 'RightHandThumb2', Weight: 0.054028 + Group: 'RightHandPinky1', Weight: 0.038002 +Vertex 3438: +Vertex groups: 5 + Group: 'RightHandThumb1', Weight: 0.209672 + Group: 'RightHandThumb2', Weight: 0.383328 + Group: 'RightHandThumb3', Weight: 0.018212 + Group: 'RightHandIndex1', Weight: 0.297826 + Group: 'RightHandMiddle1', Weight: 0.006260 +Vertex 3439: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.642199 + Group: 'RightHandThumb2', Weight: 0.137481 + Group: 'RightHandThumb1', Weight: 0.127532 + Group: 'RightHandMiddle1', Weight: 0.076879 + Group: 'RightHand', Weight: 0.015910 +Vertex 3440: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.196044 + Group: 'RightHandThumb2', Weight: 0.354466 + Group: 'RightHandThumb3', Weight: 0.053202 + Group: 'RightHandIndex1', Weight: 0.354213 +Vertex 3441: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.104029 + Group: 'RightHandThumb2', Weight: 0.171180 + Group: 'RightHandIndex1', Weight: 0.636669 + Group: 'RightHandMiddle1', Weight: 0.000284 +Vertex 3442: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.184884 + Group: 'RightHandThumb2', Weight: 0.387580 + Group: 'RightHandThumb3', Weight: 0.049132 + Group: 'RightHandIndex1', Weight: 0.359726 +Vertex 3443: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.237715 + Group: 'RightHandThumb2', Weight: 0.389391 + Group: 'RightHandThumb3', Weight: 0.001762 + Group: 'RightHandIndex1', Weight: 0.334538 +Vertex 3444: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.307519 + Group: 'RightHandThumb2', Weight: 0.578128 + Group: 'RightHandIndex1', Weight: 0.093272 +Vertex 3445: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.861247 + Group: 'RightHandThumb2', Weight: 0.106817 +Vertex 3446: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.849832 + Group: 'RightHandThumb2', Weight: 0.136981 +Vertex 3447: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.015972 + Group: 'RightHandThumb1', Weight: 0.158449 + Group: 'RightHandThumb2', Weight: 0.070197 + Group: 'RightHandIndex1', Weight: 0.729609 +Vertex 3448: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.296805 + Group: 'RightHandThumb2', Weight: 0.306204 + Group: 'RightHandIndex1', Weight: 0.368664 +Vertex 3449: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.898512 + Group: 'RightHandThumb2', Weight: 0.047299 + Group: 'RightHandIndex1', Weight: 0.016046 +Vertex 3450: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.925434 + Group: 'RightHandThumb2', Weight: 0.036674 +Vertex 3451: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.133816 + Group: 'RightHandThumb1', Weight: 0.828816 +Vertex 3452: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.118689 + Group: 'RightHandThumb1', Weight: 0.845293 +Vertex 3453: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.100384 + Group: 'RightHandThumb1', Weight: 0.864981 +Vertex 3454: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.117119 + Group: 'RightHandThumb1', Weight: 0.104255 + Group: 'RightHandIndex1', Weight: 0.747424 +Vertex 3455: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.729893 + Group: 'RightHandIndex1', Weight: 0.025967 + Group: 'RightHandMiddle1', Weight: 0.174171 + Group: 'RightHandRing1', Weight: 0.025862 +Vertex 3456: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.805786 + Group: 'RightHandMiddle1', Weight: 0.080895 + Group: 'RightHandRing1', Weight: 0.060209 + Group: 'RightHandPinky1', Weight: 0.021070 +Vertex 3457: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.822296 + Group: 'RightHandPinky1', Weight: 0.123254 +Vertex 3458: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.325873 + Group: 'RightHandRing1', Weight: 0.052363 + Group: 'RightHandPinky1', Weight: 0.607183 +Vertex 3459: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.121168 + Group: 'RightHandRing1', Weight: 0.141066 + Group: 'RightHandPinky1', Weight: 0.723537 +Vertex 3460: +Vertex groups: 1 + Group: 'RightHandPinky1', Weight: 0.954174 +Vertex 3461: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.060759 + Group: 'RightHandPinky1', Weight: 0.928180 +Vertex 3462: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.050540 + Group: 'RightHandThumb1', Weight: 0.842674 + Group: 'RightHandThumb2', Weight: 0.013633 + Group: 'RightHandIndex1', Weight: 0.070810 +Vertex 3463: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.664519 + Group: 'RightHandThumb2', Weight: 0.278315 + Group: 'RightHandIndex1', Weight: 0.039110 +Vertex 3464: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.000824 + Group: 'RightHandThumb1', Weight: 0.663992 + Group: 'RightHandThumb2', Weight: 0.148665 + Group: 'RightHandIndex1', Weight: 0.156106 +Vertex 3465: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.238454 + Group: 'RightHandThumb1', Weight: 0.510821 + Group: 'RightHandIndex1', Weight: 0.221828 +Vertex 3466: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.095606 + Group: 'RightHandThumb1', Weight: 0.836117 + Group: 'RightHandIndex1', Weight: 0.048634 +Vertex 3467: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.053481 + Group: 'RightHandThumb1', Weight: 0.908782 +Vertex 3468: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.040257 + Group: 'RightHandThumb1', Weight: 0.919076 +Vertex 3469: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.605281 + Group: 'RightHandThumb1', Weight: 0.244993 + Group: 'RightHandIndex1', Weight: 0.130775 +Vertex 3470: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.879774 + Group: 'RightHandThumb1', Weight: 0.089893 +Vertex 3471: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.277831 + Group: 'RightHandThumb1', Weight: 0.667511 + Group: 'RightHandIndex1', Weight: 0.019243 +Vertex 3472: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.037082 + Group: 'RightHand', Weight: 0.641276 + Group: 'RightHandThumb1', Weight: 0.299615 +Vertex 3473: +Vertex groups: 1 + Group: 'RightHand', Weight: 0.937477 +Vertex 3474: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.917847 + Group: 'RightHandPinky1', Weight: 0.063070 +Vertex 3475: +Vertex groups: 1 + Group: 'RightHand', Weight: 0.966303 +Vertex 3476: +Vertex groups: 1 + Group: 'RightHand', Weight: 0.967150 +Vertex 3477: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.051252 + Group: 'RightHand', Weight: 0.931141 +Vertex 3478: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.945538 + Group: 'RightHandPinky1', Weight: 0.007723 +Vertex 3479: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.319687 + Group: 'RightHandPinky1', Weight: 0.658543 +Vertex 3480: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.038546 + Group: 'RightHand', Weight: 0.724520 + Group: 'RightHandPinky1', Weight: 0.221639 +Vertex 3481: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.727414 + Group: 'RightHandPinky1', Weight: 0.245541 +Vertex 3482: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.029867 + Group: 'RightHand', Weight: 0.855998 + Group: 'RightHandPinky1', Weight: 0.097025 +Vertex 3483: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.131351 + Group: 'RightHand', Weight: 0.826253 + Group: 'RightHandPinky1', Weight: 0.027217 +Vertex 3484: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.083765 + Group: 'RightHand', Weight: 0.796391 + Group: 'RightHandPinky1', Weight: 0.112424 +Vertex 3485: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.068229 + Group: 'RightHand', Weight: 0.800759 + Group: 'RightHandPinky1', Weight: 0.116721 +Vertex 3486: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.028292 + Group: 'RightHand', Weight: 0.699315 + Group: 'RightHandPinky1', Weight: 0.242232 +Vertex 3487: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.273444 + Group: 'RightHandPinky1', Weight: 0.692573 +Vertex 3488: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.071224 + Group: 'RightHandPinky1', Weight: 0.901976 +Vertex 3489: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.058103 + Group: 'RightHandPinky1', Weight: 0.927551 +Vertex 3490: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.273577 + Group: 'RightHandPinky1', Weight: 0.701245 +Vertex 3491: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.034652 + Group: 'RightHand', Weight: 0.704524 + Group: 'RightHandPinky1', Weight: 0.240786 +Vertex 3492: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.077046 + Group: 'RightHand', Weight: 0.794622 + Group: 'RightHandPinky1', Weight: 0.119104 +Vertex 3493: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.110417 + Group: 'RightHand', Weight: 0.804644 + Group: 'RightHandPinky1', Weight: 0.076434 +Vertex 3494: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.088046 + Group: 'RightHand', Weight: 0.829994 + Group: 'RightHandPinky1', Weight: 0.071185 +Vertex 3495: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.071046 + Group: 'RightHand', Weight: 0.835848 + Group: 'RightHandPinky1', Weight: 0.075418 +Vertex 3496: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.056429 + Group: 'RightHand', Weight: 0.803198 + Group: 'RightHandPinky1', Weight: 0.118032 +Vertex 3497: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.020274 + Group: 'RightHand', Weight: 0.709858 + Group: 'RightHandPinky1', Weight: 0.224595 +Vertex 3498: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.293509 + Group: 'RightHandPinky1', Weight: 0.659863 +Vertex 3499: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.087436 + Group: 'RightHandPinky1', Weight: 0.870191 +Vertex 3500: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.288151 + Group: 'RightHandThumb1', Weight: 0.030880 + Group: 'RightHandPinky1', Weight: 0.635802 +Vertex 3501: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.003452 + Group: 'RightHand', Weight: 0.696295 + Group: 'RightHandThumb1', Weight: 0.038843 + Group: 'RightHandPinky1', Weight: 0.220322 +Vertex 3502: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.037361 + Group: 'RightHand', Weight: 0.799629 + Group: 'RightHandThumb1', Weight: 0.019752 + Group: 'RightHandPinky1', Weight: 0.114778 +Vertex 3503: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.109132 + Group: 'RightHandRing1', Weight: 0.034638 + Group: 'RightHandPinky1', Weight: 0.805531 +Vertex 3504: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.021765 + Group: 'RightHand', Weight: 0.813380 + Group: 'RightHandThumb1', Weight: 0.069477 + Group: 'RightHandPinky1', Weight: 0.071682 +Vertex 3505: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.018718 + Group: 'RightHand', Weight: 0.781052 + Group: 'RightHandThumb1', Weight: 0.145453 + Group: 'RightHandPinky1', Weight: 0.010220 +Vertex 3506: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.706802 + Group: 'RightHandThumb1', Weight: 0.099356 + Group: 'RightHandPinky1', Weight: 0.151528 +Vertex 3507: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.630776 + Group: 'RightHandThumb1', Weight: 0.278889 + Group: 'RightHandPinky1', Weight: 0.052660 +Vertex 3508: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.521844 + Group: 'RightHandThumb1', Weight: 0.117587 + Group: 'RightHandRing1', Weight: 0.037519 + Group: 'RightHandPinky1', Weight: 0.290405 +Vertex 3509: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.503813 + Group: 'RightHandThumb1', Weight: 0.315439 + Group: 'RightHandRing1', Weight: 0.004371 + Group: 'RightHandPinky1', Weight: 0.105481 +Vertex 3510: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.763254 + Group: 'RightHandThumb2', Weight: 0.218259 +Vertex 3511: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.903301 + Group: 'RightHandThumb2', Weight: 0.065754 +Vertex 3512: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.036571 + Group: 'RightHandThumb1', Weight: 0.912799 + Group: 'RightHandThumb2', Weight: 0.013483 +Vertex 3513: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.084215 + Group: 'RightHandThumb1', Weight: 0.875186 +Vertex 3514: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.021468 + Group: 'RightHandThumb1', Weight: 0.854664 + Group: 'RightHandThumb2', Weight: 0.080392 +Vertex 3515: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.039624 + Group: 'RightHandThumb1', Weight: 0.901145 + Group: 'RightHandThumb2', Weight: 0.029765 +Vertex 3516: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.864972 + Group: 'RightHandThumb2', Weight: 0.093696 +Vertex 3517: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.732468 + Group: 'RightHandThumb2', Weight: 0.235896 +Vertex 3518: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.864762 + Group: 'RightHandThumb3_end', Weight: 0.129316 +Vertex 3519: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.823956 + Group: 'RightHandThumb3_end', Weight: 0.155112 +Vertex 3520: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.821629 + Group: 'RightHandThumb3_end', Weight: 0.151243 +Vertex 3521: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.818646 + Group: 'RightHandThumb3_end', Weight: 0.162969 +Vertex 3522: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.844685 + Group: 'RightHandThumb3_end', Weight: 0.143070 +Vertex 3523: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.851676 + Group: 'RightHandThumb3_end', Weight: 0.142808 +Vertex 3524: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.885627 + Group: 'RightHandThumb3_end', Weight: 0.108930 +Vertex 3525: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.989759 +Vertex 3526: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.854526 + Group: 'RightHandThumb3_end', Weight: 0.130770 +Vertex 3527: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.011435 + Group: 'RightHandThumb3_end', Weight: 0.968906 +Vertex 3528: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.055316 + Group: 'RightHandThumb3_end', Weight: 0.943760 +Vertex 3529: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.068437 + Group: 'RightHandThumb3_end', Weight: 0.929989 +Vertex 3530: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.065356 + Group: 'RightHandThumb3_end', Weight: 0.932801 +Vertex 3531: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.061386 + Group: 'RightHandThumb3_end', Weight: 0.937137 +Vertex 3532: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.048167 + Group: 'RightHandThumb3_end', Weight: 0.950301 +Vertex 3533: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.054962 + Group: 'RightHandThumb3_end', Weight: 0.944021 +Vertex 3534: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998594 +Vertex 3535: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997753 +Vertex 3536: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997188 +Vertex 3537: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.996246 +Vertex 3538: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.996891 +Vertex 3539: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997027 +Vertex 3540: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998509 +Vertex 3541: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998069 +Vertex 3542: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998002 +Vertex 3543: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.982087 +Vertex 3544: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.981535 +Vertex 3545: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.984963 +Vertex 3546: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.992677 +Vertex 3547: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.988404 +Vertex 3548: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998419 +Vertex 3549: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.983784 +Vertex 3550: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.985286 +Vertex 3551: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.993083 +Vertex 3552: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.993710 +Vertex 3553: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997114 +Vertex 3554: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.993962 +Vertex 3555: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.995046 +Vertex 3556: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.991406 +Vertex 3557: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.996365 +Vertex 3558: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998950 +Vertex 3559: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.124205 + Group: 'RightHandThumb3_end', Weight: 0.874676 +Vertex 3560: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.189699 + Group: 'RightHandThumb3_end', Weight: 0.807388 +Vertex 3561: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.205967 + Group: 'RightHandThumb3_end', Weight: 0.789327 +Vertex 3562: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.202290 + Group: 'RightHandThumb3_end', Weight: 0.791559 +Vertex 3563: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.193245 + Group: 'RightHandThumb3_end', Weight: 0.801975 +Vertex 3564: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.180393 + Group: 'RightHandThumb3_end', Weight: 0.816325 +Vertex 3565: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.122722 + Group: 'RightHandThumb3_end', Weight: 0.876108 +Vertex 3566: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.085604 + Group: 'RightHandThumb3_end', Weight: 0.913792 +Vertex 3567: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.068443 + Group: 'RightHandThumb3', Weight: 0.918781 +Vertex 3568: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.098770 + Group: 'RightHandThumb3', Weight: 0.856921 +Vertex 3569: +Vertex groups: 3 + Group: 'RightHandThumb2', Weight: 0.115821 + Group: 'RightHandThumb3', Weight: 0.839229 + Group: 'RightHandThumb3_end', Weight: 0.009763 +Vertex 3570: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.100933 + Group: 'RightHandThumb3', Weight: 0.868890 +Vertex 3571: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.083499 + Group: 'RightHandThumb3', Weight: 0.893184 +Vertex 3572: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.055229 + Group: 'RightHandThumb3', Weight: 0.927932 +Vertex 3573: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.066824 + Group: 'RightHandThumb3', Weight: 0.923191 +Vertex 3574: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.089578 + Group: 'RightHandThumb3', Weight: 0.881430 +Vertex 3575: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.003965 + Group: 'RightHandThumb2', Weight: 0.831956 + Group: 'RightHandThumb3', Weight: 0.118255 +Vertex 3576: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.067520 + Group: 'RightHandThumb2', Weight: 0.675647 + Group: 'RightHandThumb3', Weight: 0.144019 + Group: 'RightHandIndex1', Weight: 0.096134 +Vertex 3577: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.056414 + Group: 'RightHandThumb2', Weight: 0.747817 + Group: 'RightHandThumb3', Weight: 0.157326 + Group: 'RightHandIndex1', Weight: 0.004024 +Vertex 3578: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.072601 + Group: 'RightHandThumb2', Weight: 0.786069 + Group: 'RightHandThumb3', Weight: 0.125886 +Vertex 3579: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.061902 + Group: 'RightHandThumb2', Weight: 0.809951 + Group: 'RightHandThumb3', Weight: 0.120687 +Vertex 3580: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.019342 + Group: 'RightHandThumb2', Weight: 0.854453 + Group: 'RightHandThumb3', Weight: 0.107012 +Vertex 3581: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.004350 + Group: 'RightHandThumb2', Weight: 0.889256 + Group: 'RightHandThumb3', Weight: 0.078146 +Vertex 3582: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.059618 + Group: 'RightHandThumb2', Weight: 0.723974 + Group: 'RightHandThumb3', Weight: 0.116654 + Group: 'RightHandIndex1', Weight: 0.091692 +Vertex 3583: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.106599 + Group: 'RightHandThumb2', Weight: 0.715393 + Group: 'RightHandThumb3', Weight: 0.054048 + Group: 'RightHandIndex1', Weight: 0.117652 +Vertex 3584: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.107820 + Group: 'RightHandThumb2', Weight: 0.816792 + Group: 'RightHandThumb3', Weight: 0.013711 + Group: 'RightHandIndex1', Weight: 0.030901 +Vertex 3585: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.168665 + Group: 'RightHandThumb2', Weight: 0.806553 +Vertex 3586: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.175174 + Group: 'RightHandThumb2', Weight: 0.791226 + Group: 'RightHandThumb3', Weight: 0.007581 +Vertex 3587: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.239745 + Group: 'RightHandThumb2', Weight: 0.711201 + Group: 'RightHandThumb3', Weight: 0.027322 +Vertex 3588: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.261952 + Group: 'RightHandThumb2', Weight: 0.667989 + Group: 'RightHandThumb3', Weight: 0.036913 +Vertex 3589: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.220895 + Group: 'RightHandThumb2', Weight: 0.639744 + Group: 'RightHandThumb3', Weight: 0.038861 + Group: 'RightHandIndex1', Weight: 0.067182 +Vertex 3590: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.172625 + Group: 'RightHandThumb2', Weight: 0.582052 + Group: 'RightHandThumb3', Weight: 0.058217 + Group: 'RightHandIndex1', Weight: 0.149293 +Vertex 3591: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.442898 + Group: 'RightHandThumb1', Weight: 0.292007 + Group: 'RightHand', Weight: 0.102228 + Group: 'RightHandThumb2', Weight: 0.093571 + Group: 'RightHandMiddle1', Weight: 0.069297 +Vertex 3592: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.046183 + Group: 'RightHandThumb1', Weight: 0.453449 + Group: 'RightHandThumb2', Weight: 0.218238 + Group: 'RightHandIndex1', Weight: 0.200822 + Group: 'RightHandMiddle1', Weight: 0.003801 +Vertex 3593: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.655537 + Group: 'RightHandThumb2', Weight: 0.292862 +Vertex 3594: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.004762 + Group: 'RightHandThumb1', Weight: 0.703306 + Group: 'RightHandThumb2', Weight: 0.200320 + Group: 'RightHandIndex1', Weight: 0.024678 +Vertex 3595: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.472703 + Group: 'RightHandThumb1', Weight: 0.179447 + Group: 'RightHandPinky1', Weight: 0.127261 + Group: 'RightHandRing1', Weight: 0.115350 + Group: 'RightHandIndex1', Weight: 0.105238 +Vertex 3596: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.630335 + Group: 'RightHandMiddle1', Weight: 0.184299 + Group: 'RightHandThumb1', Weight: 0.066464 + Group: 'RightHandThumb2', Weight: 0.063016 + Group: 'RightHandRing1', Weight: 0.055887 +Vertex 3597: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.471039 + Group: 'RightHandMiddle1', Weight: 0.201536 + Group: 'RightHandThumb1', Weight: 0.120682 + Group: 'RightHand', Weight: 0.106036 + Group: 'RightHandRing1', Weight: 0.100707 +Vertex 3598: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.392607 + Group: 'RightHandRing1', Weight: 0.273620 + Group: 'RightHandIndex1', Weight: 0.189157 + Group: 'RightHand', Weight: 0.089223 + Group: 'RightHandPinky1', Weight: 0.055392 +Vertex 3599: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.401094 + Group: 'RightHandIndex1', Weight: 0.326172 + Group: 'RightHandRing1', Weight: 0.143315 + Group: 'RightHand', Weight: 0.066728 + Group: 'RightHandThumb1', Weight: 0.062691 +Vertex 3600: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.588078 + Group: 'RightHandRing1', Weight: 0.195807 + Group: 'RightHandIndex1', Weight: 0.189840 + Group: 'RightHandMiddle2', Weight: 0.015886 + Group: 'RightHand', Weight: 0.010389 +Vertex 3601: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.543245 + Group: 'RightHandIndex1', Weight: 0.318231 + Group: 'RightHandRing1', Weight: 0.114233 + Group: 'RightHandMiddle2', Weight: 0.016632 + Group: 'RightHandThumb1', Weight: 0.007658 +Vertex 3602: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.502066 + Group: 'RightHandRing1', Weight: 0.323156 + Group: 'RightHandIndex1', Weight: 0.107274 + Group: 'RightHandPinky1', Weight: 0.044155 + Group: 'RightHandRing2', Weight: 0.023349 +Vertex 3603: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.019318 + Group: 'RightHandMiddle1', Weight: 0.161178 + Group: 'RightHandRing1', Weight: 0.553623 + Group: 'RightHandRing2', Weight: 0.081976 + Group: 'RightHandPinky1', Weight: 0.091700 +Vertex 3604: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.482928 + Group: 'RightHandMiddle1', Weight: 0.307021 + Group: 'RightHandRing2', Weight: 0.082284 + Group: 'RightHandPinky1', Weight: 0.064215 + Group: 'RightHandIndex1', Weight: 0.063552 +Vertex 3605: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.473755 + Group: 'RightHandMiddle1', Weight: 0.240242 + Group: 'RightHand', Weight: 0.102736 + Group: 'RightHandIndex1', Weight: 0.099695 + Group: 'RightHandPinky1', Weight: 0.083572 +Vertex 3606: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.451241 + Group: 'RightHandPinky1', Weight: 0.309937 + Group: 'RightHand', Weight: 0.175968 + Group: 'RightHandThumb1', Weight: 0.039773 + Group: 'RightHandMiddle1', Weight: 0.023080 +Vertex 3607: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.339957 + Group: 'RightHandRing1', Weight: 0.311704 + Group: 'RightHandPinky1', Weight: 0.156034 + Group: 'RightHandMiddle1', Weight: 0.104926 + Group: 'RightHandThumb1', Weight: 0.087379 +Vertex 3608: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.222308 + Group: 'RightHandThumb1', Weight: 0.063164 + Group: 'RightHandIndex1', Weight: 0.003160 + Group: 'RightHandRing1', Weight: 0.173176 + Group: 'RightHandPinky1', Weight: 0.475377 +Vertex 3609: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.084789 + Group: 'RightHandRing1', Weight: 0.113875 + Group: 'RightHandPinky1', Weight: 0.736410 +Vertex 3610: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.044473 + Group: 'RightHandRing1', Weight: 0.150146 + Group: 'RightHandPinky1', Weight: 0.729867 + Group: 'RightHandPinky2', Weight: 0.011218 +Vertex 3611: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.076898 + Group: 'RightHandRing1', Weight: 0.610094 + Group: 'RightHandRing2', Weight: 0.029500 + Group: 'RightHandPinky1', Weight: 0.172335 + Group: 'RightHandPinky2', Weight: 0.022274 +Vertex 3612: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.040163 + Group: 'RightHandRing1', Weight: 0.501594 + Group: 'RightHandRing2', Weight: 0.014156 + Group: 'RightHandPinky1', Weight: 0.311682 + Group: 'RightHandPinky2', Weight: 0.060408 +Vertex 3613: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.237893 + Group: 'RightHandPinky1', Weight: 0.593923 + Group: 'RightHandPinky2', Weight: 0.090349 +Vertex 3614: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.080691 + Group: 'RightHandIndex1', Weight: 0.014577 + Group: 'RightHandMiddle1', Weight: 0.069776 + Group: 'RightHandRing1', Weight: 0.575785 + Group: 'RightHandPinky1', Weight: 0.185825 +Vertex 3615: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.050147 + Group: 'RightHandMiddle1', Weight: 0.041778 + Group: 'RightHandRing1', Weight: 0.505560 + Group: 'RightHandPinky1', Weight: 0.313648 + Group: 'RightHandPinky2', Weight: 0.007564 +Vertex 3616: +Vertex groups: 2 + Group: 'Neck', Weight: 0.591631 + Group: 'Head', Weight: 0.408373 +Vertex 3617: +Vertex groups: 2 + Group: 'Neck', Weight: 0.591628 + Group: 'Head', Weight: 0.408376 +Vertex 3618: +Vertex groups: 2 + Group: 'Neck', Weight: 0.016573 + Group: 'Head', Weight: 0.966714 +Vertex 3619: +Vertex groups: 2 + Group: 'Neck', Weight: 0.012752 + Group: 'Head', Weight: 0.968624 +Vertex 3620: +Vertex groups: 2 + Group: 'Neck', Weight: 0.139397 + Group: 'Head', Weight: 0.860605 +Vertex 3621: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280707 + Group: 'Head', Weight: 0.719295 +Vertex 3622: +Vertex groups: 2 + Group: 'Neck', Weight: 0.407702 + Group: 'Head', Weight: 0.592301 +Vertex 3623: +Vertex groups: 2 + Group: 'Neck', Weight: 0.530131 + Group: 'Head', Weight: 0.469872 +Vertex 3624: +Vertex groups: 2 + Group: 'Neck', Weight: 0.535465 + Group: 'Head', Weight: 0.464537 +Vertex 3625: +Vertex groups: 2 + Group: 'Neck', Weight: 0.409298 + Group: 'Head', Weight: 0.590704 +Vertex 3626: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280219 + Group: 'Head', Weight: 0.719783 +Vertex 3627: +Vertex groups: 2 + Group: 'Neck', Weight: 0.150119 + Group: 'Head', Weight: 0.849883 +Vertex 3628: +Vertex groups: 2 + Group: 'Neck', Weight: 0.081598 + Group: 'Head', Weight: 0.918404 +Vertex 3629: +Vertex groups: 2 + Group: 'Neck', Weight: 0.024644 + Group: 'Head', Weight: 0.962678 +Vertex 3630: +Vertex groups: 2 + Group: 'Neck', Weight: 0.035128 + Group: 'Head', Weight: 0.957436 +Vertex 3631: +Vertex groups: 2 + Group: 'Neck', Weight: 0.067166 + Group: 'Head', Weight: 0.932835 +Vertex 3632: +Vertex groups: 2 + Group: 'Neck', Weight: 0.201003 + Group: 'Head', Weight: 0.798999 +Vertex 3633: +Vertex groups: 2 + Group: 'Neck', Weight: 0.239814 + Group: 'Head', Weight: 0.760189 +Vertex 3634: +Vertex groups: 2 + Group: 'Neck', Weight: 0.240238 + Group: 'Head', Weight: 0.759764 +Vertex 3635: +Vertex groups: 2 + Group: 'Neck', Weight: 0.199169 + Group: 'Head', Weight: 0.800833 +Vertex 3636: +Vertex groups: 2 + Group: 'Neck', Weight: 0.320279 + Group: 'Head', Weight: 0.679724 +Vertex 3637: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364319 + Group: 'Head', Weight: 0.635684 +Vertex 3638: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364215 + Group: 'Head', Weight: 0.635787 +Vertex 3639: +Vertex groups: 2 + Group: 'Neck', Weight: 0.319967 + Group: 'Head', Weight: 0.680036 +Vertex 3640: +Vertex groups: 2 + Group: 'Neck', Weight: 0.445815 + Group: 'Head', Weight: 0.554187 +Vertex 3641: +Vertex groups: 2 + Group: 'Neck', Weight: 0.483148 + Group: 'Head', Weight: 0.516855 +Vertex 3642: +Vertex groups: 2 + Group: 'Neck', Weight: 0.494272 + Group: 'Head', Weight: 0.505730 +Vertex 3643: +Vertex groups: 2 + Group: 'Neck', Weight: 0.453846 + Group: 'Head', Weight: 0.546157 +Vertex 3644: +Vertex groups: 2 + Group: 'Neck', Weight: 0.604306 + Group: 'Head', Weight: 0.395696 +Vertex 3645: +Vertex groups: 2 + Group: 'Neck', Weight: 0.592207 + Group: 'Head', Weight: 0.407796 +Vertex 3646: +Vertex groups: 2 + Group: 'Neck', Weight: 0.591403 + Group: 'Head', Weight: 0.408600 +Vertex 3647: +Vertex groups: 2 + Group: 'Neck', Weight: 0.586662 + Group: 'Head', Weight: 0.413341 +Vertex 3648: +Vertex groups: 2 + Group: 'Neck', Weight: 0.013881 + Group: 'Head', Weight: 0.968060 +Vertex 3649: +Vertex groups: 2 + Group: 'Neck', Weight: 0.020833 + Group: 'Head', Weight: 0.964584 +Vertex 3650: +Vertex groups: 2 + Group: 'Neck', Weight: 0.058266 + Group: 'Head', Weight: 0.941735 +Vertex 3651: +Vertex groups: 2 + Group: 'Neck', Weight: 0.052437 + Group: 'Head', Weight: 0.947564 +Vertex 3652: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885654 +Vertex 3653: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885654 +Vertex 3654: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114782 + Group: 'Head', Weight: 0.885204 +Vertex 3655: +Vertex groups: 2 + Group: 'Neck', Weight: 0.116020 + Group: 'Head', Weight: 0.883965 +Vertex 3656: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885663 +Vertex 3657: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885661 +Vertex 3658: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885657 +Vertex 3659: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885656 +Vertex 3660: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885656 +Vertex 3661: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885658 +Vertex 3662: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885661 +Vertex 3663: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114323 + Group: 'Head', Weight: 0.885661 +Vertex 3664: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114335 + Group: 'Head', Weight: 0.885649 +Vertex 3665: +Vertex groups: 2 + Group: 'Neck', Weight: 0.115174 + Group: 'Head', Weight: 0.884811 +Vertex 3666: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114153 + Group: 'Head', Weight: 0.885832 +Vertex 3667: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114316 + Group: 'Head', Weight: 0.885669 +Vertex 3668: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885655 +Vertex 3669: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885654 +Vertex 3670: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885654 +Vertex 3671: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885655 +Vertex 3672: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885662 +Vertex 3673: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114322 + Group: 'Head', Weight: 0.885661 +Vertex 3674: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885659 +Vertex 3675: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885659 +Vertex 3676: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885657 +Vertex 3677: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885657 +Vertex 3678: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885654 +Vertex 3679: +Vertex groups: 2 + Group: 'Neck', Weight: 0.115141 + Group: 'Head', Weight: 0.884844 +Vertex 3680: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885656 +Vertex 3681: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885657 +Vertex 3682: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885661 +Vertex 3683: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114322 + Group: 'Head', Weight: 0.885662 +Vertex 3684: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114325 + Group: 'Head', Weight: 0.885659 +Vertex 3685: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114474 + Group: 'Head', Weight: 0.885511 +Vertex 3686: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885654 +Vertex 3687: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885655 +Vertex 3688: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114322 + Group: 'Head', Weight: 0.885662 +Vertex 3689: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885659 +Vertex 3690: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885657 +Vertex 3691: +Vertex groups: 2 + Group: 'Neck', Weight: 0.116359 + Group: 'Head', Weight: 0.883627 +Vertex 3692: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114557 + Group: 'Head', Weight: 0.885429 +Vertex 3693: +Vertex groups: 2 + Group: 'Neck', Weight: 0.115138 + Group: 'Head', Weight: 0.884848 +Vertex 3694: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114339 + Group: 'Head', Weight: 0.885647 +Vertex 3695: +Vertex groups: 2 + Group: 'Neck', Weight: 0.115922 + Group: 'Head', Weight: 0.884063 +Vertex 3696: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114844 + Group: 'Head', Weight: 0.885141 +Vertex 3697: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114377 + Group: 'Head', Weight: 0.885608 +Vertex 3698: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114264 + Group: 'Head', Weight: 0.885721 +Vertex 3699: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114308 + Group: 'Head', Weight: 0.885677 +Vertex 3700: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114319 + Group: 'Head', Weight: 0.885665 +Vertex 3701: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114326 + Group: 'Head', Weight: 0.885659 +Vertex 3702: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114324 + Group: 'Head', Weight: 0.885660 +Vertex 3703: +Vertex groups: 1 + Group: 'Head', Weight: 0.999977 +Vertex 3704: +Vertex groups: 1 + Group: 'Head', Weight: 0.999978 +Vertex 3705: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 3706: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 3707: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 3708: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 3709: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 3710: +Vertex groups: 1 + Group: 'Head', Weight: 0.999980 +Vertex 3711: +Vertex groups: 1 + Group: 'Head', Weight: 0.999980 +Vertex 3712: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 3713: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 3714: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 3715: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 3716: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 3717: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 3718: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 3719: +Vertex groups: 1 + Group: 'Head', Weight: 0.999979 +Vertex 3720: +Vertex groups: 1 + Group: 'Head', Weight: 0.999978 +Vertex 3721: +Vertex groups: 1 + Group: 'Head', Weight: 0.999978 +Vertex 3722: +Vertex groups: 1 + Group: 'Head', Weight: 0.999979 +Vertex 3723: +Vertex groups: 1 + Group: 'Head', Weight: 0.999986 +Vertex 3724: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 3725: +Vertex groups: 1 + Group: 'Head', Weight: 0.999983 +Vertex 3726: +Vertex groups: 1 + Group: 'Head', Weight: 0.999983 +Vertex 3727: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 3728: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 3729: +Vertex groups: 1 + Group: 'Head', Weight: 0.999977 +Vertex 3730: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 3731: +Vertex groups: 1 + Group: 'Head', Weight: 0.999980 +Vertex 3732: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 3733: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 3734: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 3735: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 3736: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 3737: +Vertex groups: 1 + Group: 'Head', Weight: 0.999978 +Vertex 3738: +Vertex groups: 1 + Group: 'Head', Weight: 0.999979 +Vertex 3739: +Vertex groups: 1 + Group: 'Head', Weight: 0.999986 +Vertex 3740: +Vertex groups: 1 + Group: 'Head', Weight: 0.999983 +Vertex 3741: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 3742: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 3743: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 3744: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 3745: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 3746: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 3747: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 3748: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 3749: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 3750: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 3751: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 3752: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 3753: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 3754: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3755: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3756: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3757: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3758: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3759: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3760: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3761: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3762: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3763: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3764: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3765: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3766: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3767: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3768: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3769: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3770: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3771: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3772: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3773: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3774: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3775: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3776: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3777: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3778: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3779: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3780: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3781: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3782: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3783: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3784: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3785: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3786: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3787: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3788: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3789: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3790: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3791: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3792: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3793: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3794: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3795: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3796: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3797: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3798: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3799: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3800: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3801: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3802: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3803: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3804: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3805: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3806: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3807: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3808: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3809: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3810: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3811: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3812: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3813: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3814: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3815: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3816: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3817: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3818: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3819: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3820: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3821: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3822: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3823: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3824: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3825: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3826: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3827: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3828: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3829: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3830: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3831: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3832: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3833: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3834: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3835: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3836: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3837: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3838: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3839: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3840: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3841: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3842: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3843: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3844: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3845: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3846: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3847: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3848: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3849: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3850: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3851: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3852: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3853: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3854: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3855: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3856: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3857: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3858: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3859: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3860: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3861: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3862: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3863: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3864: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3865: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3866: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3867: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3868: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3869: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3870: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3871: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3872: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3873: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3874: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3875: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3876: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3877: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3878: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3879: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3880: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3881: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3882: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3883: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3884: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3885: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3886: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3887: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3888: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3889: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3890: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3891: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3892: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3893: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3894: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3895: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3896: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3897: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3898: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3899: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3900: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3901: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3902: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3903: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3904: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3905: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3906: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3907: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3908: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3909: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3910: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3911: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3912: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3913: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3914: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3915: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3916: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3917: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3918: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3919: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3920: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3921: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3922: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3923: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3924: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3925: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3926: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3927: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3928: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3929: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3930: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3931: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3932: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3933: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3934: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3935: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3936: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3937: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3938: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3939: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3940: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3941: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3942: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3943: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3944: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3945: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3946: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3947: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3948: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3949: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3950: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3951: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3952: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3953: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3954: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3955: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3956: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3957: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3958: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3959: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3960: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3961: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3962: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3963: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3964: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3965: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3966: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3967: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3968: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3969: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3970: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3971: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3972: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3973: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3974: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3975: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3976: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3977: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3978: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3979: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3980: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3981: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3982: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3983: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3984: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3985: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3986: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3987: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3988: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3989: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3990: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3991: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3992: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3993: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3994: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3995: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3996: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3997: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3998: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3999: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4000: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4001: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4002: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4003: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4004: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4005: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4006: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4007: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4008: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4009: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4010: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4011: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4012: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4013: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4014: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4015: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4016: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4017: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4018: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4019: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4020: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4021: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4022: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4023: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4024: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4025: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4026: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4027: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4028: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4029: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4030: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 4031: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 4032: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4033: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4034: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4035: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4036: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4037: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4038: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4039: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4040: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4041: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4042: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4043: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4044: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 4045: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4046: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4047: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4048: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4049: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4050: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4051: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4052: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4053: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4054: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4055: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4056: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4057: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901480 +Vertex 4058: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901480 +Vertex 4059: +Vertex groups: 2 + Group: 'Neck', Weight: 0.093527 + Group: 'Head', Weight: 0.906479 +Vertex 4060: +Vertex groups: 2 + Group: 'Neck', Weight: 0.093465 + Group: 'Head', Weight: 0.906542 +Vertex 4061: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098545 + Group: 'Head', Weight: 0.901468 +Vertex 4062: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901470 +Vertex 4063: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901474 +Vertex 4064: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901477 +Vertex 4065: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901477 +Vertex 4066: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901474 +Vertex 4067: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901470 +Vertex 4068: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901466 +Vertex 4069: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098572 + Group: 'Head', Weight: 0.901438 +Vertex 4070: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098954 + Group: 'Head', Weight: 0.901054 +Vertex 4071: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098377 + Group: 'Head', Weight: 0.901631 +Vertex 4072: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098533 + Group: 'Head', Weight: 0.901478 +Vertex 4073: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901478 +Vertex 4074: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901479 +Vertex 4075: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901480 +Vertex 4076: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901478 +Vertex 4077: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901468 +Vertex 4078: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901468 +Vertex 4079: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901471 +Vertex 4080: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901471 +Vertex 4081: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901475 +Vertex 4082: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901475 +Vertex 4083: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901480 +Vertex 4084: +Vertex groups: 2 + Group: 'Neck', Weight: 0.093198 + Group: 'Head', Weight: 0.906808 +Vertex 4085: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901477 +Vertex 4086: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901474 +Vertex 4087: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901470 +Vertex 4088: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901466 +Vertex 4089: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098548 + Group: 'Head', Weight: 0.901463 +Vertex 4090: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098523 + Group: 'Head', Weight: 0.901485 +Vertex 4091: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901479 +Vertex 4092: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901478 +Vertex 4093: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901468 +Vertex 4094: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901471 +Vertex 4095: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901475 +Vertex 4096: +Vertex groups: 2 + Group: 'Neck', Weight: 0.100402 + Group: 'Head', Weight: 0.899604 +Vertex 4097: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098281 + Group: 'Head', Weight: 0.901726 +Vertex 4098: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098729 + Group: 'Head', Weight: 0.901278 +Vertex 4099: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098708 + Group: 'Head', Weight: 0.901300 +Vertex 4100: +Vertex groups: 2 + Group: 'Neck', Weight: 0.100693 + Group: 'Head', Weight: 0.899314 +Vertex 4101: +Vertex groups: 2 + Group: 'Neck', Weight: 0.099212 + Group: 'Head', Weight: 0.900795 +Vertex 4102: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098646 + Group: 'Head', Weight: 0.901363 +Vertex 4103: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098490 + Group: 'Head', Weight: 0.901520 +Vertex 4104: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098534 + Group: 'Head', Weight: 0.901475 +Vertex 4105: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098541 + Group: 'Head', Weight: 0.901470 +Vertex 4106: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098554 + Group: 'Head', Weight: 0.901457 +Vertex 4107: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098548 + Group: 'Head', Weight: 0.901464 +Vertex 4108: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4109: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4110: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4111: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4112: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4113: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4114: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4115: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4116: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4117: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4118: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4119: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4120: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4121: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4122: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4123: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4124: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4125: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4126: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4127: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4128: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4129: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4130: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4131: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4132: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4133: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4134: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4135: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4136: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4137: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4138: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4139: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4140: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4141: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4142: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4143: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4144: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4145: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4146: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4147: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4148: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4149: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4150: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4151: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4152: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4153: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4154: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4155: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4156: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4157: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4158: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4159: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4160: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4161: +Vertex groups: 2 + Group: 'Neck', Weight: 0.096775 + Group: 'Head', Weight: 0.903232 +Vertex 4162: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097469 + Group: 'Head', Weight: 0.902538 +Vertex 4163: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4164: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4165: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4166: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4167: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4168: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4169: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4170: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4171: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097097 + Group: 'Head', Weight: 0.902910 +Vertex 4172: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097101 + Group: 'Head', Weight: 0.902906 +Vertex 4173: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097092 + Group: 'Head', Weight: 0.902915 +Vertex 4174: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097095 + Group: 'Head', Weight: 0.902911 +Vertex 4175: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4176: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4177: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4178: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4179: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4180: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4181: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4182: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4183: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4184: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4185: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4186: +Vertex groups: 2 + Group: 'Neck', Weight: 0.096994 + Group: 'Head', Weight: 0.903013 +Vertex 4187: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4188: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4189: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4190: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4191: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097097 + Group: 'Head', Weight: 0.902910 +Vertex 4192: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097099 + Group: 'Head', Weight: 0.902908 +Vertex 4193: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4194: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4195: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4196: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4197: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4198: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097147 + Group: 'Head', Weight: 0.902860 +Vertex 4199: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097043 + Group: 'Head', Weight: 0.902964 +Vertex 4200: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097093 + Group: 'Head', Weight: 0.902914 +Vertex 4201: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097086 + Group: 'Head', Weight: 0.902922 +Vertex 4202: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097110 + Group: 'Head', Weight: 0.902897 +Vertex 4203: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097100 + Group: 'Head', Weight: 0.902907 +Vertex 4204: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097099 + Group: 'Head', Weight: 0.902908 +Vertex 4205: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097094 + Group: 'Head', Weight: 0.902913 +Vertex 4206: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097098 + Group: 'Head', Weight: 0.902909 +Vertex 4207: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4208: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4209: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4210: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4211: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4212: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4213: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4214: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4215: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4216: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4217: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4218: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4219: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4220: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4221: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4222: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4223: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4224: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4225: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4226: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4227: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4228: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4229: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4230: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4231: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4232: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4233: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4234: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4235: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4236: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4237: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4238: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4239: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4240: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4241: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4242: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4243: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4244: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4245: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4246: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4247: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4248: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4249: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4250: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4251: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4252: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4253: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4254: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4255: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4256: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4257: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4258: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4259: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4260: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4261: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4262: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4263: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4264: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4265: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4266: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4267: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4268: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4269: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4270: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4271: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4272: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4273: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4274: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4275: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4276: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4277: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4278: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4279: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4280: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4281: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4282: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4283: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4284: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4285: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4286: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4287: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4288: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4289: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4290: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4291: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4292: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4293: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4294: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4295: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4296: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4297: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4298: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4299: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4300: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4301: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4302: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4303: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4304: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4305: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4306: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4307: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4308: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4309: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4310: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4311: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4312: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4313: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4314: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4315: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4316: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4317: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4318: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4319: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4320: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4321: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4322: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4323: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4324: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4325: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4326: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4327: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4328: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4329: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4330: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4331: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4332: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4333: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4334: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4335: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4336: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4337: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4338: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4339: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4340: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4341: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4342: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4343: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4344: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4345: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4346: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4347: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4348: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4349: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4350: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4351: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4352: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4353: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4354: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4355: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4356: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4357: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4358: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4359: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4360: +Vertex groups: 1 + Group: 'Head', Weight: 1.000044 +Vertex 4361: +Vertex groups: 1 + Group: 'Head', Weight: 1.000044 +Vertex 4362: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4363: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4364: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 4365: +Vertex groups: 1 + Group: 'Head', Weight: 1.000019 +Vertex 4366: +Vertex groups: 1 + Group: 'Head', Weight: 1.000027 +Vertex 4367: +Vertex groups: 1 + Group: 'Head', Weight: 1.000034 +Vertex 4368: +Vertex groups: 1 + Group: 'Head', Weight: 1.000034 +Vertex 4369: +Vertex groups: 1 + Group: 'Head', Weight: 1.000027 +Vertex 4370: +Vertex groups: 1 + Group: 'Head', Weight: 1.000018 +Vertex 4371: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4372: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4373: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4374: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4375: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4376: +Vertex groups: 1 + Group: 'Head', Weight: 1.000036 +Vertex 4377: +Vertex groups: 1 + Group: 'Head', Weight: 1.000044 +Vertex 4378: +Vertex groups: 1 + Group: 'Head', Weight: 1.000044 +Vertex 4379: +Vertex groups: 1 + Group: 'Head', Weight: 1.000036 +Vertex 4380: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4381: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4382: +Vertex groups: 1 + Group: 'Head', Weight: 1.000023 +Vertex 4383: +Vertex groups: 1 + Group: 'Head', Weight: 1.000023 +Vertex 4384: +Vertex groups: 1 + Group: 'Head', Weight: 1.000031 +Vertex 4385: +Vertex groups: 1 + Group: 'Head', Weight: 1.000031 +Vertex 4386: +Vertex groups: 1 + Group: 'Head', Weight: 1.000045 +Vertex 4387: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4388: +Vertex groups: 1 + Group: 'Head', Weight: 1.000034 +Vertex 4389: +Vertex groups: 1 + Group: 'Head', Weight: 1.000027 +Vertex 4390: +Vertex groups: 1 + Group: 'Head', Weight: 1.000019 +Vertex 4391: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4392: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4393: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4394: +Vertex groups: 1 + Group: 'Head', Weight: 1.000044 +Vertex 4395: +Vertex groups: 1 + Group: 'Head', Weight: 1.000036 +Vertex 4396: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4397: +Vertex groups: 1 + Group: 'Head', Weight: 1.000023 +Vertex 4398: +Vertex groups: 1 + Group: 'Head', Weight: 1.000031 +Vertex 4399: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4400: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4401: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4402: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4403: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4404: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4405: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4406: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4407: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4408: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4409: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4410: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4411: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4412: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4413: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4414: +Vertex groups: 1 + Group: 'Head', Weight: 1.000016 +Vertex 4415: +Vertex groups: 1 + Group: 'Head', Weight: 1.000016 +Vertex 4416: +Vertex groups: 1 + Group: 'Head', Weight: 1.000016 +Vertex 4417: +Vertex groups: 1 + Group: 'Head', Weight: 1.000021 +Vertex 4418: +Vertex groups: 1 + Group: 'Head', Weight: 1.000021 +Vertex 4419: +Vertex groups: 1 + Group: 'Head', Weight: 1.000021 +Vertex 4420: +Vertex groups: 1 + Group: 'Head', Weight: 1.000025 +Vertex 4421: +Vertex groups: 1 + Group: 'Head', Weight: 1.000025 +Vertex 4422: +Vertex groups: 1 + Group: 'Head', Weight: 1.000025 +Vertex 4423: +Vertex groups: 1 + Group: 'Head', Weight: 1.000029 +Vertex 4424: +Vertex groups: 1 + Group: 'Head', Weight: 1.000029 +Vertex 4425: +Vertex groups: 1 + Group: 'Head', Weight: 1.000029 +Vertex 4426: +Vertex groups: 1 + Group: 'Head', Weight: 1.000041 +Vertex 4427: +Vertex groups: 1 + Group: 'Head', Weight: 1.000041 +Vertex 4428: +Vertex groups: 1 + Group: 'Head', Weight: 1.000041 +Vertex 4429: +Vertex groups: 1 + Group: 'Head', Weight: 1.000039 +Vertex 4430: +Vertex groups: 1 + Group: 'Head', Weight: 1.000039 +Vertex 4431: +Vertex groups: 1 + Group: 'Head', Weight: 1.000039 +Vertex 4432: +Vertex groups: 1 + Group: 'Head', Weight: 1.000033 +Vertex 4433: +Vertex groups: 1 + Group: 'Head', Weight: 1.000033 +Vertex 4434: +Vertex groups: 1 + Group: 'Head', Weight: 1.000033 +Vertex 4435: +Vertex groups: 1 + Group: 'Head', Weight: 0.999986 +Vertex 4436: +Vertex groups: 1 + Group: 'Head', Weight: 0.999986 +Vertex 4437: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4438: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4439: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4440: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4441: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4442: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4443: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4444: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4445: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4446: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4447: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4448: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4449: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4450: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4451: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4452: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4453: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4454: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4455: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4456: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4457: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4458: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4459: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4460: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4461: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4462: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4463: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4464: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4465: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4466: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4467: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4468: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4469: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4470: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4471: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4472: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4473: +Vertex groups: 1 + Group: 'Head', Weight: 0.980512 +Vertex 4474: +Vertex groups: 1 + Group: 'Head', Weight: 0.982431 +Vertex 4475: +Vertex groups: 1 + Group: 'Head', Weight: 0.983293 +Vertex 4476: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4477: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4478: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4479: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4480: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4481: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4482: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4483: +Vertex groups: 1 + Group: 'Head', Weight: 0.983303 +Vertex 4484: +Vertex groups: 1 + Group: 'Head', Weight: 0.983529 +Vertex 4485: +Vertex groups: 1 + Group: 'Head', Weight: 0.983081 +Vertex 4486: +Vertex groups: 1 + Group: 'Head', Weight: 0.983277 +Vertex 4487: +Vertex groups: 1 + Group: 'Head', Weight: 0.983294 +Vertex 4488: +Vertex groups: 1 + Group: 'Head', Weight: 0.983295 +Vertex 4489: +Vertex groups: 1 + Group: 'Head', Weight: 0.983295 +Vertex 4490: +Vertex groups: 1 + Group: 'Head', Weight: 0.983295 +Vertex 4491: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4492: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4493: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4494: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4495: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4496: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4497: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4498: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4499: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4500: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4501: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4502: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4503: +Vertex groups: 1 + Group: 'Head', Weight: 0.983089 +Vertex 4504: +Vertex groups: 1 + Group: 'Head', Weight: 0.982187 +Vertex 4505: +Vertex groups: 1 + Group: 'Head', Weight: 0.983340 +Vertex 4506: +Vertex groups: 1 + Group: 'Head', Weight: 0.983229 +Vertex 4507: +Vertex groups: 1 + Group: 'Head', Weight: 0.994199 +Vertex 4508: +Vertex groups: 1 + Group: 'Head', Weight: 0.994198 +Vertex 4509: +Vertex groups: 1 + Group: 'Head', Weight: 0.989961 +Vertex 4510: +Vertex groups: 1 + Group: 'Head', Weight: 0.990425 +Vertex 4511: +Vertex groups: 1 + Group: 'Head', Weight: 0.994223 +Vertex 4512: +Vertex groups: 1 + Group: 'Head', Weight: 0.994207 +Vertex 4513: +Vertex groups: 1 + Group: 'Head', Weight: 0.994204 +Vertex 4514: +Vertex groups: 1 + Group: 'Head', Weight: 0.994202 +Vertex 4515: +Vertex groups: 1 + Group: 'Head', Weight: 0.994202 +Vertex 4516: +Vertex groups: 1 + Group: 'Head', Weight: 0.994203 +Vertex 4517: +Vertex groups: 1 + Group: 'Head', Weight: 0.994206 +Vertex 4518: +Vertex groups: 1 + Group: 'Head', Weight: 0.994185 +Vertex 4519: +Vertex groups: 1 + Group: 'Head', Weight: 0.993926 +Vertex 4520: +Vertex groups: 1 + Group: 'Head', Weight: 0.991222 +Vertex 4521: +Vertex groups: 1 + Group: 'Head', Weight: 0.991586 +Vertex 4522: +Vertex groups: 1 + Group: 'Head', Weight: 0.994246 +Vertex 4523: +Vertex groups: 1 + Group: 'Head', Weight: 0.994211 +Vertex 4524: +Vertex groups: 1 + Group: 'Head', Weight: 0.994208 +Vertex 4525: +Vertex groups: 1 + Group: 'Head', Weight: 0.994207 +Vertex 4526: +Vertex groups: 1 + Group: 'Head', Weight: 0.994206 +Vertex 4527: +Vertex groups: 1 + Group: 'Head', Weight: 0.994206 +Vertex 4528: +Vertex groups: 1 + Group: 'Head', Weight: 0.994205 +Vertex 4529: +Vertex groups: 1 + Group: 'Head', Weight: 0.994204 +Vertex 4530: +Vertex groups: 1 + Group: 'Head', Weight: 0.994205 +Vertex 4531: +Vertex groups: 1 + Group: 'Head', Weight: 0.994203 +Vertex 4532: +Vertex groups: 1 + Group: 'Head', Weight: 0.994202 +Vertex 4533: +Vertex groups: 1 + Group: 'Head', Weight: 0.994202 +Vertex 4534: +Vertex groups: 1 + Group: 'Head', Weight: 0.994202 +Vertex 4535: +Vertex groups: 1 + Group: 'Head', Weight: 0.994201 +Vertex 4536: +Vertex groups: 1 + Group: 'Head', Weight: 0.994200 +Vertex 4537: +Vertex groups: 1 + Group: 'Head', Weight: 0.994200 +Vertex 4538: +Vertex groups: 1 + Group: 'Head', Weight: 0.994201 +Vertex 4539: +Vertex groups: 1 + Group: 'Head', Weight: 0.989923 +Vertex 4540: +Vertex groups: 1 + Group: 'Head', Weight: 0.989601 +Vertex 4541: +Vertex groups: 1 + Group: 'Head', Weight: 0.992444 +Vertex 4542: +Vertex groups: 1 + Group: 'Head', Weight: 0.993001 +Vertex 4543: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.463504 + Group: 'Head', Weight: 0.536497 +Vertex 4544: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.466517 + Group: 'Head', Weight: 0.533484 +Vertex 4545: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.037903 + Group: 'Head', Weight: 0.956049 +Vertex 4546: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.028446 + Group: 'Head', Weight: 0.960777 +Vertex 4547: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.115476 + Group: 'Head', Weight: 0.884524 +Vertex 4548: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.190489 + Group: 'Head', Weight: 0.809512 +Vertex 4549: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.280325 + Group: 'Head', Weight: 0.719676 +Vertex 4550: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.378790 + Group: 'Head', Weight: 0.621211 +Vertex 4551: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.376285 + Group: 'Head', Weight: 0.623716 +Vertex 4552: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.275584 + Group: 'Head', Weight: 0.724417 +Vertex 4553: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.191170 + Group: 'Head', Weight: 0.808831 +Vertex 4554: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.111862 + Group: 'Head', Weight: 0.888138 +Vertex 4555: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.087504 + Group: 'Head', Weight: 0.912497 +Vertex 4556: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.055040 + Group: 'Head', Weight: 0.944961 +Vertex 4557: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.062185 + Group: 'Head', Weight: 0.937816 +Vertex 4558: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.091439 + Group: 'Head', Weight: 0.908562 +Vertex 4559: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.138760 + Group: 'Head', Weight: 0.861241 +Vertex 4560: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.163435 + Group: 'Head', Weight: 0.836565 +Vertex 4561: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.162614 + Group: 'Head', Weight: 0.837387 +Vertex 4562: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.136118 + Group: 'Head', Weight: 0.863883 +Vertex 4563: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.220043 + Group: 'Head', Weight: 0.779958 +Vertex 4564: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.250750 + Group: 'Head', Weight: 0.749251 +Vertex 4565: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.247045 + Group: 'Head', Weight: 0.752956 +Vertex 4566: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.219701 + Group: 'Head', Weight: 0.780299 +Vertex 4567: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.314547 + Group: 'Head', Weight: 0.685454 +Vertex 4568: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.349768 + Group: 'Head', Weight: 0.650232 +Vertex 4569: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.346836 + Group: 'Head', Weight: 0.653165 +Vertex 4570: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.311346 + Group: 'Head', Weight: 0.688655 +Vertex 4571: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.405806 + Group: 'Head', Weight: 0.594194 +Vertex 4572: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.436025 + Group: 'Head', Weight: 0.563976 +Vertex 4573: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.441436 + Group: 'Head', Weight: 0.558564 +Vertex 4574: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.405485 + Group: 'Head', Weight: 0.594516 +Vertex 4575: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.035065 + Group: 'Head', Weight: 0.957468 +Vertex 4576: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.050501 + Group: 'Head', Weight: 0.949499 +Vertex 4577: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.073341 + Group: 'Head', Weight: 0.926660 +Vertex 4578: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.078038 + Group: 'Head', Weight: 0.921962 +Vertex 4579: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4580: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4581: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4582: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4583: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4584: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4585: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4586: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4587: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4588: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4589: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4590: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4591: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4592: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4593: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4594: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4595: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4596: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4597: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4598: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4599: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4600: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4601: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4602: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4603: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4604: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4605: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4606: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4607: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4608: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4609: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4610: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4611: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4612: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4613: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4614: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4615: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4616: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4617: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4618: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4619: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4620: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4621: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4622: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4623: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4624: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4625: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4626: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4627: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4628: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4629: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4630: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4631: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 4632: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 4633: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 4634: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 4635: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4636: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4637: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4638: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4639: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4640: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4641: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4642: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4643: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4644: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4645: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4646: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4647: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4648: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4649: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4650: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4651: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4652: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4653: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4654: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4655: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4656: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4657: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4658: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4659: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4660: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4661: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4662: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4663: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4664: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4665: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4666: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4667: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4668: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4669: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4670: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4671: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4672: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4673: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4674: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4675: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4676: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4677: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4678: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4679: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4680: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4681: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4682: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4683: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4684: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4685: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4686: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4687: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4688: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4689: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4690: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4691: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4692: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4693: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4694: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4695: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4696: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4697: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4698: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4699: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4700: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4701: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4702: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4703: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4704: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4705: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4706: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4707: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4708: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4709: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4710: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4711: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4712: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4713: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4714: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4715: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4716: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4717: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4718: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4719: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4720: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4721: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4722: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4723: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972556 +Vertex 4724: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972556 +Vertex 4725: +Vertex groups: 2 + Group: 'Neck', Weight: 0.033899 + Group: 'Head', Weight: 0.958054 +Vertex 4726: +Vertex groups: 2 + Group: 'Neck', Weight: 0.039628 + Group: 'Head', Weight: 0.955190 +Vertex 4727: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004961 + Group: 'Head', Weight: 0.972525 +Vertex 4728: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972547 +Vertex 4729: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972550 +Vertex 4730: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972552 +Vertex 4731: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972552 +Vertex 4732: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972550 +Vertex 4733: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972548 +Vertex 4734: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004880 + Group: 'Head', Weight: 0.972566 +Vertex 4735: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004676 + Group: 'Head', Weight: 0.972667 +Vertex 4736: +Vertex groups: 2 + Group: 'Neck', Weight: 0.024446 + Group: 'Head', Weight: 0.962781 +Vertex 4737: +Vertex groups: 2 + Group: 'Neck', Weight: 0.022521 + Group: 'Head', Weight: 0.963744 +Vertex 4738: +Vertex groups: 2 + Group: 'Neck', Weight: 0.005355 + Group: 'Head', Weight: 0.972327 +Vertex 4739: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004929 + Group: 'Head', Weight: 0.972542 +Vertex 4740: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004924 + Group: 'Head', Weight: 0.972546 +Vertex 4741: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004921 + Group: 'Head', Weight: 0.972547 +Vertex 4742: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004915 + Group: 'Head', Weight: 0.972549 +Vertex 4743: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972548 +Vertex 4744: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972549 +Vertex 4745: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972549 +Vertex 4746: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972548 +Vertex 4747: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972550 +Vertex 4748: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972551 +Vertex 4749: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972551 +Vertex 4750: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972551 +Vertex 4751: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972553 +Vertex 4752: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972554 +Vertex 4753: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972554 +Vertex 4754: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972553 +Vertex 4755: +Vertex groups: 2 + Group: 'Neck', Weight: 0.037159 + Group: 'Head', Weight: 0.956425 +Vertex 4756: +Vertex groups: 2 + Group: 'Neck', Weight: 0.032336 + Group: 'Head', Weight: 0.958836 +Vertex 4757: +Vertex groups: 2 + Group: 'Neck', Weight: 0.013321 + Group: 'Head', Weight: 0.968344 +Vertex 4758: +Vertex groups: 2 + Group: 'Neck', Weight: 0.013797 + Group: 'Head', Weight: 0.968106 +Vertex 4759: +Vertex groups: 1 + Group: 'Head', Weight: 0.994199 +Vertex 4760: +Vertex groups: 1 + Group: 'Head', Weight: 0.990076 +Vertex 4761: +Vertex groups: 1 + Group: 'Head', Weight: 0.994202 +Vertex 4762: +Vertex groups: 1 + Group: 'Head', Weight: 0.994203 +Vertex 4763: +Vertex groups: 1 + Group: 'Head', Weight: 0.994206 +Vertex 4764: +Vertex groups: 1 + Group: 'Head', Weight: 0.994217 +Vertex 4765: +Vertex groups: 1 + Group: 'Head', Weight: 0.994371 +Vertex 4766: +Vertex groups: 1 + Group: 'Head', Weight: 0.991289 +Vertex 4767: +Vertex groups: 1 + Group: 'Head', Weight: 0.994207 +Vertex 4768: +Vertex groups: 1 + Group: 'Head', Weight: 0.994209 +Vertex 4769: +Vertex groups: 1 + Group: 'Head', Weight: 0.994204 +Vertex 4770: +Vertex groups: 1 + Group: 'Head', Weight: 0.994206 +Vertex 4771: +Vertex groups: 1 + Group: 'Head', Weight: 0.994202 +Vertex 4772: +Vertex groups: 1 + Group: 'Head', Weight: 0.994203 +Vertex 4773: +Vertex groups: 1 + Group: 'Head', Weight: 0.994200 +Vertex 4774: +Vertex groups: 1 + Group: 'Head', Weight: 0.994201 +Vertex 4775: +Vertex groups: 1 + Group: 'Head', Weight: 0.988768 +Vertex 4776: +Vertex groups: 1 + Group: 'Head', Weight: 0.992832 +Vertex 4777: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.483880 + Group: 'Head', Weight: 0.516121 +Vertex 4778: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.049751 + Group: 'Head', Weight: 0.950125 +Vertex 4779: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.366070 + Group: 'Head', Weight: 0.633931 +Vertex 4780: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.266361 + Group: 'Head', Weight: 0.733639 +Vertex 4781: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.193074 + Group: 'Head', Weight: 0.806926 +Vertex 4782: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.116441 + Group: 'Head', Weight: 0.883559 +Vertex 4783: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.095535 + Group: 'Head', Weight: 0.904466 +Vertex 4784: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.065166 + Group: 'Head', Weight: 0.934835 +Vertex 4785: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.165156 + Group: 'Head', Weight: 0.834844 +Vertex 4786: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.139147 + Group: 'Head', Weight: 0.860853 +Vertex 4787: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.243389 + Group: 'Head', Weight: 0.756611 +Vertex 4788: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.219403 + Group: 'Head', Weight: 0.780597 +Vertex 4789: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.335256 + Group: 'Head', Weight: 0.664745 +Vertex 4790: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.298470 + Group: 'Head', Weight: 0.701530 +Vertex 4791: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.422422 + Group: 'Head', Weight: 0.577579 +Vertex 4792: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.394856 + Group: 'Head', Weight: 0.605145 +Vertex 4793: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.052803 + Group: 'Head', Weight: 0.947197 +Vertex 4794: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.081762 + Group: 'Head', Weight: 0.918239 +Vertex 4795: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 4796: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 4797: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4798: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4799: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4800: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4801: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4802: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 4803: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 4804: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4805: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4806: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4807: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4808: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4809: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4810: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4811: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 4812: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 4813: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 4814: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 4815: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4816: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4817: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4818: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4819: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 4820: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 4821: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 4822: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4823: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 4824: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4825: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4826: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4827: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4828: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4829: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 4830: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 4831: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4832: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4833: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 4834: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4835: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4836: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4837: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4838: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4839: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4840: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4841: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4842: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4843: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4844: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4845: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4846: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 4847: +Vertex groups: 1 + Group: 'Head', Weight: 0.999986 +Vertex 4848: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4849: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4850: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4851: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4852: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4853: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4854: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4855: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4856: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4857: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4858: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4859: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4860: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4861: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4862: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4863: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4864: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4865: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4866: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4867: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4868: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4869: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4870: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 4871: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 4872: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 4873: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4874: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4875: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4876: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4877: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4878: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4879: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4880: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4881: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4882: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4883: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4884: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 4885: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4886: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4887: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4888: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4889: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4890: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4891: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4892: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4893: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4894: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4895: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4896: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4897: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4898: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4899: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4900: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4901: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4902: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4903: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4904: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4905: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4906: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4907: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4908: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4909: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4910: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4911: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4912: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4913: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4914: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4915: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4916: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4917: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4918: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4919: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4920: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4921: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4922: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4923: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4924: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4925: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4926: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4927: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4928: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 4929: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 4930: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4931: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4932: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4933: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4934: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4935: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4936: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4937: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4938: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4939: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4940: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4941: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4942: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4943: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4944: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4945: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 4946: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4947: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4948: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4949: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4950: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4951: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4952: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4953: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4954: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4955: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4956: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4957: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4958: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4959: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4960: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4961: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4962: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4963: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4964: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4965: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4966: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4967: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4968: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4969: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4970: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4971: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4972: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4973: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4974: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4975: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4976: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4977: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4978: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4979: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4980: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4981: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4982: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4983: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4984: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4985: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4986: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4987: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4988: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4989: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 4990: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 4991: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4992: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4993: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4994: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4995: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4996: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4997: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4998: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4999: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5000: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5001: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5002: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5003: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5004: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5005: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 5006: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 5007: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 5008: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 5009: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5010: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5011: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5012: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5013: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 5014: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 5015: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 5016: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5017: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 5018: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 5019: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5020: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5021: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5022: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5023: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 5024: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 5025: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5026: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5027: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 5028: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5029: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5030: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5031: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5032: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5033: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5034: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5035: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5036: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5037: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5038: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5039: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5040: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5041: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5042: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5043: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5044: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5045: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5046: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5047: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5048: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5049: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5050: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5051: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5052: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 5053: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 5054: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 5055: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5056: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5057: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5058: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 5059: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5060: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 5061: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 5062: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5063: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5064: +Vertex groups: 1 + Group: 'Head', Weight: 0.999983 +Vertex 5065: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 5066: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5067: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5068: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5069: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5070: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5071: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 5072: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 5073: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5074: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5075: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5076: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5077: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5078: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 5079: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5080: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 5081: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 5082: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5083: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5084: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5085: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 5086: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5087: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5088: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5089: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5090: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5091: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5092: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5093: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5094: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 5095: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 5096: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 5097: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5098: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5099: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5100: +Vertex groups: 1 + Group: 'Head', Weight: 1.000022 +Vertex 5101: +Vertex groups: 1 + Group: 'Head', Weight: 1.000022 +Vertex 5102: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5103: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5104: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5105: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5106: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 5107: +Vertex groups: 1 + Group: 'Head', Weight: 1.000018 +Vertex 5108: +Vertex groups: 1 + Group: 'Head', Weight: 1.000017 +Vertex 5109: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 5110: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5111: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5112: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5113: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5114: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5115: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5116: +Vertex groups: 1 + Group: 'Head', Weight: 1.000019 +Vertex 5117: +Vertex groups: 1 + Group: 'Head', Weight: 1.000022 +Vertex 5118: +Vertex groups: 1 + Group: 'Head', Weight: 1.000022 +Vertex 5119: +Vertex groups: 1 + Group: 'Head', Weight: 1.000018 +Vertex 5120: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5121: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5122: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 5123: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 5124: +Vertex groups: 1 + Group: 'Head', Weight: 1.000015 +Vertex 5125: +Vertex groups: 1 + Group: 'Head', Weight: 1.000015 +Vertex 5126: +Vertex groups: 1 + Group: 'Head', Weight: 1.000022 +Vertex 5127: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5128: +Vertex groups: 1 + Group: 'Head', Weight: 1.000018 +Vertex 5129: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 5130: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5131: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5132: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5133: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5134: +Vertex groups: 1 + Group: 'Head', Weight: 1.000022 +Vertex 5135: +Vertex groups: 1 + Group: 'Head', Weight: 1.000018 +Vertex 5136: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5137: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 5138: +Vertex groups: 1 + Group: 'Head', Weight: 1.000015 +Vertex 5139: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5140: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5141: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5142: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5143: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5144: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5145: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5146: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5147: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5148: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5149: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5150: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5151: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5152: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5153: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5154: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5155: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5156: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5157: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 5158: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 5159: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 5160: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 5161: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 5162: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 5163: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 5164: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 5165: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 5166: +Vertex groups: 1 + Group: 'Head', Weight: 1.000021 +Vertex 5167: +Vertex groups: 1 + Group: 'Head', Weight: 1.000020 +Vertex 5168: +Vertex groups: 1 + Group: 'Head', Weight: 1.000021 +Vertex 5169: +Vertex groups: 1 + Group: 'Head', Weight: 1.000019 +Vertex 5170: +Vertex groups: 1 + Group: 'Head', Weight: 1.000019 +Vertex 5171: +Vertex groups: 1 + Group: 'Head', Weight: 1.000020 +Vertex 5172: +Vertex groups: 1 + Group: 'Head', Weight: 1.000017 +Vertex 5173: +Vertex groups: 1 + Group: 'Head', Weight: 1.000016 +Vertex 5174: +Vertex groups: 1 + Group: 'Head', Weight: 1.000016 +Vertex 5175: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 5176: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 5177: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 5178: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5179: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5180: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5181: +Vertex groups: 0 +Vertex 5182: +Vertex groups: 0 +Vertex 5183: +Vertex groups: 0 +Vertex 5184: +Vertex groups: 0 +Vertex 5185: +Vertex groups: 0 +Vertex 5186: +Vertex groups: 0 +Vertex 5187: +Vertex groups: 0 +Vertex 5188: +Vertex groups: 0 +Vertex 5189: +Vertex groups: 0 +Vertex 5190: +Vertex groups: 5 + Group: 'Hips', Weight: 0.485924 + Group: 'Spine', Weight: 0.284869 + Group: 'Spine1', Weight: 0.047699 + Group: 'LeftUpLeg', Weight: 0.134998 + Group: 'RightUpLeg', Weight: 0.032522 +Vertex 5191: +Vertex groups: 4 + Group: 'Hips', Weight: 0.354494 + Group: 'Spine', Weight: 0.327522 + Group: 'Spine1', Weight: 0.053944 + Group: 'LeftUpLeg', Weight: 0.238671 +Vertex 5192: +Vertex groups: 4 + Group: 'Hips', Weight: 0.172641 + Group: 'Spine', Weight: 0.411245 + Group: 'Spine1', Weight: 0.068821 + Group: 'LeftUpLeg', Weight: 0.330687 +Vertex 5193: +Vertex groups: 4 + Group: 'Hips', Weight: 0.081324 + Group: 'Spine', Weight: 0.479573 + Group: 'Spine1', Weight: 0.087901 + Group: 'LeftUpLeg', Weight: 0.335512 +Vertex 5194: +Vertex groups: 4 + Group: 'Hips', Weight: 0.043142 + Group: 'Spine', Weight: 0.516324 + Group: 'Spine1', Weight: 0.099493 + Group: 'LeftUpLeg', Weight: 0.320809 +Vertex 5195: +Vertex groups: 4 + Group: 'Hips', Weight: 0.004592 + Group: 'Spine', Weight: 0.564738 + Group: 'Spine1', Weight: 0.098608 + Group: 'LeftUpLeg', Weight: 0.291211 +Vertex 5196: +Vertex groups: 4 + Group: 'Hips', Weight: 0.005990 + Group: 'Spine', Weight: 0.785445 + Group: 'Spine1', Weight: 0.078378 + Group: 'LeftUpLeg', Weight: 0.079791 +Vertex 5197: +Vertex groups: 5 + Group: 'Hips', Weight: 0.007893 + Group: 'Spine', Weight: 0.825365 + Group: 'Spine1', Weight: 0.062200 + Group: 'LeftUpLeg', Weight: 0.028686 + Group: 'RightUpLeg', Weight: 0.028844 +Vertex 5198: +Vertex groups: 4 + Group: 'Hips', Weight: 0.000820 + Group: 'Spine', Weight: 0.718595 + Group: 'Spine1', Weight: 0.089622 + Group: 'LeftUpLeg', Weight: 0.143002 +Vertex 5199: +Vertex groups: 3 + Group: 'Spine', Weight: 0.646628 + Group: 'Spine1', Weight: 0.096957 + Group: 'LeftUpLeg', Weight: 0.211612 +Vertex 5200: +Vertex groups: 5 + Group: 'Hips', Weight: 0.521450 + Group: 'Spine', Weight: 0.276425 + Group: 'Spine1', Weight: 0.045458 + Group: 'LeftUpLeg', Weight: 0.075189 + Group: 'RightUpLeg', Weight: 0.075295 +Vertex 5201: +Vertex groups: 5 + Group: 'Hips', Weight: 0.485698 + Group: 'Spine', Weight: 0.284845 + Group: 'Spine1', Weight: 0.047799 + Group: 'LeftUpLeg', Weight: 0.032457 + Group: 'RightUpLeg', Weight: 0.135221 +Vertex 5202: +Vertex groups: 4 + Group: 'Hips', Weight: 0.354173 + Group: 'Spine', Weight: 0.327376 + Group: 'Spine1', Weight: 0.054040 + Group: 'RightUpLeg', Weight: 0.239024 +Vertex 5203: +Vertex groups: 4 + Group: 'Hips', Weight: 0.172511 + Group: 'Spine', Weight: 0.410811 + Group: 'Spine1', Weight: 0.068956 + Group: 'RightUpLeg', Weight: 0.331074 +Vertex 5204: +Vertex groups: 4 + Group: 'Hips', Weight: 0.081325 + Group: 'Spine', Weight: 0.478920 + Group: 'Spine1', Weight: 0.088071 + Group: 'RightUpLeg', Weight: 0.335931 +Vertex 5205: +Vertex groups: 4 + Group: 'Hips', Weight: 0.043211 + Group: 'Spine', Weight: 0.515574 + Group: 'Spine1', Weight: 0.099686 + Group: 'RightUpLeg', Weight: 0.321251 +Vertex 5206: +Vertex groups: 4 + Group: 'Hips', Weight: 0.004689 + Group: 'Spine', Weight: 0.563903 + Group: 'Spine1', Weight: 0.098832 + Group: 'RightUpLeg', Weight: 0.291684 +Vertex 5207: +Vertex groups: 4 + Group: 'Hips', Weight: 0.006091 + Group: 'Spine', Weight: 0.784867 + Group: 'Spine1', Weight: 0.078597 + Group: 'RightUpLeg', Weight: 0.080054 +Vertex 5208: +Vertex groups: 4 + Group: 'Hips', Weight: 0.000943 + Group: 'Spine', Weight: 0.717778 + Group: 'Spine1', Weight: 0.089893 + Group: 'RightUpLeg', Weight: 0.143401 +Vertex 5209: +Vertex groups: 3 + Group: 'Spine', Weight: 0.645737 + Group: 'Spine1', Weight: 0.097215 + Group: 'RightUpLeg', Weight: 0.212090 +Vertex 5210: +Vertex groups: 5 + Group: 'Hips', Weight: 0.472234 + Group: 'Spine', Weight: 0.299955 + Group: 'Spine1', Weight: 0.051487 + Group: 'LeftUpLeg', Weight: 0.131717 + Group: 'RightUpLeg', Weight: 0.030599 +Vertex 5211: +Vertex groups: 4 + Group: 'Hips', Weight: 0.345828 + Group: 'Spine', Weight: 0.340443 + Group: 'Spine1', Weight: 0.056000 + Group: 'LeftUpLeg', Weight: 0.232409 +Vertex 5212: +Vertex groups: 4 + Group: 'Hips', Weight: 0.169230 + Group: 'Spine', Weight: 0.423859 + Group: 'Spine1', Weight: 0.071180 + Group: 'LeftUpLeg', Weight: 0.318888 +Vertex 5213: +Vertex groups: 4 + Group: 'Hips', Weight: 0.080965 + Group: 'Spine', Weight: 0.487819 + Group: 'Spine1', Weight: 0.090966 + Group: 'LeftUpLeg', Weight: 0.324218 +Vertex 5214: +Vertex groups: 4 + Group: 'Hips', Weight: 0.042778 + Group: 'Spine', Weight: 0.523297 + Group: 'Spine1', Weight: 0.103115 + Group: 'LeftUpLeg', Weight: 0.309972 +Vertex 5215: +Vertex groups: 4 + Group: 'Hips', Weight: 0.004382 + Group: 'Spine', Weight: 0.570553 + Group: 'Spine1', Weight: 0.102662 + Group: 'LeftUpLeg', Weight: 0.281019 +Vertex 5216: +Vertex groups: 4 + Group: 'Hips', Weight: 0.002764 + Group: 'Spine', Weight: 0.785954 + Group: 'Spine1', Weight: 0.082599 + Group: 'LeftUpLeg', Weight: 0.077521 +Vertex 5217: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004754 + Group: 'Spine', Weight: 0.827288 + Group: 'Spine1', Weight: 0.064734 + Group: 'LeftUpLeg', Weight: 0.025655 + Group: 'RightUpLeg', Weight: 0.025810 +Vertex 5218: +Vertex groups: 3 + Group: 'Spine', Weight: 0.720624 + Group: 'Spine1', Weight: 0.093906 + Group: 'LeftUpLeg', Weight: 0.137893 +Vertex 5219: +Vertex groups: 3 + Group: 'Spine', Weight: 0.649791 + Group: 'Spine1', Weight: 0.101083 + Group: 'LeftUpLeg', Weight: 0.204623 +Vertex 5220: +Vertex groups: 5 + Group: 'Hips', Weight: 0.508398 + Group: 'Spine', Weight: 0.290198 + Group: 'Spine1', Weight: 0.050146 + Group: 'LeftUpLeg', Weight: 0.073528 + Group: 'RightUpLeg', Weight: 0.073633 +Vertex 5221: +Vertex groups: 5 + Group: 'Hips', Weight: 0.472017 + Group: 'Spine', Weight: 0.299920 + Group: 'Spine1', Weight: 0.051539 + Group: 'LeftUpLeg', Weight: 0.030534 + Group: 'RightUpLeg', Weight: 0.131938 +Vertex 5222: +Vertex groups: 4 + Group: 'Hips', Weight: 0.345527 + Group: 'Spine', Weight: 0.340277 + Group: 'Spine1', Weight: 0.056098 + Group: 'RightUpLeg', Weight: 0.232759 +Vertex 5223: +Vertex groups: 4 + Group: 'Hips', Weight: 0.169114 + Group: 'Spine', Weight: 0.423405 + Group: 'Spine1', Weight: 0.071319 + Group: 'RightUpLeg', Weight: 0.319277 +Vertex 5224: +Vertex groups: 4 + Group: 'Hips', Weight: 0.080969 + Group: 'Spine', Weight: 0.487157 + Group: 'Spine1', Weight: 0.091138 + Group: 'RightUpLeg', Weight: 0.324639 +Vertex 5225: +Vertex groups: 4 + Group: 'Hips', Weight: 0.042851 + Group: 'Spine', Weight: 0.522539 + Group: 'Spine1', Weight: 0.103311 + Group: 'RightUpLeg', Weight: 0.310416 +Vertex 5226: +Vertex groups: 4 + Group: 'Hips', Weight: 0.004480 + Group: 'Spine', Weight: 0.569710 + Group: 'Spine1', Weight: 0.102889 + Group: 'RightUpLeg', Weight: 0.281493 +Vertex 5227: +Vertex groups: 4 + Group: 'Hips', Weight: 0.002866 + Group: 'Spine', Weight: 0.785358 + Group: 'Spine1', Weight: 0.082830 + Group: 'RightUpLeg', Weight: 0.077785 +Vertex 5228: +Vertex groups: 3 + Group: 'Spine', Weight: 0.719797 + Group: 'Spine1', Weight: 0.094185 + Group: 'RightUpLeg', Weight: 0.138291 +Vertex 5229: +Vertex groups: 3 + Group: 'Spine', Weight: 0.648894 + Group: 'Spine1', Weight: 0.101347 + Group: 'RightUpLeg', Weight: 0.205099 +Vertex 5230: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5231: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5232: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5233: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5234: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5235: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5236: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5237: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5238: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5239: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5240: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5241: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5242: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5243: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5244: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5245: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5246: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5247: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5248: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5249: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5250: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5251: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5252: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5253: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5254: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5255: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5256: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5257: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5258: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5259: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5260: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5261: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5262: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5263: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5264: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5265: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5266: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5267: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5268: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5269: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5270: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5271: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5272: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5273: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5274: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5275: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5276: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5277: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5278: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5279: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5280: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5281: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5282: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5283: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5284: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5285: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5286: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5287: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5288: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5289: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5290: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5291: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5292: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5293: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5294: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5295: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5296: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5297: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5298: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5299: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5300: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5301: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5302: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5303: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5304: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5305: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5306: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5307: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5308: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5309: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5310: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5311: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5312: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5313: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5314: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5315: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5316: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5317: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5318: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5319: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5320: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5321: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5322: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5323: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5324: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5325: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5326: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5327: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5328: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 5329: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 5330: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 5331: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 5332: +Vertex groups: 2 + Group: 'Neck', Weight: 0.178895 + Group: 'Head', Weight: 0.821108 +Vertex 5333: +Vertex groups: 2 + Group: 'Neck', Weight: 0.174796 + Group: 'Head', Weight: 0.825206 +Vertex 5334: +Vertex groups: 2 + Group: 'Neck', Weight: 0.103010 + Group: 'Head', Weight: 0.896991 +Vertex 5335: +Vertex groups: 2 + Group: 'Neck', Weight: 0.120043 + Group: 'Head', Weight: 0.879958 +Vertex 5336: +Vertex groups: 1 + Group: 'Head', Weight: 0.999986 +Vertex 5337: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 5338: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 5339: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 5340: +Vertex groups: 1 + Group: 'Head', Weight: 0.999986 +Vertex 5341: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 5342: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5343: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5344: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5345: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5346: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5347: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5348: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5349: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5350: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5351: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5352: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5353: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5354: +Vertex groups: 2 + Group: 'Neck', Weight: 0.220515 + Group: 'Head', Weight: 0.779487 +Vertex 5355: +Vertex groups: 2 + Group: 'Neck', Weight: 0.218319 + Group: 'Head', Weight: 0.781683 +Vertex 5356: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 5357: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 5358: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 5359: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 5360: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 5361: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 5362: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885658 +Vertex 5363: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885658 +Vertex 5364: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885658 +Vertex 5365: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901468 +Vertex 5366: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901468 +Vertex 5367: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901468 +Vertex 5368: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098543 + Group: 'Head', Weight: 0.901469 +Vertex 5369: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098549 + Group: 'Head', Weight: 0.901463 +Vertex 5370: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901465 +Vertex 5371: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114320 + Group: 'Head', Weight: 0.885664 +Vertex 5372: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114324 + Group: 'Head', Weight: 0.885660 +Vertex 5373: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114323 + Group: 'Head', Weight: 0.885661 +Vertex 5374: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097095 + Group: 'Head', Weight: 0.902912 +Vertex 5375: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097098 + Group: 'Head', Weight: 0.902909 +Vertex 5376: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097097 + Group: 'Head', Weight: 0.902910 +Vertex 5377: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097100 + Group: 'Head', Weight: 0.902907 +Vertex 5378: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097098 + Group: 'Head', Weight: 0.902909 +Vertex 5379: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097093 + Group: 'Head', Weight: 0.902914 +Vertex 5380: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114329 + Group: 'Head', Weight: 0.885655 +Vertex 5381: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114325 + Group: 'Head', Weight: 0.885660 +Vertex 5382: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114318 + Group: 'Head', Weight: 0.885667 +Vertex 5383: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 5384: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 5385: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 5386: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5387: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5388: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5389: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 5390: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 5391: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 5392: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5393: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5394: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5395: +Vertex groups: 1 + Group: 'Head', Weight: 0.999983 +Vertex 5396: +Vertex groups: 1 + Group: 'Head', Weight: 0.999983 +Vertex 5397: +Vertex groups: 1 + Group: 'Head', Weight: 0.999983 +Vertex 5398: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.146728 + Group: 'RightHandMiddle1', Weight: 0.519471 + Group: 'RightHandMiddle2', Weight: 0.097048 + Group: 'RightHandRing1', Weight: 0.132439 + Group: 'RightHandRing2', Weight: 0.039756 +Vertex 5399: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.566446 + Group: 'RightHandRing2', Weight: 0.198868 + Group: 'RightHandMiddle1', Weight: 0.125631 + Group: 'RightHandPinky1', Weight: 0.086894 + Group: 'RightHandPinky2', Weight: 0.022161 +=== Animation Keyframes === +=== Bone Transforms per Keyframe === +Keyframes: 54 +Frame: 0 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 1 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 2 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 3 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 4 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 5 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 6 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 7 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 8 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 9 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 10 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 11 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 12 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 13 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 14 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 15 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 16 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 17 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 18 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 19 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 20 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 21 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 22 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 23 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 24 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 25 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 26 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 27 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 28 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 29 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 30 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 31 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 32 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 33 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 34 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 35 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 36 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 37 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 38 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 39 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 40 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 41 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 42 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 43 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 44 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 45 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 46 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 47 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 48 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 49 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 50 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 51 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 52 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 53 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + diff --git a/resources/w/girlfriend/girlfriend_walk001.txt b/resources/w/girlfriend/girlfriend_walk001.txt new file mode 100644 index 0000000..4d227ed --- /dev/null +++ b/resources/w/girlfriend/girlfriend_walk001.txt @@ -0,0 +1,114287 @@ +=== Armature Matrix === + + + + +=== Armature Bones: 63 +Bone: Hips + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.09507554942544139 + + + + Parent: None + Children: ['Spine', 'LeftUpLeg', 'RightUpLeg'] +Bone: Spine + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.12353978971747905 + + + + Parent: Hips + Children: ['Spine1'] +Bone: Spine1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.14721100651092592 + + + + Parent: Spine + Children: ['Spine2'] +Bone: Spine2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.1504897780231176 + + + + Parent: Spine1 + Children: ['Neck', 'LeftShoulder', 'RightShoulder'] +Bone: Neck + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.14121287866897442 + + + + Parent: Spine2 + Children: ['Head'] +Bone: Head + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.22816329000639674 + + + + Parent: Neck + Children: ['Head_end'] +Bone: Head_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.24200952050650212 + + + + Parent: Head + Children: [] +Bone: LeftShoulder + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.12367134536725961 + + + + Parent: Spine2 + Children: ['LeftArm'] +Bone: LeftArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2452980058838208 + + + + Parent: LeftShoulder + Children: ['LeftForeArm'] +Bone: LeftForeArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2225854961490068 + + + + Parent: LeftArm + Children: ['LeftHand'] +Bone: LeftHand + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.059997293858802675 + + + + Parent: LeftForeArm + Children: ['LeftHandThumb1', 'LeftHandIndex1', 'LeftHandMiddle1', 'LeftHandRing1', 'LeftHandPinky1'] +Bone: LeftHandThumb1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.024587623753619402 + + + + Parent: LeftHand + Children: ['LeftHandThumb2'] +Bone: LeftHandThumb2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022115675238174277 + + + + Parent: LeftHandThumb1 + Children: ['LeftHandThumb3'] +Bone: LeftHandThumb3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02079256883015047 + + + + Parent: LeftHandThumb2 + Children: ['LeftHandThumb3_end'] +Bone: LeftHandThumb3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02144576255051639 + + + + Parent: LeftHandThumb3 + Children: [] +Bone: LeftHandIndex1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.039380642877091566 + + + + Parent: LeftHand + Children: ['LeftHandIndex2'] +Bone: LeftHandIndex2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02689386367683547 + + + + Parent: LeftHandIndex1 + Children: ['LeftHandIndex3'] +Bone: LeftHandIndex3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.021548516170175166 + + + + Parent: LeftHandIndex2 + Children: ['LeftHandIndex3_end'] +Bone: LeftHandIndex3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.017936713692482353 + + + + Parent: LeftHandIndex3 + Children: [] +Bone: LeftHandMiddle1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.03128070502690231 + + + + Parent: LeftHand + Children: ['LeftHandMiddle2'] +Bone: LeftHandMiddle2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02933969730155993 + + + + Parent: LeftHandMiddle1 + Children: ['LeftHandMiddle3'] +Bone: LeftHandMiddle3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02854078575259649 + + + + Parent: LeftHandMiddle2 + Children: ['LeftHandMiddle3_end'] +Bone: LeftHandMiddle3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02217298257472352 + + + + Parent: LeftHandMiddle3 + Children: [] +Bone: LeftHandRing1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02824055589541246 + + + + Parent: LeftHand + Children: ['LeftHandRing2'] +Bone: LeftHandRing2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.026119443766119885 + + + + Parent: LeftHandRing1 + Children: ['LeftHandRing3'] +Bone: LeftHandRing3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.025662976201378793 + + + + Parent: LeftHandRing2 + Children: ['LeftHandRing3_end'] +Bone: LeftHandRing3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01959367912247575 + + + + Parent: LeftHandRing3 + Children: [] +Bone: LeftHandPinky1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02621499128668013 + + + + Parent: LeftHand + Children: ['LeftHandPinky2'] +Bone: LeftHandPinky2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.023017874331436206 + + + + Parent: LeftHandPinky1 + Children: ['LeftHandPinky3'] +Bone: LeftHandPinky3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022463324798304887 + + + + Parent: LeftHandPinky2 + Children: ['LeftHandPinky3_end'] +Bone: LeftHandPinky3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01734677299296374 + + + + Parent: LeftHandPinky3 + Children: [] +Bone: RightShoulder + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.12367134536725961 + + + + Parent: Spine2 + Children: ['RightArm'] +Bone: RightArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2452980058838208 + + + + Parent: RightShoulder + Children: ['RightForeArm'] +Bone: RightForeArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2225854961490068 + + + + Parent: RightArm + Children: ['RightHand'] +Bone: RightHand + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.059997293858802675 + + + + Parent: RightForeArm + Children: ['RightHandThumb1', 'RightHandIndex1', 'RightHandMiddle1', 'RightHandRing1', 'RightHandPinky1'] +Bone: RightHandThumb1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.024587623753619402 + + + + Parent: RightHand + Children: ['RightHandThumb2'] +Bone: RightHandThumb2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022115675238174277 + + + + Parent: RightHandThumb1 + Children: ['RightHandThumb3'] +Bone: RightHandThumb3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02079256883015047 + + + + Parent: RightHandThumb2 + Children: ['RightHandThumb3_end'] +Bone: RightHandThumb3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02144576255051639 + + + + Parent: RightHandThumb3 + Children: [] +Bone: RightHandIndex1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.039380642877091566 + + + + Parent: RightHand + Children: ['RightHandIndex2'] +Bone: RightHandIndex2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02689386367683547 + + + + Parent: RightHandIndex1 + Children: ['RightHandIndex3'] +Bone: RightHandIndex3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.021548516170175166 + + + + Parent: RightHandIndex2 + Children: ['RightHandIndex3_end'] +Bone: RightHandIndex3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.017936713692482353 + + + + Parent: RightHandIndex3 + Children: [] +Bone: RightHandMiddle1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.03128070502690231 + + + + Parent: RightHand + Children: ['RightHandMiddle2'] +Bone: RightHandMiddle2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02933969730155993 + + + + Parent: RightHandMiddle1 + Children: ['RightHandMiddle3'] +Bone: RightHandMiddle3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02854078575259649 + + + + Parent: RightHandMiddle2 + Children: ['RightHandMiddle3_end'] +Bone: RightHandMiddle3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02217298257472352 + + + + Parent: RightHandMiddle3 + Children: [] +Bone: RightHandRing1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02824055589541246 + + + + Parent: RightHand + Children: ['RightHandRing2'] +Bone: RightHandRing2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.026119443766119885 + + + + Parent: RightHandRing1 + Children: ['RightHandRing3'] +Bone: RightHandRing3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.025662976201378793 + + + + Parent: RightHandRing2 + Children: ['RightHandRing3_end'] +Bone: RightHandRing3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01959367912247575 + + + + Parent: RightHandRing3 + Children: [] +Bone: RightHandPinky1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02606178578371245 + + + + Parent: RightHand + Children: ['RightHandPinky2'] +Bone: RightHandPinky2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.023017874331436206 + + + + Parent: RightHandPinky1 + Children: ['RightHandPinky3'] +Bone: RightHandPinky3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022463324798304887 + + + + Parent: RightHandPinky2 + Children: ['RightHandPinky3_end'] +Bone: RightHandPinky3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01734677299296374 + + + + Parent: RightHandPinky3 + Children: [] +Bone: LeftUpLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.3457044687537974 + + + + Parent: Hips + Children: ['LeftLeg'] +Bone: LeftLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.380034175614433 + + + + Parent: LeftUpLeg + Children: ['LeftFoot'] +Bone: LeftFoot + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.1334373005165752 + + + + Parent: LeftLeg + Children: ['LeftToeBase'] +Bone: LeftToeBase + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.13343730116493727 + + + + Parent: LeftFoot + Children: [] +Bone: RightUpLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.3457048513836104 + + + + Parent: Hips + Children: ['RightLeg'] +Bone: RightLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.3800342598547777 + + + + Parent: RightUpLeg + Children: ['RightFoot'] +Bone: RightFoot + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.13343732145500467 + + + + Parent: RightLeg + Children: ['RightToeBase'] +Bone: RightToeBase + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.13343732505038894 + + + + Parent: RightFoot + Children: [] +=== TOTAL MESHES TO EXPORT: 1 === +=== Mesh Object: Girl_Low === +===Vertices: 5400 +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: +Vertex 2660: +Vertex 2661: +Vertex 2662: +Vertex 2663: +Vertex 2664: +Vertex 2665: +Vertex 2666: +Vertex 2667: +Vertex 2668: +Vertex 2669: +Vertex 2670: +Vertex 2671: +Vertex 2672: +Vertex 2673: +Vertex 2674: +Vertex 2675: +Vertex 2676: +Vertex 2677: +Vertex 2678: +Vertex 2679: +Vertex 2680: +Vertex 2681: +Vertex 2682: +Vertex 2683: +Vertex 2684: +Vertex 2685: +Vertex 2686: +Vertex 2687: +Vertex 2688: +Vertex 2689: +Vertex 2690: +Vertex 2691: +Vertex 2692: +Vertex 2693: +Vertex 2694: +Vertex 2695: +Vertex 2696: +Vertex 2697: +Vertex 2698: +Vertex 2699: +Vertex 2700: +Vertex 2701: +Vertex 2702: +Vertex 2703: +Vertex 2704: +Vertex 2705: +Vertex 2706: +Vertex 2707: +Vertex 2708: +Vertex 2709: +Vertex 2710: +Vertex 2711: +Vertex 2712: +Vertex 2713: +Vertex 2714: +Vertex 2715: +Vertex 2716: +Vertex 2717: +Vertex 2718: +Vertex 2719: +Vertex 2720: +Vertex 2721: +Vertex 2722: +Vertex 2723: +Vertex 2724: +Vertex 2725: +Vertex 2726: +Vertex 2727: +Vertex 2728: +Vertex 2729: +Vertex 2730: +Vertex 2731: +Vertex 2732: +Vertex 2733: +Vertex 2734: +Vertex 2735: +Vertex 2736: +Vertex 2737: +Vertex 2738: +Vertex 2739: +Vertex 2740: +Vertex 2741: +Vertex 2742: +Vertex 2743: +Vertex 2744: +Vertex 2745: +Vertex 2746: +Vertex 2747: +Vertex 2748: +Vertex 2749: +Vertex 2750: +Vertex 2751: +Vertex 2752: +Vertex 2753: +Vertex 2754: +Vertex 2755: +Vertex 2756: +Vertex 2757: +Vertex 2758: +Vertex 2759: +Vertex 2760: +Vertex 2761: +Vertex 2762: +Vertex 2763: +Vertex 2764: +Vertex 2765: +Vertex 2766: +Vertex 2767: +Vertex 2768: +Vertex 2769: +Vertex 2770: +Vertex 2771: +Vertex 2772: +Vertex 2773: +Vertex 2774: +Vertex 2775: +Vertex 2776: +Vertex 2777: +Vertex 2778: +Vertex 2779: +Vertex 2780: +Vertex 2781: +Vertex 2782: +Vertex 2783: +Vertex 2784: +Vertex 2785: +Vertex 2786: +Vertex 2787: +Vertex 2788: +Vertex 2789: +Vertex 2790: +Vertex 2791: +Vertex 2792: +Vertex 2793: +Vertex 2794: +Vertex 2795: +Vertex 2796: +Vertex 2797: +Vertex 2798: +Vertex 2799: +Vertex 2800: +Vertex 2801: +Vertex 2802: +Vertex 2803: +Vertex 2804: +Vertex 2805: +Vertex 2806: +Vertex 2807: +Vertex 2808: +Vertex 2809: +Vertex 2810: +Vertex 2811: +Vertex 2812: +Vertex 2813: +Vertex 2814: +Vertex 2815: +Vertex 2816: +Vertex 2817: +Vertex 2818: +Vertex 2819: +Vertex 2820: +Vertex 2821: +Vertex 2822: +Vertex 2823: +Vertex 2824: +Vertex 2825: +Vertex 2826: +Vertex 2827: +Vertex 2828: +Vertex 2829: +Vertex 2830: +Vertex 2831: +Vertex 2832: +Vertex 2833: +Vertex 2834: +Vertex 2835: +Vertex 2836: +Vertex 2837: +Vertex 2838: +Vertex 2839: +Vertex 2840: +Vertex 2841: +Vertex 2842: +Vertex 2843: +Vertex 2844: +Vertex 2845: +Vertex 2846: +Vertex 2847: +Vertex 2848: +Vertex 2849: +Vertex 2850: +Vertex 2851: +Vertex 2852: +Vertex 2853: +Vertex 2854: +Vertex 2855: +Vertex 2856: +Vertex 2857: +Vertex 2858: +Vertex 2859: +Vertex 2860: +Vertex 2861: +Vertex 2862: +Vertex 2863: +Vertex 2864: +Vertex 2865: +Vertex 2866: +Vertex 2867: +Vertex 2868: +Vertex 2869: +Vertex 2870: +Vertex 2871: +Vertex 2872: +Vertex 2873: +Vertex 2874: +Vertex 2875: +Vertex 2876: +Vertex 2877: +Vertex 2878: +Vertex 2879: +Vertex 2880: +Vertex 2881: +Vertex 2882: +Vertex 2883: +Vertex 2884: +Vertex 2885: +Vertex 2886: +Vertex 2887: +Vertex 2888: +Vertex 2889: +Vertex 2890: +Vertex 2891: +Vertex 2892: +Vertex 2893: +Vertex 2894: +Vertex 2895: +Vertex 2896: +Vertex 2897: +Vertex 2898: +Vertex 2899: +Vertex 2900: +Vertex 2901: +Vertex 2902: +Vertex 2903: +Vertex 2904: +Vertex 2905: +Vertex 2906: +Vertex 2907: +Vertex 2908: +Vertex 2909: +Vertex 2910: +Vertex 2911: +Vertex 2912: +Vertex 2913: +Vertex 2914: +Vertex 2915: +Vertex 2916: +Vertex 2917: +Vertex 2918: +Vertex 2919: +Vertex 2920: +Vertex 2921: +Vertex 2922: +Vertex 2923: +Vertex 2924: +Vertex 2925: +Vertex 2926: +Vertex 2927: +Vertex 2928: +Vertex 2929: +Vertex 2930: +Vertex 2931: +Vertex 2932: +Vertex 2933: +Vertex 2934: +Vertex 2935: +Vertex 2936: +Vertex 2937: +Vertex 2938: +Vertex 2939: +Vertex 2940: +Vertex 2941: +Vertex 2942: +Vertex 2943: +Vertex 2944: +Vertex 2945: +Vertex 2946: +Vertex 2947: +Vertex 2948: +Vertex 2949: +Vertex 2950: +Vertex 2951: +Vertex 2952: +Vertex 2953: +Vertex 2954: +Vertex 2955: +Vertex 2956: +Vertex 2957: +Vertex 2958: +Vertex 2959: +Vertex 2960: +Vertex 2961: +Vertex 2962: +Vertex 2963: +Vertex 2964: +Vertex 2965: +Vertex 2966: +Vertex 2967: +Vertex 2968: +Vertex 2969: +Vertex 2970: +Vertex 2971: +Vertex 2972: +Vertex 2973: +Vertex 2974: +Vertex 2975: +Vertex 2976: +Vertex 2977: +Vertex 2978: +Vertex 2979: +Vertex 2980: +Vertex 2981: +Vertex 2982: +Vertex 2983: +Vertex 2984: +Vertex 2985: +Vertex 2986: +Vertex 2987: +Vertex 2988: +Vertex 2989: +Vertex 2990: +Vertex 2991: +Vertex 2992: +Vertex 2993: +Vertex 2994: +Vertex 2995: +Vertex 2996: +Vertex 2997: +Vertex 2998: +Vertex 2999: +Vertex 3000: +Vertex 3001: +Vertex 3002: +Vertex 3003: +Vertex 3004: +Vertex 3005: +Vertex 3006: +Vertex 3007: +Vertex 3008: +Vertex 3009: +Vertex 3010: +Vertex 3011: +Vertex 3012: +Vertex 3013: +Vertex 3014: +Vertex 3015: +Vertex 3016: +Vertex 3017: +Vertex 3018: +Vertex 3019: +Vertex 3020: +Vertex 3021: +Vertex 3022: +Vertex 3023: +Vertex 3024: +Vertex 3025: +Vertex 3026: +Vertex 3027: +Vertex 3028: +Vertex 3029: +Vertex 3030: +Vertex 3031: +Vertex 3032: +Vertex 3033: +Vertex 3034: +Vertex 3035: +Vertex 3036: +Vertex 3037: +Vertex 3038: +Vertex 3039: +Vertex 3040: +Vertex 3041: +Vertex 3042: +Vertex 3043: +Vertex 3044: +Vertex 3045: +Vertex 3046: +Vertex 3047: +Vertex 3048: +Vertex 3049: +Vertex 3050: +Vertex 3051: +Vertex 3052: +Vertex 3053: +Vertex 3054: +Vertex 3055: +Vertex 3056: +Vertex 3057: +Vertex 3058: +Vertex 3059: +Vertex 3060: +Vertex 3061: +Vertex 3062: +Vertex 3063: +Vertex 3064: +Vertex 3065: +Vertex 3066: +Vertex 3067: +Vertex 3068: +Vertex 3069: +Vertex 3070: +Vertex 3071: +Vertex 3072: +Vertex 3073: +Vertex 3074: +Vertex 3075: +Vertex 3076: +Vertex 3077: +Vertex 3078: +Vertex 3079: +Vertex 3080: +Vertex 3081: +Vertex 3082: +Vertex 3083: +Vertex 3084: +Vertex 3085: +Vertex 3086: +Vertex 3087: +Vertex 3088: +Vertex 3089: +Vertex 3090: +Vertex 3091: +Vertex 3092: +Vertex 3093: +Vertex 3094: +Vertex 3095: +Vertex 3096: +Vertex 3097: +Vertex 3098: +Vertex 3099: +Vertex 3100: +Vertex 3101: +Vertex 3102: +Vertex 3103: +Vertex 3104: +Vertex 3105: +Vertex 3106: +Vertex 3107: +Vertex 3108: +Vertex 3109: +Vertex 3110: +Vertex 3111: +Vertex 3112: +Vertex 3113: +Vertex 3114: +Vertex 3115: +Vertex 3116: +Vertex 3117: +Vertex 3118: +Vertex 3119: +Vertex 3120: +Vertex 3121: +Vertex 3122: +Vertex 3123: +Vertex 3124: +Vertex 3125: +Vertex 3126: +Vertex 3127: +Vertex 3128: +Vertex 3129: +Vertex 3130: +Vertex 3131: +Vertex 3132: +Vertex 3133: +Vertex 3134: +Vertex 3135: +Vertex 3136: +Vertex 3137: +Vertex 3138: +Vertex 3139: +Vertex 3140: +Vertex 3141: +Vertex 3142: +Vertex 3143: +Vertex 3144: +Vertex 3145: +Vertex 3146: +Vertex 3147: +Vertex 3148: +Vertex 3149: +Vertex 3150: +Vertex 3151: +Vertex 3152: +Vertex 3153: +Vertex 3154: +Vertex 3155: +Vertex 3156: +Vertex 3157: +Vertex 3158: +Vertex 3159: +Vertex 3160: +Vertex 3161: +Vertex 3162: +Vertex 3163: +Vertex 3164: +Vertex 3165: +Vertex 3166: +Vertex 3167: +Vertex 3168: +Vertex 3169: +Vertex 3170: +Vertex 3171: +Vertex 3172: +Vertex 3173: +Vertex 3174: +Vertex 3175: +Vertex 3176: +Vertex 3177: +Vertex 3178: +Vertex 3179: +Vertex 3180: +Vertex 3181: +Vertex 3182: +Vertex 3183: +Vertex 3184: +Vertex 3185: +Vertex 3186: +Vertex 3187: +Vertex 3188: +Vertex 3189: +Vertex 3190: +Vertex 3191: +Vertex 3192: +Vertex 3193: +Vertex 3194: +Vertex 3195: +Vertex 3196: +Vertex 3197: +Vertex 3198: +Vertex 3199: +Vertex 3200: +Vertex 3201: +Vertex 3202: +Vertex 3203: +Vertex 3204: +Vertex 3205: +Vertex 3206: +Vertex 3207: +Vertex 3208: +Vertex 3209: +Vertex 3210: +Vertex 3211: +Vertex 3212: +Vertex 3213: +Vertex 3214: +Vertex 3215: +Vertex 3216: +Vertex 3217: +Vertex 3218: +Vertex 3219: +Vertex 3220: +Vertex 3221: +Vertex 3222: +Vertex 3223: +Vertex 3224: +Vertex 3225: +Vertex 3226: +Vertex 3227: +Vertex 3228: +Vertex 3229: +Vertex 3230: +Vertex 3231: +Vertex 3232: +Vertex 3233: +Vertex 3234: +Vertex 3235: +Vertex 3236: +Vertex 3237: +Vertex 3238: +Vertex 3239: +Vertex 3240: +Vertex 3241: +Vertex 3242: +Vertex 3243: +Vertex 3244: +Vertex 3245: +Vertex 3246: +Vertex 3247: +Vertex 3248: +Vertex 3249: +Vertex 3250: +Vertex 3251: +Vertex 3252: +Vertex 3253: +Vertex 3254: +Vertex 3255: +Vertex 3256: +Vertex 3257: +Vertex 3258: +Vertex 3259: +Vertex 3260: +Vertex 3261: +Vertex 3262: +Vertex 3263: +Vertex 3264: +Vertex 3265: +Vertex 3266: +Vertex 3267: +Vertex 3268: +Vertex 3269: +Vertex 3270: +Vertex 3271: +Vertex 3272: +Vertex 3273: +Vertex 3274: +Vertex 3275: +Vertex 3276: +Vertex 3277: +Vertex 3278: +Vertex 3279: +Vertex 3280: +Vertex 3281: +Vertex 3282: +Vertex 3283: +Vertex 3284: +Vertex 3285: +Vertex 3286: +Vertex 3287: +Vertex 3288: +Vertex 3289: +Vertex 3290: +Vertex 3291: +Vertex 3292: +Vertex 3293: +Vertex 3294: +Vertex 3295: +Vertex 3296: +Vertex 3297: +Vertex 3298: +Vertex 3299: +Vertex 3300: +Vertex 3301: +Vertex 3302: +Vertex 3303: +Vertex 3304: +Vertex 3305: +Vertex 3306: +Vertex 3307: +Vertex 3308: +Vertex 3309: +Vertex 3310: +Vertex 3311: +Vertex 3312: +Vertex 3313: +Vertex 3314: +Vertex 3315: +Vertex 3316: +Vertex 3317: +Vertex 3318: +Vertex 3319: +Vertex 3320: +Vertex 3321: +Vertex 3322: +Vertex 3323: +Vertex 3324: +Vertex 3325: +Vertex 3326: +Vertex 3327: +Vertex 3328: +Vertex 3329: +Vertex 3330: +Vertex 3331: +Vertex 3332: +Vertex 3333: +Vertex 3334: +Vertex 3335: +Vertex 3336: +Vertex 3337: +Vertex 3338: +Vertex 3339: +Vertex 3340: +Vertex 3341: +Vertex 3342: +Vertex 3343: +Vertex 3344: +Vertex 3345: +Vertex 3346: +Vertex 3347: +Vertex 3348: +Vertex 3349: +Vertex 3350: +Vertex 3351: +Vertex 3352: +Vertex 3353: +Vertex 3354: +Vertex 3355: +Vertex 3356: +Vertex 3357: +Vertex 3358: +Vertex 3359: +Vertex 3360: +Vertex 3361: +Vertex 3362: +Vertex 3363: +Vertex 3364: +Vertex 3365: +Vertex 3366: +Vertex 3367: +Vertex 3368: +Vertex 3369: +Vertex 3370: +Vertex 3371: +Vertex 3372: +Vertex 3373: +Vertex 3374: +Vertex 3375: +Vertex 3376: +Vertex 3377: +Vertex 3378: +Vertex 3379: +Vertex 3380: +Vertex 3381: +Vertex 3382: +Vertex 3383: +Vertex 3384: +Vertex 3385: +Vertex 3386: +Vertex 3387: +Vertex 3388: +Vertex 3389: +Vertex 3390: +Vertex 3391: +Vertex 3392: +Vertex 3393: +Vertex 3394: +Vertex 3395: +Vertex 3396: +Vertex 3397: +Vertex 3398: +Vertex 3399: +Vertex 3400: +Vertex 3401: +Vertex 3402: +Vertex 3403: +Vertex 3404: +Vertex 3405: +Vertex 3406: +Vertex 3407: +Vertex 3408: +Vertex 3409: +Vertex 3410: +Vertex 3411: +Vertex 3412: +Vertex 3413: +Vertex 3414: +Vertex 3415: +Vertex 3416: +Vertex 3417: +Vertex 3418: +Vertex 3419: +Vertex 3420: +Vertex 3421: +Vertex 3422: +Vertex 3423: +Vertex 3424: +Vertex 3425: +Vertex 3426: +Vertex 3427: +Vertex 3428: +Vertex 3429: +Vertex 3430: +Vertex 3431: +Vertex 3432: +Vertex 3433: +Vertex 3434: +Vertex 3435: +Vertex 3436: +Vertex 3437: +Vertex 3438: +Vertex 3439: +Vertex 3440: +Vertex 3441: +Vertex 3442: +Vertex 3443: +Vertex 3444: +Vertex 3445: +Vertex 3446: +Vertex 3447: +Vertex 3448: +Vertex 3449: +Vertex 3450: +Vertex 3451: +Vertex 3452: +Vertex 3453: +Vertex 3454: +Vertex 3455: +Vertex 3456: +Vertex 3457: +Vertex 3458: +Vertex 3459: +Vertex 3460: +Vertex 3461: +Vertex 3462: +Vertex 3463: +Vertex 3464: +Vertex 3465: +Vertex 3466: +Vertex 3467: +Vertex 3468: +Vertex 3469: +Vertex 3470: +Vertex 3471: +Vertex 3472: +Vertex 3473: +Vertex 3474: +Vertex 3475: +Vertex 3476: +Vertex 3477: +Vertex 3478: +Vertex 3479: +Vertex 3480: +Vertex 3481: +Vertex 3482: +Vertex 3483: +Vertex 3484: +Vertex 3485: +Vertex 3486: +Vertex 3487: +Vertex 3488: +Vertex 3489: +Vertex 3490: +Vertex 3491: +Vertex 3492: +Vertex 3493: +Vertex 3494: +Vertex 3495: +Vertex 3496: +Vertex 3497: +Vertex 3498: +Vertex 3499: +Vertex 3500: +Vertex 3501: +Vertex 3502: +Vertex 3503: +Vertex 3504: +Vertex 3505: +Vertex 3506: +Vertex 3507: +Vertex 3508: +Vertex 3509: +Vertex 3510: +Vertex 3511: +Vertex 3512: +Vertex 3513: +Vertex 3514: +Vertex 3515: +Vertex 3516: +Vertex 3517: +Vertex 3518: +Vertex 3519: +Vertex 3520: +Vertex 3521: +Vertex 3522: +Vertex 3523: +Vertex 3524: +Vertex 3525: +Vertex 3526: +Vertex 3527: +Vertex 3528: +Vertex 3529: +Vertex 3530: +Vertex 3531: +Vertex 3532: +Vertex 3533: +Vertex 3534: +Vertex 3535: +Vertex 3536: +Vertex 3537: +Vertex 3538: +Vertex 3539: +Vertex 3540: +Vertex 3541: +Vertex 3542: +Vertex 3543: +Vertex 3544: +Vertex 3545: +Vertex 3546: +Vertex 3547: +Vertex 3548: +Vertex 3549: +Vertex 3550: +Vertex 3551: +Vertex 3552: +Vertex 3553: +Vertex 3554: +Vertex 3555: +Vertex 3556: +Vertex 3557: +Vertex 3558: +Vertex 3559: +Vertex 3560: +Vertex 3561: +Vertex 3562: +Vertex 3563: +Vertex 3564: +Vertex 3565: +Vertex 3566: +Vertex 3567: +Vertex 3568: +Vertex 3569: +Vertex 3570: +Vertex 3571: +Vertex 3572: +Vertex 3573: +Vertex 3574: +Vertex 3575: +Vertex 3576: +Vertex 3577: +Vertex 3578: +Vertex 3579: +Vertex 3580: +Vertex 3581: +Vertex 3582: +Vertex 3583: +Vertex 3584: +Vertex 3585: +Vertex 3586: +Vertex 3587: +Vertex 3588: +Vertex 3589: +Vertex 3590: +Vertex 3591: +Vertex 3592: +Vertex 3593: +Vertex 3594: +Vertex 3595: +Vertex 3596: +Vertex 3597: +Vertex 3598: +Vertex 3599: +Vertex 3600: +Vertex 3601: +Vertex 3602: +Vertex 3603: +Vertex 3604: +Vertex 3605: +Vertex 3606: +Vertex 3607: +Vertex 3608: +Vertex 3609: +Vertex 3610: +Vertex 3611: +Vertex 3612: +Vertex 3613: +Vertex 3614: +Vertex 3615: +Vertex 3616: +Vertex 3617: +Vertex 3618: +Vertex 3619: +Vertex 3620: +Vertex 3621: +Vertex 3622: +Vertex 3623: +Vertex 3624: +Vertex 3625: +Vertex 3626: +Vertex 3627: +Vertex 3628: +Vertex 3629: +Vertex 3630: +Vertex 3631: +Vertex 3632: +Vertex 3633: +Vertex 3634: +Vertex 3635: +Vertex 3636: +Vertex 3637: +Vertex 3638: +Vertex 3639: +Vertex 3640: +Vertex 3641: +Vertex 3642: +Vertex 3643: +Vertex 3644: +Vertex 3645: +Vertex 3646: +Vertex 3647: +Vertex 3648: +Vertex 3649: +Vertex 3650: +Vertex 3651: +Vertex 3652: +Vertex 3653: +Vertex 3654: +Vertex 3655: +Vertex 3656: +Vertex 3657: +Vertex 3658: +Vertex 3659: +Vertex 3660: +Vertex 3661: +Vertex 3662: +Vertex 3663: +Vertex 3664: +Vertex 3665: +Vertex 3666: +Vertex 3667: +Vertex 3668: +Vertex 3669: +Vertex 3670: +Vertex 3671: +Vertex 3672: +Vertex 3673: +Vertex 3674: +Vertex 3675: +Vertex 3676: +Vertex 3677: +Vertex 3678: +Vertex 3679: +Vertex 3680: +Vertex 3681: +Vertex 3682: +Vertex 3683: +Vertex 3684: +Vertex 3685: +Vertex 3686: +Vertex 3687: +Vertex 3688: +Vertex 3689: +Vertex 3690: +Vertex 3691: +Vertex 3692: +Vertex 3693: +Vertex 3694: +Vertex 3695: +Vertex 3696: +Vertex 3697: +Vertex 3698: +Vertex 3699: +Vertex 3700: +Vertex 3701: +Vertex 3702: +Vertex 3703: +Vertex 3704: +Vertex 3705: +Vertex 3706: +Vertex 3707: +Vertex 3708: +Vertex 3709: +Vertex 3710: +Vertex 3711: +Vertex 3712: +Vertex 3713: +Vertex 3714: +Vertex 3715: +Vertex 3716: +Vertex 3717: +Vertex 3718: +Vertex 3719: +Vertex 3720: +Vertex 3721: +Vertex 3722: +Vertex 3723: +Vertex 3724: +Vertex 3725: +Vertex 3726: +Vertex 3727: +Vertex 3728: +Vertex 3729: +Vertex 3730: +Vertex 3731: +Vertex 3732: +Vertex 3733: +Vertex 3734: +Vertex 3735: +Vertex 3736: +Vertex 3737: +Vertex 3738: +Vertex 3739: +Vertex 3740: +Vertex 3741: +Vertex 3742: +Vertex 3743: +Vertex 3744: +Vertex 3745: +Vertex 3746: +Vertex 3747: +Vertex 3748: +Vertex 3749: +Vertex 3750: +Vertex 3751: +Vertex 3752: +Vertex 3753: +Vertex 3754: +Vertex 3755: +Vertex 3756: +Vertex 3757: +Vertex 3758: +Vertex 3759: +Vertex 3760: +Vertex 3761: +Vertex 3762: +Vertex 3763: +Vertex 3764: +Vertex 3765: +Vertex 3766: +Vertex 3767: +Vertex 3768: +Vertex 3769: +Vertex 3770: +Vertex 3771: +Vertex 3772: +Vertex 3773: +Vertex 3774: +Vertex 3775: +Vertex 3776: +Vertex 3777: +Vertex 3778: +Vertex 3779: +Vertex 3780: +Vertex 3781: +Vertex 3782: +Vertex 3783: +Vertex 3784: +Vertex 3785: +Vertex 3786: +Vertex 3787: +Vertex 3788: +Vertex 3789: +Vertex 3790: +Vertex 3791: +Vertex 3792: +Vertex 3793: +Vertex 3794: +Vertex 3795: +Vertex 3796: +Vertex 3797: +Vertex 3798: +Vertex 3799: +Vertex 3800: +Vertex 3801: +Vertex 3802: +Vertex 3803: +Vertex 3804: +Vertex 3805: +Vertex 3806: +Vertex 3807: +Vertex 3808: +Vertex 3809: +Vertex 3810: +Vertex 3811: +Vertex 3812: +Vertex 3813: +Vertex 3814: +Vertex 3815: +Vertex 3816: +Vertex 3817: +Vertex 3818: +Vertex 3819: +Vertex 3820: +Vertex 3821: +Vertex 3822: +Vertex 3823: +Vertex 3824: +Vertex 3825: +Vertex 3826: +Vertex 3827: +Vertex 3828: +Vertex 3829: +Vertex 3830: +Vertex 3831: +Vertex 3832: +Vertex 3833: +Vertex 3834: +Vertex 3835: +Vertex 3836: +Vertex 3837: +Vertex 3838: +Vertex 3839: +Vertex 3840: +Vertex 3841: +Vertex 3842: +Vertex 3843: +Vertex 3844: +Vertex 3845: +Vertex 3846: +Vertex 3847: +Vertex 3848: +Vertex 3849: +Vertex 3850: +Vertex 3851: +Vertex 3852: +Vertex 3853: +Vertex 3854: +Vertex 3855: +Vertex 3856: +Vertex 3857: +Vertex 3858: +Vertex 3859: +Vertex 3860: +Vertex 3861: +Vertex 3862: +Vertex 3863: +Vertex 3864: +Vertex 3865: +Vertex 3866: +Vertex 3867: +Vertex 3868: +Vertex 3869: +Vertex 3870: +Vertex 3871: +Vertex 3872: +Vertex 3873: +Vertex 3874: +Vertex 3875: +Vertex 3876: +Vertex 3877: +Vertex 3878: +Vertex 3879: +Vertex 3880: +Vertex 3881: +Vertex 3882: +Vertex 3883: +Vertex 3884: +Vertex 3885: +Vertex 3886: +Vertex 3887: +Vertex 3888: +Vertex 3889: +Vertex 3890: +Vertex 3891: +Vertex 3892: +Vertex 3893: +Vertex 3894: +Vertex 3895: +Vertex 3896: +Vertex 3897: +Vertex 3898: +Vertex 3899: +Vertex 3900: +Vertex 3901: +Vertex 3902: +Vertex 3903: +Vertex 3904: +Vertex 3905: +Vertex 3906: +Vertex 3907: +Vertex 3908: +Vertex 3909: +Vertex 3910: +Vertex 3911: +Vertex 3912: +Vertex 3913: +Vertex 3914: +Vertex 3915: +Vertex 3916: +Vertex 3917: +Vertex 3918: +Vertex 3919: +Vertex 3920: +Vertex 3921: +Vertex 3922: +Vertex 3923: +Vertex 3924: +Vertex 3925: +Vertex 3926: +Vertex 3927: +Vertex 3928: +Vertex 3929: +Vertex 3930: +Vertex 3931: +Vertex 3932: +Vertex 3933: +Vertex 3934: +Vertex 3935: +Vertex 3936: +Vertex 3937: +Vertex 3938: +Vertex 3939: +Vertex 3940: +Vertex 3941: +Vertex 3942: +Vertex 3943: +Vertex 3944: +Vertex 3945: +Vertex 3946: +Vertex 3947: +Vertex 3948: +Vertex 3949: +Vertex 3950: +Vertex 3951: +Vertex 3952: +Vertex 3953: +Vertex 3954: +Vertex 3955: +Vertex 3956: +Vertex 3957: +Vertex 3958: +Vertex 3959: +Vertex 3960: +Vertex 3961: +Vertex 3962: +Vertex 3963: +Vertex 3964: +Vertex 3965: +Vertex 3966: +Vertex 3967: +Vertex 3968: +Vertex 3969: +Vertex 3970: +Vertex 3971: +Vertex 3972: +Vertex 3973: +Vertex 3974: +Vertex 3975: +Vertex 3976: +Vertex 3977: +Vertex 3978: +Vertex 3979: +Vertex 3980: +Vertex 3981: +Vertex 3982: +Vertex 3983: +Vertex 3984: +Vertex 3985: +Vertex 3986: +Vertex 3987: +Vertex 3988: +Vertex 3989: +Vertex 3990: +Vertex 3991: +Vertex 3992: +Vertex 3993: +Vertex 3994: +Vertex 3995: +Vertex 3996: +Vertex 3997: +Vertex 3998: +Vertex 3999: +Vertex 4000: +Vertex 4001: +Vertex 4002: +Vertex 4003: +Vertex 4004: +Vertex 4005: +Vertex 4006: +Vertex 4007: +Vertex 4008: +Vertex 4009: +Vertex 4010: +Vertex 4011: +Vertex 4012: +Vertex 4013: +Vertex 4014: +Vertex 4015: +Vertex 4016: +Vertex 4017: +Vertex 4018: +Vertex 4019: +Vertex 4020: +Vertex 4021: +Vertex 4022: +Vertex 4023: +Vertex 4024: +Vertex 4025: +Vertex 4026: +Vertex 4027: +Vertex 4028: +Vertex 4029: +Vertex 4030: +Vertex 4031: +Vertex 4032: +Vertex 4033: +Vertex 4034: +Vertex 4035: +Vertex 4036: +Vertex 4037: +Vertex 4038: +Vertex 4039: +Vertex 4040: +Vertex 4041: +Vertex 4042: +Vertex 4043: +Vertex 4044: +Vertex 4045: +Vertex 4046: +Vertex 4047: +Vertex 4048: +Vertex 4049: +Vertex 4050: +Vertex 4051: +Vertex 4052: +Vertex 4053: +Vertex 4054: +Vertex 4055: +Vertex 4056: +Vertex 4057: +Vertex 4058: +Vertex 4059: +Vertex 4060: +Vertex 4061: +Vertex 4062: +Vertex 4063: +Vertex 4064: +Vertex 4065: +Vertex 4066: +Vertex 4067: +Vertex 4068: +Vertex 4069: +Vertex 4070: +Vertex 4071: +Vertex 4072: +Vertex 4073: +Vertex 4074: +Vertex 4075: +Vertex 4076: +Vertex 4077: +Vertex 4078: +Vertex 4079: +Vertex 4080: +Vertex 4081: +Vertex 4082: +Vertex 4083: +Vertex 4084: +Vertex 4085: +Vertex 4086: +Vertex 4087: +Vertex 4088: +Vertex 4089: +Vertex 4090: +Vertex 4091: +Vertex 4092: +Vertex 4093: +Vertex 4094: +Vertex 4095: +Vertex 4096: +Vertex 4097: +Vertex 4098: +Vertex 4099: +Vertex 4100: +Vertex 4101: +Vertex 4102: +Vertex 4103: +Vertex 4104: +Vertex 4105: +Vertex 4106: +Vertex 4107: +Vertex 4108: +Vertex 4109: +Vertex 4110: +Vertex 4111: +Vertex 4112: +Vertex 4113: +Vertex 4114: +Vertex 4115: +Vertex 4116: +Vertex 4117: +Vertex 4118: +Vertex 4119: +Vertex 4120: +Vertex 4121: +Vertex 4122: +Vertex 4123: +Vertex 4124: +Vertex 4125: +Vertex 4126: +Vertex 4127: +Vertex 4128: +Vertex 4129: +Vertex 4130: +Vertex 4131: +Vertex 4132: +Vertex 4133: +Vertex 4134: +Vertex 4135: +Vertex 4136: +Vertex 4137: +Vertex 4138: +Vertex 4139: +Vertex 4140: +Vertex 4141: +Vertex 4142: +Vertex 4143: +Vertex 4144: +Vertex 4145: +Vertex 4146: +Vertex 4147: +Vertex 4148: +Vertex 4149: +Vertex 4150: +Vertex 4151: +Vertex 4152: +Vertex 4153: +Vertex 4154: +Vertex 4155: +Vertex 4156: +Vertex 4157: +Vertex 4158: +Vertex 4159: +Vertex 4160: +Vertex 4161: +Vertex 4162: +Vertex 4163: +Vertex 4164: +Vertex 4165: +Vertex 4166: +Vertex 4167: +Vertex 4168: +Vertex 4169: +Vertex 4170: +Vertex 4171: +Vertex 4172: +Vertex 4173: +Vertex 4174: +Vertex 4175: +Vertex 4176: +Vertex 4177: +Vertex 4178: +Vertex 4179: +Vertex 4180: +Vertex 4181: +Vertex 4182: +Vertex 4183: +Vertex 4184: +Vertex 4185: +Vertex 4186: +Vertex 4187: +Vertex 4188: +Vertex 4189: +Vertex 4190: +Vertex 4191: +Vertex 4192: +Vertex 4193: +Vertex 4194: +Vertex 4195: +Vertex 4196: +Vertex 4197: +Vertex 4198: +Vertex 4199: +Vertex 4200: +Vertex 4201: +Vertex 4202: +Vertex 4203: +Vertex 4204: +Vertex 4205: +Vertex 4206: +Vertex 4207: +Vertex 4208: +Vertex 4209: +Vertex 4210: +Vertex 4211: +Vertex 4212: +Vertex 4213: +Vertex 4214: +Vertex 4215: +Vertex 4216: +Vertex 4217: +Vertex 4218: +Vertex 4219: +Vertex 4220: +Vertex 4221: +Vertex 4222: +Vertex 4223: +Vertex 4224: +Vertex 4225: +Vertex 4226: +Vertex 4227: +Vertex 4228: +Vertex 4229: +Vertex 4230: +Vertex 4231: +Vertex 4232: +Vertex 4233: +Vertex 4234: +Vertex 4235: +Vertex 4236: +Vertex 4237: +Vertex 4238: +Vertex 4239: +Vertex 4240: +Vertex 4241: +Vertex 4242: +Vertex 4243: +Vertex 4244: +Vertex 4245: +Vertex 4246: +Vertex 4247: +Vertex 4248: +Vertex 4249: +Vertex 4250: +Vertex 4251: +Vertex 4252: +Vertex 4253: +Vertex 4254: +Vertex 4255: +Vertex 4256: +Vertex 4257: +Vertex 4258: +Vertex 4259: +Vertex 4260: +Vertex 4261: +Vertex 4262: +Vertex 4263: +Vertex 4264: +Vertex 4265: +Vertex 4266: +Vertex 4267: +Vertex 4268: +Vertex 4269: +Vertex 4270: +Vertex 4271: +Vertex 4272: +Vertex 4273: +Vertex 4274: +Vertex 4275: +Vertex 4276: +Vertex 4277: +Vertex 4278: +Vertex 4279: +Vertex 4280: +Vertex 4281: +Vertex 4282: +Vertex 4283: +Vertex 4284: +Vertex 4285: +Vertex 4286: +Vertex 4287: +Vertex 4288: +Vertex 4289: +Vertex 4290: +Vertex 4291: +Vertex 4292: +Vertex 4293: +Vertex 4294: +Vertex 4295: +Vertex 4296: +Vertex 4297: +Vertex 4298: +Vertex 4299: +Vertex 4300: +Vertex 4301: +Vertex 4302: +Vertex 4303: +Vertex 4304: +Vertex 4305: +Vertex 4306: +Vertex 4307: +Vertex 4308: +Vertex 4309: +Vertex 4310: +Vertex 4311: +Vertex 4312: +Vertex 4313: +Vertex 4314: +Vertex 4315: +Vertex 4316: +Vertex 4317: +Vertex 4318: +Vertex 4319: +Vertex 4320: +Vertex 4321: +Vertex 4322: +Vertex 4323: +Vertex 4324: +Vertex 4325: +Vertex 4326: +Vertex 4327: +Vertex 4328: +Vertex 4329: +Vertex 4330: +Vertex 4331: +Vertex 4332: +Vertex 4333: +Vertex 4334: +Vertex 4335: +Vertex 4336: +Vertex 4337: +Vertex 4338: +Vertex 4339: +Vertex 4340: +Vertex 4341: +Vertex 4342: +Vertex 4343: +Vertex 4344: +Vertex 4345: +Vertex 4346: +Vertex 4347: +Vertex 4348: +Vertex 4349: +Vertex 4350: +Vertex 4351: +Vertex 4352: +Vertex 4353: +Vertex 4354: +Vertex 4355: +Vertex 4356: +Vertex 4357: +Vertex 4358: +Vertex 4359: +Vertex 4360: +Vertex 4361: +Vertex 4362: +Vertex 4363: +Vertex 4364: +Vertex 4365: +Vertex 4366: +Vertex 4367: +Vertex 4368: +Vertex 4369: +Vertex 4370: +Vertex 4371: +Vertex 4372: +Vertex 4373: +Vertex 4374: +Vertex 4375: +Vertex 4376: +Vertex 4377: +Vertex 4378: +Vertex 4379: +Vertex 4380: +Vertex 4381: +Vertex 4382: +Vertex 4383: +Vertex 4384: +Vertex 4385: +Vertex 4386: +Vertex 4387: +Vertex 4388: +Vertex 4389: +Vertex 4390: +Vertex 4391: +Vertex 4392: +Vertex 4393: +Vertex 4394: +Vertex 4395: +Vertex 4396: +Vertex 4397: +Vertex 4398: +Vertex 4399: +Vertex 4400: +Vertex 4401: +Vertex 4402: +Vertex 4403: +Vertex 4404: +Vertex 4405: +Vertex 4406: +Vertex 4407: +Vertex 4408: +Vertex 4409: +Vertex 4410: +Vertex 4411: +Vertex 4412: +Vertex 4413: +Vertex 4414: +Vertex 4415: +Vertex 4416: +Vertex 4417: +Vertex 4418: +Vertex 4419: +Vertex 4420: +Vertex 4421: +Vertex 4422: +Vertex 4423: +Vertex 4424: +Vertex 4425: +Vertex 4426: +Vertex 4427: +Vertex 4428: +Vertex 4429: +Vertex 4430: +Vertex 4431: +Vertex 4432: +Vertex 4433: +Vertex 4434: +Vertex 4435: +Vertex 4436: +Vertex 4437: +Vertex 4438: +Vertex 4439: +Vertex 4440: +Vertex 4441: +Vertex 4442: +Vertex 4443: +Vertex 4444: +Vertex 4445: +Vertex 4446: +Vertex 4447: +Vertex 4448: +Vertex 4449: +Vertex 4450: +Vertex 4451: +Vertex 4452: +Vertex 4453: +Vertex 4454: +Vertex 4455: +Vertex 4456: +Vertex 4457: +Vertex 4458: +Vertex 4459: +Vertex 4460: +Vertex 4461: +Vertex 4462: +Vertex 4463: +Vertex 4464: +Vertex 4465: +Vertex 4466: +Vertex 4467: +Vertex 4468: +Vertex 4469: +Vertex 4470: +Vertex 4471: +Vertex 4472: +Vertex 4473: +Vertex 4474: +Vertex 4475: +Vertex 4476: +Vertex 4477: +Vertex 4478: +Vertex 4479: +Vertex 4480: +Vertex 4481: +Vertex 4482: +Vertex 4483: +Vertex 4484: +Vertex 4485: +Vertex 4486: +Vertex 4487: +Vertex 4488: +Vertex 4489: +Vertex 4490: +Vertex 4491: +Vertex 4492: +Vertex 4493: +Vertex 4494: +Vertex 4495: +Vertex 4496: +Vertex 4497: +Vertex 4498: +Vertex 4499: +Vertex 4500: +Vertex 4501: +Vertex 4502: +Vertex 4503: +Vertex 4504: +Vertex 4505: +Vertex 4506: +Vertex 4507: +Vertex 4508: +Vertex 4509: +Vertex 4510: +Vertex 4511: +Vertex 4512: +Vertex 4513: +Vertex 4514: +Vertex 4515: +Vertex 4516: +Vertex 4517: +Vertex 4518: +Vertex 4519: +Vertex 4520: +Vertex 4521: +Vertex 4522: +Vertex 4523: +Vertex 4524: +Vertex 4525: +Vertex 4526: +Vertex 4527: +Vertex 4528: +Vertex 4529: +Vertex 4530: +Vertex 4531: +Vertex 4532: +Vertex 4533: +Vertex 4534: +Vertex 4535: +Vertex 4536: +Vertex 4537: +Vertex 4538: +Vertex 4539: +Vertex 4540: +Vertex 4541: +Vertex 4542: +Vertex 4543: +Vertex 4544: +Vertex 4545: +Vertex 4546: +Vertex 4547: +Vertex 4548: +Vertex 4549: +Vertex 4550: +Vertex 4551: +Vertex 4552: +Vertex 4553: +Vertex 4554: +Vertex 4555: +Vertex 4556: +Vertex 4557: +Vertex 4558: +Vertex 4559: +Vertex 4560: +Vertex 4561: +Vertex 4562: +Vertex 4563: +Vertex 4564: +Vertex 4565: +Vertex 4566: +Vertex 4567: +Vertex 4568: +Vertex 4569: +Vertex 4570: +Vertex 4571: +Vertex 4572: +Vertex 4573: +Vertex 4574: +Vertex 4575: +Vertex 4576: +Vertex 4577: +Vertex 4578: +Vertex 4579: +Vertex 4580: +Vertex 4581: +Vertex 4582: +Vertex 4583: +Vertex 4584: +Vertex 4585: +Vertex 4586: +Vertex 4587: +Vertex 4588: +Vertex 4589: +Vertex 4590: +Vertex 4591: +Vertex 4592: +Vertex 4593: +Vertex 4594: +Vertex 4595: +Vertex 4596: +Vertex 4597: +Vertex 4598: +Vertex 4599: +Vertex 4600: +Vertex 4601: +Vertex 4602: +Vertex 4603: +Vertex 4604: +Vertex 4605: +Vertex 4606: +Vertex 4607: +Vertex 4608: +Vertex 4609: +Vertex 4610: +Vertex 4611: +Vertex 4612: +Vertex 4613: +Vertex 4614: +Vertex 4615: +Vertex 4616: +Vertex 4617: +Vertex 4618: +Vertex 4619: +Vertex 4620: +Vertex 4621: +Vertex 4622: +Vertex 4623: +Vertex 4624: +Vertex 4625: +Vertex 4626: +Vertex 4627: +Vertex 4628: +Vertex 4629: +Vertex 4630: +Vertex 4631: +Vertex 4632: +Vertex 4633: +Vertex 4634: +Vertex 4635: +Vertex 4636: +Vertex 4637: +Vertex 4638: +Vertex 4639: +Vertex 4640: +Vertex 4641: +Vertex 4642: +Vertex 4643: +Vertex 4644: +Vertex 4645: +Vertex 4646: +Vertex 4647: +Vertex 4648: +Vertex 4649: +Vertex 4650: +Vertex 4651: +Vertex 4652: +Vertex 4653: +Vertex 4654: +Vertex 4655: +Vertex 4656: +Vertex 4657: +Vertex 4658: +Vertex 4659: +Vertex 4660: +Vertex 4661: +Vertex 4662: +Vertex 4663: +Vertex 4664: +Vertex 4665: +Vertex 4666: +Vertex 4667: +Vertex 4668: +Vertex 4669: +Vertex 4670: +Vertex 4671: +Vertex 4672: +Vertex 4673: +Vertex 4674: +Vertex 4675: +Vertex 4676: +Vertex 4677: +Vertex 4678: +Vertex 4679: +Vertex 4680: +Vertex 4681: +Vertex 4682: +Vertex 4683: +Vertex 4684: +Vertex 4685: +Vertex 4686: +Vertex 4687: +Vertex 4688: +Vertex 4689: +Vertex 4690: +Vertex 4691: +Vertex 4692: +Vertex 4693: +Vertex 4694: +Vertex 4695: +Vertex 4696: +Vertex 4697: +Vertex 4698: +Vertex 4699: +Vertex 4700: +Vertex 4701: +Vertex 4702: +Vertex 4703: +Vertex 4704: +Vertex 4705: +Vertex 4706: +Vertex 4707: +Vertex 4708: +Vertex 4709: +Vertex 4710: +Vertex 4711: +Vertex 4712: +Vertex 4713: +Vertex 4714: +Vertex 4715: +Vertex 4716: +Vertex 4717: +Vertex 4718: +Vertex 4719: +Vertex 4720: +Vertex 4721: +Vertex 4722: +Vertex 4723: +Vertex 4724: +Vertex 4725: +Vertex 4726: +Vertex 4727: +Vertex 4728: +Vertex 4729: +Vertex 4730: +Vertex 4731: +Vertex 4732: +Vertex 4733: +Vertex 4734: +Vertex 4735: +Vertex 4736: +Vertex 4737: +Vertex 4738: +Vertex 4739: +Vertex 4740: +Vertex 4741: +Vertex 4742: +Vertex 4743: +Vertex 4744: +Vertex 4745: +Vertex 4746: +Vertex 4747: +Vertex 4748: +Vertex 4749: +Vertex 4750: +Vertex 4751: +Vertex 4752: +Vertex 4753: +Vertex 4754: +Vertex 4755: +Vertex 4756: +Vertex 4757: +Vertex 4758: +Vertex 4759: +Vertex 4760: +Vertex 4761: +Vertex 4762: +Vertex 4763: +Vertex 4764: +Vertex 4765: +Vertex 4766: +Vertex 4767: +Vertex 4768: +Vertex 4769: +Vertex 4770: +Vertex 4771: +Vertex 4772: +Vertex 4773: +Vertex 4774: +Vertex 4775: +Vertex 4776: +Vertex 4777: +Vertex 4778: +Vertex 4779: +Vertex 4780: +Vertex 4781: +Vertex 4782: +Vertex 4783: +Vertex 4784: +Vertex 4785: +Vertex 4786: +Vertex 4787: +Vertex 4788: +Vertex 4789: +Vertex 4790: +Vertex 4791: +Vertex 4792: +Vertex 4793: +Vertex 4794: +Vertex 4795: +Vertex 4796: +Vertex 4797: +Vertex 4798: +Vertex 4799: +Vertex 4800: +Vertex 4801: +Vertex 4802: +Vertex 4803: +Vertex 4804: +Vertex 4805: +Vertex 4806: +Vertex 4807: +Vertex 4808: +Vertex 4809: +Vertex 4810: +Vertex 4811: +Vertex 4812: +Vertex 4813: +Vertex 4814: +Vertex 4815: +Vertex 4816: +Vertex 4817: +Vertex 4818: +Vertex 4819: +Vertex 4820: +Vertex 4821: +Vertex 4822: +Vertex 4823: +Vertex 4824: +Vertex 4825: +Vertex 4826: +Vertex 4827: +Vertex 4828: +Vertex 4829: +Vertex 4830: +Vertex 4831: +Vertex 4832: +Vertex 4833: +Vertex 4834: +Vertex 4835: +Vertex 4836: +Vertex 4837: +Vertex 4838: +Vertex 4839: +Vertex 4840: +Vertex 4841: +Vertex 4842: +Vertex 4843: +Vertex 4844: +Vertex 4845: +Vertex 4846: +Vertex 4847: +Vertex 4848: +Vertex 4849: +Vertex 4850: +Vertex 4851: +Vertex 4852: +Vertex 4853: +Vertex 4854: +Vertex 4855: +Vertex 4856: +Vertex 4857: +Vertex 4858: +Vertex 4859: +Vertex 4860: +Vertex 4861: +Vertex 4862: +Vertex 4863: +Vertex 4864: +Vertex 4865: +Vertex 4866: +Vertex 4867: +Vertex 4868: +Vertex 4869: +Vertex 4870: +Vertex 4871: +Vertex 4872: +Vertex 4873: +Vertex 4874: +Vertex 4875: +Vertex 4876: +Vertex 4877: +Vertex 4878: +Vertex 4879: +Vertex 4880: +Vertex 4881: +Vertex 4882: +Vertex 4883: +Vertex 4884: +Vertex 4885: +Vertex 4886: +Vertex 4887: +Vertex 4888: +Vertex 4889: +Vertex 4890: +Vertex 4891: +Vertex 4892: +Vertex 4893: +Vertex 4894: +Vertex 4895: +Vertex 4896: +Vertex 4897: +Vertex 4898: +Vertex 4899: +Vertex 4900: +Vertex 4901: +Vertex 4902: +Vertex 4903: +Vertex 4904: +Vertex 4905: +Vertex 4906: +Vertex 4907: +Vertex 4908: +Vertex 4909: +Vertex 4910: +Vertex 4911: +Vertex 4912: +Vertex 4913: +Vertex 4914: +Vertex 4915: +Vertex 4916: +Vertex 4917: +Vertex 4918: +Vertex 4919: +Vertex 4920: +Vertex 4921: +Vertex 4922: +Vertex 4923: +Vertex 4924: +Vertex 4925: +Vertex 4926: +Vertex 4927: +Vertex 4928: +Vertex 4929: +Vertex 4930: +Vertex 4931: +Vertex 4932: +Vertex 4933: +Vertex 4934: +Vertex 4935: +Vertex 4936: +Vertex 4937: +Vertex 4938: +Vertex 4939: +Vertex 4940: +Vertex 4941: +Vertex 4942: +Vertex 4943: +Vertex 4944: +Vertex 4945: +Vertex 4946: +Vertex 4947: +Vertex 4948: +Vertex 4949: +Vertex 4950: +Vertex 4951: +Vertex 4952: +Vertex 4953: +Vertex 4954: +Vertex 4955: +Vertex 4956: +Vertex 4957: +Vertex 4958: +Vertex 4959: +Vertex 4960: +Vertex 4961: +Vertex 4962: +Vertex 4963: +Vertex 4964: +Vertex 4965: +Vertex 4966: +Vertex 4967: +Vertex 4968: +Vertex 4969: +Vertex 4970: +Vertex 4971: +Vertex 4972: +Vertex 4973: +Vertex 4974: +Vertex 4975: +Vertex 4976: +Vertex 4977: +Vertex 4978: +Vertex 4979: +Vertex 4980: +Vertex 4981: +Vertex 4982: +Vertex 4983: +Vertex 4984: +Vertex 4985: +Vertex 4986: +Vertex 4987: +Vertex 4988: +Vertex 4989: +Vertex 4990: +Vertex 4991: +Vertex 4992: +Vertex 4993: +Vertex 4994: +Vertex 4995: +Vertex 4996: +Vertex 4997: +Vertex 4998: +Vertex 4999: +Vertex 5000: +Vertex 5001: +Vertex 5002: +Vertex 5003: +Vertex 5004: +Vertex 5005: +Vertex 5006: +Vertex 5007: +Vertex 5008: +Vertex 5009: +Vertex 5010: +Vertex 5011: +Vertex 5012: +Vertex 5013: +Vertex 5014: +Vertex 5015: +Vertex 5016: +Vertex 5017: +Vertex 5018: +Vertex 5019: +Vertex 5020: +Vertex 5021: +Vertex 5022: +Vertex 5023: +Vertex 5024: +Vertex 5025: +Vertex 5026: +Vertex 5027: +Vertex 5028: +Vertex 5029: +Vertex 5030: +Vertex 5031: +Vertex 5032: +Vertex 5033: +Vertex 5034: +Vertex 5035: +Vertex 5036: +Vertex 5037: +Vertex 5038: +Vertex 5039: +Vertex 5040: +Vertex 5041: +Vertex 5042: +Vertex 5043: +Vertex 5044: +Vertex 5045: +Vertex 5046: +Vertex 5047: +Vertex 5048: +Vertex 5049: +Vertex 5050: +Vertex 5051: +Vertex 5052: +Vertex 5053: +Vertex 5054: +Vertex 5055: +Vertex 5056: +Vertex 5057: +Vertex 5058: +Vertex 5059: +Vertex 5060: +Vertex 5061: +Vertex 5062: +Vertex 5063: +Vertex 5064: +Vertex 5065: +Vertex 5066: +Vertex 5067: +Vertex 5068: +Vertex 5069: +Vertex 5070: +Vertex 5071: +Vertex 5072: +Vertex 5073: +Vertex 5074: +Vertex 5075: +Vertex 5076: +Vertex 5077: +Vertex 5078: +Vertex 5079: +Vertex 5080: +Vertex 5081: +Vertex 5082: +Vertex 5083: +Vertex 5084: +Vertex 5085: +Vertex 5086: +Vertex 5087: +Vertex 5088: +Vertex 5089: +Vertex 5090: +Vertex 5091: +Vertex 5092: +Vertex 5093: +Vertex 5094: +Vertex 5095: +Vertex 5096: +Vertex 5097: +Vertex 5098: +Vertex 5099: +Vertex 5100: +Vertex 5101: +Vertex 5102: +Vertex 5103: +Vertex 5104: +Vertex 5105: +Vertex 5106: +Vertex 5107: +Vertex 5108: +Vertex 5109: +Vertex 5110: +Vertex 5111: +Vertex 5112: +Vertex 5113: +Vertex 5114: +Vertex 5115: +Vertex 5116: +Vertex 5117: +Vertex 5118: +Vertex 5119: +Vertex 5120: +Vertex 5121: +Vertex 5122: +Vertex 5123: +Vertex 5124: +Vertex 5125: +Vertex 5126: +Vertex 5127: +Vertex 5128: +Vertex 5129: +Vertex 5130: +Vertex 5131: +Vertex 5132: +Vertex 5133: +Vertex 5134: +Vertex 5135: +Vertex 5136: +Vertex 5137: +Vertex 5138: +Vertex 5139: +Vertex 5140: +Vertex 5141: +Vertex 5142: +Vertex 5143: +Vertex 5144: +Vertex 5145: +Vertex 5146: +Vertex 5147: +Vertex 5148: +Vertex 5149: +Vertex 5150: +Vertex 5151: +Vertex 5152: +Vertex 5153: +Vertex 5154: +Vertex 5155: +Vertex 5156: +Vertex 5157: +Vertex 5158: +Vertex 5159: +Vertex 5160: +Vertex 5161: +Vertex 5162: +Vertex 5163: +Vertex 5164: +Vertex 5165: +Vertex 5166: +Vertex 5167: +Vertex 5168: +Vertex 5169: +Vertex 5170: +Vertex 5171: +Vertex 5172: +Vertex 5173: +Vertex 5174: +Vertex 5175: +Vertex 5176: +Vertex 5177: +Vertex 5178: +Vertex 5179: +Vertex 5180: +Vertex 5181: +Vertex 5182: +Vertex 5183: +Vertex 5184: +Vertex 5185: +Vertex 5186: +Vertex 5187: +Vertex 5188: +Vertex 5189: +Vertex 5190: +Vertex 5191: +Vertex 5192: +Vertex 5193: +Vertex 5194: +Vertex 5195: +Vertex 5196: +Vertex 5197: +Vertex 5198: +Vertex 5199: +Vertex 5200: +Vertex 5201: +Vertex 5202: +Vertex 5203: +Vertex 5204: +Vertex 5205: +Vertex 5206: +Vertex 5207: +Vertex 5208: +Vertex 5209: +Vertex 5210: +Vertex 5211: +Vertex 5212: +Vertex 5213: +Vertex 5214: +Vertex 5215: +Vertex 5216: +Vertex 5217: +Vertex 5218: +Vertex 5219: +Vertex 5220: +Vertex 5221: +Vertex 5222: +Vertex 5223: +Vertex 5224: +Vertex 5225: +Vertex 5226: +Vertex 5227: +Vertex 5228: +Vertex 5229: +Vertex 5230: +Vertex 5231: +Vertex 5232: +Vertex 5233: +Vertex 5234: +Vertex 5235: +Vertex 5236: +Vertex 5237: +Vertex 5238: +Vertex 5239: +Vertex 5240: +Vertex 5241: +Vertex 5242: +Vertex 5243: +Vertex 5244: +Vertex 5245: +Vertex 5246: +Vertex 5247: +Vertex 5248: +Vertex 5249: +Vertex 5250: +Vertex 5251: +Vertex 5252: +Vertex 5253: +Vertex 5254: +Vertex 5255: +Vertex 5256: +Vertex 5257: +Vertex 5258: +Vertex 5259: +Vertex 5260: +Vertex 5261: +Vertex 5262: +Vertex 5263: +Vertex 5264: +Vertex 5265: +Vertex 5266: +Vertex 5267: +Vertex 5268: +Vertex 5269: +Vertex 5270: +Vertex 5271: +Vertex 5272: +Vertex 5273: +Vertex 5274: +Vertex 5275: +Vertex 5276: +Vertex 5277: +Vertex 5278: +Vertex 5279: +Vertex 5280: +Vertex 5281: +Vertex 5282: +Vertex 5283: +Vertex 5284: +Vertex 5285: +Vertex 5286: +Vertex 5287: +Vertex 5288: +Vertex 5289: +Vertex 5290: +Vertex 5291: +Vertex 5292: +Vertex 5293: +Vertex 5294: +Vertex 5295: +Vertex 5296: +Vertex 5297: +Vertex 5298: +Vertex 5299: +Vertex 5300: +Vertex 5301: +Vertex 5302: +Vertex 5303: +Vertex 5304: +Vertex 5305: +Vertex 5306: +Vertex 5307: +Vertex 5308: +Vertex 5309: +Vertex 5310: +Vertex 5311: +Vertex 5312: +Vertex 5313: +Vertex 5314: +Vertex 5315: +Vertex 5316: +Vertex 5317: +Vertex 5318: +Vertex 5319: +Vertex 5320: +Vertex 5321: +Vertex 5322: +Vertex 5323: +Vertex 5324: +Vertex 5325: +Vertex 5326: +Vertex 5327: +Vertex 5328: +Vertex 5329: +Vertex 5330: +Vertex 5331: +Vertex 5332: +Vertex 5333: +Vertex 5334: +Vertex 5335: +Vertex 5336: +Vertex 5337: +Vertex 5338: +Vertex 5339: +Vertex 5340: +Vertex 5341: +Vertex 5342: +Vertex 5343: +Vertex 5344: +Vertex 5345: +Vertex 5346: +Vertex 5347: +Vertex 5348: +Vertex 5349: +Vertex 5350: +Vertex 5351: +Vertex 5352: +Vertex 5353: +Vertex 5354: +Vertex 5355: +Vertex 5356: +Vertex 5357: +Vertex 5358: +Vertex 5359: +Vertex 5360: +Vertex 5361: +Vertex 5362: +Vertex 5363: +Vertex 5364: +Vertex 5365: +Vertex 5366: +Vertex 5367: +Vertex 5368: +Vertex 5369: +Vertex 5370: +Vertex 5371: +Vertex 5372: +Vertex 5373: +Vertex 5374: +Vertex 5375: +Vertex 5376: +Vertex 5377: +Vertex 5378: +Vertex 5379: +Vertex 5380: +Vertex 5381: +Vertex 5382: +Vertex 5383: +Vertex 5384: +Vertex 5385: +Vertex 5386: +Vertex 5387: +Vertex 5388: +Vertex 5389: +Vertex 5390: +Vertex 5391: +Vertex 5392: +Vertex 5393: +Vertex 5394: +Vertex 5395: +Vertex 5396: +Vertex 5397: +Vertex 5398: +Vertex 5399: +===UV Coordinates: +Face count: 9390 +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 +Face 4480 +UV Count: 3 + UV + UV + UV +Face 4481 +UV Count: 3 + UV + UV + UV +Face 4482 +UV Count: 3 + UV + UV + UV +Face 4483 +UV Count: 3 + UV + UV + UV +Face 4484 +UV Count: 3 + UV + UV + UV +Face 4485 +UV Count: 3 + UV + UV + UV +Face 4486 +UV Count: 3 + UV + UV + UV +Face 4487 +UV Count: 3 + UV + UV + UV +Face 4488 +UV Count: 3 + UV + UV + UV +Face 4489 +UV Count: 3 + UV + UV + UV +Face 4490 +UV Count: 3 + UV + UV + UV +Face 4491 +UV Count: 3 + UV + UV + UV +Face 4492 +UV Count: 3 + UV + UV + UV +Face 4493 +UV Count: 3 + UV + UV + UV +Face 4494 +UV Count: 3 + UV + UV + UV +Face 4495 +UV Count: 3 + UV + UV + UV +Face 4496 +UV Count: 3 + UV + UV + UV +Face 4497 +UV Count: 3 + UV + UV + UV +Face 4498 +UV Count: 3 + UV + UV + UV +Face 4499 +UV Count: 3 + UV + UV + UV +Face 4500 +UV Count: 3 + UV + UV + UV +Face 4501 +UV Count: 3 + UV + UV + UV +Face 4502 +UV Count: 3 + UV + UV + UV +Face 4503 +UV Count: 3 + UV + UV + UV +Face 4504 +UV Count: 3 + UV + UV + UV +Face 4505 +UV Count: 3 + UV + UV + UV +Face 4506 +UV Count: 3 + UV + UV + UV +Face 4507 +UV Count: 3 + UV + UV + UV +Face 4508 +UV Count: 3 + UV + UV + UV +Face 4509 +UV Count: 3 + UV + UV + UV +Face 4510 +UV Count: 3 + UV + UV + UV +Face 4511 +UV Count: 3 + UV + UV + UV +Face 4512 +UV Count: 3 + UV + UV + UV +Face 4513 +UV Count: 3 + UV + UV + UV +Face 4514 +UV Count: 3 + UV + UV + UV +Face 4515 +UV Count: 3 + UV + UV + UV +Face 4516 +UV Count: 3 + UV + UV + UV +Face 4517 +UV Count: 3 + UV + UV + UV +Face 4518 +UV Count: 3 + UV + UV + UV +Face 4519 +UV Count: 3 + UV + UV + UV +Face 4520 +UV Count: 3 + UV + UV + UV +Face 4521 +UV Count: 3 + UV + UV + UV +Face 4522 +UV Count: 3 + UV + UV + UV +Face 4523 +UV Count: 3 + UV + UV + UV +Face 4524 +UV Count: 3 + UV + UV + UV +Face 4525 +UV Count: 3 + UV + UV + UV +Face 4526 +UV Count: 3 + UV + UV + UV +Face 4527 +UV Count: 3 + UV + UV + UV +Face 4528 +UV Count: 3 + UV + UV + UV +Face 4529 +UV Count: 3 + UV + UV + UV +Face 4530 +UV Count: 3 + UV + UV + UV +Face 4531 +UV Count: 3 + UV + UV + UV +Face 4532 +UV Count: 3 + UV + UV + UV +Face 4533 +UV Count: 3 + UV + UV + UV +Face 4534 +UV Count: 3 + UV + UV + UV +Face 4535 +UV Count: 3 + UV + UV + UV +Face 4536 +UV Count: 3 + UV + UV + UV +Face 4537 +UV Count: 3 + UV + UV + UV +Face 4538 +UV Count: 3 + UV + UV + UV +Face 4539 +UV Count: 3 + UV + UV + UV +Face 4540 +UV Count: 3 + UV + UV + UV +Face 4541 +UV Count: 3 + UV + UV + UV +Face 4542 +UV Count: 3 + UV + UV + UV +Face 4543 +UV Count: 3 + UV + UV + UV +Face 4544 +UV Count: 3 + UV + UV + UV +Face 4545 +UV Count: 3 + UV + UV + UV +Face 4546 +UV Count: 3 + UV + UV + UV +Face 4547 +UV Count: 3 + UV + UV + UV +Face 4548 +UV Count: 3 + UV + UV + UV +Face 4549 +UV Count: 3 + UV + UV + UV +Face 4550 +UV Count: 3 + UV + UV + UV +Face 4551 +UV Count: 3 + UV + UV + UV +Face 4552 +UV Count: 3 + UV + UV + UV +Face 4553 +UV Count: 3 + UV + UV + UV +Face 4554 +UV Count: 3 + UV + UV + UV +Face 4555 +UV Count: 3 + UV + UV + UV +Face 4556 +UV Count: 3 + UV + UV + UV +Face 4557 +UV Count: 3 + UV + UV + UV +Face 4558 +UV Count: 3 + UV + UV + UV +Face 4559 +UV Count: 3 + UV + UV + UV +Face 4560 +UV Count: 3 + UV + UV + UV +Face 4561 +UV Count: 3 + UV + UV + UV +Face 4562 +UV Count: 3 + UV + UV + UV +Face 4563 +UV Count: 3 + UV + UV + UV +Face 4564 +UV Count: 3 + UV + UV + UV +Face 4565 +UV Count: 3 + UV + UV + UV +Face 4566 +UV Count: 3 + UV + UV + UV +Face 4567 +UV Count: 3 + UV + UV + UV +Face 4568 +UV Count: 3 + UV + UV + UV +Face 4569 +UV Count: 3 + UV + UV + UV +Face 4570 +UV Count: 3 + UV + UV + UV +Face 4571 +UV Count: 3 + UV + UV + UV +Face 4572 +UV Count: 3 + UV + UV + UV +Face 4573 +UV Count: 3 + UV + UV + UV +Face 4574 +UV Count: 3 + UV + UV + UV +Face 4575 +UV Count: 3 + UV + UV + UV +Face 4576 +UV Count: 3 + UV + UV + UV +Face 4577 +UV Count: 3 + UV + UV + UV +Face 4578 +UV Count: 3 + UV + UV + UV +Face 4579 +UV Count: 3 + UV + UV + UV +Face 4580 +UV Count: 3 + UV + UV + UV +Face 4581 +UV Count: 3 + UV + UV + UV +Face 4582 +UV Count: 3 + UV + UV + UV +Face 4583 +UV Count: 3 + UV + UV + UV +Face 4584 +UV Count: 3 + UV + UV + UV +Face 4585 +UV Count: 3 + UV + UV + UV +Face 4586 +UV Count: 3 + UV + UV + UV +Face 4587 +UV Count: 3 + UV + UV + UV +Face 4588 +UV Count: 3 + UV + UV + UV +Face 4589 +UV Count: 3 + UV + UV + UV +Face 4590 +UV Count: 3 + UV + UV + UV +Face 4591 +UV Count: 3 + UV + UV + UV +Face 4592 +UV Count: 3 + UV + UV + UV +Face 4593 +UV Count: 3 + UV + UV + UV +Face 4594 +UV Count: 3 + UV + UV + UV +Face 4595 +UV Count: 3 + UV + UV + UV +Face 4596 +UV Count: 3 + UV + UV + UV +Face 4597 +UV Count: 3 + UV + UV + UV +Face 4598 +UV Count: 3 + UV + UV + UV +Face 4599 +UV Count: 3 + UV + UV + UV +Face 4600 +UV Count: 3 + UV + UV + UV +Face 4601 +UV Count: 3 + UV + UV + UV +Face 4602 +UV Count: 3 + UV + UV + UV +Face 4603 +UV Count: 3 + UV + UV + UV +Face 4604 +UV Count: 3 + UV + UV + UV +Face 4605 +UV Count: 3 + UV + UV + UV +Face 4606 +UV Count: 3 + UV + UV + UV +Face 4607 +UV Count: 3 + UV + UV + UV +Face 4608 +UV Count: 3 + UV + UV + UV +Face 4609 +UV Count: 3 + UV + UV + UV +Face 4610 +UV Count: 3 + UV + UV + UV +Face 4611 +UV Count: 3 + UV + UV + UV +Face 4612 +UV Count: 3 + UV + UV + UV +Face 4613 +UV Count: 3 + UV + UV + UV +Face 4614 +UV Count: 3 + UV + UV + UV +Face 4615 +UV Count: 3 + UV + UV + UV +Face 4616 +UV Count: 3 + UV + UV + UV +Face 4617 +UV Count: 3 + UV + UV + UV +Face 4618 +UV Count: 3 + UV + UV + UV +Face 4619 +UV Count: 3 + UV + UV + UV +Face 4620 +UV Count: 3 + UV + UV + UV +Face 4621 +UV Count: 3 + UV + UV + UV +Face 4622 +UV Count: 3 + UV + UV + UV +Face 4623 +UV Count: 3 + UV + UV + UV +Face 4624 +UV Count: 3 + UV + UV + UV +Face 4625 +UV Count: 3 + UV + UV + UV +Face 4626 +UV Count: 3 + UV + UV + UV +Face 4627 +UV Count: 3 + UV + UV + UV +Face 4628 +UV Count: 3 + UV + UV + UV +Face 4629 +UV Count: 3 + UV + UV + UV +Face 4630 +UV Count: 3 + UV + UV + UV +Face 4631 +UV Count: 3 + UV + UV + UV +Face 4632 +UV Count: 3 + UV + UV + UV +Face 4633 +UV Count: 3 + UV + UV + UV +Face 4634 +UV Count: 3 + UV + UV + UV +Face 4635 +UV Count: 3 + UV + UV + UV +Face 4636 +UV Count: 3 + UV + UV + UV +Face 4637 +UV Count: 3 + UV + UV + UV +Face 4638 +UV Count: 3 + UV + UV + UV +Face 4639 +UV Count: 3 + UV + UV + UV +Face 4640 +UV Count: 3 + UV + UV + UV +Face 4641 +UV Count: 3 + UV + UV + UV +Face 4642 +UV Count: 3 + UV + UV + UV +Face 4643 +UV Count: 3 + UV + UV + UV +Face 4644 +UV Count: 3 + UV + UV + UV +Face 4645 +UV Count: 3 + UV + UV + UV +Face 4646 +UV Count: 3 + UV + UV + UV +Face 4647 +UV Count: 3 + UV + UV + UV +Face 4648 +UV Count: 3 + UV + UV + UV +Face 4649 +UV Count: 3 + UV + UV + UV +Face 4650 +UV Count: 3 + UV + UV + UV +Face 4651 +UV Count: 3 + UV + UV + UV +Face 4652 +UV Count: 3 + UV + UV + UV +Face 4653 +UV Count: 3 + UV + UV + UV +Face 4654 +UV Count: 3 + UV + UV + UV +Face 4655 +UV Count: 3 + UV + UV + UV +Face 4656 +UV Count: 3 + UV + UV + UV +Face 4657 +UV Count: 3 + UV + UV + UV +Face 4658 +UV Count: 3 + UV + UV + UV +Face 4659 +UV Count: 3 + UV + UV + UV +Face 4660 +UV Count: 3 + UV + UV + UV +Face 4661 +UV Count: 3 + UV + UV + UV +Face 4662 +UV Count: 3 + UV + UV + UV +Face 4663 +UV Count: 3 + UV + UV + UV +Face 4664 +UV Count: 3 + UV + UV + UV +Face 4665 +UV Count: 3 + UV + UV + UV +Face 4666 +UV Count: 3 + UV + UV + UV +Face 4667 +UV Count: 3 + UV + UV + UV +Face 4668 +UV Count: 3 + UV + UV + UV +Face 4669 +UV Count: 3 + UV + UV + UV +Face 4670 +UV Count: 3 + UV + UV + UV +Face 4671 +UV Count: 3 + UV + UV + UV +Face 4672 +UV Count: 3 + UV + UV + UV +Face 4673 +UV Count: 3 + UV + UV + UV +Face 4674 +UV Count: 3 + UV + UV + UV +Face 4675 +UV Count: 3 + UV + UV + UV +Face 4676 +UV Count: 3 + UV + UV + UV +Face 4677 +UV Count: 3 + UV + UV + UV +Face 4678 +UV Count: 3 + UV + UV + UV +Face 4679 +UV Count: 3 + UV + UV + UV +Face 4680 +UV Count: 3 + UV + UV + UV +Face 4681 +UV Count: 3 + UV + UV + UV +Face 4682 +UV Count: 3 + UV + UV + UV +Face 4683 +UV Count: 3 + UV + UV + UV +Face 4684 +UV Count: 3 + UV + UV + UV +Face 4685 +UV Count: 3 + UV + UV + UV +Face 4686 +UV Count: 3 + UV + UV + UV +Face 4687 +UV Count: 3 + UV + UV + UV +Face 4688 +UV Count: 3 + UV + UV + UV +Face 4689 +UV Count: 3 + UV + UV + UV +Face 4690 +UV Count: 3 + UV + UV + UV +Face 4691 +UV Count: 3 + UV + UV + UV +Face 4692 +UV Count: 3 + UV + UV + UV +Face 4693 +UV Count: 3 + UV + UV + UV +Face 4694 +UV Count: 3 + UV + UV + UV +Face 4695 +UV Count: 3 + UV + UV + UV +Face 4696 +UV Count: 3 + UV + UV + UV +Face 4697 +UV Count: 3 + UV + UV + UV +Face 4698 +UV Count: 3 + UV + UV + UV +Face 4699 +UV Count: 3 + UV + UV + UV +Face 4700 +UV Count: 3 + UV + UV + UV +Face 4701 +UV Count: 3 + UV + UV + UV +Face 4702 +UV Count: 3 + UV + UV + UV +Face 4703 +UV Count: 3 + UV + UV + UV +Face 4704 +UV Count: 3 + UV + UV + UV +Face 4705 +UV Count: 3 + UV + UV + UV +Face 4706 +UV Count: 3 + UV + UV + UV +Face 4707 +UV Count: 3 + UV + UV + UV +Face 4708 +UV Count: 3 + UV + UV + UV +Face 4709 +UV Count: 3 + UV + UV + UV +Face 4710 +UV Count: 3 + UV + UV + UV +Face 4711 +UV Count: 3 + UV + UV + UV +Face 4712 +UV Count: 3 + UV + UV + UV +Face 4713 +UV Count: 3 + UV + UV + UV +Face 4714 +UV Count: 3 + UV + UV + UV +Face 4715 +UV Count: 3 + UV + UV + UV +Face 4716 +UV Count: 3 + UV + UV + UV +Face 4717 +UV Count: 3 + UV + UV + UV +Face 4718 +UV Count: 3 + UV + UV + UV +Face 4719 +UV Count: 3 + UV + UV + UV +Face 4720 +UV Count: 3 + UV + UV + UV +Face 4721 +UV Count: 3 + UV + UV + UV +Face 4722 +UV Count: 3 + UV + UV + UV +Face 4723 +UV Count: 3 + UV + UV + UV +Face 4724 +UV Count: 3 + UV + UV + UV +Face 4725 +UV Count: 3 + UV + UV + UV +Face 4726 +UV Count: 3 + UV + UV + UV +Face 4727 +UV Count: 3 + UV + UV + UV +Face 4728 +UV Count: 3 + UV + UV + UV +Face 4729 +UV Count: 3 + UV + UV + UV +Face 4730 +UV Count: 3 + UV + UV + UV +Face 4731 +UV Count: 3 + UV + UV + UV +Face 4732 +UV Count: 3 + UV + UV + UV +Face 4733 +UV Count: 3 + UV + UV + UV +Face 4734 +UV Count: 3 + UV + UV + UV +Face 4735 +UV Count: 3 + UV + UV + UV +Face 4736 +UV Count: 3 + UV + UV + UV +Face 4737 +UV Count: 3 + UV + UV + UV +Face 4738 +UV Count: 3 + UV + UV + UV +Face 4739 +UV Count: 3 + UV + UV + UV +Face 4740 +UV Count: 3 + UV + UV + UV +Face 4741 +UV Count: 3 + UV + UV + UV +Face 4742 +UV Count: 3 + UV + UV + UV +Face 4743 +UV Count: 3 + UV + UV + UV +Face 4744 +UV Count: 3 + UV + UV + UV +Face 4745 +UV Count: 3 + UV + UV + UV +Face 4746 +UV Count: 3 + UV + UV + UV +Face 4747 +UV Count: 3 + UV + UV + UV +Face 4748 +UV Count: 3 + UV + UV + UV +Face 4749 +UV Count: 3 + UV + UV + UV +Face 4750 +UV Count: 3 + UV + UV + UV +Face 4751 +UV Count: 3 + UV + UV + UV +Face 4752 +UV Count: 3 + UV + UV + UV +Face 4753 +UV Count: 3 + UV + UV + UV +Face 4754 +UV Count: 3 + UV + UV + UV +Face 4755 +UV Count: 3 + UV + UV + UV +Face 4756 +UV Count: 3 + UV + UV + UV +Face 4757 +UV Count: 3 + UV + UV + UV +Face 4758 +UV Count: 3 + UV + UV + UV +Face 4759 +UV Count: 3 + UV + UV + UV +Face 4760 +UV Count: 3 + UV + UV + UV +Face 4761 +UV Count: 3 + UV + UV + UV +Face 4762 +UV Count: 3 + UV + UV + UV +Face 4763 +UV Count: 3 + UV + UV + UV +Face 4764 +UV Count: 3 + UV + UV + UV +Face 4765 +UV Count: 3 + UV + UV + UV +Face 4766 +UV Count: 3 + UV + UV + UV +Face 4767 +UV Count: 3 + UV + UV + UV +Face 4768 +UV Count: 3 + UV + UV + UV +Face 4769 +UV Count: 3 + UV + UV + UV +Face 4770 +UV Count: 3 + UV + UV + UV +Face 4771 +UV Count: 3 + UV + UV + UV +Face 4772 +UV Count: 3 + UV + UV + UV +Face 4773 +UV Count: 3 + UV + UV + UV +Face 4774 +UV Count: 3 + UV + UV + UV +Face 4775 +UV Count: 3 + UV + UV + UV +Face 4776 +UV Count: 3 + UV + UV + UV +Face 4777 +UV Count: 3 + UV + UV + UV +Face 4778 +UV Count: 3 + UV + UV + UV +Face 4779 +UV Count: 3 + UV + UV + UV +Face 4780 +UV Count: 3 + UV + UV + UV +Face 4781 +UV Count: 3 + UV + UV + UV +Face 4782 +UV Count: 3 + UV + UV + UV +Face 4783 +UV Count: 3 + UV + UV + UV +Face 4784 +UV Count: 3 + UV + UV + UV +Face 4785 +UV Count: 3 + UV + UV + UV +Face 4786 +UV Count: 3 + UV + UV + UV +Face 4787 +UV Count: 3 + UV + UV + UV +Face 4788 +UV Count: 3 + UV + UV + UV +Face 4789 +UV Count: 3 + UV + UV + UV +Face 4790 +UV Count: 3 + UV + UV + UV +Face 4791 +UV Count: 3 + UV + UV + UV +Face 4792 +UV Count: 3 + UV + UV + UV +Face 4793 +UV Count: 3 + UV + UV + UV +Face 4794 +UV Count: 3 + UV + UV + UV +Face 4795 +UV Count: 3 + UV + UV + UV +Face 4796 +UV Count: 3 + UV + UV + UV +Face 4797 +UV Count: 3 + UV + UV + UV +Face 4798 +UV Count: 3 + UV + UV + UV +Face 4799 +UV Count: 3 + UV + UV + UV +Face 4800 +UV Count: 3 + UV + UV + UV +Face 4801 +UV Count: 3 + UV + UV + UV +Face 4802 +UV Count: 3 + UV + UV + UV +Face 4803 +UV Count: 3 + UV + UV + UV +Face 4804 +UV Count: 3 + UV + UV + UV +Face 4805 +UV Count: 3 + UV + UV + UV +Face 4806 +UV Count: 3 + UV + UV + UV +Face 4807 +UV Count: 3 + UV + UV + UV +Face 4808 +UV Count: 3 + UV + UV + UV +Face 4809 +UV Count: 3 + UV + UV + UV +Face 4810 +UV Count: 3 + UV + UV + UV +Face 4811 +UV Count: 3 + UV + UV + UV +Face 4812 +UV Count: 3 + UV + UV + UV +Face 4813 +UV Count: 3 + UV + UV + UV +Face 4814 +UV Count: 3 + UV + UV + UV +Face 4815 +UV Count: 3 + UV + UV + UV +Face 4816 +UV Count: 3 + UV + UV + UV +Face 4817 +UV Count: 3 + UV + UV + UV +Face 4818 +UV Count: 3 + UV + UV + UV +Face 4819 +UV Count: 3 + UV + UV + UV +Face 4820 +UV Count: 3 + UV + UV + UV +Face 4821 +UV Count: 3 + UV + UV + UV +Face 4822 +UV Count: 3 + UV + UV + UV +Face 4823 +UV Count: 3 + UV + UV + UV +Face 4824 +UV Count: 3 + UV + UV + UV +Face 4825 +UV Count: 3 + UV + UV + UV +Face 4826 +UV Count: 3 + UV + UV + UV +Face 4827 +UV Count: 3 + UV + UV + UV +Face 4828 +UV Count: 3 + UV + UV + UV +Face 4829 +UV Count: 3 + UV + UV + UV +Face 4830 +UV Count: 3 + UV + UV + UV +Face 4831 +UV Count: 3 + UV + UV + UV +Face 4832 +UV Count: 3 + UV + UV + UV +Face 4833 +UV Count: 3 + UV + UV + UV +Face 4834 +UV Count: 3 + UV + UV + UV +Face 4835 +UV Count: 3 + UV + UV + UV +Face 4836 +UV Count: 3 + UV + UV + UV +Face 4837 +UV Count: 3 + UV + UV + UV +Face 4838 +UV Count: 3 + UV + UV + UV +Face 4839 +UV Count: 3 + UV + UV + UV +Face 4840 +UV Count: 3 + UV + UV + UV +Face 4841 +UV Count: 3 + UV + UV + UV +Face 4842 +UV Count: 3 + UV + UV + UV +Face 4843 +UV Count: 3 + UV + UV + UV +Face 4844 +UV Count: 3 + UV + UV + UV +Face 4845 +UV Count: 3 + UV + UV + UV +Face 4846 +UV Count: 3 + UV + UV + UV +Face 4847 +UV Count: 3 + UV + UV + UV +Face 4848 +UV Count: 3 + UV + UV + UV +Face 4849 +UV Count: 3 + UV + UV + UV +Face 4850 +UV Count: 3 + UV + UV + UV +Face 4851 +UV Count: 3 + UV + UV + UV +Face 4852 +UV Count: 3 + UV + UV + UV +Face 4853 +UV Count: 3 + UV + UV + UV +Face 4854 +UV Count: 3 + UV + UV + UV +Face 4855 +UV Count: 3 + UV + UV + UV +Face 4856 +UV Count: 3 + UV + UV + UV +Face 4857 +UV Count: 3 + UV + UV + UV +Face 4858 +UV Count: 3 + UV + UV + UV +Face 4859 +UV Count: 3 + UV + UV + UV +Face 4860 +UV Count: 3 + UV + UV + UV +Face 4861 +UV Count: 3 + UV + UV + UV +Face 4862 +UV Count: 3 + UV + UV + UV +Face 4863 +UV Count: 3 + UV + UV + UV +Face 4864 +UV Count: 3 + UV + UV + UV +Face 4865 +UV Count: 3 + UV + UV + UV +Face 4866 +UV Count: 3 + UV + UV + UV +Face 4867 +UV Count: 3 + UV + UV + UV +Face 4868 +UV Count: 3 + UV + UV + UV +Face 4869 +UV Count: 3 + UV + UV + UV +Face 4870 +UV Count: 3 + UV + UV + UV +Face 4871 +UV Count: 3 + UV + UV + UV +Face 4872 +UV Count: 3 + UV + UV + UV +Face 4873 +UV Count: 3 + UV + UV + UV +Face 4874 +UV Count: 3 + UV + UV + UV +Face 4875 +UV Count: 3 + UV + UV + UV +Face 4876 +UV Count: 3 + UV + UV + UV +Face 4877 +UV Count: 3 + UV + UV + UV +Face 4878 +UV Count: 3 + UV + UV + UV +Face 4879 +UV Count: 3 + UV + UV + UV +Face 4880 +UV Count: 3 + UV + UV + UV +Face 4881 +UV Count: 3 + UV + UV + UV +Face 4882 +UV Count: 3 + UV + UV + UV +Face 4883 +UV Count: 3 + UV + UV + UV +Face 4884 +UV Count: 3 + UV + UV + UV +Face 4885 +UV Count: 3 + UV + UV + UV +Face 4886 +UV Count: 3 + UV + UV + UV +Face 4887 +UV Count: 3 + UV + UV + UV +Face 4888 +UV Count: 3 + UV + UV + UV +Face 4889 +UV Count: 3 + UV + UV + UV +Face 4890 +UV Count: 3 + UV + UV + UV +Face 4891 +UV Count: 3 + UV + UV + UV +Face 4892 +UV Count: 3 + UV + UV + UV +Face 4893 +UV Count: 3 + UV + UV + UV +Face 4894 +UV Count: 3 + UV + UV + UV +Face 4895 +UV Count: 3 + UV + UV + UV +Face 4896 +UV Count: 3 + UV + UV + UV +Face 4897 +UV Count: 3 + UV + UV + UV +Face 4898 +UV Count: 3 + UV + UV + UV +Face 4899 +UV Count: 3 + UV + UV + UV +Face 4900 +UV Count: 3 + UV + UV + UV +Face 4901 +UV Count: 3 + UV + UV + UV +Face 4902 +UV Count: 3 + UV + UV + UV +Face 4903 +UV Count: 3 + UV + UV + UV +Face 4904 +UV Count: 3 + UV + UV + UV +Face 4905 +UV Count: 3 + UV + UV + UV +Face 4906 +UV Count: 3 + UV + UV + UV +Face 4907 +UV Count: 3 + UV + UV + UV +Face 4908 +UV Count: 3 + UV + UV + UV +Face 4909 +UV Count: 3 + UV + UV + UV +Face 4910 +UV Count: 3 + UV + UV + UV +Face 4911 +UV Count: 3 + UV + UV + UV +Face 4912 +UV Count: 3 + UV + UV + UV +Face 4913 +UV Count: 3 + UV + UV + UV +Face 4914 +UV Count: 3 + UV + UV + UV +Face 4915 +UV Count: 3 + UV + UV + UV +Face 4916 +UV Count: 3 + UV + UV + UV +Face 4917 +UV Count: 3 + UV + UV + UV +Face 4918 +UV Count: 3 + UV + UV + UV +Face 4919 +UV Count: 3 + UV + UV + UV +Face 4920 +UV Count: 3 + UV + UV + UV +Face 4921 +UV Count: 3 + UV + UV + UV +Face 4922 +UV Count: 3 + UV + UV + UV +Face 4923 +UV Count: 3 + UV + UV + UV +Face 4924 +UV Count: 3 + UV + UV + UV +Face 4925 +UV Count: 3 + UV + UV + UV +Face 4926 +UV Count: 3 + UV + UV + UV +Face 4927 +UV Count: 3 + UV + UV + UV +Face 4928 +UV Count: 3 + UV + UV + UV +Face 4929 +UV Count: 3 + UV + UV + UV +Face 4930 +UV Count: 3 + UV + UV + UV +Face 4931 +UV Count: 3 + UV + UV + UV +Face 4932 +UV Count: 3 + UV + UV + UV +Face 4933 +UV Count: 3 + UV + UV + UV +Face 4934 +UV Count: 3 + UV + UV + UV +Face 4935 +UV Count: 3 + UV + UV + UV +Face 4936 +UV Count: 3 + UV + UV + UV +Face 4937 +UV Count: 3 + UV + UV + UV +Face 4938 +UV Count: 3 + UV + UV + UV +Face 4939 +UV Count: 3 + UV + UV + UV +Face 4940 +UV Count: 3 + UV + UV + UV +Face 4941 +UV Count: 3 + UV + UV + UV +Face 4942 +UV Count: 3 + UV + UV + UV +Face 4943 +UV Count: 3 + UV + UV + UV +Face 4944 +UV Count: 3 + UV + UV + UV +Face 4945 +UV Count: 3 + UV + UV + UV +Face 4946 +UV Count: 3 + UV + UV + UV +Face 4947 +UV Count: 3 + UV + UV + UV +Face 4948 +UV Count: 3 + UV + UV + UV +Face 4949 +UV Count: 3 + UV + UV + UV +Face 4950 +UV Count: 3 + UV + UV + UV +Face 4951 +UV Count: 3 + UV + UV + UV +Face 4952 +UV Count: 3 + UV + UV + UV +Face 4953 +UV Count: 3 + UV + UV + UV +Face 4954 +UV Count: 3 + UV + UV + UV +Face 4955 +UV Count: 3 + UV + UV + UV +Face 4956 +UV Count: 3 + UV + UV + UV +Face 4957 +UV Count: 3 + UV + UV + UV +Face 4958 +UV Count: 3 + UV + UV + UV +Face 4959 +UV Count: 3 + UV + UV + UV +Face 4960 +UV Count: 3 + UV + UV + UV +Face 4961 +UV Count: 3 + UV + UV + UV +Face 4962 +UV Count: 3 + UV + UV + UV +Face 4963 +UV Count: 3 + UV + UV + UV +Face 4964 +UV Count: 3 + UV + UV + UV +Face 4965 +UV Count: 3 + UV + UV + UV +Face 4966 +UV Count: 3 + UV + UV + UV +Face 4967 +UV Count: 3 + UV + UV + UV +Face 4968 +UV Count: 3 + UV + UV + UV +Face 4969 +UV Count: 3 + UV + UV + UV +Face 4970 +UV Count: 3 + UV + UV + UV +Face 4971 +UV Count: 3 + UV + UV + UV +Face 4972 +UV Count: 3 + UV + UV + UV +Face 4973 +UV Count: 3 + UV + UV + UV +Face 4974 +UV Count: 3 + UV + UV + UV +Face 4975 +UV Count: 3 + UV + UV + UV +Face 4976 +UV Count: 3 + UV + UV + UV +Face 4977 +UV Count: 3 + UV + UV + UV +Face 4978 +UV Count: 3 + UV + UV + UV +Face 4979 +UV Count: 3 + UV + UV + UV +Face 4980 +UV Count: 3 + UV + UV + UV +Face 4981 +UV Count: 3 + UV + UV + UV +Face 4982 +UV Count: 3 + UV + UV + UV +Face 4983 +UV Count: 3 + UV + UV + UV +Face 4984 +UV Count: 3 + UV + UV + UV +Face 4985 +UV Count: 3 + UV + UV + UV +Face 4986 +UV Count: 3 + UV + UV + UV +Face 4987 +UV Count: 3 + UV + UV + UV +Face 4988 +UV Count: 3 + UV + UV + UV +Face 4989 +UV Count: 3 + UV + UV + UV +Face 4990 +UV Count: 3 + UV + UV + UV +Face 4991 +UV Count: 3 + UV + UV + UV +Face 4992 +UV Count: 3 + UV + UV + UV +Face 4993 +UV Count: 3 + UV + UV + UV +Face 4994 +UV Count: 3 + UV + UV + UV +Face 4995 +UV Count: 3 + UV + UV + UV +Face 4996 +UV Count: 3 + UV + UV + UV +Face 4997 +UV Count: 3 + UV + UV + UV +Face 4998 +UV Count: 3 + UV + UV + UV +Face 4999 +UV Count: 3 + UV + UV + UV +Face 5000 +UV Count: 3 + UV + UV + UV +Face 5001 +UV Count: 3 + UV + UV + UV +Face 5002 +UV Count: 3 + UV + UV + UV +Face 5003 +UV Count: 3 + UV + UV + UV +Face 5004 +UV Count: 3 + UV + UV + UV +Face 5005 +UV Count: 3 + UV + UV + UV +Face 5006 +UV Count: 3 + UV + UV + UV +Face 5007 +UV Count: 3 + UV + UV + UV +Face 5008 +UV Count: 3 + UV + UV + UV +Face 5009 +UV Count: 3 + UV + UV + UV +Face 5010 +UV Count: 3 + UV + UV + UV +Face 5011 +UV Count: 3 + UV + UV + UV +Face 5012 +UV Count: 3 + UV + UV + UV +Face 5013 +UV Count: 3 + UV + UV + UV +Face 5014 +UV Count: 3 + UV + UV + UV +Face 5015 +UV Count: 3 + UV + UV + UV +Face 5016 +UV Count: 3 + UV + UV + UV +Face 5017 +UV Count: 3 + UV + UV + UV +Face 5018 +UV Count: 3 + UV + UV + UV +Face 5019 +UV Count: 3 + UV + UV + UV +Face 5020 +UV Count: 3 + UV + UV + UV +Face 5021 +UV Count: 3 + UV + UV + UV +Face 5022 +UV Count: 3 + UV + UV + UV +Face 5023 +UV Count: 3 + UV + UV + UV +Face 5024 +UV Count: 3 + UV + UV + UV +Face 5025 +UV Count: 3 + UV + UV + UV +Face 5026 +UV Count: 3 + UV + UV + UV +Face 5027 +UV Count: 3 + UV + UV + UV +Face 5028 +UV Count: 3 + UV + UV + UV +Face 5029 +UV Count: 3 + UV + UV + UV +Face 5030 +UV Count: 3 + UV + UV + UV +Face 5031 +UV Count: 3 + UV + UV + UV +Face 5032 +UV Count: 3 + UV + UV + UV +Face 5033 +UV Count: 3 + UV + UV + UV +Face 5034 +UV Count: 3 + UV + UV + UV +Face 5035 +UV Count: 3 + UV + UV + UV +Face 5036 +UV Count: 3 + UV + UV + UV +Face 5037 +UV Count: 3 + UV + UV + UV +Face 5038 +UV Count: 3 + UV + UV + UV +Face 5039 +UV Count: 3 + UV + UV + UV +Face 5040 +UV Count: 3 + UV + UV + UV +Face 5041 +UV Count: 3 + UV + UV + UV +Face 5042 +UV Count: 3 + UV + UV + UV +Face 5043 +UV Count: 3 + UV + UV + UV +Face 5044 +UV Count: 3 + UV + UV + UV +Face 5045 +UV Count: 3 + UV + UV + UV +Face 5046 +UV Count: 3 + UV + UV + UV +Face 5047 +UV Count: 3 + UV + UV + UV +Face 5048 +UV Count: 3 + UV + UV + UV +Face 5049 +UV Count: 3 + UV + UV + UV +Face 5050 +UV Count: 3 + UV + UV + UV +Face 5051 +UV Count: 3 + UV + UV + UV +Face 5052 +UV Count: 3 + UV + UV + UV +Face 5053 +UV Count: 3 + UV + UV + UV +Face 5054 +UV Count: 3 + UV + UV + UV +Face 5055 +UV Count: 3 + UV + UV + UV +Face 5056 +UV Count: 3 + UV + UV + UV +Face 5057 +UV Count: 3 + UV + UV + UV +Face 5058 +UV Count: 3 + UV + UV + UV +Face 5059 +UV Count: 3 + UV + UV + UV +Face 5060 +UV Count: 3 + UV + UV + UV +Face 5061 +UV Count: 3 + UV + UV + UV +Face 5062 +UV Count: 3 + UV + UV + UV +Face 5063 +UV Count: 3 + UV + UV + UV +Face 5064 +UV Count: 3 + UV + UV + UV +Face 5065 +UV Count: 3 + UV + UV + UV +Face 5066 +UV Count: 3 + UV + UV + UV +Face 5067 +UV Count: 3 + UV + UV + UV +Face 5068 +UV Count: 3 + UV + UV + UV +Face 5069 +UV Count: 3 + UV + UV + UV +Face 5070 +UV Count: 3 + UV + UV + UV +Face 5071 +UV Count: 3 + UV + UV + UV +Face 5072 +UV Count: 3 + UV + UV + UV +Face 5073 +UV Count: 3 + UV + UV + UV +Face 5074 +UV Count: 3 + UV + UV + UV +Face 5075 +UV Count: 3 + UV + UV + UV +Face 5076 +UV Count: 3 + UV + UV + UV +Face 5077 +UV Count: 3 + UV + UV + UV +Face 5078 +UV Count: 3 + UV + UV + UV +Face 5079 +UV Count: 3 + UV + UV + UV +Face 5080 +UV Count: 3 + UV + UV + UV +Face 5081 +UV Count: 3 + UV + UV + UV +Face 5082 +UV Count: 3 + UV + UV + UV +Face 5083 +UV Count: 3 + UV + UV + UV +Face 5084 +UV Count: 3 + UV + UV + UV +Face 5085 +UV Count: 3 + UV + UV + UV +Face 5086 +UV Count: 3 + UV + UV + UV +Face 5087 +UV Count: 3 + UV + UV + UV +Face 5088 +UV Count: 3 + UV + UV + UV +Face 5089 +UV Count: 3 + UV + UV + UV +Face 5090 +UV Count: 3 + UV + UV + UV +Face 5091 +UV Count: 3 + UV + UV + UV +Face 5092 +UV Count: 3 + UV + UV + UV +Face 5093 +UV Count: 3 + UV + UV + UV +Face 5094 +UV Count: 3 + UV + UV + UV +Face 5095 +UV Count: 3 + UV + UV + UV +Face 5096 +UV Count: 3 + UV + UV + UV +Face 5097 +UV Count: 3 + UV + UV + UV +Face 5098 +UV Count: 3 + UV + UV + UV +Face 5099 +UV Count: 3 + UV + UV + UV +Face 5100 +UV Count: 3 + UV + UV + UV +Face 5101 +UV Count: 3 + UV + UV + UV +Face 5102 +UV Count: 3 + UV + UV + UV +Face 5103 +UV Count: 3 + UV + UV + UV +Face 5104 +UV Count: 3 + UV + UV + UV +Face 5105 +UV Count: 3 + UV + UV + UV +Face 5106 +UV Count: 3 + UV + UV + UV +Face 5107 +UV Count: 3 + UV + UV + UV +Face 5108 +UV Count: 3 + UV + UV + UV +Face 5109 +UV Count: 3 + UV + UV + UV +Face 5110 +UV Count: 3 + UV + UV + UV +Face 5111 +UV Count: 3 + UV + UV + UV +Face 5112 +UV Count: 3 + UV + UV + UV +Face 5113 +UV Count: 3 + UV + UV + UV +Face 5114 +UV Count: 3 + UV + UV + UV +Face 5115 +UV Count: 3 + UV + UV + UV +Face 5116 +UV Count: 3 + UV + UV + UV +Face 5117 +UV Count: 3 + UV + UV + UV +Face 5118 +UV Count: 3 + UV + UV + UV +Face 5119 +UV Count: 3 + UV + UV + UV +Face 5120 +UV Count: 3 + UV + UV + UV +Face 5121 +UV Count: 3 + UV + UV + UV +Face 5122 +UV Count: 3 + UV + UV + UV +Face 5123 +UV Count: 3 + UV + UV + UV +Face 5124 +UV Count: 3 + UV + UV + UV +Face 5125 +UV Count: 3 + UV + UV + UV +Face 5126 +UV Count: 3 + UV + UV + UV +Face 5127 +UV Count: 3 + UV + UV + UV +Face 5128 +UV Count: 3 + UV + UV + UV +Face 5129 +UV Count: 3 + UV + UV + UV +Face 5130 +UV Count: 3 + UV + UV + UV +Face 5131 +UV Count: 3 + UV + UV + UV +Face 5132 +UV Count: 3 + UV + UV + UV +Face 5133 +UV Count: 3 + UV + UV + UV +Face 5134 +UV Count: 3 + UV + UV + UV +Face 5135 +UV Count: 3 + UV + UV + UV +Face 5136 +UV Count: 3 + UV + UV + UV +Face 5137 +UV Count: 3 + UV + UV + UV +Face 5138 +UV Count: 3 + UV + UV + UV +Face 5139 +UV Count: 3 + UV + UV + UV +Face 5140 +UV Count: 3 + UV + UV + UV +Face 5141 +UV Count: 3 + UV + UV + UV +Face 5142 +UV Count: 3 + UV + UV + UV +Face 5143 +UV Count: 3 + UV + UV + UV +Face 5144 +UV Count: 3 + UV + UV + UV +Face 5145 +UV Count: 3 + UV + UV + UV +Face 5146 +UV Count: 3 + UV + UV + UV +Face 5147 +UV Count: 3 + UV + UV + UV +Face 5148 +UV Count: 3 + UV + UV + UV +Face 5149 +UV Count: 3 + UV + UV + UV +Face 5150 +UV Count: 3 + UV + UV + UV +Face 5151 +UV Count: 3 + UV + UV + UV +Face 5152 +UV Count: 3 + UV + UV + UV +Face 5153 +UV Count: 3 + UV + UV + UV +Face 5154 +UV Count: 3 + UV + UV + UV +Face 5155 +UV Count: 3 + UV + UV + UV +Face 5156 +UV Count: 3 + UV + UV + UV +Face 5157 +UV Count: 3 + UV + UV + UV +Face 5158 +UV Count: 3 + UV + UV + UV +Face 5159 +UV Count: 3 + UV + UV + UV +Face 5160 +UV Count: 3 + UV + UV + UV +Face 5161 +UV Count: 3 + UV + UV + UV +Face 5162 +UV Count: 3 + UV + UV + UV +Face 5163 +UV Count: 3 + UV + UV + UV +Face 5164 +UV Count: 3 + UV + UV + UV +Face 5165 +UV Count: 3 + UV + UV + UV +Face 5166 +UV Count: 3 + UV + UV + UV +Face 5167 +UV Count: 3 + UV + UV + UV +Face 5168 +UV Count: 3 + UV + UV + UV +Face 5169 +UV Count: 3 + UV + UV + UV +Face 5170 +UV Count: 3 + UV + UV + UV +Face 5171 +UV Count: 3 + UV + UV + UV +Face 5172 +UV Count: 3 + UV + UV + UV +Face 5173 +UV Count: 3 + UV + UV + UV +Face 5174 +UV Count: 3 + UV + UV + UV +Face 5175 +UV Count: 3 + UV + UV + UV +Face 5176 +UV Count: 3 + UV + UV + UV +Face 5177 +UV Count: 3 + UV + UV + UV +Face 5178 +UV Count: 3 + UV + UV + UV +Face 5179 +UV Count: 3 + UV + UV + UV +Face 5180 +UV Count: 3 + UV + UV + UV +Face 5181 +UV Count: 3 + UV + UV + UV +Face 5182 +UV Count: 3 + UV + UV + UV +Face 5183 +UV Count: 3 + UV + UV + UV +Face 5184 +UV Count: 3 + UV + UV + UV +Face 5185 +UV Count: 3 + UV + UV + UV +Face 5186 +UV Count: 3 + UV + UV + UV +Face 5187 +UV Count: 3 + UV + UV + UV +Face 5188 +UV Count: 3 + UV + UV + UV +Face 5189 +UV Count: 3 + UV + UV + UV +Face 5190 +UV Count: 3 + UV + UV + UV +Face 5191 +UV Count: 3 + UV + UV + UV +Face 5192 +UV Count: 3 + UV + UV + UV +Face 5193 +UV Count: 3 + UV + UV + UV +Face 5194 +UV Count: 3 + UV + UV + UV +Face 5195 +UV Count: 3 + UV + UV + UV +Face 5196 +UV Count: 3 + UV + UV + UV +Face 5197 +UV Count: 3 + UV + UV + UV +Face 5198 +UV Count: 3 + UV + UV + UV +Face 5199 +UV Count: 3 + UV + UV + UV +Face 5200 +UV Count: 3 + UV + UV + UV +Face 5201 +UV Count: 3 + UV + UV + UV +Face 5202 +UV Count: 3 + UV + UV + UV +Face 5203 +UV Count: 3 + UV + UV + UV +Face 5204 +UV Count: 3 + UV + UV + UV +Face 5205 +UV Count: 3 + UV + UV + UV +Face 5206 +UV Count: 3 + UV + UV + UV +Face 5207 +UV Count: 3 + UV + UV + UV +Face 5208 +UV Count: 3 + UV + UV + UV +Face 5209 +UV Count: 3 + UV + UV + UV +Face 5210 +UV Count: 3 + UV + UV + UV +Face 5211 +UV Count: 3 + UV + UV + UV +Face 5212 +UV Count: 3 + UV + UV + UV +Face 5213 +UV Count: 3 + UV + UV + UV +Face 5214 +UV Count: 3 + UV + UV + UV +Face 5215 +UV Count: 3 + UV + UV + UV +Face 5216 +UV Count: 3 + UV + UV + UV +Face 5217 +UV Count: 3 + UV + UV + UV +Face 5218 +UV Count: 3 + UV + UV + UV +Face 5219 +UV Count: 3 + UV + UV + UV +Face 5220 +UV Count: 3 + UV + UV + UV +Face 5221 +UV Count: 3 + UV + UV + UV +Face 5222 +UV Count: 3 + UV + UV + UV +Face 5223 +UV Count: 3 + UV + UV + UV +Face 5224 +UV Count: 3 + UV + UV + UV +Face 5225 +UV Count: 3 + UV + UV + UV +Face 5226 +UV Count: 3 + UV + UV + UV +Face 5227 +UV Count: 3 + UV + UV + UV +Face 5228 +UV Count: 3 + UV + UV + UV +Face 5229 +UV Count: 3 + UV + UV + UV +Face 5230 +UV Count: 3 + UV + UV + UV +Face 5231 +UV Count: 3 + UV + UV + UV +Face 5232 +UV Count: 3 + UV + UV + UV +Face 5233 +UV Count: 3 + UV + UV + UV +Face 5234 +UV Count: 3 + UV + UV + UV +Face 5235 +UV Count: 3 + UV + UV + UV +Face 5236 +UV Count: 3 + UV + UV + UV +Face 5237 +UV Count: 3 + UV + UV + UV +Face 5238 +UV Count: 3 + UV + UV + UV +Face 5239 +UV Count: 3 + UV + UV + UV +Face 5240 +UV Count: 3 + UV + UV + UV +Face 5241 +UV Count: 3 + UV + UV + UV +Face 5242 +UV Count: 3 + UV + UV + UV +Face 5243 +UV Count: 3 + UV + UV + UV +Face 5244 +UV Count: 3 + UV + UV + UV +Face 5245 +UV Count: 3 + UV + UV + UV +Face 5246 +UV Count: 3 + UV + UV + UV +Face 5247 +UV Count: 3 + UV + UV + UV +Face 5248 +UV Count: 3 + UV + UV + UV +Face 5249 +UV Count: 3 + UV + UV + UV +Face 5250 +UV Count: 3 + UV + UV + UV +Face 5251 +UV Count: 3 + UV + UV + UV +Face 5252 +UV Count: 3 + UV + UV + UV +Face 5253 +UV Count: 3 + UV + UV + UV +Face 5254 +UV Count: 3 + UV + UV + UV +Face 5255 +UV Count: 3 + UV + UV + UV +Face 5256 +UV Count: 3 + UV + UV + UV +Face 5257 +UV Count: 3 + UV + UV + UV +Face 5258 +UV Count: 3 + UV + UV + UV +Face 5259 +UV Count: 3 + UV + UV + UV +Face 5260 +UV Count: 3 + UV + UV + UV +Face 5261 +UV Count: 3 + UV + UV + UV +Face 5262 +UV Count: 3 + UV + UV + UV +Face 5263 +UV Count: 3 + UV + UV + UV +Face 5264 +UV Count: 3 + UV + UV + UV +Face 5265 +UV Count: 3 + UV + UV + UV +Face 5266 +UV Count: 3 + UV + UV + UV +Face 5267 +UV Count: 3 + UV + UV + UV +Face 5268 +UV Count: 3 + UV + UV + UV +Face 5269 +UV Count: 3 + UV + UV + UV +Face 5270 +UV Count: 3 + UV + UV + UV +Face 5271 +UV Count: 3 + UV + UV + UV +Face 5272 +UV Count: 3 + UV + UV + UV +Face 5273 +UV Count: 3 + UV + UV + UV +Face 5274 +UV Count: 3 + UV + UV + UV +Face 5275 +UV Count: 3 + UV + UV + UV +Face 5276 +UV Count: 3 + UV + UV + UV +Face 5277 +UV Count: 3 + UV + UV + UV +Face 5278 +UV Count: 3 + UV + UV + UV +Face 5279 +UV Count: 3 + UV + UV + UV +Face 5280 +UV Count: 3 + UV + UV + UV +Face 5281 +UV Count: 3 + UV + UV + UV +Face 5282 +UV Count: 3 + UV + UV + UV +Face 5283 +UV Count: 3 + UV + UV + UV +Face 5284 +UV Count: 3 + UV + UV + UV +Face 5285 +UV Count: 3 + UV + UV + UV +Face 5286 +UV Count: 3 + UV + UV + UV +Face 5287 +UV Count: 3 + UV + UV + UV +Face 5288 +UV Count: 3 + UV + UV + UV +Face 5289 +UV Count: 3 + UV + UV + UV +Face 5290 +UV Count: 3 + UV + UV + UV +Face 5291 +UV Count: 3 + UV + UV + UV +Face 5292 +UV Count: 3 + UV + UV + UV +Face 5293 +UV Count: 3 + UV + UV + UV +Face 5294 +UV Count: 3 + UV + UV + UV +Face 5295 +UV Count: 3 + UV + UV + UV +Face 5296 +UV Count: 3 + UV + UV + UV +Face 5297 +UV Count: 3 + UV + UV + UV +Face 5298 +UV Count: 3 + UV + UV + UV +Face 5299 +UV Count: 3 + UV + UV + UV +Face 5300 +UV Count: 3 + UV + UV + UV +Face 5301 +UV Count: 3 + UV + UV + UV +Face 5302 +UV Count: 3 + UV + UV + UV +Face 5303 +UV Count: 3 + UV + UV + UV +Face 5304 +UV Count: 3 + UV + UV + UV +Face 5305 +UV Count: 3 + UV + UV + UV +Face 5306 +UV Count: 3 + UV + UV + UV +Face 5307 +UV Count: 3 + UV + UV + UV +Face 5308 +UV Count: 3 + UV + UV + UV +Face 5309 +UV Count: 3 + UV + UV + UV +Face 5310 +UV Count: 3 + UV + UV + UV +Face 5311 +UV Count: 3 + UV + UV + UV +Face 5312 +UV Count: 3 + UV + UV + UV +Face 5313 +UV Count: 3 + UV + UV + UV +Face 5314 +UV Count: 3 + UV + UV + UV +Face 5315 +UV Count: 3 + UV + UV + UV +Face 5316 +UV Count: 3 + UV + UV + UV +Face 5317 +UV Count: 3 + UV + UV + UV +Face 5318 +UV Count: 3 + UV + UV + UV +Face 5319 +UV Count: 3 + UV + UV + UV +Face 5320 +UV Count: 3 + UV + UV + UV +Face 5321 +UV Count: 3 + UV + UV + UV +Face 5322 +UV Count: 3 + UV + UV + UV +Face 5323 +UV Count: 3 + UV + UV + UV +Face 5324 +UV Count: 3 + UV + UV + UV +Face 5325 +UV Count: 3 + UV + UV + UV +Face 5326 +UV Count: 3 + UV + UV + UV +Face 5327 +UV Count: 3 + UV + UV + UV +Face 5328 +UV Count: 3 + UV + UV + UV +Face 5329 +UV Count: 3 + UV + UV + UV +Face 5330 +UV Count: 3 + UV + UV + UV +Face 5331 +UV Count: 3 + UV + UV + UV +Face 5332 +UV Count: 3 + UV + UV + UV +Face 5333 +UV Count: 3 + UV + UV + UV +Face 5334 +UV Count: 3 + UV + UV + UV +Face 5335 +UV Count: 3 + UV + UV + UV +Face 5336 +UV Count: 3 + UV + UV + UV +Face 5337 +UV Count: 3 + UV + UV + UV +Face 5338 +UV Count: 3 + UV + UV + UV +Face 5339 +UV Count: 3 + UV + UV + UV +Face 5340 +UV Count: 3 + UV + UV + UV +Face 5341 +UV Count: 3 + UV + UV + UV +Face 5342 +UV Count: 3 + UV + UV + UV +Face 5343 +UV Count: 3 + UV + UV + UV +Face 5344 +UV Count: 3 + UV + UV + UV +Face 5345 +UV Count: 3 + UV + UV + UV +Face 5346 +UV Count: 3 + UV + UV + UV +Face 5347 +UV Count: 3 + UV + UV + UV +Face 5348 +UV Count: 3 + UV + UV + UV +Face 5349 +UV Count: 3 + UV + UV + UV +Face 5350 +UV Count: 3 + UV + UV + UV +Face 5351 +UV Count: 3 + UV + UV + UV +Face 5352 +UV Count: 3 + UV + UV + UV +Face 5353 +UV Count: 3 + UV + UV + UV +Face 5354 +UV Count: 3 + UV + UV + UV +Face 5355 +UV Count: 3 + UV + UV + UV +Face 5356 +UV Count: 3 + UV + UV + UV +Face 5357 +UV Count: 3 + UV + UV + UV +Face 5358 +UV Count: 3 + UV + UV + UV +Face 5359 +UV Count: 3 + UV + UV + UV +Face 5360 +UV Count: 3 + UV + UV + UV +Face 5361 +UV Count: 3 + UV + UV + UV +Face 5362 +UV Count: 3 + UV + UV + UV +Face 5363 +UV Count: 3 + UV + UV + UV +Face 5364 +UV Count: 3 + UV + UV + UV +Face 5365 +UV Count: 3 + UV + UV + UV +Face 5366 +UV Count: 3 + UV + UV + UV +Face 5367 +UV Count: 3 + UV + UV + UV +Face 5368 +UV Count: 3 + UV + UV + UV +Face 5369 +UV Count: 3 + UV + UV + UV +Face 5370 +UV Count: 3 + UV + UV + UV +Face 5371 +UV Count: 3 + UV + UV + UV +Face 5372 +UV Count: 3 + UV + UV + UV +Face 5373 +UV Count: 3 + UV + UV + UV +Face 5374 +UV Count: 3 + UV + UV + UV +Face 5375 +UV Count: 3 + UV + UV + UV +Face 5376 +UV Count: 3 + UV + UV + UV +Face 5377 +UV Count: 3 + UV + UV + UV +Face 5378 +UV Count: 3 + UV + UV + UV +Face 5379 +UV Count: 3 + UV + UV + UV +Face 5380 +UV Count: 3 + UV + UV + UV +Face 5381 +UV Count: 3 + UV + UV + UV +Face 5382 +UV Count: 3 + UV + UV + UV +Face 5383 +UV Count: 3 + UV + UV + UV +Face 5384 +UV Count: 3 + UV + UV + UV +Face 5385 +UV Count: 3 + UV + UV + UV +Face 5386 +UV Count: 3 + UV + UV + UV +Face 5387 +UV Count: 3 + UV + UV + UV +Face 5388 +UV Count: 3 + UV + UV + UV +Face 5389 +UV Count: 3 + UV + UV + UV +Face 5390 +UV Count: 3 + UV + UV + UV +Face 5391 +UV Count: 3 + UV + UV + UV +Face 5392 +UV Count: 3 + UV + UV + UV +Face 5393 +UV Count: 3 + UV + UV + UV +Face 5394 +UV Count: 3 + UV + UV + UV +Face 5395 +UV Count: 3 + UV + UV + UV +Face 5396 +UV Count: 3 + UV + UV + UV +Face 5397 +UV Count: 3 + UV + UV + UV +Face 5398 +UV Count: 3 + UV + UV + UV +Face 5399 +UV Count: 3 + UV + UV + UV +Face 5400 +UV Count: 3 + UV + UV + UV +Face 5401 +UV Count: 3 + UV + UV + UV +Face 5402 +UV Count: 3 + UV + UV + UV +Face 5403 +UV Count: 3 + UV + UV + UV +Face 5404 +UV Count: 3 + UV + UV + UV +Face 5405 +UV Count: 3 + UV + UV + UV +Face 5406 +UV Count: 3 + UV + UV + UV +Face 5407 +UV Count: 3 + UV + UV + UV +Face 5408 +UV Count: 3 + UV + UV + UV +Face 5409 +UV Count: 3 + UV + UV + UV +Face 5410 +UV Count: 3 + UV + UV + UV +Face 5411 +UV Count: 3 + UV + UV + UV +Face 5412 +UV Count: 3 + UV + UV + UV +Face 5413 +UV Count: 3 + UV + UV + UV +Face 5414 +UV Count: 3 + UV + UV + UV +Face 5415 +UV Count: 3 + UV + UV + UV +Face 5416 +UV Count: 3 + UV + UV + UV +Face 5417 +UV Count: 3 + UV + UV + UV +Face 5418 +UV Count: 3 + UV + UV + UV +Face 5419 +UV Count: 3 + UV + UV + UV +Face 5420 +UV Count: 3 + UV + UV + UV +Face 5421 +UV Count: 3 + UV + UV + UV +Face 5422 +UV Count: 3 + UV + UV + UV +Face 5423 +UV Count: 3 + UV + UV + UV +Face 5424 +UV Count: 3 + UV + UV + UV +Face 5425 +UV Count: 3 + UV + UV + UV +Face 5426 +UV Count: 3 + UV + UV + UV +Face 5427 +UV Count: 3 + UV + UV + UV +Face 5428 +UV Count: 3 + UV + UV + UV +Face 5429 +UV Count: 3 + UV + UV + UV +Face 5430 +UV Count: 3 + UV + UV + UV +Face 5431 +UV Count: 3 + UV + UV + UV +Face 5432 +UV Count: 3 + UV + UV + UV +Face 5433 +UV Count: 3 + UV + UV + UV +Face 5434 +UV Count: 3 + UV + UV + UV +Face 5435 +UV Count: 3 + UV + UV + UV +Face 5436 +UV Count: 3 + UV + UV + UV +Face 5437 +UV Count: 3 + UV + UV + UV +Face 5438 +UV Count: 3 + UV + UV + UV +Face 5439 +UV Count: 3 + UV + UV + UV +Face 5440 +UV Count: 3 + UV + UV + UV +Face 5441 +UV Count: 3 + UV + UV + UV +Face 5442 +UV Count: 3 + UV + UV + UV +Face 5443 +UV Count: 3 + UV + UV + UV +Face 5444 +UV Count: 3 + UV + UV + UV +Face 5445 +UV Count: 3 + UV + UV + UV +Face 5446 +UV Count: 3 + UV + UV + UV +Face 5447 +UV Count: 3 + UV + UV + UV +Face 5448 +UV Count: 3 + UV + UV + UV +Face 5449 +UV Count: 3 + UV + UV + UV +Face 5450 +UV Count: 3 + UV + UV + UV +Face 5451 +UV Count: 3 + UV + UV + UV +Face 5452 +UV Count: 3 + UV + UV + UV +Face 5453 +UV Count: 3 + UV + UV + UV +Face 5454 +UV Count: 3 + UV + UV + UV +Face 5455 +UV Count: 3 + UV + UV + UV +Face 5456 +UV Count: 3 + UV + UV + UV +Face 5457 +UV Count: 3 + UV + UV + UV +Face 5458 +UV Count: 3 + UV + UV + UV +Face 5459 +UV Count: 3 + UV + UV + UV +Face 5460 +UV Count: 3 + UV + UV + UV +Face 5461 +UV Count: 3 + UV + UV + UV +Face 5462 +UV Count: 3 + UV + UV + UV +Face 5463 +UV Count: 3 + UV + UV + UV +Face 5464 +UV Count: 3 + UV + UV + UV +Face 5465 +UV Count: 3 + UV + UV + UV +Face 5466 +UV Count: 3 + UV + UV + UV +Face 5467 +UV Count: 3 + UV + UV + UV +Face 5468 +UV Count: 3 + UV + UV + UV +Face 5469 +UV Count: 3 + UV + UV + UV +Face 5470 +UV Count: 3 + UV + UV + UV +Face 5471 +UV Count: 3 + UV + UV + UV +Face 5472 +UV Count: 3 + UV + UV + UV +Face 5473 +UV Count: 3 + UV + UV + UV +Face 5474 +UV Count: 3 + UV + UV + UV +Face 5475 +UV Count: 3 + UV + UV + UV +Face 5476 +UV Count: 3 + UV + UV + UV +Face 5477 +UV Count: 3 + UV + UV + UV +Face 5478 +UV Count: 3 + UV + UV + UV +Face 5479 +UV Count: 3 + UV + UV + UV +Face 5480 +UV Count: 3 + UV + UV + UV +Face 5481 +UV Count: 3 + UV + UV + UV +Face 5482 +UV Count: 3 + UV + UV + UV +Face 5483 +UV Count: 3 + UV + UV + UV +Face 5484 +UV Count: 3 + UV + UV + UV +Face 5485 +UV Count: 3 + UV + UV + UV +Face 5486 +UV Count: 3 + UV + UV + UV +Face 5487 +UV Count: 3 + UV + UV + UV +Face 5488 +UV Count: 3 + UV + UV + UV +Face 5489 +UV Count: 3 + UV + UV + UV +Face 5490 +UV Count: 3 + UV + UV + UV +Face 5491 +UV Count: 3 + UV + UV + UV +Face 5492 +UV Count: 3 + UV + UV + UV +Face 5493 +UV Count: 3 + UV + UV + UV +Face 5494 +UV Count: 3 + UV + UV + UV +Face 5495 +UV Count: 3 + UV + UV + UV +Face 5496 +UV Count: 3 + UV + UV + UV +Face 5497 +UV Count: 3 + UV + UV + UV +Face 5498 +UV Count: 3 + UV + UV + UV +Face 5499 +UV Count: 3 + UV + UV + UV +Face 5500 +UV Count: 3 + UV + UV + UV +Face 5501 +UV Count: 3 + UV + UV + UV +Face 5502 +UV Count: 3 + UV + UV + UV +Face 5503 +UV Count: 3 + UV + UV + UV +Face 5504 +UV Count: 3 + UV + UV + UV +Face 5505 +UV Count: 3 + UV + UV + UV +Face 5506 +UV Count: 3 + UV + UV + UV +Face 5507 +UV Count: 3 + UV + UV + UV +Face 5508 +UV Count: 3 + UV + UV + UV +Face 5509 +UV Count: 3 + UV + UV + UV +Face 5510 +UV Count: 3 + UV + UV + UV +Face 5511 +UV Count: 3 + UV + UV + UV +Face 5512 +UV Count: 3 + UV + UV + UV +Face 5513 +UV Count: 3 + UV + UV + UV +Face 5514 +UV Count: 3 + UV + UV + UV +Face 5515 +UV Count: 3 + UV + UV + UV +Face 5516 +UV Count: 3 + UV + UV + UV +Face 5517 +UV Count: 3 + UV + UV + UV +Face 5518 +UV Count: 3 + UV + UV + UV +Face 5519 +UV Count: 3 + UV + UV + UV +Face 5520 +UV Count: 3 + UV + UV + UV +Face 5521 +UV Count: 3 + UV + UV + UV +Face 5522 +UV Count: 3 + UV + UV + UV +Face 5523 +UV Count: 3 + UV + UV + UV +Face 5524 +UV Count: 3 + UV + UV + UV +Face 5525 +UV Count: 3 + UV + UV + UV +Face 5526 +UV Count: 3 + UV + UV + UV +Face 5527 +UV Count: 3 + UV + UV + UV +Face 5528 +UV Count: 3 + UV + UV + UV +Face 5529 +UV Count: 3 + UV + UV + UV +Face 5530 +UV Count: 3 + UV + UV + UV +Face 5531 +UV Count: 3 + UV + UV + UV +Face 5532 +UV Count: 3 + UV + UV + UV +Face 5533 +UV Count: 3 + UV + UV + UV +Face 5534 +UV Count: 3 + UV + UV + UV +Face 5535 +UV Count: 3 + UV + UV + UV +Face 5536 +UV Count: 3 + UV + UV + UV +Face 5537 +UV Count: 3 + UV + UV + UV +Face 5538 +UV Count: 3 + UV + UV + UV +Face 5539 +UV Count: 3 + UV + UV + UV +Face 5540 +UV Count: 3 + UV + UV + UV +Face 5541 +UV Count: 3 + UV + UV + UV +Face 5542 +UV Count: 3 + UV + UV + UV +Face 5543 +UV Count: 3 + UV + UV + UV +Face 5544 +UV Count: 3 + UV + UV + UV +Face 5545 +UV Count: 3 + UV + UV + UV +Face 5546 +UV Count: 3 + UV + UV + UV +Face 5547 +UV Count: 3 + UV + UV + UV +Face 5548 +UV Count: 3 + UV + UV + UV +Face 5549 +UV Count: 3 + UV + UV + UV +Face 5550 +UV Count: 3 + UV + UV + UV +Face 5551 +UV Count: 3 + UV + UV + UV +Face 5552 +UV Count: 3 + UV + UV + UV +Face 5553 +UV Count: 3 + UV + UV + UV +Face 5554 +UV Count: 3 + UV + UV + UV +Face 5555 +UV Count: 3 + UV + UV + UV +Face 5556 +UV Count: 3 + UV + UV + UV +Face 5557 +UV Count: 3 + UV + UV + UV +Face 5558 +UV Count: 3 + UV + UV + UV +Face 5559 +UV Count: 3 + UV + UV + UV +Face 5560 +UV Count: 3 + UV + UV + UV +Face 5561 +UV Count: 3 + UV + UV + UV +Face 5562 +UV Count: 3 + UV + UV + UV +Face 5563 +UV Count: 3 + UV + UV + UV +Face 5564 +UV Count: 3 + UV + UV + UV +Face 5565 +UV Count: 3 + UV + UV + UV +Face 5566 +UV Count: 3 + UV + UV + UV +Face 5567 +UV Count: 3 + UV + UV + UV +Face 5568 +UV Count: 3 + UV + UV + UV +Face 5569 +UV Count: 3 + UV + UV + UV +Face 5570 +UV Count: 3 + UV + UV + UV +Face 5571 +UV Count: 3 + UV + UV + UV +Face 5572 +UV Count: 3 + UV + UV + UV +Face 5573 +UV Count: 3 + UV + UV + UV +Face 5574 +UV Count: 3 + UV + UV + UV +Face 5575 +UV Count: 3 + UV + UV + UV +Face 5576 +UV Count: 3 + UV + UV + UV +Face 5577 +UV Count: 3 + UV + UV + UV +Face 5578 +UV Count: 3 + UV + UV + UV +Face 5579 +UV Count: 3 + UV + UV + UV +Face 5580 +UV Count: 3 + UV + UV + UV +Face 5581 +UV Count: 3 + UV + UV + UV +Face 5582 +UV Count: 3 + UV + UV + UV +Face 5583 +UV Count: 3 + UV + UV + UV +Face 5584 +UV Count: 3 + UV + UV + UV +Face 5585 +UV Count: 3 + UV + UV + UV +Face 5586 +UV Count: 3 + UV + UV + UV +Face 5587 +UV Count: 3 + UV + UV + UV +Face 5588 +UV Count: 3 + UV + UV + UV +Face 5589 +UV Count: 3 + UV + UV + UV +Face 5590 +UV Count: 3 + UV + UV + UV +Face 5591 +UV Count: 3 + UV + UV + UV +Face 5592 +UV Count: 3 + UV + UV + UV +Face 5593 +UV Count: 3 + UV + UV + UV +Face 5594 +UV Count: 3 + UV + UV + UV +Face 5595 +UV Count: 3 + UV + UV + UV +Face 5596 +UV Count: 3 + UV + UV + UV +Face 5597 +UV Count: 3 + UV + UV + UV +Face 5598 +UV Count: 3 + UV + UV + UV +Face 5599 +UV Count: 3 + UV + UV + UV +Face 5600 +UV Count: 3 + UV + UV + UV +Face 5601 +UV Count: 3 + UV + UV + UV +Face 5602 +UV Count: 3 + UV + UV + UV +Face 5603 +UV Count: 3 + UV + UV + UV +Face 5604 +UV Count: 3 + UV + UV + UV +Face 5605 +UV Count: 3 + UV + UV + UV +Face 5606 +UV Count: 3 + UV + UV + UV +Face 5607 +UV Count: 3 + UV + UV + UV +Face 5608 +UV Count: 3 + UV + UV + UV +Face 5609 +UV Count: 3 + UV + UV + UV +Face 5610 +UV Count: 3 + UV + UV + UV +Face 5611 +UV Count: 3 + UV + UV + UV +Face 5612 +UV Count: 3 + UV + UV + UV +Face 5613 +UV Count: 3 + UV + UV + UV +Face 5614 +UV Count: 3 + UV + UV + UV +Face 5615 +UV Count: 3 + UV + UV + UV +Face 5616 +UV Count: 3 + UV + UV + UV +Face 5617 +UV Count: 3 + UV + UV + UV +Face 5618 +UV Count: 3 + UV + UV + UV +Face 5619 +UV Count: 3 + UV + UV + UV +Face 5620 +UV Count: 3 + UV + UV + UV +Face 5621 +UV Count: 3 + UV + UV + UV +Face 5622 +UV Count: 3 + UV + UV + UV +Face 5623 +UV Count: 3 + UV + UV + UV +Face 5624 +UV Count: 3 + UV + UV + UV +Face 5625 +UV Count: 3 + UV + UV + UV +Face 5626 +UV Count: 3 + UV + UV + UV +Face 5627 +UV Count: 3 + UV + UV + UV +Face 5628 +UV Count: 3 + UV + UV + UV +Face 5629 +UV Count: 3 + UV + UV + UV +Face 5630 +UV Count: 3 + UV + UV + UV +Face 5631 +UV Count: 3 + UV + UV + UV +Face 5632 +UV Count: 3 + UV + UV + UV +Face 5633 +UV Count: 3 + UV + UV + UV +Face 5634 +UV Count: 3 + UV + UV + UV +Face 5635 +UV Count: 3 + UV + UV + UV +Face 5636 +UV Count: 3 + UV + UV + UV +Face 5637 +UV Count: 3 + UV + UV + UV +Face 5638 +UV Count: 3 + UV + UV + UV +Face 5639 +UV Count: 3 + UV + UV + UV +Face 5640 +UV Count: 3 + UV + UV + UV +Face 5641 +UV Count: 3 + UV + UV + UV +Face 5642 +UV Count: 3 + UV + UV + UV +Face 5643 +UV Count: 3 + UV + UV + UV +Face 5644 +UV Count: 3 + UV + UV + UV +Face 5645 +UV Count: 3 + UV + UV + UV +Face 5646 +UV Count: 3 + UV + UV + UV +Face 5647 +UV Count: 3 + UV + UV + UV +Face 5648 +UV Count: 3 + UV + UV + UV +Face 5649 +UV Count: 3 + UV + UV + UV +Face 5650 +UV Count: 3 + UV + UV + UV +Face 5651 +UV Count: 3 + UV + UV + UV +Face 5652 +UV Count: 3 + UV + UV + UV +Face 5653 +UV Count: 3 + UV + UV + UV +Face 5654 +UV Count: 3 + UV + UV + UV +Face 5655 +UV Count: 3 + UV + UV + UV +Face 5656 +UV Count: 3 + UV + UV + UV +Face 5657 +UV Count: 3 + UV + UV + UV +Face 5658 +UV Count: 3 + UV + UV + UV +Face 5659 +UV Count: 3 + UV + UV + UV +Face 5660 +UV Count: 3 + UV + UV + UV +Face 5661 +UV Count: 3 + UV + UV + UV +Face 5662 +UV Count: 3 + UV + UV + UV +Face 5663 +UV Count: 3 + UV + UV + UV +Face 5664 +UV Count: 3 + UV + UV + UV +Face 5665 +UV Count: 3 + UV + UV + UV +Face 5666 +UV Count: 3 + UV + UV + UV +Face 5667 +UV Count: 3 + UV + UV + UV +Face 5668 +UV Count: 3 + UV + UV + UV +Face 5669 +UV Count: 3 + UV + UV + UV +Face 5670 +UV Count: 3 + UV + UV + UV +Face 5671 +UV Count: 3 + UV + UV + UV +Face 5672 +UV Count: 3 + UV + UV + UV +Face 5673 +UV Count: 3 + UV + UV + UV +Face 5674 +UV Count: 3 + UV + UV + UV +Face 5675 +UV Count: 3 + UV + UV + UV +Face 5676 +UV Count: 3 + UV + UV + UV +Face 5677 +UV Count: 3 + UV + UV + UV +Face 5678 +UV Count: 3 + UV + UV + UV +Face 5679 +UV Count: 3 + UV + UV + UV +Face 5680 +UV Count: 3 + UV + UV + UV +Face 5681 +UV Count: 3 + UV + UV + UV +Face 5682 +UV Count: 3 + UV + UV + UV +Face 5683 +UV Count: 3 + UV + UV + UV +Face 5684 +UV Count: 3 + UV + UV + UV +Face 5685 +UV Count: 3 + UV + UV + UV +Face 5686 +UV Count: 3 + UV + UV + UV +Face 5687 +UV Count: 3 + UV + UV + UV +Face 5688 +UV Count: 3 + UV + UV + UV +Face 5689 +UV Count: 3 + UV + UV + UV +Face 5690 +UV Count: 3 + UV + UV + UV +Face 5691 +UV Count: 3 + UV + UV + UV +Face 5692 +UV Count: 3 + UV + UV + UV +Face 5693 +UV Count: 3 + UV + UV + UV +Face 5694 +UV Count: 3 + UV + UV + UV +Face 5695 +UV Count: 3 + UV + UV + UV +Face 5696 +UV Count: 3 + UV + UV + UV +Face 5697 +UV Count: 3 + UV + UV + UV +Face 5698 +UV Count: 3 + UV + UV + UV +Face 5699 +UV Count: 3 + UV + UV + UV +Face 5700 +UV Count: 3 + UV + UV + UV +Face 5701 +UV Count: 3 + UV + UV + UV +Face 5702 +UV Count: 3 + UV + UV + UV +Face 5703 +UV Count: 3 + UV + UV + UV +Face 5704 +UV Count: 3 + UV + UV + UV +Face 5705 +UV Count: 3 + UV + UV + UV +Face 5706 +UV Count: 3 + UV + UV + UV +Face 5707 +UV Count: 3 + UV + UV + UV +Face 5708 +UV Count: 3 + UV + UV + UV +Face 5709 +UV Count: 3 + UV + UV + UV +Face 5710 +UV Count: 3 + UV + UV + UV +Face 5711 +UV Count: 3 + UV + UV + UV +Face 5712 +UV Count: 3 + UV + UV + UV +Face 5713 +UV Count: 3 + UV + UV + UV +Face 5714 +UV Count: 3 + UV + UV + UV +Face 5715 +UV Count: 3 + UV + UV + UV +Face 5716 +UV Count: 3 + UV + UV + UV +Face 5717 +UV Count: 3 + UV + UV + UV +Face 5718 +UV Count: 3 + UV + UV + UV +Face 5719 +UV Count: 3 + UV + UV + UV +Face 5720 +UV Count: 3 + UV + UV + UV +Face 5721 +UV Count: 3 + UV + UV + UV +Face 5722 +UV Count: 3 + UV + UV + UV +Face 5723 +UV Count: 3 + UV + UV + UV +Face 5724 +UV Count: 3 + UV + UV + UV +Face 5725 +UV Count: 3 + UV + UV + UV +Face 5726 +UV Count: 3 + UV + UV + UV +Face 5727 +UV Count: 3 + UV + UV + UV +Face 5728 +UV Count: 3 + UV + UV + UV +Face 5729 +UV Count: 3 + UV + UV + UV +Face 5730 +UV Count: 3 + UV + UV + UV +Face 5731 +UV Count: 3 + UV + UV + UV +Face 5732 +UV Count: 3 + UV + UV + UV +Face 5733 +UV Count: 3 + UV + UV + UV +Face 5734 +UV Count: 3 + UV + UV + UV +Face 5735 +UV Count: 3 + UV + UV + UV +Face 5736 +UV Count: 3 + UV + UV + UV +Face 5737 +UV Count: 3 + UV + UV + UV +Face 5738 +UV Count: 3 + UV + UV + UV +Face 5739 +UV Count: 3 + UV + UV + UV +Face 5740 +UV Count: 3 + UV + UV + UV +Face 5741 +UV Count: 3 + UV + UV + UV +Face 5742 +UV Count: 3 + UV + UV + UV +Face 5743 +UV Count: 3 + UV + UV + UV +Face 5744 +UV Count: 3 + UV + UV + UV +Face 5745 +UV Count: 3 + UV + UV + UV +Face 5746 +UV Count: 3 + UV + UV + UV +Face 5747 +UV Count: 3 + UV + UV + UV +Face 5748 +UV Count: 3 + UV + UV + UV +Face 5749 +UV Count: 3 + UV + UV + UV +Face 5750 +UV Count: 3 + UV + UV + UV +Face 5751 +UV Count: 3 + UV + UV + UV +Face 5752 +UV Count: 3 + UV + UV + UV +Face 5753 +UV Count: 3 + UV + UV + UV +Face 5754 +UV Count: 3 + UV + UV + UV +Face 5755 +UV Count: 3 + UV + UV + UV +Face 5756 +UV Count: 3 + UV + UV + UV +Face 5757 +UV Count: 3 + UV + UV + UV +Face 5758 +UV Count: 3 + UV + UV + UV +Face 5759 +UV Count: 3 + UV + UV + UV +Face 5760 +UV Count: 3 + UV + UV + UV +Face 5761 +UV Count: 3 + UV + UV + UV +Face 5762 +UV Count: 3 + UV + UV + UV +Face 5763 +UV Count: 3 + UV + UV + UV +Face 5764 +UV Count: 3 + UV + UV + UV +Face 5765 +UV Count: 3 + UV + UV + UV +Face 5766 +UV Count: 3 + UV + UV + UV +Face 5767 +UV Count: 3 + UV + UV + UV +Face 5768 +UV Count: 3 + UV + UV + UV +Face 5769 +UV Count: 3 + UV + UV + UV +Face 5770 +UV Count: 3 + UV + UV + UV +Face 5771 +UV Count: 3 + UV + UV + UV +Face 5772 +UV Count: 3 + UV + UV + UV +Face 5773 +UV Count: 3 + UV + UV + UV +Face 5774 +UV Count: 3 + UV + UV + UV +Face 5775 +UV Count: 3 + UV + UV + UV +Face 5776 +UV Count: 3 + UV + UV + UV +Face 5777 +UV Count: 3 + UV + UV + UV +Face 5778 +UV Count: 3 + UV + UV + UV +Face 5779 +UV Count: 3 + UV + UV + UV +Face 5780 +UV Count: 3 + UV + UV + UV +Face 5781 +UV Count: 3 + UV + UV + UV +Face 5782 +UV Count: 3 + UV + UV + UV +Face 5783 +UV Count: 3 + UV + UV + UV +Face 5784 +UV Count: 3 + UV + UV + UV +Face 5785 +UV Count: 3 + UV + UV + UV +Face 5786 +UV Count: 3 + UV + UV + UV +Face 5787 +UV Count: 3 + UV + UV + UV +Face 5788 +UV Count: 3 + UV + UV + UV +Face 5789 +UV Count: 3 + UV + UV + UV +Face 5790 +UV Count: 3 + UV + UV + UV +Face 5791 +UV Count: 3 + UV + UV + UV +Face 5792 +UV Count: 3 + UV + UV + UV +Face 5793 +UV Count: 3 + UV + UV + UV +Face 5794 +UV Count: 3 + UV + UV + UV +Face 5795 +UV Count: 3 + UV + UV + UV +Face 5796 +UV Count: 3 + UV + UV + UV +Face 5797 +UV Count: 3 + UV + UV + UV +Face 5798 +UV Count: 3 + UV + UV + UV +Face 5799 +UV Count: 3 + UV + UV + UV +Face 5800 +UV Count: 3 + UV + UV + UV +Face 5801 +UV Count: 3 + UV + UV + UV +Face 5802 +UV Count: 3 + UV + UV + UV +Face 5803 +UV Count: 3 + UV + UV + UV +Face 5804 +UV Count: 3 + UV + UV + UV +Face 5805 +UV Count: 3 + UV + UV + UV +Face 5806 +UV Count: 3 + UV + UV + UV +Face 5807 +UV Count: 3 + UV + UV + UV +Face 5808 +UV Count: 3 + UV + UV + UV +Face 5809 +UV Count: 3 + UV + UV + UV +Face 5810 +UV Count: 3 + UV + UV + UV +Face 5811 +UV Count: 3 + UV + UV + UV +Face 5812 +UV Count: 3 + UV + UV + UV +Face 5813 +UV Count: 3 + UV + UV + UV +Face 5814 +UV Count: 3 + UV + UV + UV +Face 5815 +UV Count: 3 + UV + UV + UV +Face 5816 +UV Count: 3 + UV + UV + UV +Face 5817 +UV Count: 3 + UV + UV + UV +Face 5818 +UV Count: 3 + UV + UV + UV +Face 5819 +UV Count: 3 + UV + UV + UV +Face 5820 +UV Count: 3 + UV + UV + UV +Face 5821 +UV Count: 3 + UV + UV + UV +Face 5822 +UV Count: 3 + UV + UV + UV +Face 5823 +UV Count: 3 + UV + UV + UV +Face 5824 +UV Count: 3 + UV + UV + UV +Face 5825 +UV Count: 3 + UV + UV + UV +Face 5826 +UV Count: 3 + UV + UV + UV +Face 5827 +UV Count: 3 + UV + UV + UV +Face 5828 +UV Count: 3 + UV + UV + UV +Face 5829 +UV Count: 3 + UV + UV + UV +Face 5830 +UV Count: 3 + UV + UV + UV +Face 5831 +UV Count: 3 + UV + UV + UV +Face 5832 +UV Count: 3 + UV + UV + UV +Face 5833 +UV Count: 3 + UV + UV + UV +Face 5834 +UV Count: 3 + UV + UV + UV +Face 5835 +UV Count: 3 + UV + UV + UV +Face 5836 +UV Count: 3 + UV + UV + UV +Face 5837 +UV Count: 3 + UV + UV + UV +Face 5838 +UV Count: 3 + UV + UV + UV +Face 5839 +UV Count: 3 + UV + UV + UV +Face 5840 +UV Count: 3 + UV + UV + UV +Face 5841 +UV Count: 3 + UV + UV + UV +Face 5842 +UV Count: 3 + UV + UV + UV +Face 5843 +UV Count: 3 + UV + UV + UV +Face 5844 +UV Count: 3 + UV + UV + UV +Face 5845 +UV Count: 3 + UV + UV + UV +Face 5846 +UV Count: 3 + UV + UV + UV +Face 5847 +UV Count: 3 + UV + UV + UV +Face 5848 +UV Count: 3 + UV + UV + UV +Face 5849 +UV Count: 3 + UV + UV + UV +Face 5850 +UV Count: 3 + UV + UV + UV +Face 5851 +UV Count: 3 + UV + UV + UV +Face 5852 +UV Count: 3 + UV + UV + UV +Face 5853 +UV Count: 3 + UV + UV + UV +Face 5854 +UV Count: 3 + UV + UV + UV +Face 5855 +UV Count: 3 + UV + UV + UV +Face 5856 +UV Count: 3 + UV + UV + UV +Face 5857 +UV Count: 3 + UV + UV + UV +Face 5858 +UV Count: 3 + UV + UV + UV +Face 5859 +UV Count: 3 + UV + UV + UV +Face 5860 +UV Count: 3 + UV + UV + UV +Face 5861 +UV Count: 3 + UV + UV + UV +Face 5862 +UV Count: 3 + UV + UV + UV +Face 5863 +UV Count: 3 + UV + UV + UV +Face 5864 +UV Count: 3 + UV + UV + UV +Face 5865 +UV Count: 3 + UV + UV + UV +Face 5866 +UV Count: 3 + UV + UV + UV +Face 5867 +UV Count: 3 + UV + UV + UV +Face 5868 +UV Count: 3 + UV + UV + UV +Face 5869 +UV Count: 3 + UV + UV + UV +Face 5870 +UV Count: 3 + UV + UV + UV +Face 5871 +UV Count: 3 + UV + UV + UV +Face 5872 +UV Count: 3 + UV + UV + UV +Face 5873 +UV Count: 3 + UV + UV + UV +Face 5874 +UV Count: 3 + UV + UV + UV +Face 5875 +UV Count: 3 + UV + UV + UV +Face 5876 +UV Count: 3 + UV + UV + UV +Face 5877 +UV Count: 3 + UV + UV + UV +Face 5878 +UV Count: 3 + UV + UV + UV +Face 5879 +UV Count: 3 + UV + UV + UV +Face 5880 +UV Count: 3 + UV + UV + UV +Face 5881 +UV Count: 3 + UV + UV + UV +Face 5882 +UV Count: 3 + UV + UV + UV +Face 5883 +UV Count: 3 + UV + UV + UV +Face 5884 +UV Count: 3 + UV + UV + UV +Face 5885 +UV Count: 3 + UV + UV + UV +Face 5886 +UV Count: 3 + UV + UV + UV +Face 5887 +UV Count: 3 + UV + UV + UV +Face 5888 +UV Count: 3 + UV + UV + UV +Face 5889 +UV Count: 3 + UV + UV + UV +Face 5890 +UV Count: 3 + UV + UV + UV +Face 5891 +UV Count: 3 + UV + UV + UV +Face 5892 +UV Count: 3 + UV + UV + UV +Face 5893 +UV Count: 3 + UV + UV + UV +Face 5894 +UV Count: 3 + UV + UV + UV +Face 5895 +UV Count: 3 + UV + UV + UV +Face 5896 +UV Count: 3 + UV + UV + UV +Face 5897 +UV Count: 3 + UV + UV + UV +Face 5898 +UV Count: 3 + UV + UV + UV +Face 5899 +UV Count: 3 + UV + UV + UV +Face 5900 +UV Count: 3 + UV + UV + UV +Face 5901 +UV Count: 3 + UV + UV + UV +Face 5902 +UV Count: 3 + UV + UV + UV +Face 5903 +UV Count: 3 + UV + UV + UV +Face 5904 +UV Count: 3 + UV + UV + UV +Face 5905 +UV Count: 3 + UV + UV + UV +Face 5906 +UV Count: 3 + UV + UV + UV +Face 5907 +UV Count: 3 + UV + UV + UV +Face 5908 +UV Count: 3 + UV + UV + UV +Face 5909 +UV Count: 3 + UV + UV + UV +Face 5910 +UV Count: 3 + UV + UV + UV +Face 5911 +UV Count: 3 + UV + UV + UV +Face 5912 +UV Count: 3 + UV + UV + UV +Face 5913 +UV Count: 3 + UV + UV + UV +Face 5914 +UV Count: 3 + UV + UV + UV +Face 5915 +UV Count: 3 + UV + UV + UV +Face 5916 +UV Count: 3 + UV + UV + UV +Face 5917 +UV Count: 3 + UV + UV + UV +Face 5918 +UV Count: 3 + UV + UV + UV +Face 5919 +UV Count: 3 + UV + UV + UV +Face 5920 +UV Count: 3 + UV + UV + UV +Face 5921 +UV Count: 3 + UV + UV + UV +Face 5922 +UV Count: 3 + UV + UV + UV +Face 5923 +UV Count: 3 + UV + UV + UV +Face 5924 +UV Count: 3 + UV + UV + UV +Face 5925 +UV Count: 3 + UV + UV + UV +Face 5926 +UV Count: 3 + UV + UV + UV +Face 5927 +UV Count: 3 + UV + UV + UV +Face 5928 +UV Count: 3 + UV + UV + UV +Face 5929 +UV Count: 3 + UV + UV + UV +Face 5930 +UV Count: 3 + UV + UV + UV +Face 5931 +UV Count: 3 + UV + UV + UV +Face 5932 +UV Count: 3 + UV + UV + UV +Face 5933 +UV Count: 3 + UV + UV + UV +Face 5934 +UV Count: 3 + UV + UV + UV +Face 5935 +UV Count: 3 + UV + UV + UV +Face 5936 +UV Count: 3 + UV + UV + UV +Face 5937 +UV Count: 3 + UV + UV + UV +Face 5938 +UV Count: 3 + UV + UV + UV +Face 5939 +UV Count: 3 + UV + UV + UV +Face 5940 +UV Count: 3 + UV + UV + UV +Face 5941 +UV Count: 3 + UV + UV + UV +Face 5942 +UV Count: 3 + UV + UV + UV +Face 5943 +UV Count: 3 + UV + UV + UV +Face 5944 +UV Count: 3 + UV + UV + UV +Face 5945 +UV Count: 3 + UV + UV + UV +Face 5946 +UV Count: 3 + UV + UV + UV +Face 5947 +UV Count: 3 + UV + UV + UV +Face 5948 +UV Count: 3 + UV + UV + UV +Face 5949 +UV Count: 3 + UV + UV + UV +Face 5950 +UV Count: 3 + UV + UV + UV +Face 5951 +UV Count: 3 + UV + UV + UV +Face 5952 +UV Count: 3 + UV + UV + UV +Face 5953 +UV Count: 3 + UV + UV + UV +Face 5954 +UV Count: 3 + UV + UV + UV +Face 5955 +UV Count: 3 + UV + UV + UV +Face 5956 +UV Count: 3 + UV + UV + UV +Face 5957 +UV Count: 3 + UV + UV + UV +Face 5958 +UV Count: 3 + UV + UV + UV +Face 5959 +UV Count: 3 + UV + UV + UV +Face 5960 +UV Count: 3 + UV + UV + UV +Face 5961 +UV Count: 3 + UV + UV + UV +Face 5962 +UV Count: 3 + UV + UV + UV +Face 5963 +UV Count: 3 + UV + UV + UV +Face 5964 +UV Count: 3 + UV + UV + UV +Face 5965 +UV Count: 3 + UV + UV + UV +Face 5966 +UV Count: 3 + UV + UV + UV +Face 5967 +UV Count: 3 + UV + UV + UV +Face 5968 +UV Count: 3 + UV + UV + UV +Face 5969 +UV Count: 3 + UV + UV + UV +Face 5970 +UV Count: 3 + UV + UV + UV +Face 5971 +UV Count: 3 + UV + UV + UV +Face 5972 +UV Count: 3 + UV + UV + UV +Face 5973 +UV Count: 3 + UV + UV + UV +Face 5974 +UV Count: 3 + UV + UV + UV +Face 5975 +UV Count: 3 + UV + UV + UV +Face 5976 +UV Count: 3 + UV + UV + UV +Face 5977 +UV Count: 3 + UV + UV + UV +Face 5978 +UV Count: 3 + UV + UV + UV +Face 5979 +UV Count: 3 + UV + UV + UV +Face 5980 +UV Count: 3 + UV + UV + UV +Face 5981 +UV Count: 3 + UV + UV + UV +Face 5982 +UV Count: 3 + UV + UV + UV +Face 5983 +UV Count: 3 + UV + UV + UV +Face 5984 +UV Count: 3 + UV + UV + UV +Face 5985 +UV Count: 3 + UV + UV + UV +Face 5986 +UV Count: 3 + UV + UV + UV +Face 5987 +UV Count: 3 + UV + UV + UV +Face 5988 +UV Count: 3 + UV + UV + UV +Face 5989 +UV Count: 3 + UV + UV + UV +Face 5990 +UV Count: 3 + UV + UV + UV +Face 5991 +UV Count: 3 + UV + UV + UV +Face 5992 +UV Count: 3 + UV + UV + UV +Face 5993 +UV Count: 3 + UV + UV + UV +Face 5994 +UV Count: 3 + UV + UV + UV +Face 5995 +UV Count: 3 + UV + UV + UV +Face 5996 +UV Count: 3 + UV + UV + UV +Face 5997 +UV Count: 3 + UV + UV + UV +Face 5998 +UV Count: 3 + UV + UV + UV +Face 5999 +UV Count: 3 + UV + UV + UV +Face 6000 +UV Count: 3 + UV + UV + UV +Face 6001 +UV Count: 3 + UV + UV + UV +Face 6002 +UV Count: 3 + UV + UV + UV +Face 6003 +UV Count: 3 + UV + UV + UV +Face 6004 +UV Count: 3 + UV + UV + UV +Face 6005 +UV Count: 3 + UV + UV + UV +Face 6006 +UV Count: 3 + UV + UV + UV +Face 6007 +UV Count: 3 + UV + UV + UV +Face 6008 +UV Count: 3 + UV + UV + UV +Face 6009 +UV Count: 3 + UV + UV + UV +Face 6010 +UV Count: 3 + UV + UV + UV +Face 6011 +UV Count: 3 + UV + UV + UV +Face 6012 +UV Count: 3 + UV + UV + UV +Face 6013 +UV Count: 3 + UV + UV + UV +Face 6014 +UV Count: 3 + UV + UV + UV +Face 6015 +UV Count: 3 + UV + UV + UV +Face 6016 +UV Count: 3 + UV + UV + UV +Face 6017 +UV Count: 3 + UV + UV + UV +Face 6018 +UV Count: 3 + UV + UV + UV +Face 6019 +UV Count: 3 + UV + UV + UV +Face 6020 +UV Count: 3 + UV + UV + UV +Face 6021 +UV Count: 3 + UV + UV + UV +Face 6022 +UV Count: 3 + UV + UV + UV +Face 6023 +UV Count: 3 + UV + UV + UV +Face 6024 +UV Count: 3 + UV + UV + UV +Face 6025 +UV Count: 3 + UV + UV + UV +Face 6026 +UV Count: 3 + UV + UV + UV +Face 6027 +UV Count: 3 + UV + UV + UV +Face 6028 +UV Count: 3 + UV + UV + UV +Face 6029 +UV Count: 3 + UV + UV + UV +Face 6030 +UV Count: 3 + UV + UV + UV +Face 6031 +UV Count: 3 + UV + UV + UV +Face 6032 +UV Count: 3 + UV + UV + UV +Face 6033 +UV Count: 3 + UV + UV + UV +Face 6034 +UV Count: 3 + UV + UV + UV +Face 6035 +UV Count: 3 + UV + UV + UV +Face 6036 +UV Count: 3 + UV + UV + UV +Face 6037 +UV Count: 3 + UV + UV + UV +Face 6038 +UV Count: 3 + UV + UV + UV +Face 6039 +UV Count: 3 + UV + UV + UV +Face 6040 +UV Count: 3 + UV + UV + UV +Face 6041 +UV Count: 3 + UV + UV + UV +Face 6042 +UV Count: 3 + UV + UV + UV +Face 6043 +UV Count: 3 + UV + UV + UV +Face 6044 +UV Count: 3 + UV + UV + UV +Face 6045 +UV Count: 3 + UV + UV + UV +Face 6046 +UV Count: 3 + UV + UV + UV +Face 6047 +UV Count: 3 + UV + UV + UV +Face 6048 +UV Count: 3 + UV + UV + UV +Face 6049 +UV Count: 3 + UV + UV + UV +Face 6050 +UV Count: 3 + UV + UV + UV +Face 6051 +UV Count: 3 + UV + UV + UV +Face 6052 +UV Count: 3 + UV + UV + UV +Face 6053 +UV Count: 3 + UV + UV + UV +Face 6054 +UV Count: 3 + UV + UV + UV +Face 6055 +UV Count: 3 + UV + UV + UV +Face 6056 +UV Count: 3 + UV + UV + UV +Face 6057 +UV Count: 3 + UV + UV + UV +Face 6058 +UV Count: 3 + UV + UV + UV +Face 6059 +UV Count: 3 + UV + UV + UV +Face 6060 +UV Count: 3 + UV + UV + UV +Face 6061 +UV Count: 3 + UV + UV + UV +Face 6062 +UV Count: 3 + UV + UV + UV +Face 6063 +UV Count: 3 + UV + UV + UV +Face 6064 +UV Count: 3 + UV + UV + UV +Face 6065 +UV Count: 3 + UV + UV + UV +Face 6066 +UV Count: 3 + UV + UV + UV +Face 6067 +UV Count: 3 + UV + UV + UV +Face 6068 +UV Count: 3 + UV + UV + UV +Face 6069 +UV Count: 3 + UV + UV + UV +Face 6070 +UV Count: 3 + UV + UV + UV +Face 6071 +UV Count: 3 + UV + UV + UV +Face 6072 +UV Count: 3 + UV + UV + UV +Face 6073 +UV Count: 3 + UV + UV + UV +Face 6074 +UV Count: 3 + UV + UV + UV +Face 6075 +UV Count: 3 + UV + UV + UV +Face 6076 +UV Count: 3 + UV + UV + UV +Face 6077 +UV Count: 3 + UV + UV + UV +Face 6078 +UV Count: 3 + UV + UV + UV +Face 6079 +UV Count: 3 + UV + UV + UV +Face 6080 +UV Count: 3 + UV + UV + UV +Face 6081 +UV Count: 3 + UV + UV + UV +Face 6082 +UV Count: 3 + UV + UV + UV +Face 6083 +UV Count: 3 + UV + UV + UV +Face 6084 +UV Count: 3 + UV + UV + UV +Face 6085 +UV Count: 3 + UV + UV + UV +Face 6086 +UV Count: 3 + UV + UV + UV +Face 6087 +UV Count: 3 + UV + UV + UV +Face 6088 +UV Count: 3 + UV + UV + UV +Face 6089 +UV Count: 3 + UV + UV + UV +Face 6090 +UV Count: 3 + UV + UV + UV +Face 6091 +UV Count: 3 + UV + UV + UV +Face 6092 +UV Count: 3 + UV + UV + UV +Face 6093 +UV Count: 3 + UV + UV + UV +Face 6094 +UV Count: 3 + UV + UV + UV +Face 6095 +UV Count: 3 + UV + UV + UV +Face 6096 +UV Count: 3 + UV + UV + UV +Face 6097 +UV Count: 3 + UV + UV + UV +Face 6098 +UV Count: 3 + UV + UV + UV +Face 6099 +UV Count: 3 + UV + UV + UV +Face 6100 +UV Count: 3 + UV + UV + UV +Face 6101 +UV Count: 3 + UV + UV + UV +Face 6102 +UV Count: 3 + UV + UV + UV +Face 6103 +UV Count: 3 + UV + UV + UV +Face 6104 +UV Count: 3 + UV + UV + UV +Face 6105 +UV Count: 3 + UV + UV + UV +Face 6106 +UV Count: 3 + UV + UV + UV +Face 6107 +UV Count: 3 + UV + UV + UV +Face 6108 +UV Count: 3 + UV + UV + UV +Face 6109 +UV Count: 3 + UV + UV + UV +Face 6110 +UV Count: 3 + UV + UV + UV +Face 6111 +UV Count: 3 + UV + UV + UV +Face 6112 +UV Count: 3 + UV + UV + UV +Face 6113 +UV Count: 3 + UV + UV + UV +Face 6114 +UV Count: 3 + UV + UV + UV +Face 6115 +UV Count: 3 + UV + UV + UV +Face 6116 +UV Count: 3 + UV + UV + UV +Face 6117 +UV Count: 3 + UV + UV + UV +Face 6118 +UV Count: 3 + UV + UV + UV +Face 6119 +UV Count: 3 + UV + UV + UV +Face 6120 +UV Count: 3 + UV + UV + UV +Face 6121 +UV Count: 3 + UV + UV + UV +Face 6122 +UV Count: 3 + UV + UV + UV +Face 6123 +UV Count: 3 + UV + UV + UV +Face 6124 +UV Count: 3 + UV + UV + UV +Face 6125 +UV Count: 3 + UV + UV + UV +Face 6126 +UV Count: 3 + UV + UV + UV +Face 6127 +UV Count: 3 + UV + UV + UV +Face 6128 +UV Count: 3 + UV + UV + UV +Face 6129 +UV Count: 3 + UV + UV + UV +Face 6130 +UV Count: 3 + UV + UV + UV +Face 6131 +UV Count: 3 + UV + UV + UV +Face 6132 +UV Count: 3 + UV + UV + UV +Face 6133 +UV Count: 3 + UV + UV + UV +Face 6134 +UV Count: 3 + UV + UV + UV +Face 6135 +UV Count: 3 + UV + UV + UV +Face 6136 +UV Count: 3 + UV + UV + UV +Face 6137 +UV Count: 3 + UV + UV + UV +Face 6138 +UV Count: 3 + UV + UV + UV +Face 6139 +UV Count: 3 + UV + UV + UV +Face 6140 +UV Count: 3 + UV + UV + UV +Face 6141 +UV Count: 3 + UV + UV + UV +Face 6142 +UV Count: 3 + UV + UV + UV +Face 6143 +UV Count: 3 + UV + UV + UV +Face 6144 +UV Count: 3 + UV + UV + UV +Face 6145 +UV Count: 3 + UV + UV + UV +Face 6146 +UV Count: 3 + UV + UV + UV +Face 6147 +UV Count: 3 + UV + UV + UV +Face 6148 +UV Count: 3 + UV + UV + UV +Face 6149 +UV Count: 3 + UV + UV + UV +Face 6150 +UV Count: 3 + UV + UV + UV +Face 6151 +UV Count: 3 + UV + UV + UV +Face 6152 +UV Count: 3 + UV + UV + UV +Face 6153 +UV Count: 3 + UV + UV + UV +Face 6154 +UV Count: 3 + UV + UV + UV +Face 6155 +UV Count: 3 + UV + UV + UV +Face 6156 +UV Count: 3 + UV + UV + UV +Face 6157 +UV Count: 3 + UV + UV + UV +Face 6158 +UV Count: 3 + UV + UV + UV +Face 6159 +UV Count: 3 + UV + UV + UV +Face 6160 +UV Count: 3 + UV + UV + UV +Face 6161 +UV Count: 3 + UV + UV + UV +Face 6162 +UV Count: 3 + UV + UV + UV +Face 6163 +UV Count: 3 + UV + UV + UV +Face 6164 +UV Count: 3 + UV + UV + UV +Face 6165 +UV Count: 3 + UV + UV + UV +Face 6166 +UV Count: 3 + UV + UV + UV +Face 6167 +UV Count: 3 + UV + UV + UV +Face 6168 +UV Count: 3 + UV + UV + UV +Face 6169 +UV Count: 3 + UV + UV + UV +Face 6170 +UV Count: 3 + UV + UV + UV +Face 6171 +UV Count: 3 + UV + UV + UV +Face 6172 +UV Count: 3 + UV + UV + UV +Face 6173 +UV Count: 3 + UV + UV + UV +Face 6174 +UV Count: 3 + UV + UV + UV +Face 6175 +UV Count: 3 + UV + UV + UV +Face 6176 +UV Count: 3 + UV + UV + UV +Face 6177 +UV Count: 3 + UV + UV + UV +Face 6178 +UV Count: 3 + UV + UV + UV +Face 6179 +UV Count: 3 + UV + UV + UV +Face 6180 +UV Count: 3 + UV + UV + UV +Face 6181 +UV Count: 3 + UV + UV + UV +Face 6182 +UV Count: 3 + UV + UV + UV +Face 6183 +UV Count: 3 + UV + UV + UV +Face 6184 +UV Count: 3 + UV + UV + UV +Face 6185 +UV Count: 3 + UV + UV + UV +Face 6186 +UV Count: 3 + UV + UV + UV +Face 6187 +UV Count: 3 + UV + UV + UV +Face 6188 +UV Count: 3 + UV + UV + UV +Face 6189 +UV Count: 3 + UV + UV + UV +Face 6190 +UV Count: 3 + UV + UV + UV +Face 6191 +UV Count: 3 + UV + UV + UV +Face 6192 +UV Count: 3 + UV + UV + UV +Face 6193 +UV Count: 3 + UV + UV + UV +Face 6194 +UV Count: 3 + UV + UV + UV +Face 6195 +UV Count: 3 + UV + UV + UV +Face 6196 +UV Count: 3 + UV + UV + UV +Face 6197 +UV Count: 3 + UV + UV + UV +Face 6198 +UV Count: 3 + UV + UV + UV +Face 6199 +UV Count: 3 + UV + UV + UV +Face 6200 +UV Count: 3 + UV + UV + UV +Face 6201 +UV Count: 3 + UV + UV + UV +Face 6202 +UV Count: 3 + UV + UV + UV +Face 6203 +UV Count: 3 + UV + UV + UV +Face 6204 +UV Count: 3 + UV + UV + UV +Face 6205 +UV Count: 3 + UV + UV + UV +Face 6206 +UV Count: 3 + UV + UV + UV +Face 6207 +UV Count: 3 + UV + UV + UV +Face 6208 +UV Count: 3 + UV + UV + UV +Face 6209 +UV Count: 3 + UV + UV + UV +Face 6210 +UV Count: 3 + UV + UV + UV +Face 6211 +UV Count: 3 + UV + UV + UV +Face 6212 +UV Count: 3 + UV + UV + UV +Face 6213 +UV Count: 3 + UV + UV + UV +Face 6214 +UV Count: 3 + UV + UV + UV +Face 6215 +UV Count: 3 + UV + UV + UV +Face 6216 +UV Count: 3 + UV + UV + UV +Face 6217 +UV Count: 3 + UV + UV + UV +Face 6218 +UV Count: 3 + UV + UV + UV +Face 6219 +UV Count: 3 + UV + UV + UV +Face 6220 +UV Count: 3 + UV + UV + UV +Face 6221 +UV Count: 3 + UV + UV + UV +Face 6222 +UV Count: 3 + UV + UV + UV +Face 6223 +UV Count: 3 + UV + UV + UV +Face 6224 +UV Count: 3 + UV + UV + UV +Face 6225 +UV Count: 3 + UV + UV + UV +Face 6226 +UV Count: 3 + UV + UV + UV +Face 6227 +UV Count: 3 + UV + UV + UV +Face 6228 +UV Count: 3 + UV + UV + UV +Face 6229 +UV Count: 3 + UV + UV + UV +Face 6230 +UV Count: 3 + UV + UV + UV +Face 6231 +UV Count: 3 + UV + UV + UV +Face 6232 +UV Count: 3 + UV + UV + UV +Face 6233 +UV Count: 3 + UV + UV + UV +Face 6234 +UV Count: 3 + UV + UV + UV +Face 6235 +UV Count: 3 + UV + UV + UV +Face 6236 +UV Count: 3 + UV + UV + UV +Face 6237 +UV Count: 3 + UV + UV + UV +Face 6238 +UV Count: 3 + UV + UV + UV +Face 6239 +UV Count: 3 + UV + UV + UV +Face 6240 +UV Count: 3 + UV + UV + UV +Face 6241 +UV Count: 3 + UV + UV + UV +Face 6242 +UV Count: 3 + UV + UV + UV +Face 6243 +UV Count: 3 + UV + UV + UV +Face 6244 +UV Count: 3 + UV + UV + UV +Face 6245 +UV Count: 3 + UV + UV + UV +Face 6246 +UV Count: 3 + UV + UV + UV +Face 6247 +UV Count: 3 + UV + UV + UV +Face 6248 +UV Count: 3 + UV + UV + UV +Face 6249 +UV Count: 3 + UV + UV + UV +Face 6250 +UV Count: 3 + UV + UV + UV +Face 6251 +UV Count: 3 + UV + UV + UV +Face 6252 +UV Count: 3 + UV + UV + UV +Face 6253 +UV Count: 3 + UV + UV + UV +Face 6254 +UV Count: 3 + UV + UV + UV +Face 6255 +UV Count: 3 + UV + UV + UV +Face 6256 +UV Count: 3 + UV + UV + UV +Face 6257 +UV Count: 3 + UV + UV + UV +Face 6258 +UV Count: 3 + UV + UV + UV +Face 6259 +UV Count: 3 + UV + UV + UV +Face 6260 +UV Count: 3 + UV + UV + UV +Face 6261 +UV Count: 3 + UV + UV + UV +Face 6262 +UV Count: 3 + UV + UV + UV +Face 6263 +UV Count: 3 + UV + UV + UV +Face 6264 +UV Count: 3 + UV + UV + UV +Face 6265 +UV Count: 3 + UV + UV + UV +Face 6266 +UV Count: 3 + UV + UV + UV +Face 6267 +UV Count: 3 + UV + UV + UV +Face 6268 +UV Count: 3 + UV + UV + UV +Face 6269 +UV Count: 3 + UV + UV + UV +Face 6270 +UV Count: 3 + UV + UV + UV +Face 6271 +UV Count: 3 + UV + UV + UV +Face 6272 +UV Count: 3 + UV + UV + UV +Face 6273 +UV Count: 3 + UV + UV + UV +Face 6274 +UV Count: 3 + UV + UV + UV +Face 6275 +UV Count: 3 + UV + UV + UV +Face 6276 +UV Count: 3 + UV + UV + UV +Face 6277 +UV Count: 3 + UV + UV + UV +Face 6278 +UV Count: 3 + UV + UV + UV +Face 6279 +UV Count: 3 + UV + UV + UV +Face 6280 +UV Count: 3 + UV + UV + UV +Face 6281 +UV Count: 3 + UV + UV + UV +Face 6282 +UV Count: 3 + UV + UV + UV +Face 6283 +UV Count: 3 + UV + UV + UV +Face 6284 +UV Count: 3 + UV + UV + UV +Face 6285 +UV Count: 3 + UV + UV + UV +Face 6286 +UV Count: 3 + UV + UV + UV +Face 6287 +UV Count: 3 + UV + UV + UV +Face 6288 +UV Count: 3 + UV + UV + UV +Face 6289 +UV Count: 3 + UV + UV + UV +Face 6290 +UV Count: 3 + UV + UV + UV +Face 6291 +UV Count: 3 + UV + UV + UV +Face 6292 +UV Count: 3 + UV + UV + UV +Face 6293 +UV Count: 3 + UV + UV + UV +Face 6294 +UV Count: 3 + UV + UV + UV +Face 6295 +UV Count: 3 + UV + UV + UV +Face 6296 +UV Count: 3 + UV + UV + UV +Face 6297 +UV Count: 3 + UV + UV + UV +Face 6298 +UV Count: 3 + UV + UV + UV +Face 6299 +UV Count: 3 + UV + UV + UV +Face 6300 +UV Count: 3 + UV + UV + UV +Face 6301 +UV Count: 3 + UV + UV + UV +Face 6302 +UV Count: 3 + UV + UV + UV +Face 6303 +UV Count: 3 + UV + UV + UV +Face 6304 +UV Count: 3 + UV + UV + UV +Face 6305 +UV Count: 3 + UV + UV + UV +Face 6306 +UV Count: 3 + UV + UV + UV +Face 6307 +UV Count: 3 + UV + UV + UV +Face 6308 +UV Count: 3 + UV + UV + UV +Face 6309 +UV Count: 3 + UV + UV + UV +Face 6310 +UV Count: 3 + UV + UV + UV +Face 6311 +UV Count: 3 + UV + UV + UV +Face 6312 +UV Count: 3 + UV + UV + UV +Face 6313 +UV Count: 3 + UV + UV + UV +Face 6314 +UV Count: 3 + UV + UV + UV +Face 6315 +UV Count: 3 + UV + UV + UV +Face 6316 +UV Count: 3 + UV + UV + UV +Face 6317 +UV Count: 3 + UV + UV + UV +Face 6318 +UV Count: 3 + UV + UV + UV +Face 6319 +UV Count: 3 + UV + UV + UV +Face 6320 +UV Count: 3 + UV + UV + UV +Face 6321 +UV Count: 3 + UV + UV + UV +Face 6322 +UV Count: 3 + UV + UV + UV +Face 6323 +UV Count: 3 + UV + UV + UV +Face 6324 +UV Count: 3 + UV + UV + UV +Face 6325 +UV Count: 3 + UV + UV + UV +Face 6326 +UV Count: 3 + UV + UV + UV +Face 6327 +UV Count: 3 + UV + UV + UV +Face 6328 +UV Count: 3 + UV + UV + UV +Face 6329 +UV Count: 3 + UV + UV + UV +Face 6330 +UV Count: 3 + UV + UV + UV +Face 6331 +UV Count: 3 + UV + UV + UV +Face 6332 +UV Count: 3 + UV + UV + UV +Face 6333 +UV Count: 3 + UV + UV + UV +Face 6334 +UV Count: 3 + UV + UV + UV +Face 6335 +UV Count: 3 + UV + UV + UV +Face 6336 +UV Count: 3 + UV + UV + UV +Face 6337 +UV Count: 3 + UV + UV + UV +Face 6338 +UV Count: 3 + UV + UV + UV +Face 6339 +UV Count: 3 + UV + UV + UV +Face 6340 +UV Count: 3 + UV + UV + UV +Face 6341 +UV Count: 3 + UV + UV + UV +Face 6342 +UV Count: 3 + UV + UV + UV +Face 6343 +UV Count: 3 + UV + UV + UV +Face 6344 +UV Count: 3 + UV + UV + UV +Face 6345 +UV Count: 3 + UV + UV + UV +Face 6346 +UV Count: 3 + UV + UV + UV +Face 6347 +UV Count: 3 + UV + UV + UV +Face 6348 +UV Count: 3 + UV + UV + UV +Face 6349 +UV Count: 3 + UV + UV + UV +Face 6350 +UV Count: 3 + UV + UV + UV +Face 6351 +UV Count: 3 + UV + UV + UV +Face 6352 +UV Count: 3 + UV + UV + UV +Face 6353 +UV Count: 3 + UV + UV + UV +Face 6354 +UV Count: 3 + UV + UV + UV +Face 6355 +UV Count: 3 + UV + UV + UV +Face 6356 +UV Count: 3 + UV + UV + UV +Face 6357 +UV Count: 3 + UV + UV + UV +Face 6358 +UV Count: 3 + UV + UV + UV +Face 6359 +UV Count: 3 + UV + UV + UV +Face 6360 +UV Count: 3 + UV + UV + UV +Face 6361 +UV Count: 3 + UV + UV + UV +Face 6362 +UV Count: 3 + UV + UV + UV +Face 6363 +UV Count: 3 + UV + UV + UV +Face 6364 +UV Count: 3 + UV + UV + UV +Face 6365 +UV Count: 3 + UV + UV + UV +Face 6366 +UV Count: 3 + UV + UV + UV +Face 6367 +UV Count: 3 + UV + UV + UV +Face 6368 +UV Count: 3 + UV + UV + UV +Face 6369 +UV Count: 3 + UV + UV + UV +Face 6370 +UV Count: 3 + UV + UV + UV +Face 6371 +UV Count: 3 + UV + UV + UV +Face 6372 +UV Count: 3 + UV + UV + UV +Face 6373 +UV Count: 3 + UV + UV + UV +Face 6374 +UV Count: 3 + UV + UV + UV +Face 6375 +UV Count: 3 + UV + UV + UV +Face 6376 +UV Count: 3 + UV + UV + UV +Face 6377 +UV Count: 3 + UV + UV + UV +Face 6378 +UV Count: 3 + UV + UV + UV +Face 6379 +UV Count: 3 + UV + UV + UV +Face 6380 +UV Count: 3 + UV + UV + UV +Face 6381 +UV Count: 3 + UV + UV + UV +Face 6382 +UV Count: 3 + UV + UV + UV +Face 6383 +UV Count: 3 + UV + UV + UV +Face 6384 +UV Count: 3 + UV + UV + UV +Face 6385 +UV Count: 3 + UV + UV + UV +Face 6386 +UV Count: 3 + UV + UV + UV +Face 6387 +UV Count: 3 + UV + UV + UV +Face 6388 +UV Count: 3 + UV + UV + UV +Face 6389 +UV Count: 3 + UV + UV + UV +Face 6390 +UV Count: 3 + UV + UV + UV +Face 6391 +UV Count: 3 + UV + UV + UV +Face 6392 +UV Count: 3 + UV + UV + UV +Face 6393 +UV Count: 3 + UV + UV + UV +Face 6394 +UV Count: 3 + UV + UV + UV +Face 6395 +UV Count: 3 + UV + UV + UV +Face 6396 +UV Count: 3 + UV + UV + UV +Face 6397 +UV Count: 3 + UV + UV + UV +Face 6398 +UV Count: 3 + UV + UV + UV +Face 6399 +UV Count: 3 + UV + UV + UV +Face 6400 +UV Count: 3 + UV + UV + UV +Face 6401 +UV Count: 3 + UV + UV + UV +Face 6402 +UV Count: 3 + UV + UV + UV +Face 6403 +UV Count: 3 + UV + UV + UV +Face 6404 +UV Count: 3 + UV + UV + UV +Face 6405 +UV Count: 3 + UV + UV + UV +Face 6406 +UV Count: 3 + UV + UV + UV +Face 6407 +UV Count: 3 + UV + UV + UV +Face 6408 +UV Count: 3 + UV + UV + UV +Face 6409 +UV Count: 3 + UV + UV + UV +Face 6410 +UV Count: 3 + UV + UV + UV +Face 6411 +UV Count: 3 + UV + UV + UV +Face 6412 +UV Count: 3 + UV + UV + UV +Face 6413 +UV Count: 3 + UV + UV + UV +Face 6414 +UV Count: 3 + UV + UV + UV +Face 6415 +UV Count: 3 + UV + UV + UV +Face 6416 +UV Count: 3 + UV + UV + UV +Face 6417 +UV Count: 3 + UV + UV + UV +Face 6418 +UV Count: 3 + UV + UV + UV +Face 6419 +UV Count: 3 + UV + UV + UV +Face 6420 +UV Count: 3 + UV + UV + UV +Face 6421 +UV Count: 3 + UV + UV + UV +Face 6422 +UV Count: 3 + UV + UV + UV +Face 6423 +UV Count: 3 + UV + UV + UV +Face 6424 +UV Count: 3 + UV + UV + UV +Face 6425 +UV Count: 3 + UV + UV + UV +Face 6426 +UV Count: 3 + UV + UV + UV +Face 6427 +UV Count: 3 + UV + UV + UV +Face 6428 +UV Count: 3 + UV + UV + UV +Face 6429 +UV Count: 3 + UV + UV + UV +Face 6430 +UV Count: 3 + UV + UV + UV +Face 6431 +UV Count: 3 + UV + UV + UV +Face 6432 +UV Count: 3 + UV + UV + UV +Face 6433 +UV Count: 3 + UV + UV + UV +Face 6434 +UV Count: 3 + UV + UV + UV +Face 6435 +UV Count: 3 + UV + UV + UV +Face 6436 +UV Count: 3 + UV + UV + UV +Face 6437 +UV Count: 3 + UV + UV + UV +Face 6438 +UV Count: 3 + UV + UV + UV +Face 6439 +UV Count: 3 + UV + UV + UV +Face 6440 +UV Count: 3 + UV + UV + UV +Face 6441 +UV Count: 3 + UV + UV + UV +Face 6442 +UV Count: 3 + UV + UV + UV +Face 6443 +UV Count: 3 + UV + UV + UV +Face 6444 +UV Count: 3 + UV + UV + UV +Face 6445 +UV Count: 3 + UV + UV + UV +Face 6446 +UV Count: 3 + UV + UV + UV +Face 6447 +UV Count: 3 + UV + UV + UV +Face 6448 +UV Count: 3 + UV + UV + UV +Face 6449 +UV Count: 3 + UV + UV + UV +Face 6450 +UV Count: 3 + UV + UV + UV +Face 6451 +UV Count: 3 + UV + UV + UV +Face 6452 +UV Count: 3 + UV + UV + UV +Face 6453 +UV Count: 3 + UV + UV + UV +Face 6454 +UV Count: 3 + UV + UV + UV +Face 6455 +UV Count: 3 + UV + UV + UV +Face 6456 +UV Count: 3 + UV + UV + UV +Face 6457 +UV Count: 3 + UV + UV + UV +Face 6458 +UV Count: 3 + UV + UV + UV +Face 6459 +UV Count: 3 + UV + UV + UV +Face 6460 +UV Count: 3 + UV + UV + UV +Face 6461 +UV Count: 3 + UV + UV + UV +Face 6462 +UV Count: 3 + UV + UV + UV +Face 6463 +UV Count: 3 + UV + UV + UV +Face 6464 +UV Count: 3 + UV + UV + UV +Face 6465 +UV Count: 3 + UV + UV + UV +Face 6466 +UV Count: 3 + UV + UV + UV +Face 6467 +UV Count: 3 + UV + UV + UV +Face 6468 +UV Count: 3 + UV + UV + UV +Face 6469 +UV Count: 3 + UV + UV + UV +Face 6470 +UV Count: 3 + UV + UV + UV +Face 6471 +UV Count: 3 + UV + UV + UV +Face 6472 +UV Count: 3 + UV + UV + UV +Face 6473 +UV Count: 3 + UV + UV + UV +Face 6474 +UV Count: 3 + UV + UV + UV +Face 6475 +UV Count: 3 + UV + UV + UV +Face 6476 +UV Count: 3 + UV + UV + UV +Face 6477 +UV Count: 3 + UV + UV + UV +Face 6478 +UV Count: 3 + UV + UV + UV +Face 6479 +UV Count: 3 + UV + UV + UV +Face 6480 +UV Count: 3 + UV + UV + UV +Face 6481 +UV Count: 3 + UV + UV + UV +Face 6482 +UV Count: 3 + UV + UV + UV +Face 6483 +UV Count: 3 + UV + UV + UV +Face 6484 +UV Count: 3 + UV + UV + UV +Face 6485 +UV Count: 3 + UV + UV + UV +Face 6486 +UV Count: 3 + UV + UV + UV +Face 6487 +UV Count: 3 + UV + UV + UV +Face 6488 +UV Count: 3 + UV + UV + UV +Face 6489 +UV Count: 3 + UV + UV + UV +Face 6490 +UV Count: 3 + UV + UV + UV +Face 6491 +UV Count: 3 + UV + UV + UV +Face 6492 +UV Count: 3 + UV + UV + UV +Face 6493 +UV Count: 3 + UV + UV + UV +Face 6494 +UV Count: 3 + UV + UV + UV +Face 6495 +UV Count: 3 + UV + UV + UV +Face 6496 +UV Count: 3 + UV + UV + UV +Face 6497 +UV Count: 3 + UV + UV + UV +Face 6498 +UV Count: 3 + UV + UV + UV +Face 6499 +UV Count: 3 + UV + UV + UV +Face 6500 +UV Count: 3 + UV + UV + UV +Face 6501 +UV Count: 3 + UV + UV + UV +Face 6502 +UV Count: 3 + UV + UV + UV +Face 6503 +UV Count: 3 + UV + UV + UV +Face 6504 +UV Count: 3 + UV + UV + UV +Face 6505 +UV Count: 3 + UV + UV + UV +Face 6506 +UV Count: 3 + UV + UV + UV +Face 6507 +UV Count: 3 + UV + UV + UV +Face 6508 +UV Count: 3 + UV + UV + UV +Face 6509 +UV Count: 3 + UV + UV + UV +Face 6510 +UV Count: 3 + UV + UV + UV +Face 6511 +UV Count: 3 + UV + UV + UV +Face 6512 +UV Count: 3 + UV + UV + UV +Face 6513 +UV Count: 3 + UV + UV + UV +Face 6514 +UV Count: 3 + UV + UV + UV +Face 6515 +UV Count: 3 + UV + UV + UV +Face 6516 +UV Count: 3 + UV + UV + UV +Face 6517 +UV Count: 3 + UV + UV + UV +Face 6518 +UV Count: 3 + UV + UV + UV +Face 6519 +UV Count: 3 + UV + UV + UV +Face 6520 +UV Count: 3 + UV + UV + UV +Face 6521 +UV Count: 3 + UV + UV + UV +Face 6522 +UV Count: 3 + UV + UV + UV +Face 6523 +UV Count: 3 + UV + UV + UV +Face 6524 +UV Count: 3 + UV + UV + UV +Face 6525 +UV Count: 3 + UV + UV + UV +Face 6526 +UV Count: 3 + UV + UV + UV +Face 6527 +UV Count: 3 + UV + UV + UV +Face 6528 +UV Count: 3 + UV + UV + UV +Face 6529 +UV Count: 3 + UV + UV + UV +Face 6530 +UV Count: 3 + UV + UV + UV +Face 6531 +UV Count: 3 + UV + UV + UV +Face 6532 +UV Count: 3 + UV + UV + UV +Face 6533 +UV Count: 3 + UV + UV + UV +Face 6534 +UV Count: 3 + UV + UV + UV +Face 6535 +UV Count: 3 + UV + UV + UV +Face 6536 +UV Count: 3 + UV + UV + UV +Face 6537 +UV Count: 3 + UV + UV + UV +Face 6538 +UV Count: 3 + UV + UV + UV +Face 6539 +UV Count: 3 + UV + UV + UV +Face 6540 +UV Count: 3 + UV + UV + UV +Face 6541 +UV Count: 3 + UV + UV + UV +Face 6542 +UV Count: 3 + UV + UV + UV +Face 6543 +UV Count: 3 + UV + UV + UV +Face 6544 +UV Count: 3 + UV + UV + UV +Face 6545 +UV Count: 3 + UV + UV + UV +Face 6546 +UV Count: 3 + UV + UV + UV +Face 6547 +UV Count: 3 + UV + UV + UV +Face 6548 +UV Count: 3 + UV + UV + UV +Face 6549 +UV Count: 3 + UV + UV + UV +Face 6550 +UV Count: 3 + UV + UV + UV +Face 6551 +UV Count: 3 + UV + UV + UV +Face 6552 +UV Count: 3 + UV + UV + UV +Face 6553 +UV Count: 3 + UV + UV + UV +Face 6554 +UV Count: 3 + UV + UV + UV +Face 6555 +UV Count: 3 + UV + UV + UV +Face 6556 +UV Count: 3 + UV + UV + UV +Face 6557 +UV Count: 3 + UV + UV + UV +Face 6558 +UV Count: 3 + UV + UV + UV +Face 6559 +UV Count: 3 + UV + UV + UV +Face 6560 +UV Count: 3 + UV + UV + UV +Face 6561 +UV Count: 3 + UV + UV + UV +Face 6562 +UV Count: 3 + UV + UV + UV +Face 6563 +UV Count: 3 + UV + UV + UV +Face 6564 +UV Count: 3 + UV + UV + UV +Face 6565 +UV Count: 3 + UV + UV + UV +Face 6566 +UV Count: 3 + UV + UV + UV +Face 6567 +UV Count: 3 + UV + UV + UV +Face 6568 +UV Count: 3 + UV + UV + UV +Face 6569 +UV Count: 3 + UV + UV + UV +Face 6570 +UV Count: 3 + UV + UV + UV +Face 6571 +UV Count: 3 + UV + UV + UV +Face 6572 +UV Count: 3 + UV + UV + UV +Face 6573 +UV Count: 3 + UV + UV + UV +Face 6574 +UV Count: 3 + UV + UV + UV +Face 6575 +UV Count: 3 + UV + UV + UV +Face 6576 +UV Count: 3 + UV + UV + UV +Face 6577 +UV Count: 3 + UV + UV + UV +Face 6578 +UV Count: 3 + UV + UV + UV +Face 6579 +UV Count: 3 + UV + UV + UV +Face 6580 +UV Count: 3 + UV + UV + UV +Face 6581 +UV Count: 3 + UV + UV + UV +Face 6582 +UV Count: 3 + UV + UV + UV +Face 6583 +UV Count: 3 + UV + UV + UV +Face 6584 +UV Count: 3 + UV + UV + UV +Face 6585 +UV Count: 3 + UV + UV + UV +Face 6586 +UV Count: 3 + UV + UV + UV +Face 6587 +UV Count: 3 + UV + UV + UV +Face 6588 +UV Count: 3 + UV + UV + UV +Face 6589 +UV Count: 3 + UV + UV + UV +Face 6590 +UV Count: 3 + UV + UV + UV +Face 6591 +UV Count: 3 + UV + UV + UV +Face 6592 +UV Count: 3 + UV + UV + UV +Face 6593 +UV Count: 3 + UV + UV + UV +Face 6594 +UV Count: 3 + UV + UV + UV +Face 6595 +UV Count: 3 + UV + UV + UV +Face 6596 +UV Count: 3 + UV + UV + UV +Face 6597 +UV Count: 3 + UV + UV + UV +Face 6598 +UV Count: 3 + UV + UV + UV +Face 6599 +UV Count: 3 + UV + UV + UV +Face 6600 +UV Count: 3 + UV + UV + UV +Face 6601 +UV Count: 3 + UV + UV + UV +Face 6602 +UV Count: 3 + UV + UV + UV +Face 6603 +UV Count: 3 + UV + UV + UV +Face 6604 +UV Count: 3 + UV + UV + UV +Face 6605 +UV Count: 3 + UV + UV + UV +Face 6606 +UV Count: 3 + UV + UV + UV +Face 6607 +UV Count: 3 + UV + UV + UV +Face 6608 +UV Count: 3 + UV + UV + UV +Face 6609 +UV Count: 3 + UV + UV + UV +Face 6610 +UV Count: 3 + UV + UV + UV +Face 6611 +UV Count: 3 + UV + UV + UV +Face 6612 +UV Count: 3 + UV + UV + UV +Face 6613 +UV Count: 3 + UV + UV + UV +Face 6614 +UV Count: 3 + UV + UV + UV +Face 6615 +UV Count: 3 + UV + UV + UV +Face 6616 +UV Count: 3 + UV + UV + UV +Face 6617 +UV Count: 3 + UV + UV + UV +Face 6618 +UV Count: 3 + UV + UV + UV +Face 6619 +UV Count: 3 + UV + UV + UV +Face 6620 +UV Count: 3 + UV + UV + UV +Face 6621 +UV Count: 3 + UV + UV + UV +Face 6622 +UV Count: 3 + UV + UV + UV +Face 6623 +UV Count: 3 + UV + UV + UV +Face 6624 +UV Count: 3 + UV + UV + UV +Face 6625 +UV Count: 3 + UV + UV + UV +Face 6626 +UV Count: 3 + UV + UV + UV +Face 6627 +UV Count: 3 + UV + UV + UV +Face 6628 +UV Count: 3 + UV + UV + UV +Face 6629 +UV Count: 3 + UV + UV + UV +Face 6630 +UV Count: 3 + UV + UV + UV +Face 6631 +UV Count: 3 + UV + UV + UV +Face 6632 +UV Count: 3 + UV + UV + UV +Face 6633 +UV Count: 3 + UV + UV + UV +Face 6634 +UV Count: 3 + UV + UV + UV +Face 6635 +UV Count: 3 + UV + UV + UV +Face 6636 +UV Count: 3 + UV + UV + UV +Face 6637 +UV Count: 3 + UV + UV + UV +Face 6638 +UV Count: 3 + UV + UV + UV +Face 6639 +UV Count: 3 + UV + UV + UV +Face 6640 +UV Count: 3 + UV + UV + UV +Face 6641 +UV Count: 3 + UV + UV + UV +Face 6642 +UV Count: 3 + UV + UV + UV +Face 6643 +UV Count: 3 + UV + UV + UV +Face 6644 +UV Count: 3 + UV + UV + UV +Face 6645 +UV Count: 3 + UV + UV + UV +Face 6646 +UV Count: 3 + UV + UV + UV +Face 6647 +UV Count: 3 + UV + UV + UV +Face 6648 +UV Count: 3 + UV + UV + UV +Face 6649 +UV Count: 3 + UV + UV + UV +Face 6650 +UV Count: 3 + UV + UV + UV +Face 6651 +UV Count: 3 + UV + UV + UV +Face 6652 +UV Count: 3 + UV + UV + UV +Face 6653 +UV Count: 3 + UV + UV + UV +Face 6654 +UV Count: 3 + UV + UV + UV +Face 6655 +UV Count: 3 + UV + UV + UV +Face 6656 +UV Count: 3 + UV + UV + UV +Face 6657 +UV Count: 3 + UV + UV + UV +Face 6658 +UV Count: 3 + UV + UV + UV +Face 6659 +UV Count: 3 + UV + UV + UV +Face 6660 +UV Count: 3 + UV + UV + UV +Face 6661 +UV Count: 3 + UV + UV + UV +Face 6662 +UV Count: 3 + UV + UV + UV +Face 6663 +UV Count: 3 + UV + UV + UV +Face 6664 +UV Count: 3 + UV + UV + UV +Face 6665 +UV Count: 3 + UV + UV + UV +Face 6666 +UV Count: 3 + UV + UV + UV +Face 6667 +UV Count: 3 + UV + UV + UV +Face 6668 +UV Count: 3 + UV + UV + UV +Face 6669 +UV Count: 3 + UV + UV + UV +Face 6670 +UV Count: 3 + UV + UV + UV +Face 6671 +UV Count: 3 + UV + UV + UV +Face 6672 +UV Count: 3 + UV + UV + UV +Face 6673 +UV Count: 3 + UV + UV + UV +Face 6674 +UV Count: 3 + UV + UV + UV +Face 6675 +UV Count: 3 + UV + UV + UV +Face 6676 +UV Count: 3 + UV + UV + UV +Face 6677 +UV Count: 3 + UV + UV + UV +Face 6678 +UV Count: 3 + UV + UV + UV +Face 6679 +UV Count: 3 + UV + UV + UV +Face 6680 +UV Count: 3 + UV + UV + UV +Face 6681 +UV Count: 3 + UV + UV + UV +Face 6682 +UV Count: 3 + UV + UV + UV +Face 6683 +UV Count: 3 + UV + UV + UV +Face 6684 +UV Count: 3 + UV + UV + UV +Face 6685 +UV Count: 3 + UV + UV + UV +Face 6686 +UV Count: 3 + UV + UV + UV +Face 6687 +UV Count: 3 + UV + UV + UV +Face 6688 +UV Count: 3 + UV + UV + UV +Face 6689 +UV Count: 3 + UV + UV + UV +Face 6690 +UV Count: 3 + UV + UV + UV +Face 6691 +UV Count: 3 + UV + UV + UV +Face 6692 +UV Count: 3 + UV + UV + UV +Face 6693 +UV Count: 3 + UV + UV + UV +Face 6694 +UV Count: 3 + UV + UV + UV +Face 6695 +UV Count: 3 + UV + UV + UV +Face 6696 +UV Count: 3 + UV + UV + UV +Face 6697 +UV Count: 3 + UV + UV + UV +Face 6698 +UV Count: 3 + UV + UV + UV +Face 6699 +UV Count: 3 + UV + UV + UV +Face 6700 +UV Count: 3 + UV + UV + UV +Face 6701 +UV Count: 3 + UV + UV + UV +Face 6702 +UV Count: 3 + UV + UV + UV +Face 6703 +UV Count: 3 + UV + UV + UV +Face 6704 +UV Count: 3 + UV + UV + UV +Face 6705 +UV Count: 3 + UV + UV + UV +Face 6706 +UV Count: 3 + UV + UV + UV +Face 6707 +UV Count: 3 + UV + UV + UV +Face 6708 +UV Count: 3 + UV + UV + UV +Face 6709 +UV Count: 3 + UV + UV + UV +Face 6710 +UV Count: 3 + UV + UV + UV +Face 6711 +UV Count: 3 + UV + UV + UV +Face 6712 +UV Count: 3 + UV + UV + UV +Face 6713 +UV Count: 3 + UV + UV + UV +Face 6714 +UV Count: 3 + UV + UV + UV +Face 6715 +UV Count: 3 + UV + UV + UV +Face 6716 +UV Count: 3 + UV + UV + UV +Face 6717 +UV Count: 3 + UV + UV + UV +Face 6718 +UV Count: 3 + UV + UV + UV +Face 6719 +UV Count: 3 + UV + UV + UV +Face 6720 +UV Count: 3 + UV + UV + UV +Face 6721 +UV Count: 3 + UV + UV + UV +Face 6722 +UV Count: 3 + UV + UV + UV +Face 6723 +UV Count: 3 + UV + UV + UV +Face 6724 +UV Count: 3 + UV + UV + UV +Face 6725 +UV Count: 3 + UV + UV + UV +Face 6726 +UV Count: 3 + UV + UV + UV +Face 6727 +UV Count: 3 + UV + UV + UV +Face 6728 +UV Count: 3 + UV + UV + UV +Face 6729 +UV Count: 3 + UV + UV + UV +Face 6730 +UV Count: 3 + UV + UV + UV +Face 6731 +UV Count: 3 + UV + UV + UV +Face 6732 +UV Count: 3 + UV + UV + UV +Face 6733 +UV Count: 3 + UV + UV + UV +Face 6734 +UV Count: 3 + UV + UV + UV +Face 6735 +UV Count: 3 + UV + UV + UV +Face 6736 +UV Count: 3 + UV + UV + UV +Face 6737 +UV Count: 3 + UV + UV + UV +Face 6738 +UV Count: 3 + UV + UV + UV +Face 6739 +UV Count: 3 + UV + UV + UV +Face 6740 +UV Count: 3 + UV + UV + UV +Face 6741 +UV Count: 3 + UV + UV + UV +Face 6742 +UV Count: 3 + UV + UV + UV +Face 6743 +UV Count: 3 + UV + UV + UV +Face 6744 +UV Count: 3 + UV + UV + UV +Face 6745 +UV Count: 3 + UV + UV + UV +Face 6746 +UV Count: 3 + UV + UV + UV +Face 6747 +UV Count: 3 + UV + UV + UV +Face 6748 +UV Count: 3 + UV + UV + UV +Face 6749 +UV Count: 3 + UV + UV + UV +Face 6750 +UV Count: 3 + UV + UV + UV +Face 6751 +UV Count: 3 + UV + UV + UV +Face 6752 +UV Count: 3 + UV + UV + UV +Face 6753 +UV Count: 3 + UV + UV + UV +Face 6754 +UV Count: 3 + UV + UV + UV +Face 6755 +UV Count: 3 + UV + UV + UV +Face 6756 +UV Count: 3 + UV + UV + UV +Face 6757 +UV Count: 3 + UV + UV + UV +Face 6758 +UV Count: 3 + UV + UV + UV +Face 6759 +UV Count: 3 + UV + UV + UV +Face 6760 +UV Count: 3 + UV + UV + UV +Face 6761 +UV Count: 3 + UV + UV + UV +Face 6762 +UV Count: 3 + UV + UV + UV +Face 6763 +UV Count: 3 + UV + UV + UV +Face 6764 +UV Count: 3 + UV + UV + UV +Face 6765 +UV Count: 3 + UV + UV + UV +Face 6766 +UV Count: 3 + UV + UV + UV +Face 6767 +UV Count: 3 + UV + UV + UV +Face 6768 +UV Count: 3 + UV + UV + UV +Face 6769 +UV Count: 3 + UV + UV + UV +Face 6770 +UV Count: 3 + UV + UV + UV +Face 6771 +UV Count: 3 + UV + UV + UV +Face 6772 +UV Count: 3 + UV + UV + UV +Face 6773 +UV Count: 3 + UV + UV + UV +Face 6774 +UV Count: 3 + UV + UV + UV +Face 6775 +UV Count: 3 + UV + UV + UV +Face 6776 +UV Count: 3 + UV + UV + UV +Face 6777 +UV Count: 3 + UV + UV + UV +Face 6778 +UV Count: 3 + UV + UV + UV +Face 6779 +UV Count: 3 + UV + UV + UV +Face 6780 +UV Count: 3 + UV + UV + UV +Face 6781 +UV Count: 3 + UV + UV + UV +Face 6782 +UV Count: 3 + UV + UV + UV +Face 6783 +UV Count: 3 + UV + UV + UV +Face 6784 +UV Count: 3 + UV + UV + UV +Face 6785 +UV Count: 3 + UV + UV + UV +Face 6786 +UV Count: 3 + UV + UV + UV +Face 6787 +UV Count: 3 + UV + UV + UV +Face 6788 +UV Count: 3 + UV + UV + UV +Face 6789 +UV Count: 3 + UV + UV + UV +Face 6790 +UV Count: 3 + UV + UV + UV +Face 6791 +UV Count: 3 + UV + UV + UV +Face 6792 +UV Count: 3 + UV + UV + UV +Face 6793 +UV Count: 3 + UV + UV + UV +Face 6794 +UV Count: 3 + UV + UV + UV +Face 6795 +UV Count: 3 + UV + UV + UV +Face 6796 +UV Count: 3 + UV + UV + UV +Face 6797 +UV Count: 3 + UV + UV + UV +Face 6798 +UV Count: 3 + UV + UV + UV +Face 6799 +UV Count: 3 + UV + UV + UV +Face 6800 +UV Count: 3 + UV + UV + UV +Face 6801 +UV Count: 3 + UV + UV + UV +Face 6802 +UV Count: 3 + UV + UV + UV +Face 6803 +UV Count: 3 + UV + UV + UV +Face 6804 +UV Count: 3 + UV + UV + UV +Face 6805 +UV Count: 3 + UV + UV + UV +Face 6806 +UV Count: 3 + UV + UV + UV +Face 6807 +UV Count: 3 + UV + UV + UV +Face 6808 +UV Count: 3 + UV + UV + UV +Face 6809 +UV Count: 3 + UV + UV + UV +Face 6810 +UV Count: 3 + UV + UV + UV +Face 6811 +UV Count: 3 + UV + UV + UV +Face 6812 +UV Count: 3 + UV + UV + UV +Face 6813 +UV Count: 3 + UV + UV + UV +Face 6814 +UV Count: 3 + UV + UV + UV +Face 6815 +UV Count: 3 + UV + UV + UV +Face 6816 +UV Count: 3 + UV + UV + UV +Face 6817 +UV Count: 3 + UV + UV + UV +Face 6818 +UV Count: 3 + UV + UV + UV +Face 6819 +UV Count: 3 + UV + UV + UV +Face 6820 +UV Count: 3 + UV + UV + UV +Face 6821 +UV Count: 3 + UV + UV + UV +Face 6822 +UV Count: 3 + UV + UV + UV +Face 6823 +UV Count: 3 + UV + UV + UV +Face 6824 +UV Count: 3 + UV + UV + UV +Face 6825 +UV Count: 3 + UV + UV + UV +Face 6826 +UV Count: 3 + UV + UV + UV +Face 6827 +UV Count: 3 + UV + UV + UV +Face 6828 +UV Count: 3 + UV + UV + UV +Face 6829 +UV Count: 3 + UV + UV + UV +Face 6830 +UV Count: 3 + UV + UV + UV +Face 6831 +UV Count: 3 + UV + UV + UV +Face 6832 +UV Count: 3 + UV + UV + UV +Face 6833 +UV Count: 3 + UV + UV + UV +Face 6834 +UV Count: 3 + UV + UV + UV +Face 6835 +UV Count: 3 + UV + UV + UV +Face 6836 +UV Count: 3 + UV + UV + UV +Face 6837 +UV Count: 3 + UV + UV + UV +Face 6838 +UV Count: 3 + UV + UV + UV +Face 6839 +UV Count: 3 + UV + UV + UV +Face 6840 +UV Count: 3 + UV + UV + UV +Face 6841 +UV Count: 3 + UV + UV + UV +Face 6842 +UV Count: 3 + UV + UV + UV +Face 6843 +UV Count: 3 + UV + UV + UV +Face 6844 +UV Count: 3 + UV + UV + UV +Face 6845 +UV Count: 3 + UV + UV + UV +Face 6846 +UV Count: 3 + UV + UV + UV +Face 6847 +UV Count: 3 + UV + UV + UV +Face 6848 +UV Count: 3 + UV + UV + UV +Face 6849 +UV Count: 3 + UV + UV + UV +Face 6850 +UV Count: 3 + UV + UV + UV +Face 6851 +UV Count: 3 + UV + UV + UV +Face 6852 +UV Count: 3 + UV + UV + UV +Face 6853 +UV Count: 3 + UV + UV + UV +Face 6854 +UV Count: 3 + UV + UV + UV +Face 6855 +UV Count: 3 + UV + UV + UV +Face 6856 +UV Count: 3 + UV + UV + UV +Face 6857 +UV Count: 3 + UV + UV + UV +Face 6858 +UV Count: 3 + UV + UV + UV +Face 6859 +UV Count: 3 + UV + UV + UV +Face 6860 +UV Count: 3 + UV + UV + UV +Face 6861 +UV Count: 3 + UV + UV + UV +Face 6862 +UV Count: 3 + UV + UV + UV +Face 6863 +UV Count: 3 + UV + UV + UV +Face 6864 +UV Count: 3 + UV + UV + UV +Face 6865 +UV Count: 3 + UV + UV + UV +Face 6866 +UV Count: 3 + UV + UV + UV +Face 6867 +UV Count: 3 + UV + UV + UV +Face 6868 +UV Count: 3 + UV + UV + UV +Face 6869 +UV Count: 3 + UV + UV + UV +Face 6870 +UV Count: 3 + UV + UV + UV +Face 6871 +UV Count: 3 + UV + UV + UV +Face 6872 +UV Count: 3 + UV + UV + UV +Face 6873 +UV Count: 3 + UV + UV + UV +Face 6874 +UV Count: 3 + UV + UV + UV +Face 6875 +UV Count: 3 + UV + UV + UV +Face 6876 +UV Count: 3 + UV + UV + UV +Face 6877 +UV Count: 3 + UV + UV + UV +Face 6878 +UV Count: 3 + UV + UV + UV +Face 6879 +UV Count: 3 + UV + UV + UV +Face 6880 +UV Count: 3 + UV + UV + UV +Face 6881 +UV Count: 3 + UV + UV + UV +Face 6882 +UV Count: 3 + UV + UV + UV +Face 6883 +UV Count: 3 + UV + UV + UV +Face 6884 +UV Count: 3 + UV + UV + UV +Face 6885 +UV Count: 3 + UV + UV + UV +Face 6886 +UV Count: 3 + UV + UV + UV +Face 6887 +UV Count: 3 + UV + UV + UV +Face 6888 +UV Count: 3 + UV + UV + UV +Face 6889 +UV Count: 3 + UV + UV + UV +Face 6890 +UV Count: 3 + UV + UV + UV +Face 6891 +UV Count: 3 + UV + UV + UV +Face 6892 +UV Count: 3 + UV + UV + UV +Face 6893 +UV Count: 3 + UV + UV + UV +Face 6894 +UV Count: 3 + UV + UV + UV +Face 6895 +UV Count: 3 + UV + UV + UV +Face 6896 +UV Count: 3 + UV + UV + UV +Face 6897 +UV Count: 3 + UV + UV + UV +Face 6898 +UV Count: 3 + UV + UV + UV +Face 6899 +UV Count: 3 + UV + UV + UV +Face 6900 +UV Count: 3 + UV + UV + UV +Face 6901 +UV Count: 3 + UV + UV + UV +Face 6902 +UV Count: 3 + UV + UV + UV +Face 6903 +UV Count: 3 + UV + UV + UV +Face 6904 +UV Count: 3 + UV + UV + UV +Face 6905 +UV Count: 3 + UV + UV + UV +Face 6906 +UV Count: 3 + UV + UV + UV +Face 6907 +UV Count: 3 + UV + UV + UV +Face 6908 +UV Count: 3 + UV + UV + UV +Face 6909 +UV Count: 3 + UV + UV + UV +Face 6910 +UV Count: 3 + UV + UV + UV +Face 6911 +UV Count: 3 + UV + UV + UV +Face 6912 +UV Count: 3 + UV + UV + UV +Face 6913 +UV Count: 3 + UV + UV + UV +Face 6914 +UV Count: 3 + UV + UV + UV +Face 6915 +UV Count: 3 + UV + UV + UV +Face 6916 +UV Count: 3 + UV + UV + UV +Face 6917 +UV Count: 3 + UV + UV + UV +Face 6918 +UV Count: 3 + UV + UV + UV +Face 6919 +UV Count: 3 + UV + UV + UV +Face 6920 +UV Count: 3 + UV + UV + UV +Face 6921 +UV Count: 3 + UV + UV + UV +Face 6922 +UV Count: 3 + UV + UV + UV +Face 6923 +UV Count: 3 + UV + UV + UV +Face 6924 +UV Count: 3 + UV + UV + UV +Face 6925 +UV Count: 3 + UV + UV + UV +Face 6926 +UV Count: 3 + UV + UV + UV +Face 6927 +UV Count: 3 + UV + UV + UV +Face 6928 +UV Count: 3 + UV + UV + UV +Face 6929 +UV Count: 3 + UV + UV + UV +Face 6930 +UV Count: 3 + UV + UV + UV +Face 6931 +UV Count: 3 + UV + UV + UV +Face 6932 +UV Count: 3 + UV + UV + UV +Face 6933 +UV Count: 3 + UV + UV + UV +Face 6934 +UV Count: 3 + UV + UV + UV +Face 6935 +UV Count: 3 + UV + UV + UV +Face 6936 +UV Count: 3 + UV + UV + UV +Face 6937 +UV Count: 3 + UV + UV + UV +Face 6938 +UV Count: 3 + UV + UV + UV +Face 6939 +UV Count: 3 + UV + UV + UV +Face 6940 +UV Count: 3 + UV + UV + UV +Face 6941 +UV Count: 3 + UV + UV + UV +Face 6942 +UV Count: 3 + UV + UV + UV +Face 6943 +UV Count: 3 + UV + UV + UV +Face 6944 +UV Count: 3 + UV + UV + UV +Face 6945 +UV Count: 3 + UV + UV + UV +Face 6946 +UV Count: 3 + UV + UV + UV +Face 6947 +UV Count: 3 + UV + UV + UV +Face 6948 +UV Count: 3 + UV + UV + UV +Face 6949 +UV Count: 3 + UV + UV + UV +Face 6950 +UV Count: 3 + UV + UV + UV +Face 6951 +UV Count: 3 + UV + UV + UV +Face 6952 +UV Count: 3 + UV + UV + UV +Face 6953 +UV Count: 3 + UV + UV + UV +Face 6954 +UV Count: 3 + UV + UV + UV +Face 6955 +UV Count: 3 + UV + UV + UV +Face 6956 +UV Count: 3 + UV + UV + UV +Face 6957 +UV Count: 3 + UV + UV + UV +Face 6958 +UV Count: 3 + UV + UV + UV +Face 6959 +UV Count: 3 + UV + UV + UV +Face 6960 +UV Count: 3 + UV + UV + UV +Face 6961 +UV Count: 3 + UV + UV + UV +Face 6962 +UV Count: 3 + UV + UV + UV +Face 6963 +UV Count: 3 + UV + UV + UV +Face 6964 +UV Count: 3 + UV + UV + UV +Face 6965 +UV Count: 3 + UV + UV + UV +Face 6966 +UV Count: 3 + UV + UV + UV +Face 6967 +UV Count: 3 + UV + UV + UV +Face 6968 +UV Count: 3 + UV + UV + UV +Face 6969 +UV Count: 3 + UV + UV + UV +Face 6970 +UV Count: 3 + UV + UV + UV +Face 6971 +UV Count: 3 + UV + UV + UV +Face 6972 +UV Count: 3 + UV + UV + UV +Face 6973 +UV Count: 3 + UV + UV + UV +Face 6974 +UV Count: 3 + UV + UV + UV +Face 6975 +UV Count: 3 + UV + UV + UV +Face 6976 +UV Count: 3 + UV + UV + UV +Face 6977 +UV Count: 3 + UV + UV + UV +Face 6978 +UV Count: 3 + UV + UV + UV +Face 6979 +UV Count: 3 + UV + UV + UV +Face 6980 +UV Count: 3 + UV + UV + UV +Face 6981 +UV Count: 3 + UV + UV + UV +Face 6982 +UV Count: 3 + UV + UV + UV +Face 6983 +UV Count: 3 + UV + UV + UV +Face 6984 +UV Count: 3 + UV + UV + UV +Face 6985 +UV Count: 3 + UV + UV + UV +Face 6986 +UV Count: 3 + UV + UV + UV +Face 6987 +UV Count: 3 + UV + UV + UV +Face 6988 +UV Count: 3 + UV + UV + UV +Face 6989 +UV Count: 3 + UV + UV + UV +Face 6990 +UV Count: 3 + UV + UV + UV +Face 6991 +UV Count: 3 + UV + UV + UV +Face 6992 +UV Count: 3 + UV + UV + UV +Face 6993 +UV Count: 3 + UV + UV + UV +Face 6994 +UV Count: 3 + UV + UV + UV +Face 6995 +UV Count: 3 + UV + UV + UV +Face 6996 +UV Count: 3 + UV + UV + UV +Face 6997 +UV Count: 3 + UV + UV + UV +Face 6998 +UV Count: 3 + UV + UV + UV +Face 6999 +UV Count: 3 + UV + UV + UV +Face 7000 +UV Count: 3 + UV + UV + UV +Face 7001 +UV Count: 3 + UV + UV + UV +Face 7002 +UV Count: 3 + UV + UV + UV +Face 7003 +UV Count: 3 + UV + UV + UV +Face 7004 +UV Count: 3 + UV + UV + UV +Face 7005 +UV Count: 3 + UV + UV + UV +Face 7006 +UV Count: 3 + UV + UV + UV +Face 7007 +UV Count: 3 + UV + UV + UV +Face 7008 +UV Count: 3 + UV + UV + UV +Face 7009 +UV Count: 3 + UV + UV + UV +Face 7010 +UV Count: 3 + UV + UV + UV +Face 7011 +UV Count: 3 + UV + UV + UV +Face 7012 +UV Count: 3 + UV + UV + UV +Face 7013 +UV Count: 3 + UV + UV + UV +Face 7014 +UV Count: 3 + UV + UV + UV +Face 7015 +UV Count: 3 + UV + UV + UV +Face 7016 +UV Count: 3 + UV + UV + UV +Face 7017 +UV Count: 3 + UV + UV + UV +Face 7018 +UV Count: 3 + UV + UV + UV +Face 7019 +UV Count: 3 + UV + UV + UV +Face 7020 +UV Count: 3 + UV + UV + UV +Face 7021 +UV Count: 3 + UV + UV + UV +Face 7022 +UV Count: 3 + UV + UV + UV +Face 7023 +UV Count: 3 + UV + UV + UV +Face 7024 +UV Count: 3 + UV + UV + UV +Face 7025 +UV Count: 3 + UV + UV + UV +Face 7026 +UV Count: 3 + UV + UV + UV +Face 7027 +UV Count: 3 + UV + UV + UV +Face 7028 +UV Count: 3 + UV + UV + UV +Face 7029 +UV Count: 3 + UV + UV + UV +Face 7030 +UV Count: 3 + UV + UV + UV +Face 7031 +UV Count: 3 + UV + UV + UV +Face 7032 +UV Count: 3 + UV + UV + UV +Face 7033 +UV Count: 3 + UV + UV + UV +Face 7034 +UV Count: 3 + UV + UV + UV +Face 7035 +UV Count: 3 + UV + UV + UV +Face 7036 +UV Count: 3 + UV + UV + UV +Face 7037 +UV Count: 3 + UV + UV + UV +Face 7038 +UV Count: 3 + UV + UV + UV +Face 7039 +UV Count: 3 + UV + UV + UV +Face 7040 +UV Count: 3 + UV + UV + UV +Face 7041 +UV Count: 3 + UV + UV + UV +Face 7042 +UV Count: 3 + UV + UV + UV +Face 7043 +UV Count: 3 + UV + UV + UV +Face 7044 +UV Count: 3 + UV + UV + UV +Face 7045 +UV Count: 3 + UV + UV + UV +Face 7046 +UV Count: 3 + UV + UV + UV +Face 7047 +UV Count: 3 + UV + UV + UV +Face 7048 +UV Count: 3 + UV + UV + UV +Face 7049 +UV Count: 3 + UV + UV + UV +Face 7050 +UV Count: 3 + UV + UV + UV +Face 7051 +UV Count: 3 + UV + UV + UV +Face 7052 +UV Count: 3 + UV + UV + UV +Face 7053 +UV Count: 3 + UV + UV + UV +Face 7054 +UV Count: 3 + UV + UV + UV +Face 7055 +UV Count: 3 + UV + UV + UV +Face 7056 +UV Count: 3 + UV + UV + UV +Face 7057 +UV Count: 3 + UV + UV + UV +Face 7058 +UV Count: 3 + UV + UV + UV +Face 7059 +UV Count: 3 + UV + UV + UV +Face 7060 +UV Count: 3 + UV + UV + UV +Face 7061 +UV Count: 3 + UV + UV + UV +Face 7062 +UV Count: 3 + UV + UV + UV +Face 7063 +UV Count: 3 + UV + UV + UV +Face 7064 +UV Count: 3 + UV + UV + UV +Face 7065 +UV Count: 3 + UV + UV + UV +Face 7066 +UV Count: 3 + UV + UV + UV +Face 7067 +UV Count: 3 + UV + UV + UV +Face 7068 +UV Count: 3 + UV + UV + UV +Face 7069 +UV Count: 3 + UV + UV + UV +Face 7070 +UV Count: 3 + UV + UV + UV +Face 7071 +UV Count: 3 + UV + UV + UV +Face 7072 +UV Count: 3 + UV + UV + UV +Face 7073 +UV Count: 3 + UV + UV + UV +Face 7074 +UV Count: 3 + UV + UV + UV +Face 7075 +UV Count: 3 + UV + UV + UV +Face 7076 +UV Count: 3 + UV + UV + UV +Face 7077 +UV Count: 3 + UV + UV + UV +Face 7078 +UV Count: 3 + UV + UV + UV +Face 7079 +UV Count: 3 + UV + UV + UV +Face 7080 +UV Count: 3 + UV + UV + UV +Face 7081 +UV Count: 3 + UV + UV + UV +Face 7082 +UV Count: 3 + UV + UV + UV +Face 7083 +UV Count: 3 + UV + UV + UV +Face 7084 +UV Count: 3 + UV + UV + UV +Face 7085 +UV Count: 3 + UV + UV + UV +Face 7086 +UV Count: 3 + UV + UV + UV +Face 7087 +UV Count: 3 + UV + UV + UV +Face 7088 +UV Count: 3 + UV + UV + UV +Face 7089 +UV Count: 3 + UV + UV + UV +Face 7090 +UV Count: 3 + UV + UV + UV +Face 7091 +UV Count: 3 + UV + UV + UV +Face 7092 +UV Count: 3 + UV + UV + UV +Face 7093 +UV Count: 3 + UV + UV + UV +Face 7094 +UV Count: 3 + UV + UV + UV +Face 7095 +UV Count: 3 + UV + UV + UV +Face 7096 +UV Count: 3 + UV + UV + UV +Face 7097 +UV Count: 3 + UV + UV + UV +Face 7098 +UV Count: 3 + UV + UV + UV +Face 7099 +UV Count: 3 + UV + UV + UV +Face 7100 +UV Count: 3 + UV + UV + UV +Face 7101 +UV Count: 3 + UV + UV + UV +Face 7102 +UV Count: 3 + UV + UV + UV +Face 7103 +UV Count: 3 + UV + UV + UV +Face 7104 +UV Count: 3 + UV + UV + UV +Face 7105 +UV Count: 3 + UV + UV + UV +Face 7106 +UV Count: 3 + UV + UV + UV +Face 7107 +UV Count: 3 + UV + UV + UV +Face 7108 +UV Count: 3 + UV + UV + UV +Face 7109 +UV Count: 3 + UV + UV + UV +Face 7110 +UV Count: 3 + UV + UV + UV +Face 7111 +UV Count: 3 + UV + UV + UV +Face 7112 +UV Count: 3 + UV + UV + UV +Face 7113 +UV Count: 3 + UV + UV + UV +Face 7114 +UV Count: 3 + UV + UV + UV +Face 7115 +UV Count: 3 + UV + UV + UV +Face 7116 +UV Count: 3 + UV + UV + UV +Face 7117 +UV Count: 3 + UV + UV + UV +Face 7118 +UV Count: 3 + UV + UV + UV +Face 7119 +UV Count: 3 + UV + UV + UV +Face 7120 +UV Count: 3 + UV + UV + UV +Face 7121 +UV Count: 3 + UV + UV + UV +Face 7122 +UV Count: 3 + UV + UV + UV +Face 7123 +UV Count: 3 + UV + UV + UV +Face 7124 +UV Count: 3 + UV + UV + UV +Face 7125 +UV Count: 3 + UV + UV + UV +Face 7126 +UV Count: 3 + UV + UV + UV +Face 7127 +UV Count: 3 + UV + UV + UV +Face 7128 +UV Count: 3 + UV + UV + UV +Face 7129 +UV Count: 3 + UV + UV + UV +Face 7130 +UV Count: 3 + UV + UV + UV +Face 7131 +UV Count: 3 + UV + UV + UV +Face 7132 +UV Count: 3 + UV + UV + UV +Face 7133 +UV Count: 3 + UV + UV + UV +Face 7134 +UV Count: 3 + UV + UV + UV +Face 7135 +UV Count: 3 + UV + UV + UV +Face 7136 +UV Count: 3 + UV + UV + UV +Face 7137 +UV Count: 3 + UV + UV + UV +Face 7138 +UV Count: 3 + UV + UV + UV +Face 7139 +UV Count: 3 + UV + UV + UV +Face 7140 +UV Count: 3 + UV + UV + UV +Face 7141 +UV Count: 3 + UV + UV + UV +Face 7142 +UV Count: 3 + UV + UV + UV +Face 7143 +UV Count: 3 + UV + UV + UV +Face 7144 +UV Count: 3 + UV + UV + UV +Face 7145 +UV Count: 3 + UV + UV + UV +Face 7146 +UV Count: 3 + UV + UV + UV +Face 7147 +UV Count: 3 + UV + UV + UV +Face 7148 +UV Count: 3 + UV + UV + UV +Face 7149 +UV Count: 3 + UV + UV + UV +Face 7150 +UV Count: 3 + UV + UV + UV +Face 7151 +UV Count: 3 + UV + UV + UV +Face 7152 +UV Count: 3 + UV + UV + UV +Face 7153 +UV Count: 3 + UV + UV + UV +Face 7154 +UV Count: 3 + UV + UV + UV +Face 7155 +UV Count: 3 + UV + UV + UV +Face 7156 +UV Count: 3 + UV + UV + UV +Face 7157 +UV Count: 3 + UV + UV + UV +Face 7158 +UV Count: 3 + UV + UV + UV +Face 7159 +UV Count: 3 + UV + UV + UV +Face 7160 +UV Count: 3 + UV + UV + UV +Face 7161 +UV Count: 3 + UV + UV + UV +Face 7162 +UV Count: 3 + UV + UV + UV +Face 7163 +UV Count: 3 + UV + UV + UV +Face 7164 +UV Count: 3 + UV + UV + UV +Face 7165 +UV Count: 3 + UV + UV + UV +Face 7166 +UV Count: 3 + UV + UV + UV +Face 7167 +UV Count: 3 + UV + UV + UV +Face 7168 +UV Count: 3 + UV + UV + UV +Face 7169 +UV Count: 3 + UV + UV + UV +Face 7170 +UV Count: 3 + UV + UV + UV +Face 7171 +UV Count: 3 + UV + UV + UV +Face 7172 +UV Count: 3 + UV + UV + UV +Face 7173 +UV Count: 3 + UV + UV + UV +Face 7174 +UV Count: 3 + UV + UV + UV +Face 7175 +UV Count: 3 + UV + UV + UV +Face 7176 +UV Count: 3 + UV + UV + UV +Face 7177 +UV Count: 3 + UV + UV + UV +Face 7178 +UV Count: 3 + UV + UV + UV +Face 7179 +UV Count: 3 + UV + UV + UV +Face 7180 +UV Count: 3 + UV + UV + UV +Face 7181 +UV Count: 3 + UV + UV + UV +Face 7182 +UV Count: 3 + UV + UV + UV +Face 7183 +UV Count: 3 + UV + UV + UV +Face 7184 +UV Count: 3 + UV + UV + UV +Face 7185 +UV Count: 3 + UV + UV + UV +Face 7186 +UV Count: 3 + UV + UV + UV +Face 7187 +UV Count: 3 + UV + UV + UV +Face 7188 +UV Count: 3 + UV + UV + UV +Face 7189 +UV Count: 3 + UV + UV + UV +Face 7190 +UV Count: 3 + UV + UV + UV +Face 7191 +UV Count: 3 + UV + UV + UV +Face 7192 +UV Count: 3 + UV + UV + UV +Face 7193 +UV Count: 3 + UV + UV + UV +Face 7194 +UV Count: 3 + UV + UV + UV +Face 7195 +UV Count: 3 + UV + UV + UV +Face 7196 +UV Count: 3 + UV + UV + UV +Face 7197 +UV Count: 3 + UV + UV + UV +Face 7198 +UV Count: 3 + UV + UV + UV +Face 7199 +UV Count: 3 + UV + UV + UV +Face 7200 +UV Count: 3 + UV + UV + UV +Face 7201 +UV Count: 3 + UV + UV + UV +Face 7202 +UV Count: 3 + UV + UV + UV +Face 7203 +UV Count: 3 + UV + UV + UV +Face 7204 +UV Count: 3 + UV + UV + UV +Face 7205 +UV Count: 3 + UV + UV + UV +Face 7206 +UV Count: 3 + UV + UV + UV +Face 7207 +UV Count: 3 + UV + UV + UV +Face 7208 +UV Count: 3 + UV + UV + UV +Face 7209 +UV Count: 3 + UV + UV + UV +Face 7210 +UV Count: 3 + UV + UV + UV +Face 7211 +UV Count: 3 + UV + UV + UV +Face 7212 +UV Count: 3 + UV + UV + UV +Face 7213 +UV Count: 3 + UV + UV + UV +Face 7214 +UV Count: 3 + UV + UV + UV +Face 7215 +UV Count: 3 + UV + UV + UV +Face 7216 +UV Count: 3 + UV + UV + UV +Face 7217 +UV Count: 3 + UV + UV + UV +Face 7218 +UV Count: 3 + UV + UV + UV +Face 7219 +UV Count: 3 + UV + UV + UV +Face 7220 +UV Count: 3 + UV + UV + UV +Face 7221 +UV Count: 3 + UV + UV + UV +Face 7222 +UV Count: 3 + UV + UV + UV +Face 7223 +UV Count: 3 + UV + UV + UV +Face 7224 +UV Count: 3 + UV + UV + UV +Face 7225 +UV Count: 3 + UV + UV + UV +Face 7226 +UV Count: 3 + UV + UV + UV +Face 7227 +UV Count: 3 + UV + UV + UV +Face 7228 +UV Count: 3 + UV + UV + UV +Face 7229 +UV Count: 3 + UV + UV + UV +Face 7230 +UV Count: 3 + UV + UV + UV +Face 7231 +UV Count: 3 + UV + UV + UV +Face 7232 +UV Count: 3 + UV + UV + UV +Face 7233 +UV Count: 3 + UV + UV + UV +Face 7234 +UV Count: 3 + UV + UV + UV +Face 7235 +UV Count: 3 + UV + UV + UV +Face 7236 +UV Count: 3 + UV + UV + UV +Face 7237 +UV Count: 3 + UV + UV + UV +Face 7238 +UV Count: 3 + UV + UV + UV +Face 7239 +UV Count: 3 + UV + UV + UV +Face 7240 +UV Count: 3 + UV + UV + UV +Face 7241 +UV Count: 3 + UV + UV + UV +Face 7242 +UV Count: 3 + UV + UV + UV +Face 7243 +UV Count: 3 + UV + UV + UV +Face 7244 +UV Count: 3 + UV + UV + UV +Face 7245 +UV Count: 3 + UV + UV + UV +Face 7246 +UV Count: 3 + UV + UV + UV +Face 7247 +UV Count: 3 + UV + UV + UV +Face 7248 +UV Count: 3 + UV + UV + UV +Face 7249 +UV Count: 3 + UV + UV + UV +Face 7250 +UV Count: 3 + UV + UV + UV +Face 7251 +UV Count: 3 + UV + UV + UV +Face 7252 +UV Count: 3 + UV + UV + UV +Face 7253 +UV Count: 3 + UV + UV + UV +Face 7254 +UV Count: 3 + UV + UV + UV +Face 7255 +UV Count: 3 + UV + UV + UV +Face 7256 +UV Count: 3 + UV + UV + UV +Face 7257 +UV Count: 3 + UV + UV + UV +Face 7258 +UV Count: 3 + UV + UV + UV +Face 7259 +UV Count: 3 + UV + UV + UV +Face 7260 +UV Count: 3 + UV + UV + UV +Face 7261 +UV Count: 3 + UV + UV + UV +Face 7262 +UV Count: 3 + UV + UV + UV +Face 7263 +UV Count: 3 + UV + UV + UV +Face 7264 +UV Count: 3 + UV + UV + UV +Face 7265 +UV Count: 3 + UV + UV + UV +Face 7266 +UV Count: 3 + UV + UV + UV +Face 7267 +UV Count: 3 + UV + UV + UV +Face 7268 +UV Count: 3 + UV + UV + UV +Face 7269 +UV Count: 3 + UV + UV + UV +Face 7270 +UV Count: 3 + UV + UV + UV +Face 7271 +UV Count: 3 + UV + UV + UV +Face 7272 +UV Count: 3 + UV + UV + UV +Face 7273 +UV Count: 3 + UV + UV + UV +Face 7274 +UV Count: 3 + UV + UV + UV +Face 7275 +UV Count: 3 + UV + UV + UV +Face 7276 +UV Count: 3 + UV + UV + UV +Face 7277 +UV Count: 3 + UV + UV + UV +Face 7278 +UV Count: 3 + UV + UV + UV +Face 7279 +UV Count: 3 + UV + UV + UV +Face 7280 +UV Count: 3 + UV + UV + UV +Face 7281 +UV Count: 3 + UV + UV + UV +Face 7282 +UV Count: 3 + UV + UV + UV +Face 7283 +UV Count: 3 + UV + UV + UV +Face 7284 +UV Count: 3 + UV + UV + UV +Face 7285 +UV Count: 3 + UV + UV + UV +Face 7286 +UV Count: 3 + UV + UV + UV +Face 7287 +UV Count: 3 + UV + UV + UV +Face 7288 +UV Count: 3 + UV + UV + UV +Face 7289 +UV Count: 3 + UV + UV + UV +Face 7290 +UV Count: 3 + UV + UV + UV +Face 7291 +UV Count: 3 + UV + UV + UV +Face 7292 +UV Count: 3 + UV + UV + UV +Face 7293 +UV Count: 3 + UV + UV + UV +Face 7294 +UV Count: 3 + UV + UV + UV +Face 7295 +UV Count: 3 + UV + UV + UV +Face 7296 +UV Count: 3 + UV + UV + UV +Face 7297 +UV Count: 3 + UV + UV + UV +Face 7298 +UV Count: 3 + UV + UV + UV +Face 7299 +UV Count: 3 + UV + UV + UV +Face 7300 +UV Count: 3 + UV + UV + UV +Face 7301 +UV Count: 3 + UV + UV + UV +Face 7302 +UV Count: 3 + UV + UV + UV +Face 7303 +UV Count: 3 + UV + UV + UV +Face 7304 +UV Count: 3 + UV + UV + UV +Face 7305 +UV Count: 3 + UV + UV + UV +Face 7306 +UV Count: 3 + UV + UV + UV +Face 7307 +UV Count: 3 + UV + UV + UV +Face 7308 +UV Count: 3 + UV + UV + UV +Face 7309 +UV Count: 3 + UV + UV + UV +Face 7310 +UV Count: 3 + UV + UV + UV +Face 7311 +UV Count: 3 + UV + UV + UV +Face 7312 +UV Count: 3 + UV + UV + UV +Face 7313 +UV Count: 3 + UV + UV + UV +Face 7314 +UV Count: 3 + UV + UV + UV +Face 7315 +UV Count: 3 + UV + UV + UV +Face 7316 +UV Count: 3 + UV + UV + UV +Face 7317 +UV Count: 3 + UV + UV + UV +Face 7318 +UV Count: 3 + UV + UV + UV +Face 7319 +UV Count: 3 + UV + UV + UV +Face 7320 +UV Count: 3 + UV + UV + UV +Face 7321 +UV Count: 3 + UV + UV + UV +Face 7322 +UV Count: 3 + UV + UV + UV +Face 7323 +UV Count: 3 + UV + UV + UV +Face 7324 +UV Count: 3 + UV + UV + UV +Face 7325 +UV Count: 3 + UV + UV + UV +Face 7326 +UV Count: 3 + UV + UV + UV +Face 7327 +UV Count: 3 + UV + UV + UV +Face 7328 +UV Count: 3 + UV + UV + UV +Face 7329 +UV Count: 3 + UV + UV + UV +Face 7330 +UV Count: 3 + UV + UV + UV +Face 7331 +UV Count: 3 + UV + UV + UV +Face 7332 +UV Count: 3 + UV + UV + UV +Face 7333 +UV Count: 3 + UV + UV + UV +Face 7334 +UV Count: 3 + UV + UV + UV +Face 7335 +UV Count: 3 + UV + UV + UV +Face 7336 +UV Count: 3 + UV + UV + UV +Face 7337 +UV Count: 3 + UV + UV + UV +Face 7338 +UV Count: 3 + UV + UV + UV +Face 7339 +UV Count: 3 + UV + UV + UV +Face 7340 +UV Count: 3 + UV + UV + UV +Face 7341 +UV Count: 3 + UV + UV + UV +Face 7342 +UV Count: 3 + UV + UV + UV +Face 7343 +UV Count: 3 + UV + UV + UV +Face 7344 +UV Count: 3 + UV + UV + UV +Face 7345 +UV Count: 3 + UV + UV + UV +Face 7346 +UV Count: 3 + UV + UV + UV +Face 7347 +UV Count: 3 + UV + UV + UV +Face 7348 +UV Count: 3 + UV + UV + UV +Face 7349 +UV Count: 3 + UV + UV + UV +Face 7350 +UV Count: 3 + UV + UV + UV +Face 7351 +UV Count: 3 + UV + UV + UV +Face 7352 +UV Count: 3 + UV + UV + UV +Face 7353 +UV Count: 3 + UV + UV + UV +Face 7354 +UV Count: 3 + UV + UV + UV +Face 7355 +UV Count: 3 + UV + UV + UV +Face 7356 +UV Count: 3 + UV + UV + UV +Face 7357 +UV Count: 3 + UV + UV + UV +Face 7358 +UV Count: 3 + UV + UV + UV +Face 7359 +UV Count: 3 + UV + UV + UV +Face 7360 +UV Count: 3 + UV + UV + UV +Face 7361 +UV Count: 3 + UV + UV + UV +Face 7362 +UV Count: 3 + UV + UV + UV +Face 7363 +UV Count: 3 + UV + UV + UV +Face 7364 +UV Count: 3 + UV + UV + UV +Face 7365 +UV Count: 3 + UV + UV + UV +Face 7366 +UV Count: 3 + UV + UV + UV +Face 7367 +UV Count: 3 + UV + UV + UV +Face 7368 +UV Count: 3 + UV + UV + UV +Face 7369 +UV Count: 3 + UV + UV + UV +Face 7370 +UV Count: 3 + UV + UV + UV +Face 7371 +UV Count: 3 + UV + UV + UV +Face 7372 +UV Count: 3 + UV + UV + UV +Face 7373 +UV Count: 3 + UV + UV + UV +Face 7374 +UV Count: 3 + UV + UV + UV +Face 7375 +UV Count: 3 + UV + UV + UV +Face 7376 +UV Count: 3 + UV + UV + UV +Face 7377 +UV Count: 3 + UV + UV + UV +Face 7378 +UV Count: 3 + UV + UV + UV +Face 7379 +UV Count: 3 + UV + UV + UV +Face 7380 +UV Count: 3 + UV + UV + UV +Face 7381 +UV Count: 3 + UV + UV + UV +Face 7382 +UV Count: 3 + UV + UV + UV +Face 7383 +UV Count: 3 + UV + UV + UV +Face 7384 +UV Count: 3 + UV + UV + UV +Face 7385 +UV Count: 3 + UV + UV + UV +Face 7386 +UV Count: 3 + UV + UV + UV +Face 7387 +UV Count: 3 + UV + UV + UV +Face 7388 +UV Count: 3 + UV + UV + UV +Face 7389 +UV Count: 3 + UV + UV + UV +Face 7390 +UV Count: 3 + UV + UV + UV +Face 7391 +UV Count: 3 + UV + UV + UV +Face 7392 +UV Count: 3 + UV + UV + UV +Face 7393 +UV Count: 3 + UV + UV + UV +Face 7394 +UV Count: 3 + UV + UV + UV +Face 7395 +UV Count: 3 + UV + UV + UV +Face 7396 +UV Count: 3 + UV + UV + UV +Face 7397 +UV Count: 3 + UV + UV + UV +Face 7398 +UV Count: 3 + UV + UV + UV +Face 7399 +UV Count: 3 + UV + UV + UV +Face 7400 +UV Count: 3 + UV + UV + UV +Face 7401 +UV Count: 3 + UV + UV + UV +Face 7402 +UV Count: 3 + UV + UV + UV +Face 7403 +UV Count: 3 + UV + UV + UV +Face 7404 +UV Count: 3 + UV + UV + UV +Face 7405 +UV Count: 3 + UV + UV + UV +Face 7406 +UV Count: 3 + UV + UV + UV +Face 7407 +UV Count: 3 + UV + UV + UV +Face 7408 +UV Count: 3 + UV + UV + UV +Face 7409 +UV Count: 3 + UV + UV + UV +Face 7410 +UV Count: 3 + UV + UV + UV +Face 7411 +UV Count: 3 + UV + UV + UV +Face 7412 +UV Count: 3 + UV + UV + UV +Face 7413 +UV Count: 3 + UV + UV + UV +Face 7414 +UV Count: 3 + UV + UV + UV +Face 7415 +UV Count: 3 + UV + UV + UV +Face 7416 +UV Count: 3 + UV + UV + UV +Face 7417 +UV Count: 3 + UV + UV + UV +Face 7418 +UV Count: 3 + UV + UV + UV +Face 7419 +UV Count: 3 + UV + UV + UV +Face 7420 +UV Count: 3 + UV + UV + UV +Face 7421 +UV Count: 3 + UV + UV + UV +Face 7422 +UV Count: 3 + UV + UV + UV +Face 7423 +UV Count: 3 + UV + UV + UV +Face 7424 +UV Count: 3 + UV + UV + UV +Face 7425 +UV Count: 3 + UV + UV + UV +Face 7426 +UV Count: 3 + UV + UV + UV +Face 7427 +UV Count: 3 + UV + UV + UV +Face 7428 +UV Count: 3 + UV + UV + UV +Face 7429 +UV Count: 3 + UV + UV + UV +Face 7430 +UV Count: 3 + UV + UV + UV +Face 7431 +UV Count: 3 + UV + UV + UV +Face 7432 +UV Count: 3 + UV + UV + UV +Face 7433 +UV Count: 3 + UV + UV + UV +Face 7434 +UV Count: 3 + UV + UV + UV +Face 7435 +UV Count: 3 + UV + UV + UV +Face 7436 +UV Count: 3 + UV + UV + UV +Face 7437 +UV Count: 3 + UV + UV + UV +Face 7438 +UV Count: 3 + UV + UV + UV +Face 7439 +UV Count: 3 + UV + UV + UV +Face 7440 +UV Count: 3 + UV + UV + UV +Face 7441 +UV Count: 3 + UV + UV + UV +Face 7442 +UV Count: 3 + UV + UV + UV +Face 7443 +UV Count: 3 + UV + UV + UV +Face 7444 +UV Count: 3 + UV + UV + UV +Face 7445 +UV Count: 3 + UV + UV + UV +Face 7446 +UV Count: 3 + UV + UV + UV +Face 7447 +UV Count: 3 + UV + UV + UV +Face 7448 +UV Count: 3 + UV + UV + UV +Face 7449 +UV Count: 3 + UV + UV + UV +Face 7450 +UV Count: 3 + UV + UV + UV +Face 7451 +UV Count: 3 + UV + UV + UV +Face 7452 +UV Count: 3 + UV + UV + UV +Face 7453 +UV Count: 3 + UV + UV + UV +Face 7454 +UV Count: 3 + UV + UV + UV +Face 7455 +UV Count: 3 + UV + UV + UV +Face 7456 +UV Count: 3 + UV + UV + UV +Face 7457 +UV Count: 3 + UV + UV + UV +Face 7458 +UV Count: 3 + UV + UV + UV +Face 7459 +UV Count: 3 + UV + UV + UV +Face 7460 +UV Count: 3 + UV + UV + UV +Face 7461 +UV Count: 3 + UV + UV + UV +Face 7462 +UV Count: 3 + UV + UV + UV +Face 7463 +UV Count: 3 + UV + UV + UV +Face 7464 +UV Count: 3 + UV + UV + UV +Face 7465 +UV Count: 3 + UV + UV + UV +Face 7466 +UV Count: 3 + UV + UV + UV +Face 7467 +UV Count: 3 + UV + UV + UV +Face 7468 +UV Count: 3 + UV + UV + UV +Face 7469 +UV Count: 3 + UV + UV + UV +Face 7470 +UV Count: 3 + UV + UV + UV +Face 7471 +UV Count: 3 + UV + UV + UV +Face 7472 +UV Count: 3 + UV + UV + UV +Face 7473 +UV Count: 3 + UV + UV + UV +Face 7474 +UV Count: 3 + UV + UV + UV +Face 7475 +UV Count: 3 + UV + UV + UV +Face 7476 +UV Count: 3 + UV + UV + UV +Face 7477 +UV Count: 3 + UV + UV + UV +Face 7478 +UV Count: 3 + UV + UV + UV +Face 7479 +UV Count: 3 + UV + UV + UV +Face 7480 +UV Count: 3 + UV + UV + UV +Face 7481 +UV Count: 3 + UV + UV + UV +Face 7482 +UV Count: 3 + UV + UV + UV +Face 7483 +UV Count: 3 + UV + UV + UV +Face 7484 +UV Count: 3 + UV + UV + UV +Face 7485 +UV Count: 3 + UV + UV + UV +Face 7486 +UV Count: 3 + UV + UV + UV +Face 7487 +UV Count: 3 + UV + UV + UV +Face 7488 +UV Count: 3 + UV + UV + UV +Face 7489 +UV Count: 3 + UV + UV + UV +Face 7490 +UV Count: 3 + UV + UV + UV +Face 7491 +UV Count: 3 + UV + UV + UV +Face 7492 +UV Count: 3 + UV + UV + UV +Face 7493 +UV Count: 3 + UV + UV + UV +Face 7494 +UV Count: 3 + UV + UV + UV +Face 7495 +UV Count: 3 + UV + UV + UV +Face 7496 +UV Count: 3 + UV + UV + UV +Face 7497 +UV Count: 3 + UV + UV + UV +Face 7498 +UV Count: 3 + UV + UV + UV +Face 7499 +UV Count: 3 + UV + UV + UV +Face 7500 +UV Count: 3 + UV + UV + UV +Face 7501 +UV Count: 3 + UV + UV + UV +Face 7502 +UV Count: 3 + UV + UV + UV +Face 7503 +UV Count: 3 + UV + UV + UV +Face 7504 +UV Count: 3 + UV + UV + UV +Face 7505 +UV Count: 3 + UV + UV + UV +Face 7506 +UV Count: 3 + UV + UV + UV +Face 7507 +UV Count: 3 + UV + UV + UV +Face 7508 +UV Count: 3 + UV + UV + UV +Face 7509 +UV Count: 3 + UV + UV + UV +Face 7510 +UV Count: 3 + UV + UV + UV +Face 7511 +UV Count: 3 + UV + UV + UV +Face 7512 +UV Count: 3 + UV + UV + UV +Face 7513 +UV Count: 3 + UV + UV + UV +Face 7514 +UV Count: 3 + UV + UV + UV +Face 7515 +UV Count: 3 + UV + UV + UV +Face 7516 +UV Count: 3 + UV + UV + UV +Face 7517 +UV Count: 3 + UV + UV + UV +Face 7518 +UV Count: 3 + UV + UV + UV +Face 7519 +UV Count: 3 + UV + UV + UV +Face 7520 +UV Count: 3 + UV + UV + UV +Face 7521 +UV Count: 3 + UV + UV + UV +Face 7522 +UV Count: 3 + UV + UV + UV +Face 7523 +UV Count: 3 + UV + UV + UV +Face 7524 +UV Count: 3 + UV + UV + UV +Face 7525 +UV Count: 3 + UV + UV + UV +Face 7526 +UV Count: 3 + UV + UV + UV +Face 7527 +UV Count: 3 + UV + UV + UV +Face 7528 +UV Count: 3 + UV + UV + UV +Face 7529 +UV Count: 3 + UV + UV + UV +Face 7530 +UV Count: 3 + UV + UV + UV +Face 7531 +UV Count: 3 + UV + UV + UV +Face 7532 +UV Count: 3 + UV + UV + UV +Face 7533 +UV Count: 3 + UV + UV + UV +Face 7534 +UV Count: 3 + UV + UV + UV +Face 7535 +UV Count: 3 + UV + UV + UV +Face 7536 +UV Count: 3 + UV + UV + UV +Face 7537 +UV Count: 3 + UV + UV + UV +Face 7538 +UV Count: 3 + UV + UV + UV +Face 7539 +UV Count: 3 + UV + UV + UV +Face 7540 +UV Count: 3 + UV + UV + UV +Face 7541 +UV Count: 3 + UV + UV + UV +Face 7542 +UV Count: 3 + UV + UV + UV +Face 7543 +UV Count: 3 + UV + UV + UV +Face 7544 +UV Count: 3 + UV + UV + UV +Face 7545 +UV Count: 3 + UV + UV + UV +Face 7546 +UV Count: 3 + UV + UV + UV +Face 7547 +UV Count: 3 + UV + UV + UV +Face 7548 +UV Count: 3 + UV + UV + UV +Face 7549 +UV Count: 3 + UV + UV + UV +Face 7550 +UV Count: 3 + UV + UV + UV +Face 7551 +UV Count: 3 + UV + UV + UV +Face 7552 +UV Count: 3 + UV + UV + UV +Face 7553 +UV Count: 3 + UV + UV + UV +Face 7554 +UV Count: 3 + UV + UV + UV +Face 7555 +UV Count: 3 + UV + UV + UV +Face 7556 +UV Count: 3 + UV + UV + UV +Face 7557 +UV Count: 3 + UV + UV + UV +Face 7558 +UV Count: 3 + UV + UV + UV +Face 7559 +UV Count: 3 + UV + UV + UV +Face 7560 +UV Count: 3 + UV + UV + UV +Face 7561 +UV Count: 3 + UV + UV + UV +Face 7562 +UV Count: 3 + UV + UV + UV +Face 7563 +UV Count: 3 + UV + UV + UV +Face 7564 +UV Count: 3 + UV + UV + UV +Face 7565 +UV Count: 3 + UV + UV + UV +Face 7566 +UV Count: 3 + UV + UV + UV +Face 7567 +UV Count: 3 + UV + UV + UV +Face 7568 +UV Count: 3 + UV + UV + UV +Face 7569 +UV Count: 3 + UV + UV + UV +Face 7570 +UV Count: 3 + UV + UV + UV +Face 7571 +UV Count: 3 + UV + UV + UV +Face 7572 +UV Count: 3 + UV + UV + UV +Face 7573 +UV Count: 3 + UV + UV + UV +Face 7574 +UV Count: 3 + UV + UV + UV +Face 7575 +UV Count: 3 + UV + UV + UV +Face 7576 +UV Count: 3 + UV + UV + UV +Face 7577 +UV Count: 3 + UV + UV + UV +Face 7578 +UV Count: 3 + UV + UV + UV +Face 7579 +UV Count: 3 + UV + UV + UV +Face 7580 +UV Count: 3 + UV + UV + UV +Face 7581 +UV Count: 3 + UV + UV + UV +Face 7582 +UV Count: 3 + UV + UV + UV +Face 7583 +UV Count: 3 + UV + UV + UV +Face 7584 +UV Count: 3 + UV + UV + UV +Face 7585 +UV Count: 3 + UV + UV + UV +Face 7586 +UV Count: 3 + UV + UV + UV +Face 7587 +UV Count: 3 + UV + UV + UV +Face 7588 +UV Count: 3 + UV + UV + UV +Face 7589 +UV Count: 3 + UV + UV + UV +Face 7590 +UV Count: 3 + UV + UV + UV +Face 7591 +UV Count: 3 + UV + UV + UV +Face 7592 +UV Count: 3 + UV + UV + UV +Face 7593 +UV Count: 3 + UV + UV + UV +Face 7594 +UV Count: 3 + UV + UV + UV +Face 7595 +UV Count: 3 + UV + UV + UV +Face 7596 +UV Count: 3 + UV + UV + UV +Face 7597 +UV Count: 3 + UV + UV + UV +Face 7598 +UV Count: 3 + UV + UV + UV +Face 7599 +UV Count: 3 + UV + UV + UV +Face 7600 +UV Count: 3 + UV + UV + UV +Face 7601 +UV Count: 3 + UV + UV + UV +Face 7602 +UV Count: 3 + UV + UV + UV +Face 7603 +UV Count: 3 + UV + UV + UV +Face 7604 +UV Count: 3 + UV + UV + UV +Face 7605 +UV Count: 3 + UV + UV + UV +Face 7606 +UV Count: 3 + UV + UV + UV +Face 7607 +UV Count: 3 + UV + UV + UV +Face 7608 +UV Count: 3 + UV + UV + UV +Face 7609 +UV Count: 3 + UV + UV + UV +Face 7610 +UV Count: 3 + UV + UV + UV +Face 7611 +UV Count: 3 + UV + UV + UV +Face 7612 +UV Count: 3 + UV + UV + UV +Face 7613 +UV Count: 3 + UV + UV + UV +Face 7614 +UV Count: 3 + UV + UV + UV +Face 7615 +UV Count: 3 + UV + UV + UV +Face 7616 +UV Count: 3 + UV + UV + UV +Face 7617 +UV Count: 3 + UV + UV + UV +Face 7618 +UV Count: 3 + UV + UV + UV +Face 7619 +UV Count: 3 + UV + UV + UV +Face 7620 +UV Count: 3 + UV + UV + UV +Face 7621 +UV Count: 3 + UV + UV + UV +Face 7622 +UV Count: 3 + UV + UV + UV +Face 7623 +UV Count: 3 + UV + UV + UV +Face 7624 +UV Count: 3 + UV + UV + UV +Face 7625 +UV Count: 3 + UV + UV + UV +Face 7626 +UV Count: 3 + UV + UV + UV +Face 7627 +UV Count: 3 + UV + UV + UV +Face 7628 +UV Count: 3 + UV + UV + UV +Face 7629 +UV Count: 3 + UV + UV + UV +Face 7630 +UV Count: 3 + UV + UV + UV +Face 7631 +UV Count: 3 + UV + UV + UV +Face 7632 +UV Count: 3 + UV + UV + UV +Face 7633 +UV Count: 3 + UV + UV + UV +Face 7634 +UV Count: 3 + UV + UV + UV +Face 7635 +UV Count: 3 + UV + UV + UV +Face 7636 +UV Count: 3 + UV + UV + UV +Face 7637 +UV Count: 3 + UV + UV + UV +Face 7638 +UV Count: 3 + UV + UV + UV +Face 7639 +UV Count: 3 + UV + UV + UV +Face 7640 +UV Count: 3 + UV + UV + UV +Face 7641 +UV Count: 3 + UV + UV + UV +Face 7642 +UV Count: 3 + UV + UV + UV +Face 7643 +UV Count: 3 + UV + UV + UV +Face 7644 +UV Count: 3 + UV + UV + UV +Face 7645 +UV Count: 3 + UV + UV + UV +Face 7646 +UV Count: 3 + UV + UV + UV +Face 7647 +UV Count: 3 + UV + UV + UV +Face 7648 +UV Count: 3 + UV + UV + UV +Face 7649 +UV Count: 3 + UV + UV + UV +Face 7650 +UV Count: 3 + UV + UV + UV +Face 7651 +UV Count: 3 + UV + UV + UV +Face 7652 +UV Count: 3 + UV + UV + UV +Face 7653 +UV Count: 3 + UV + UV + UV +Face 7654 +UV Count: 3 + UV + UV + UV +Face 7655 +UV Count: 3 + UV + UV + UV +Face 7656 +UV Count: 3 + UV + UV + UV +Face 7657 +UV Count: 3 + UV + UV + UV +Face 7658 +UV Count: 3 + UV + UV + UV +Face 7659 +UV Count: 3 + UV + UV + UV +Face 7660 +UV Count: 3 + UV + UV + UV +Face 7661 +UV Count: 3 + UV + UV + UV +Face 7662 +UV Count: 3 + UV + UV + UV +Face 7663 +UV Count: 3 + UV + UV + UV +Face 7664 +UV Count: 3 + UV + UV + UV +Face 7665 +UV Count: 3 + UV + UV + UV +Face 7666 +UV Count: 3 + UV + UV + UV +Face 7667 +UV Count: 3 + UV + UV + UV +Face 7668 +UV Count: 3 + UV + UV + UV +Face 7669 +UV Count: 3 + UV + UV + UV +Face 7670 +UV Count: 3 + UV + UV + UV +Face 7671 +UV Count: 3 + UV + UV + UV +Face 7672 +UV Count: 3 + UV + UV + UV +Face 7673 +UV Count: 3 + UV + UV + UV +Face 7674 +UV Count: 3 + UV + UV + UV +Face 7675 +UV Count: 3 + UV + UV + UV +Face 7676 +UV Count: 3 + UV + UV + UV +Face 7677 +UV Count: 3 + UV + UV + UV +Face 7678 +UV Count: 3 + UV + UV + UV +Face 7679 +UV Count: 3 + UV + UV + UV +Face 7680 +UV Count: 3 + UV + UV + UV +Face 7681 +UV Count: 3 + UV + UV + UV +Face 7682 +UV Count: 3 + UV + UV + UV +Face 7683 +UV Count: 3 + UV + UV + UV +Face 7684 +UV Count: 3 + UV + UV + UV +Face 7685 +UV Count: 3 + UV + UV + UV +Face 7686 +UV Count: 3 + UV + UV + UV +Face 7687 +UV Count: 3 + UV + UV + UV +Face 7688 +UV Count: 3 + UV + UV + UV +Face 7689 +UV Count: 3 + UV + UV + UV +Face 7690 +UV Count: 3 + UV + UV + UV +Face 7691 +UV Count: 3 + UV + UV + UV +Face 7692 +UV Count: 3 + UV + UV + UV +Face 7693 +UV Count: 3 + UV + UV + UV +Face 7694 +UV Count: 3 + UV + UV + UV +Face 7695 +UV Count: 3 + UV + UV + UV +Face 7696 +UV Count: 3 + UV + UV + UV +Face 7697 +UV Count: 3 + UV + UV + UV +Face 7698 +UV Count: 3 + UV + UV + UV +Face 7699 +UV Count: 3 + UV + UV + UV +Face 7700 +UV Count: 3 + UV + UV + UV +Face 7701 +UV Count: 3 + UV + UV + UV +Face 7702 +UV Count: 3 + UV + UV + UV +Face 7703 +UV Count: 3 + UV + UV + UV +Face 7704 +UV Count: 3 + UV + UV + UV +Face 7705 +UV Count: 3 + UV + UV + UV +Face 7706 +UV Count: 3 + UV + UV + UV +Face 7707 +UV Count: 3 + UV + UV + UV +Face 7708 +UV Count: 3 + UV + UV + UV +Face 7709 +UV Count: 3 + UV + UV + UV +Face 7710 +UV Count: 3 + UV + UV + UV +Face 7711 +UV Count: 3 + UV + UV + UV +Face 7712 +UV Count: 3 + UV + UV + UV +Face 7713 +UV Count: 3 + UV + UV + UV +Face 7714 +UV Count: 3 + UV + UV + UV +Face 7715 +UV Count: 3 + UV + UV + UV +Face 7716 +UV Count: 3 + UV + UV + UV +Face 7717 +UV Count: 3 + UV + UV + UV +Face 7718 +UV Count: 3 + UV + UV + UV +Face 7719 +UV Count: 3 + UV + UV + UV +Face 7720 +UV Count: 3 + UV + UV + UV +Face 7721 +UV Count: 3 + UV + UV + UV +Face 7722 +UV Count: 3 + UV + UV + UV +Face 7723 +UV Count: 3 + UV + UV + UV +Face 7724 +UV Count: 3 + UV + UV + UV +Face 7725 +UV Count: 3 + UV + UV + UV +Face 7726 +UV Count: 3 + UV + UV + UV +Face 7727 +UV Count: 3 + UV + UV + UV +Face 7728 +UV Count: 3 + UV + UV + UV +Face 7729 +UV Count: 3 + UV + UV + UV +Face 7730 +UV Count: 3 + UV + UV + UV +Face 7731 +UV Count: 3 + UV + UV + UV +Face 7732 +UV Count: 3 + UV + UV + UV +Face 7733 +UV Count: 3 + UV + UV + UV +Face 7734 +UV Count: 3 + UV + UV + UV +Face 7735 +UV Count: 3 + UV + UV + UV +Face 7736 +UV Count: 3 + UV + UV + UV +Face 7737 +UV Count: 3 + UV + UV + UV +Face 7738 +UV Count: 3 + UV + UV + UV +Face 7739 +UV Count: 3 + UV + UV + UV +Face 7740 +UV Count: 3 + UV + UV + UV +Face 7741 +UV Count: 3 + UV + UV + UV +Face 7742 +UV Count: 3 + UV + UV + UV +Face 7743 +UV Count: 3 + UV + UV + UV +Face 7744 +UV Count: 3 + UV + UV + UV +Face 7745 +UV Count: 3 + UV + UV + UV +Face 7746 +UV Count: 3 + UV + UV + UV +Face 7747 +UV Count: 3 + UV + UV + UV +Face 7748 +UV Count: 3 + UV + UV + UV +Face 7749 +UV Count: 3 + UV + UV + UV +Face 7750 +UV Count: 3 + UV + UV + UV +Face 7751 +UV Count: 3 + UV + UV + UV +Face 7752 +UV Count: 3 + UV + UV + UV +Face 7753 +UV Count: 3 + UV + UV + UV +Face 7754 +UV Count: 3 + UV + UV + UV +Face 7755 +UV Count: 3 + UV + UV + UV +Face 7756 +UV Count: 3 + UV + UV + UV +Face 7757 +UV Count: 3 + UV + UV + UV +Face 7758 +UV Count: 3 + UV + UV + UV +Face 7759 +UV Count: 3 + UV + UV + UV +Face 7760 +UV Count: 3 + UV + UV + UV +Face 7761 +UV Count: 3 + UV + UV + UV +Face 7762 +UV Count: 3 + UV + UV + UV +Face 7763 +UV Count: 3 + UV + UV + UV +Face 7764 +UV Count: 3 + UV + UV + UV +Face 7765 +UV Count: 3 + UV + UV + UV +Face 7766 +UV Count: 3 + UV + UV + UV +Face 7767 +UV Count: 3 + UV + UV + UV +Face 7768 +UV Count: 3 + UV + UV + UV +Face 7769 +UV Count: 3 + UV + UV + UV +Face 7770 +UV Count: 3 + UV + UV + UV +Face 7771 +UV Count: 3 + UV + UV + UV +Face 7772 +UV Count: 3 + UV + UV + UV +Face 7773 +UV Count: 3 + UV + UV + UV +Face 7774 +UV Count: 3 + UV + UV + UV +Face 7775 +UV Count: 3 + UV + UV + UV +Face 7776 +UV Count: 3 + UV + UV + UV +Face 7777 +UV Count: 3 + UV + UV + UV +Face 7778 +UV Count: 3 + UV + UV + UV +Face 7779 +UV Count: 3 + UV + UV + UV +Face 7780 +UV Count: 3 + UV + UV + UV +Face 7781 +UV Count: 3 + UV + UV + UV +Face 7782 +UV Count: 3 + UV + UV + UV +Face 7783 +UV Count: 3 + UV + UV + UV +Face 7784 +UV Count: 3 + UV + UV + UV +Face 7785 +UV Count: 3 + UV + UV + UV +Face 7786 +UV Count: 3 + UV + UV + UV +Face 7787 +UV Count: 3 + UV + UV + UV +Face 7788 +UV Count: 3 + UV + UV + UV +Face 7789 +UV Count: 3 + UV + UV + UV +Face 7790 +UV Count: 3 + UV + UV + UV +Face 7791 +UV Count: 3 + UV + UV + UV +Face 7792 +UV Count: 3 + UV + UV + UV +Face 7793 +UV Count: 3 + UV + UV + UV +Face 7794 +UV Count: 3 + UV + UV + UV +Face 7795 +UV Count: 3 + UV + UV + UV +Face 7796 +UV Count: 3 + UV + UV + UV +Face 7797 +UV Count: 3 + UV + UV + UV +Face 7798 +UV Count: 3 + UV + UV + UV +Face 7799 +UV Count: 3 + UV + UV + UV +Face 7800 +UV Count: 3 + UV + UV + UV +Face 7801 +UV Count: 3 + UV + UV + UV +Face 7802 +UV Count: 3 + UV + UV + UV +Face 7803 +UV Count: 3 + UV + UV + UV +Face 7804 +UV Count: 3 + UV + UV + UV +Face 7805 +UV Count: 3 + UV + UV + UV +Face 7806 +UV Count: 3 + UV + UV + UV +Face 7807 +UV Count: 3 + UV + UV + UV +Face 7808 +UV Count: 3 + UV + UV + UV +Face 7809 +UV Count: 3 + UV + UV + UV +Face 7810 +UV Count: 3 + UV + UV + UV +Face 7811 +UV Count: 3 + UV + UV + UV +Face 7812 +UV Count: 3 + UV + UV + UV +Face 7813 +UV Count: 3 + UV + UV + UV +Face 7814 +UV Count: 3 + UV + UV + UV +Face 7815 +UV Count: 3 + UV + UV + UV +Face 7816 +UV Count: 3 + UV + UV + UV +Face 7817 +UV Count: 3 + UV + UV + UV +Face 7818 +UV Count: 3 + UV + UV + UV +Face 7819 +UV Count: 3 + UV + UV + UV +Face 7820 +UV Count: 3 + UV + UV + UV +Face 7821 +UV Count: 3 + UV + UV + UV +Face 7822 +UV Count: 3 + UV + UV + UV +Face 7823 +UV Count: 3 + UV + UV + UV +Face 7824 +UV Count: 3 + UV + UV + UV +Face 7825 +UV Count: 3 + UV + UV + UV +Face 7826 +UV Count: 3 + UV + UV + UV +Face 7827 +UV Count: 3 + UV + UV + UV +Face 7828 +UV Count: 3 + UV + UV + UV +Face 7829 +UV Count: 3 + UV + UV + UV +Face 7830 +UV Count: 3 + UV + UV + UV +Face 7831 +UV Count: 3 + UV + UV + UV +Face 7832 +UV Count: 3 + UV + UV + UV +Face 7833 +UV Count: 3 + UV + UV + UV +Face 7834 +UV Count: 3 + UV + UV + UV +Face 7835 +UV Count: 3 + UV + UV + UV +Face 7836 +UV Count: 3 + UV + UV + UV +Face 7837 +UV Count: 3 + UV + UV + UV +Face 7838 +UV Count: 3 + UV + UV + UV +Face 7839 +UV Count: 3 + UV + UV + UV +Face 7840 +UV Count: 3 + UV + UV + UV +Face 7841 +UV Count: 3 + UV + UV + UV +Face 7842 +UV Count: 3 + UV + UV + UV +Face 7843 +UV Count: 3 + UV + UV + UV +Face 7844 +UV Count: 3 + UV + UV + UV +Face 7845 +UV Count: 3 + UV + UV + UV +Face 7846 +UV Count: 3 + UV + UV + UV +Face 7847 +UV Count: 3 + UV + UV + UV +Face 7848 +UV Count: 3 + UV + UV + UV +Face 7849 +UV Count: 3 + UV + UV + UV +Face 7850 +UV Count: 3 + UV + UV + UV +Face 7851 +UV Count: 3 + UV + UV + UV +Face 7852 +UV Count: 3 + UV + UV + UV +Face 7853 +UV Count: 3 + UV + UV + UV +Face 7854 +UV Count: 3 + UV + UV + UV +Face 7855 +UV Count: 3 + UV + UV + UV +Face 7856 +UV Count: 3 + UV + UV + UV +Face 7857 +UV Count: 3 + UV + UV + UV +Face 7858 +UV Count: 3 + UV + UV + UV +Face 7859 +UV Count: 3 + UV + UV + UV +Face 7860 +UV Count: 3 + UV + UV + UV +Face 7861 +UV Count: 3 + UV + UV + UV +Face 7862 +UV Count: 3 + UV + UV + UV +Face 7863 +UV Count: 3 + UV + UV + UV +Face 7864 +UV Count: 3 + UV + UV + UV +Face 7865 +UV Count: 3 + UV + UV + UV +Face 7866 +UV Count: 3 + UV + UV + UV +Face 7867 +UV Count: 3 + UV + UV + UV +Face 7868 +UV Count: 3 + UV + UV + UV +Face 7869 +UV Count: 3 + UV + UV + UV +Face 7870 +UV Count: 3 + UV + UV + UV +Face 7871 +UV Count: 3 + UV + UV + UV +Face 7872 +UV Count: 3 + UV + UV + UV +Face 7873 +UV Count: 3 + UV + UV + UV +Face 7874 +UV Count: 3 + UV + UV + UV +Face 7875 +UV Count: 3 + UV + UV + UV +Face 7876 +UV Count: 3 + UV + UV + UV +Face 7877 +UV Count: 3 + UV + UV + UV +Face 7878 +UV Count: 3 + UV + UV + UV +Face 7879 +UV Count: 3 + UV + UV + UV +Face 7880 +UV Count: 3 + UV + UV + UV +Face 7881 +UV Count: 3 + UV + UV + UV +Face 7882 +UV Count: 3 + UV + UV + UV +Face 7883 +UV Count: 3 + UV + UV + UV +Face 7884 +UV Count: 3 + UV + UV + UV +Face 7885 +UV Count: 3 + UV + UV + UV +Face 7886 +UV Count: 3 + UV + UV + UV +Face 7887 +UV Count: 3 + UV + UV + UV +Face 7888 +UV Count: 3 + UV + UV + UV +Face 7889 +UV Count: 3 + UV + UV + UV +Face 7890 +UV Count: 3 + UV + UV + UV +Face 7891 +UV Count: 3 + UV + UV + UV +Face 7892 +UV Count: 3 + UV + UV + UV +Face 7893 +UV Count: 3 + UV + UV + UV +Face 7894 +UV Count: 3 + UV + UV + UV +Face 7895 +UV Count: 3 + UV + UV + UV +Face 7896 +UV Count: 3 + UV + UV + UV +Face 7897 +UV Count: 3 + UV + UV + UV +Face 7898 +UV Count: 3 + UV + UV + UV +Face 7899 +UV Count: 3 + UV + UV + UV +Face 7900 +UV Count: 3 + UV + UV + UV +Face 7901 +UV Count: 3 + UV + UV + UV +Face 7902 +UV Count: 3 + UV + UV + UV +Face 7903 +UV Count: 3 + UV + UV + UV +Face 7904 +UV Count: 3 + UV + UV + UV +Face 7905 +UV Count: 3 + UV + UV + UV +Face 7906 +UV Count: 3 + UV + UV + UV +Face 7907 +UV Count: 3 + UV + UV + UV +Face 7908 +UV Count: 3 + UV + UV + UV +Face 7909 +UV Count: 3 + UV + UV + UV +Face 7910 +UV Count: 3 + UV + UV + UV +Face 7911 +UV Count: 3 + UV + UV + UV +Face 7912 +UV Count: 3 + UV + UV + UV +Face 7913 +UV Count: 3 + UV + UV + UV +Face 7914 +UV Count: 3 + UV + UV + UV +Face 7915 +UV Count: 3 + UV + UV + UV +Face 7916 +UV Count: 3 + UV + UV + UV +Face 7917 +UV Count: 3 + UV + UV + UV +Face 7918 +UV Count: 3 + UV + UV + UV +Face 7919 +UV Count: 3 + UV + UV + UV +Face 7920 +UV Count: 3 + UV + UV + UV +Face 7921 +UV Count: 3 + UV + UV + UV +Face 7922 +UV Count: 3 + UV + UV + UV +Face 7923 +UV Count: 3 + UV + UV + UV +Face 7924 +UV Count: 3 + UV + UV + UV +Face 7925 +UV Count: 3 + UV + UV + UV +Face 7926 +UV Count: 3 + UV + UV + UV +Face 7927 +UV Count: 3 + UV + UV + UV +Face 7928 +UV Count: 3 + UV + UV + UV +Face 7929 +UV Count: 3 + UV + UV + UV +Face 7930 +UV Count: 3 + UV + UV + UV +Face 7931 +UV Count: 3 + UV + UV + UV +Face 7932 +UV Count: 3 + UV + UV + UV +Face 7933 +UV Count: 3 + UV + UV + UV +Face 7934 +UV Count: 3 + UV + UV + UV +Face 7935 +UV Count: 3 + UV + UV + UV +Face 7936 +UV Count: 3 + UV + UV + UV +Face 7937 +UV Count: 3 + UV + UV + UV +Face 7938 +UV Count: 3 + UV + UV + UV +Face 7939 +UV Count: 3 + UV + UV + UV +Face 7940 +UV Count: 3 + UV + UV + UV +Face 7941 +UV Count: 3 + UV + UV + UV +Face 7942 +UV Count: 3 + UV + UV + UV +Face 7943 +UV Count: 3 + UV + UV + UV +Face 7944 +UV Count: 3 + UV + UV + UV +Face 7945 +UV Count: 3 + UV + UV + UV +Face 7946 +UV Count: 3 + UV + UV + UV +Face 7947 +UV Count: 3 + UV + UV + UV +Face 7948 +UV Count: 3 + UV + UV + UV +Face 7949 +UV Count: 3 + UV + UV + UV +Face 7950 +UV Count: 3 + UV + UV + UV +Face 7951 +UV Count: 3 + UV + UV + UV +Face 7952 +UV Count: 3 + UV + UV + UV +Face 7953 +UV Count: 3 + UV + UV + UV +Face 7954 +UV Count: 3 + UV + UV + UV +Face 7955 +UV Count: 3 + UV + UV + UV +Face 7956 +UV Count: 3 + UV + UV + UV +Face 7957 +UV Count: 3 + UV + UV + UV +Face 7958 +UV Count: 3 + UV + UV + UV +Face 7959 +UV Count: 3 + UV + UV + UV +Face 7960 +UV Count: 3 + UV + UV + UV +Face 7961 +UV Count: 3 + UV + UV + UV +Face 7962 +UV Count: 3 + UV + UV + UV +Face 7963 +UV Count: 3 + UV + UV + UV +Face 7964 +UV Count: 3 + UV + UV + UV +Face 7965 +UV Count: 3 + UV + UV + UV +Face 7966 +UV Count: 3 + UV + UV + UV +Face 7967 +UV Count: 3 + UV + UV + UV +Face 7968 +UV Count: 3 + UV + UV + UV +Face 7969 +UV Count: 3 + UV + UV + UV +Face 7970 +UV Count: 3 + UV + UV + UV +Face 7971 +UV Count: 3 + UV + UV + UV +Face 7972 +UV Count: 3 + UV + UV + UV +Face 7973 +UV Count: 3 + UV + UV + UV +Face 7974 +UV Count: 3 + UV + UV + UV +Face 7975 +UV Count: 3 + UV + UV + UV +Face 7976 +UV Count: 3 + UV + UV + UV +Face 7977 +UV Count: 3 + UV + UV + UV +Face 7978 +UV Count: 3 + UV + UV + UV +Face 7979 +UV Count: 3 + UV + UV + UV +Face 7980 +UV Count: 3 + UV + UV + UV +Face 7981 +UV Count: 3 + UV + UV + UV +Face 7982 +UV Count: 3 + UV + UV + UV +Face 7983 +UV Count: 3 + UV + UV + UV +Face 7984 +UV Count: 3 + UV + UV + UV +Face 7985 +UV Count: 3 + UV + UV + UV +Face 7986 +UV Count: 3 + UV + UV + UV +Face 7987 +UV Count: 3 + UV + UV + UV +Face 7988 +UV Count: 3 + UV + UV + UV +Face 7989 +UV Count: 3 + UV + UV + UV +Face 7990 +UV Count: 3 + UV + UV + UV +Face 7991 +UV Count: 3 + UV + UV + UV +Face 7992 +UV Count: 3 + UV + UV + UV +Face 7993 +UV Count: 3 + UV + UV + UV +Face 7994 +UV Count: 3 + UV + UV + UV +Face 7995 +UV Count: 3 + UV + UV + UV +Face 7996 +UV Count: 3 + UV + UV + UV +Face 7997 +UV Count: 3 + UV + UV + UV +Face 7998 +UV Count: 3 + UV + UV + UV +Face 7999 +UV Count: 3 + UV + UV + UV +Face 8000 +UV Count: 3 + UV + UV + UV +Face 8001 +UV Count: 3 + UV + UV + UV +Face 8002 +UV Count: 3 + UV + UV + UV +Face 8003 +UV Count: 3 + UV + UV + UV +Face 8004 +UV Count: 3 + UV + UV + UV +Face 8005 +UV Count: 3 + UV + UV + UV +Face 8006 +UV Count: 3 + UV + UV + UV +Face 8007 +UV Count: 3 + UV + UV + UV +Face 8008 +UV Count: 3 + UV + UV + UV +Face 8009 +UV Count: 3 + UV + UV + UV +Face 8010 +UV Count: 3 + UV + UV + UV +Face 8011 +UV Count: 3 + UV + UV + UV +Face 8012 +UV Count: 3 + UV + UV + UV +Face 8013 +UV Count: 3 + UV + UV + UV +Face 8014 +UV Count: 3 + UV + UV + UV +Face 8015 +UV Count: 3 + UV + UV + UV +Face 8016 +UV Count: 3 + UV + UV + UV +Face 8017 +UV Count: 3 + UV + UV + UV +Face 8018 +UV Count: 3 + UV + UV + UV +Face 8019 +UV Count: 3 + UV + UV + UV +Face 8020 +UV Count: 3 + UV + UV + UV +Face 8021 +UV Count: 3 + UV + UV + UV +Face 8022 +UV Count: 3 + UV + UV + UV +Face 8023 +UV Count: 3 + UV + UV + UV +Face 8024 +UV Count: 3 + UV + UV + UV +Face 8025 +UV Count: 3 + UV + UV + UV +Face 8026 +UV Count: 3 + UV + UV + UV +Face 8027 +UV Count: 3 + UV + UV + UV +Face 8028 +UV Count: 3 + UV + UV + UV +Face 8029 +UV Count: 3 + UV + UV + UV +Face 8030 +UV Count: 3 + UV + UV + UV +Face 8031 +UV Count: 3 + UV + UV + UV +Face 8032 +UV Count: 3 + UV + UV + UV +Face 8033 +UV Count: 3 + UV + UV + UV +Face 8034 +UV Count: 3 + UV + UV + UV +Face 8035 +UV Count: 3 + UV + UV + UV +Face 8036 +UV Count: 3 + UV + UV + UV +Face 8037 +UV Count: 3 + UV + UV + UV +Face 8038 +UV Count: 3 + UV + UV + UV +Face 8039 +UV Count: 3 + UV + UV + UV +Face 8040 +UV Count: 3 + UV + UV + UV +Face 8041 +UV Count: 3 + UV + UV + UV +Face 8042 +UV Count: 3 + UV + UV + UV +Face 8043 +UV Count: 3 + UV + UV + UV +Face 8044 +UV Count: 3 + UV + UV + UV +Face 8045 +UV Count: 3 + UV + UV + UV +Face 8046 +UV Count: 3 + UV + UV + UV +Face 8047 +UV Count: 3 + UV + UV + UV +Face 8048 +UV Count: 3 + UV + UV + UV +Face 8049 +UV Count: 3 + UV + UV + UV +Face 8050 +UV Count: 3 + UV + UV + UV +Face 8051 +UV Count: 3 + UV + UV + UV +Face 8052 +UV Count: 3 + UV + UV + UV +Face 8053 +UV Count: 3 + UV + UV + UV +Face 8054 +UV Count: 3 + UV + UV + UV +Face 8055 +UV Count: 3 + UV + UV + UV +Face 8056 +UV Count: 3 + UV + UV + UV +Face 8057 +UV Count: 3 + UV + UV + UV +Face 8058 +UV Count: 3 + UV + UV + UV +Face 8059 +UV Count: 3 + UV + UV + UV +Face 8060 +UV Count: 3 + UV + UV + UV +Face 8061 +UV Count: 3 + UV + UV + UV +Face 8062 +UV Count: 3 + UV + UV + UV +Face 8063 +UV Count: 3 + UV + UV + UV +Face 8064 +UV Count: 3 + UV + UV + UV +Face 8065 +UV Count: 3 + UV + UV + UV +Face 8066 +UV Count: 3 + UV + UV + UV +Face 8067 +UV Count: 3 + UV + UV + UV +Face 8068 +UV Count: 3 + UV + UV + UV +Face 8069 +UV Count: 3 + UV + UV + UV +Face 8070 +UV Count: 3 + UV + UV + UV +Face 8071 +UV Count: 3 + UV + UV + UV +Face 8072 +UV Count: 3 + UV + UV + UV +Face 8073 +UV Count: 3 + UV + UV + UV +Face 8074 +UV Count: 3 + UV + UV + UV +Face 8075 +UV Count: 3 + UV + UV + UV +Face 8076 +UV Count: 3 + UV + UV + UV +Face 8077 +UV Count: 3 + UV + UV + UV +Face 8078 +UV Count: 3 + UV + UV + UV +Face 8079 +UV Count: 3 + UV + UV + UV +Face 8080 +UV Count: 3 + UV + UV + UV +Face 8081 +UV Count: 3 + UV + UV + UV +Face 8082 +UV Count: 3 + UV + UV + UV +Face 8083 +UV Count: 3 + UV + UV + UV +Face 8084 +UV Count: 3 + UV + UV + UV +Face 8085 +UV Count: 3 + UV + UV + UV +Face 8086 +UV Count: 3 + UV + UV + UV +Face 8087 +UV Count: 3 + UV + UV + UV +Face 8088 +UV Count: 3 + UV + UV + UV +Face 8089 +UV Count: 3 + UV + UV + UV +Face 8090 +UV Count: 3 + UV + UV + UV +Face 8091 +UV Count: 3 + UV + UV + UV +Face 8092 +UV Count: 3 + UV + UV + UV +Face 8093 +UV Count: 3 + UV + UV + UV +Face 8094 +UV Count: 3 + UV + UV + UV +Face 8095 +UV Count: 3 + UV + UV + UV +Face 8096 +UV Count: 3 + UV + UV + UV +Face 8097 +UV Count: 3 + UV + UV + UV +Face 8098 +UV Count: 3 + UV + UV + UV +Face 8099 +UV Count: 3 + UV + UV + UV +Face 8100 +UV Count: 3 + UV + UV + UV +Face 8101 +UV Count: 3 + UV + UV + UV +Face 8102 +UV Count: 3 + UV + UV + UV +Face 8103 +UV Count: 3 + UV + UV + UV +Face 8104 +UV Count: 3 + UV + UV + UV +Face 8105 +UV Count: 3 + UV + UV + UV +Face 8106 +UV Count: 3 + UV + UV + UV +Face 8107 +UV Count: 3 + UV + UV + UV +Face 8108 +UV Count: 3 + UV + UV + UV +Face 8109 +UV Count: 3 + UV + UV + UV +Face 8110 +UV Count: 3 + UV + UV + UV +Face 8111 +UV Count: 3 + UV + UV + UV +Face 8112 +UV Count: 3 + UV + UV + UV +Face 8113 +UV Count: 3 + UV + UV + UV +Face 8114 +UV Count: 3 + UV + UV + UV +Face 8115 +UV Count: 3 + UV + UV + UV +Face 8116 +UV Count: 3 + UV + UV + UV +Face 8117 +UV Count: 3 + UV + UV + UV +Face 8118 +UV Count: 3 + UV + UV + UV +Face 8119 +UV Count: 3 + UV + UV + UV +Face 8120 +UV Count: 3 + UV + UV + UV +Face 8121 +UV Count: 3 + UV + UV + UV +Face 8122 +UV Count: 3 + UV + UV + UV +Face 8123 +UV Count: 3 + UV + UV + UV +Face 8124 +UV Count: 3 + UV + UV + UV +Face 8125 +UV Count: 3 + UV + UV + UV +Face 8126 +UV Count: 3 + UV + UV + UV +Face 8127 +UV Count: 3 + UV + UV + UV +Face 8128 +UV Count: 3 + UV + UV + UV +Face 8129 +UV Count: 3 + UV + UV + UV +Face 8130 +UV Count: 3 + UV + UV + UV +Face 8131 +UV Count: 3 + UV + UV + UV +Face 8132 +UV Count: 3 + UV + UV + UV +Face 8133 +UV Count: 3 + UV + UV + UV +Face 8134 +UV Count: 3 + UV + UV + UV +Face 8135 +UV Count: 3 + UV + UV + UV +Face 8136 +UV Count: 3 + UV + UV + UV +Face 8137 +UV Count: 3 + UV + UV + UV +Face 8138 +UV Count: 3 + UV + UV + UV +Face 8139 +UV Count: 3 + UV + UV + UV +Face 8140 +UV Count: 3 + UV + UV + UV +Face 8141 +UV Count: 3 + UV + UV + UV +Face 8142 +UV Count: 3 + UV + UV + UV +Face 8143 +UV Count: 3 + UV + UV + UV +Face 8144 +UV Count: 3 + UV + UV + UV +Face 8145 +UV Count: 3 + UV + UV + UV +Face 8146 +UV Count: 3 + UV + UV + UV +Face 8147 +UV Count: 3 + UV + UV + UV +Face 8148 +UV Count: 3 + UV + UV + UV +Face 8149 +UV Count: 3 + UV + UV + UV +Face 8150 +UV Count: 3 + UV + UV + UV +Face 8151 +UV Count: 3 + UV + UV + UV +Face 8152 +UV Count: 3 + UV + UV + UV +Face 8153 +UV Count: 3 + UV + UV + UV +Face 8154 +UV Count: 3 + UV + UV + UV +Face 8155 +UV Count: 3 + UV + UV + UV +Face 8156 +UV Count: 3 + UV + UV + UV +Face 8157 +UV Count: 3 + UV + UV + UV +Face 8158 +UV Count: 3 + UV + UV + UV +Face 8159 +UV Count: 3 + UV + UV + UV +Face 8160 +UV Count: 3 + UV + UV + UV +Face 8161 +UV Count: 3 + UV + UV + UV +Face 8162 +UV Count: 3 + UV + UV + UV +Face 8163 +UV Count: 3 + UV + UV + UV +Face 8164 +UV Count: 3 + UV + UV + UV +Face 8165 +UV Count: 3 + UV + UV + UV +Face 8166 +UV Count: 3 + UV + UV + UV +Face 8167 +UV Count: 3 + UV + UV + UV +Face 8168 +UV Count: 3 + UV + UV + UV +Face 8169 +UV Count: 3 + UV + UV + UV +Face 8170 +UV Count: 3 + UV + UV + UV +Face 8171 +UV Count: 3 + UV + UV + UV +Face 8172 +UV Count: 3 + UV + UV + UV +Face 8173 +UV Count: 3 + UV + UV + UV +Face 8174 +UV Count: 3 + UV + UV + UV +Face 8175 +UV Count: 3 + UV + UV + UV +Face 8176 +UV Count: 3 + UV + UV + UV +Face 8177 +UV Count: 3 + UV + UV + UV +Face 8178 +UV Count: 3 + UV + UV + UV +Face 8179 +UV Count: 3 + UV + UV + UV +Face 8180 +UV Count: 3 + UV + UV + UV +Face 8181 +UV Count: 3 + UV + UV + UV +Face 8182 +UV Count: 3 + UV + UV + UV +Face 8183 +UV Count: 3 + UV + UV + UV +Face 8184 +UV Count: 3 + UV + UV + UV +Face 8185 +UV Count: 3 + UV + UV + UV +Face 8186 +UV Count: 3 + UV + UV + UV +Face 8187 +UV Count: 3 + UV + UV + UV +Face 8188 +UV Count: 3 + UV + UV + UV +Face 8189 +UV Count: 3 + UV + UV + UV +Face 8190 +UV Count: 3 + UV + UV + UV +Face 8191 +UV Count: 3 + UV + UV + UV +Face 8192 +UV Count: 3 + UV + UV + UV +Face 8193 +UV Count: 3 + UV + UV + UV +Face 8194 +UV Count: 3 + UV + UV + UV +Face 8195 +UV Count: 3 + UV + UV + UV +Face 8196 +UV Count: 3 + UV + UV + UV +Face 8197 +UV Count: 3 + UV + UV + UV +Face 8198 +UV Count: 3 + UV + UV + UV +Face 8199 +UV Count: 3 + UV + UV + UV +Face 8200 +UV Count: 3 + UV + UV + UV +Face 8201 +UV Count: 3 + UV + UV + UV +Face 8202 +UV Count: 3 + UV + UV + UV +Face 8203 +UV Count: 3 + UV + UV + UV +Face 8204 +UV Count: 3 + UV + UV + UV +Face 8205 +UV Count: 3 + UV + UV + UV +Face 8206 +UV Count: 3 + UV + UV + UV +Face 8207 +UV Count: 3 + UV + UV + UV +Face 8208 +UV Count: 3 + UV + UV + UV +Face 8209 +UV Count: 3 + UV + UV + UV +Face 8210 +UV Count: 3 + UV + UV + UV +Face 8211 +UV Count: 3 + UV + UV + UV +Face 8212 +UV Count: 3 + UV + UV + UV +Face 8213 +UV Count: 3 + UV + UV + UV +Face 8214 +UV Count: 3 + UV + UV + UV +Face 8215 +UV Count: 3 + UV + UV + UV +Face 8216 +UV Count: 3 + UV + UV + UV +Face 8217 +UV Count: 3 + UV + UV + UV +Face 8218 +UV Count: 3 + UV + UV + UV +Face 8219 +UV Count: 3 + UV + UV + UV +Face 8220 +UV Count: 3 + UV + UV + UV +Face 8221 +UV Count: 3 + UV + UV + UV +Face 8222 +UV Count: 3 + UV + UV + UV +Face 8223 +UV Count: 3 + UV + UV + UV +Face 8224 +UV Count: 3 + UV + UV + UV +Face 8225 +UV Count: 3 + UV + UV + UV +Face 8226 +UV Count: 3 + UV + UV + UV +Face 8227 +UV Count: 3 + UV + UV + UV +Face 8228 +UV Count: 3 + UV + UV + UV +Face 8229 +UV Count: 3 + UV + UV + UV +Face 8230 +UV Count: 3 + UV + UV + UV +Face 8231 +UV Count: 3 + UV + UV + UV +Face 8232 +UV Count: 3 + UV + UV + UV +Face 8233 +UV Count: 3 + UV + UV + UV +Face 8234 +UV Count: 3 + UV + UV + UV +Face 8235 +UV Count: 3 + UV + UV + UV +Face 8236 +UV Count: 3 + UV + UV + UV +Face 8237 +UV Count: 3 + UV + UV + UV +Face 8238 +UV Count: 3 + UV + UV + UV +Face 8239 +UV Count: 3 + UV + UV + UV +Face 8240 +UV Count: 3 + UV + UV + UV +Face 8241 +UV Count: 3 + UV + UV + UV +Face 8242 +UV Count: 3 + UV + UV + UV +Face 8243 +UV Count: 3 + UV + UV + UV +Face 8244 +UV Count: 3 + UV + UV + UV +Face 8245 +UV Count: 3 + UV + UV + UV +Face 8246 +UV Count: 3 + UV + UV + UV +Face 8247 +UV Count: 3 + UV + UV + UV +Face 8248 +UV Count: 3 + UV + UV + UV +Face 8249 +UV Count: 3 + UV + UV + UV +Face 8250 +UV Count: 3 + UV + UV + UV +Face 8251 +UV Count: 3 + UV + UV + UV +Face 8252 +UV Count: 3 + UV + UV + UV +Face 8253 +UV Count: 3 + UV + UV + UV +Face 8254 +UV Count: 3 + UV + UV + UV +Face 8255 +UV Count: 3 + UV + UV + UV +Face 8256 +UV Count: 3 + UV + UV + UV +Face 8257 +UV Count: 3 + UV + UV + UV +Face 8258 +UV Count: 3 + UV + UV + UV +Face 8259 +UV Count: 3 + UV + UV + UV +Face 8260 +UV Count: 3 + UV + UV + UV +Face 8261 +UV Count: 3 + UV + UV + UV +Face 8262 +UV Count: 3 + UV + UV + UV +Face 8263 +UV Count: 3 + UV + UV + UV +Face 8264 +UV Count: 3 + UV + UV + UV +Face 8265 +UV Count: 3 + UV + UV + UV +Face 8266 +UV Count: 3 + UV + UV + UV +Face 8267 +UV Count: 3 + UV + UV + UV +Face 8268 +UV Count: 3 + UV + UV + UV +Face 8269 +UV Count: 3 + UV + UV + UV +Face 8270 +UV Count: 3 + UV + UV + UV +Face 8271 +UV Count: 3 + UV + UV + UV +Face 8272 +UV Count: 3 + UV + UV + UV +Face 8273 +UV Count: 3 + UV + UV + UV +Face 8274 +UV Count: 3 + UV + UV + UV +Face 8275 +UV Count: 3 + UV + UV + UV +Face 8276 +UV Count: 3 + UV + UV + UV +Face 8277 +UV Count: 3 + UV + UV + UV +Face 8278 +UV Count: 3 + UV + UV + UV +Face 8279 +UV Count: 3 + UV + UV + UV +Face 8280 +UV Count: 3 + UV + UV + UV +Face 8281 +UV Count: 3 + UV + UV + UV +Face 8282 +UV Count: 3 + UV + UV + UV +Face 8283 +UV Count: 3 + UV + UV + UV +Face 8284 +UV Count: 3 + UV + UV + UV +Face 8285 +UV Count: 3 + UV + UV + UV +Face 8286 +UV Count: 3 + UV + UV + UV +Face 8287 +UV Count: 3 + UV + UV + UV +Face 8288 +UV Count: 3 + UV + UV + UV +Face 8289 +UV Count: 3 + UV + UV + UV +Face 8290 +UV Count: 3 + UV + UV + UV +Face 8291 +UV Count: 3 + UV + UV + UV +Face 8292 +UV Count: 3 + UV + UV + UV +Face 8293 +UV Count: 3 + UV + UV + UV +Face 8294 +UV Count: 3 + UV + UV + UV +Face 8295 +UV Count: 3 + UV + UV + UV +Face 8296 +UV Count: 3 + UV + UV + UV +Face 8297 +UV Count: 3 + UV + UV + UV +Face 8298 +UV Count: 3 + UV + UV + UV +Face 8299 +UV Count: 3 + UV + UV + UV +Face 8300 +UV Count: 3 + UV + UV + UV +Face 8301 +UV Count: 3 + UV + UV + UV +Face 8302 +UV Count: 3 + UV + UV + UV +Face 8303 +UV Count: 3 + UV + UV + UV +Face 8304 +UV Count: 3 + UV + UV + UV +Face 8305 +UV Count: 3 + UV + UV + UV +Face 8306 +UV Count: 3 + UV + UV + UV +Face 8307 +UV Count: 3 + UV + UV + UV +Face 8308 +UV Count: 3 + UV + UV + UV +Face 8309 +UV Count: 3 + UV + UV + UV +Face 8310 +UV Count: 3 + UV + UV + UV +Face 8311 +UV Count: 3 + UV + UV + UV +Face 8312 +UV Count: 3 + UV + UV + UV +Face 8313 +UV Count: 3 + UV + UV + UV +Face 8314 +UV Count: 3 + UV + UV + UV +Face 8315 +UV Count: 3 + UV + UV + UV +Face 8316 +UV Count: 3 + UV + UV + UV +Face 8317 +UV Count: 3 + UV + UV + UV +Face 8318 +UV Count: 3 + UV + UV + UV +Face 8319 +UV Count: 3 + UV + UV + UV +Face 8320 +UV Count: 3 + UV + UV + UV +Face 8321 +UV Count: 3 + UV + UV + UV +Face 8322 +UV Count: 3 + UV + UV + UV +Face 8323 +UV Count: 3 + UV + UV + UV +Face 8324 +UV Count: 3 + UV + UV + UV +Face 8325 +UV Count: 3 + UV + UV + UV +Face 8326 +UV Count: 3 + UV + UV + UV +Face 8327 +UV Count: 3 + UV + UV + UV +Face 8328 +UV Count: 3 + UV + UV + UV +Face 8329 +UV Count: 3 + UV + UV + UV +Face 8330 +UV Count: 3 + UV + UV + UV +Face 8331 +UV Count: 3 + UV + UV + UV +Face 8332 +UV Count: 3 + UV + UV + UV +Face 8333 +UV Count: 3 + UV + UV + UV +Face 8334 +UV Count: 3 + UV + UV + UV +Face 8335 +UV Count: 3 + UV + UV + UV +Face 8336 +UV Count: 3 + UV + UV + UV +Face 8337 +UV Count: 3 + UV + UV + UV +Face 8338 +UV Count: 3 + UV + UV + UV +Face 8339 +UV Count: 3 + UV + UV + UV +Face 8340 +UV Count: 3 + UV + UV + UV +Face 8341 +UV Count: 3 + UV + UV + UV +Face 8342 +UV Count: 3 + UV + UV + UV +Face 8343 +UV Count: 3 + UV + UV + UV +Face 8344 +UV Count: 3 + UV + UV + UV +Face 8345 +UV Count: 3 + UV + UV + UV +Face 8346 +UV Count: 3 + UV + UV + UV +Face 8347 +UV Count: 3 + UV + UV + UV +Face 8348 +UV Count: 3 + UV + UV + UV +Face 8349 +UV Count: 3 + UV + UV + UV +Face 8350 +UV Count: 3 + UV + UV + UV +Face 8351 +UV Count: 3 + UV + UV + UV +Face 8352 +UV Count: 3 + UV + UV + UV +Face 8353 +UV Count: 3 + UV + UV + UV +Face 8354 +UV Count: 3 + UV + UV + UV +Face 8355 +UV Count: 3 + UV + UV + UV +Face 8356 +UV Count: 3 + UV + UV + UV +Face 8357 +UV Count: 3 + UV + UV + UV +Face 8358 +UV Count: 3 + UV + UV + UV +Face 8359 +UV Count: 3 + UV + UV + UV +Face 8360 +UV Count: 3 + UV + UV + UV +Face 8361 +UV Count: 3 + UV + UV + UV +Face 8362 +UV Count: 3 + UV + UV + UV +Face 8363 +UV Count: 3 + UV + UV + UV +Face 8364 +UV Count: 3 + UV + UV + UV +Face 8365 +UV Count: 3 + UV + UV + UV +Face 8366 +UV Count: 3 + UV + UV + UV +Face 8367 +UV Count: 3 + UV + UV + UV +Face 8368 +UV Count: 3 + UV + UV + UV +Face 8369 +UV Count: 3 + UV + UV + UV +Face 8370 +UV Count: 3 + UV + UV + UV +Face 8371 +UV Count: 3 + UV + UV + UV +Face 8372 +UV Count: 3 + UV + UV + UV +Face 8373 +UV Count: 3 + UV + UV + UV +Face 8374 +UV Count: 3 + UV + UV + UV +Face 8375 +UV Count: 3 + UV + UV + UV +Face 8376 +UV Count: 3 + UV + UV + UV +Face 8377 +UV Count: 3 + UV + UV + UV +Face 8378 +UV Count: 3 + UV + UV + UV +Face 8379 +UV Count: 3 + UV + UV + UV +Face 8380 +UV Count: 3 + UV + UV + UV +Face 8381 +UV Count: 3 + UV + UV + UV +Face 8382 +UV Count: 3 + UV + UV + UV +Face 8383 +UV Count: 3 + UV + UV + UV +Face 8384 +UV Count: 3 + UV + UV + UV +Face 8385 +UV Count: 3 + UV + UV + UV +Face 8386 +UV Count: 3 + UV + UV + UV +Face 8387 +UV Count: 3 + UV + UV + UV +Face 8388 +UV Count: 3 + UV + UV + UV +Face 8389 +UV Count: 3 + UV + UV + UV +Face 8390 +UV Count: 3 + UV + UV + UV +Face 8391 +UV Count: 3 + UV + UV + UV +Face 8392 +UV Count: 3 + UV + UV + UV +Face 8393 +UV Count: 3 + UV + UV + UV +Face 8394 +UV Count: 3 + UV + UV + UV +Face 8395 +UV Count: 3 + UV + UV + UV +Face 8396 +UV Count: 3 + UV + UV + UV +Face 8397 +UV Count: 3 + UV + UV + UV +Face 8398 +UV Count: 3 + UV + UV + UV +Face 8399 +UV Count: 3 + UV + UV + UV +Face 8400 +UV Count: 3 + UV + UV + UV +Face 8401 +UV Count: 3 + UV + UV + UV +Face 8402 +UV Count: 3 + UV + UV + UV +Face 8403 +UV Count: 3 + UV + UV + UV +Face 8404 +UV Count: 3 + UV + UV + UV +Face 8405 +UV Count: 3 + UV + UV + UV +Face 8406 +UV Count: 3 + UV + UV + UV +Face 8407 +UV Count: 3 + UV + UV + UV +Face 8408 +UV Count: 3 + UV + UV + UV +Face 8409 +UV Count: 3 + UV + UV + UV +Face 8410 +UV Count: 3 + UV + UV + UV +Face 8411 +UV Count: 3 + UV + UV + UV +Face 8412 +UV Count: 3 + UV + UV + UV +Face 8413 +UV Count: 3 + UV + UV + UV +Face 8414 +UV Count: 3 + UV + UV + UV +Face 8415 +UV Count: 3 + UV + UV + UV +Face 8416 +UV Count: 3 + UV + UV + UV +Face 8417 +UV Count: 3 + UV + UV + UV +Face 8418 +UV Count: 3 + UV + UV + UV +Face 8419 +UV Count: 3 + UV + UV + UV +Face 8420 +UV Count: 3 + UV + UV + UV +Face 8421 +UV Count: 3 + UV + UV + UV +Face 8422 +UV Count: 3 + UV + UV + UV +Face 8423 +UV Count: 3 + UV + UV + UV +Face 8424 +UV Count: 3 + UV + UV + UV +Face 8425 +UV Count: 3 + UV + UV + UV +Face 8426 +UV Count: 3 + UV + UV + UV +Face 8427 +UV Count: 3 + UV + UV + UV +Face 8428 +UV Count: 3 + UV + UV + UV +Face 8429 +UV Count: 3 + UV + UV + UV +Face 8430 +UV Count: 3 + UV + UV + UV +Face 8431 +UV Count: 3 + UV + UV + UV +Face 8432 +UV Count: 3 + UV + UV + UV +Face 8433 +UV Count: 3 + UV + UV + UV +Face 8434 +UV Count: 3 + UV + UV + UV +Face 8435 +UV Count: 3 + UV + UV + UV +Face 8436 +UV Count: 3 + UV + UV + UV +Face 8437 +UV Count: 3 + UV + UV + UV +Face 8438 +UV Count: 3 + UV + UV + UV +Face 8439 +UV Count: 3 + UV + UV + UV +Face 8440 +UV Count: 3 + UV + UV + UV +Face 8441 +UV Count: 3 + UV + UV + UV +Face 8442 +UV Count: 3 + UV + UV + UV +Face 8443 +UV Count: 3 + UV + UV + UV +Face 8444 +UV Count: 3 + UV + UV + UV +Face 8445 +UV Count: 3 + UV + UV + UV +Face 8446 +UV Count: 3 + UV + UV + UV +Face 8447 +UV Count: 3 + UV + UV + UV +Face 8448 +UV Count: 3 + UV + UV + UV +Face 8449 +UV Count: 3 + UV + UV + UV +Face 8450 +UV Count: 3 + UV + UV + UV +Face 8451 +UV Count: 3 + UV + UV + UV +Face 8452 +UV Count: 3 + UV + UV + UV +Face 8453 +UV Count: 3 + UV + UV + UV +Face 8454 +UV Count: 3 + UV + UV + UV +Face 8455 +UV Count: 3 + UV + UV + UV +Face 8456 +UV Count: 3 + UV + UV + UV +Face 8457 +UV Count: 3 + UV + UV + UV +Face 8458 +UV Count: 3 + UV + UV + UV +Face 8459 +UV Count: 3 + UV + UV + UV +Face 8460 +UV Count: 3 + UV + UV + UV +Face 8461 +UV Count: 3 + UV + UV + UV +Face 8462 +UV Count: 3 + UV + UV + UV +Face 8463 +UV Count: 3 + UV + UV + UV +Face 8464 +UV Count: 3 + UV + UV + UV +Face 8465 +UV Count: 3 + UV + UV + UV +Face 8466 +UV Count: 3 + UV + UV + UV +Face 8467 +UV Count: 3 + UV + UV + UV +Face 8468 +UV Count: 3 + UV + UV + UV +Face 8469 +UV Count: 3 + UV + UV + UV +Face 8470 +UV Count: 3 + UV + UV + UV +Face 8471 +UV Count: 3 + UV + UV + UV +Face 8472 +UV Count: 3 + UV + UV + UV +Face 8473 +UV Count: 3 + UV + UV + UV +Face 8474 +UV Count: 3 + UV + UV + UV +Face 8475 +UV Count: 3 + UV + UV + UV +Face 8476 +UV Count: 3 + UV + UV + UV +Face 8477 +UV Count: 3 + UV + UV + UV +Face 8478 +UV Count: 3 + UV + UV + UV +Face 8479 +UV Count: 3 + UV + UV + UV +Face 8480 +UV Count: 3 + UV + UV + UV +Face 8481 +UV Count: 3 + UV + UV + UV +Face 8482 +UV Count: 3 + UV + UV + UV +Face 8483 +UV Count: 3 + UV + UV + UV +Face 8484 +UV Count: 3 + UV + UV + UV +Face 8485 +UV Count: 3 + UV + UV + UV +Face 8486 +UV Count: 3 + UV + UV + UV +Face 8487 +UV Count: 3 + UV + UV + UV +Face 8488 +UV Count: 3 + UV + UV + UV +Face 8489 +UV Count: 3 + UV + UV + UV +Face 8490 +UV Count: 3 + UV + UV + UV +Face 8491 +UV Count: 3 + UV + UV + UV +Face 8492 +UV Count: 3 + UV + UV + UV +Face 8493 +UV Count: 3 + UV + UV + UV +Face 8494 +UV Count: 3 + UV + UV + UV +Face 8495 +UV Count: 3 + UV + UV + UV +Face 8496 +UV Count: 3 + UV + UV + UV +Face 8497 +UV Count: 3 + UV + UV + UV +Face 8498 +UV Count: 3 + UV + UV + UV +Face 8499 +UV Count: 3 + UV + UV + UV +Face 8500 +UV Count: 3 + UV + UV + UV +Face 8501 +UV Count: 3 + UV + UV + UV +Face 8502 +UV Count: 3 + UV + UV + UV +Face 8503 +UV Count: 3 + UV + UV + UV +Face 8504 +UV Count: 3 + UV + UV + UV +Face 8505 +UV Count: 3 + UV + UV + UV +Face 8506 +UV Count: 3 + UV + UV + UV +Face 8507 +UV Count: 3 + UV + UV + UV +Face 8508 +UV Count: 3 + UV + UV + UV +Face 8509 +UV Count: 3 + UV + UV + UV +Face 8510 +UV Count: 3 + UV + UV + UV +Face 8511 +UV Count: 3 + UV + UV + UV +Face 8512 +UV Count: 3 + UV + UV + UV +Face 8513 +UV Count: 3 + UV + UV + UV +Face 8514 +UV Count: 3 + UV + UV + UV +Face 8515 +UV Count: 3 + UV + UV + UV +Face 8516 +UV Count: 3 + UV + UV + UV +Face 8517 +UV Count: 3 + UV + UV + UV +Face 8518 +UV Count: 3 + UV + UV + UV +Face 8519 +UV Count: 3 + UV + UV + UV +Face 8520 +UV Count: 3 + UV + UV + UV +Face 8521 +UV Count: 3 + UV + UV + UV +Face 8522 +UV Count: 3 + UV + UV + UV +Face 8523 +UV Count: 3 + UV + UV + UV +Face 8524 +UV Count: 3 + UV + UV + UV +Face 8525 +UV Count: 3 + UV + UV + UV +Face 8526 +UV Count: 3 + UV + UV + UV +Face 8527 +UV Count: 3 + UV + UV + UV +Face 8528 +UV Count: 3 + UV + UV + UV +Face 8529 +UV Count: 3 + UV + UV + UV +Face 8530 +UV Count: 3 + UV + UV + UV +Face 8531 +UV Count: 3 + UV + UV + UV +Face 8532 +UV Count: 3 + UV + UV + UV +Face 8533 +UV Count: 3 + UV + UV + UV +Face 8534 +UV Count: 3 + UV + UV + UV +Face 8535 +UV Count: 3 + UV + UV + UV +Face 8536 +UV Count: 3 + UV + UV + UV +Face 8537 +UV Count: 3 + UV + UV + UV +Face 8538 +UV Count: 3 + UV + UV + UV +Face 8539 +UV Count: 3 + UV + UV + UV +Face 8540 +UV Count: 3 + UV + UV + UV +Face 8541 +UV Count: 3 + UV + UV + UV +Face 8542 +UV Count: 3 + UV + UV + UV +Face 8543 +UV Count: 3 + UV + UV + UV +Face 8544 +UV Count: 3 + UV + UV + UV +Face 8545 +UV Count: 3 + UV + UV + UV +Face 8546 +UV Count: 3 + UV + UV + UV +Face 8547 +UV Count: 3 + UV + UV + UV +Face 8548 +UV Count: 3 + UV + UV + UV +Face 8549 +UV Count: 3 + UV + UV + UV +Face 8550 +UV Count: 3 + UV + UV + UV +Face 8551 +UV Count: 3 + UV + UV + UV +Face 8552 +UV Count: 3 + UV + UV + UV +Face 8553 +UV Count: 3 + UV + UV + UV +Face 8554 +UV Count: 3 + UV + UV + UV +Face 8555 +UV Count: 3 + UV + UV + UV +Face 8556 +UV Count: 3 + UV + UV + UV +Face 8557 +UV Count: 3 + UV + UV + UV +Face 8558 +UV Count: 3 + UV + UV + UV +Face 8559 +UV Count: 3 + UV + UV + UV +Face 8560 +UV Count: 3 + UV + UV + UV +Face 8561 +UV Count: 3 + UV + UV + UV +Face 8562 +UV Count: 3 + UV + UV + UV +Face 8563 +UV Count: 3 + UV + UV + UV +Face 8564 +UV Count: 3 + UV + UV + UV +Face 8565 +UV Count: 3 + UV + UV + UV +Face 8566 +UV Count: 3 + UV + UV + UV +Face 8567 +UV Count: 3 + UV + UV + UV +Face 8568 +UV Count: 3 + UV + UV + UV +Face 8569 +UV Count: 3 + UV + UV + UV +Face 8570 +UV Count: 3 + UV + UV + UV +Face 8571 +UV Count: 3 + UV + UV + UV +Face 8572 +UV Count: 3 + UV + UV + UV +Face 8573 +UV Count: 3 + UV + UV + UV +Face 8574 +UV Count: 3 + UV + UV + UV +Face 8575 +UV Count: 3 + UV + UV + UV +Face 8576 +UV Count: 3 + UV + UV + UV +Face 8577 +UV Count: 3 + UV + UV + UV +Face 8578 +UV Count: 3 + UV + UV + UV +Face 8579 +UV Count: 3 + UV + UV + UV +Face 8580 +UV Count: 3 + UV + UV + UV +Face 8581 +UV Count: 3 + UV + UV + UV +Face 8582 +UV Count: 3 + UV + UV + UV +Face 8583 +UV Count: 3 + UV + UV + UV +Face 8584 +UV Count: 3 + UV + UV + UV +Face 8585 +UV Count: 3 + UV + UV + UV +Face 8586 +UV Count: 3 + UV + UV + UV +Face 8587 +UV Count: 3 + UV + UV + UV +Face 8588 +UV Count: 3 + UV + UV + UV +Face 8589 +UV Count: 3 + UV + UV + UV +Face 8590 +UV Count: 3 + UV + UV + UV +Face 8591 +UV Count: 3 + UV + UV + UV +Face 8592 +UV Count: 3 + UV + UV + UV +Face 8593 +UV Count: 3 + UV + UV + UV +Face 8594 +UV Count: 3 + UV + UV + UV +Face 8595 +UV Count: 3 + UV + UV + UV +Face 8596 +UV Count: 3 + UV + UV + UV +Face 8597 +UV Count: 3 + UV + UV + UV +Face 8598 +UV Count: 3 + UV + UV + UV +Face 8599 +UV Count: 3 + UV + UV + UV +Face 8600 +UV Count: 3 + UV + UV + UV +Face 8601 +UV Count: 3 + UV + UV + UV +Face 8602 +UV Count: 3 + UV + UV + UV +Face 8603 +UV Count: 3 + UV + UV + UV +Face 8604 +UV Count: 3 + UV + UV + UV +Face 8605 +UV Count: 3 + UV + UV + UV +Face 8606 +UV Count: 3 + UV + UV + UV +Face 8607 +UV Count: 3 + UV + UV + UV +Face 8608 +UV Count: 3 + UV + UV + UV +Face 8609 +UV Count: 3 + UV + UV + UV +Face 8610 +UV Count: 3 + UV + UV + UV +Face 8611 +UV Count: 3 + UV + UV + UV +Face 8612 +UV Count: 3 + UV + UV + UV +Face 8613 +UV Count: 3 + UV + UV + UV +Face 8614 +UV Count: 3 + UV + UV + UV +Face 8615 +UV Count: 3 + UV + UV + UV +Face 8616 +UV Count: 3 + UV + UV + UV +Face 8617 +UV Count: 3 + UV + UV + UV +Face 8618 +UV Count: 3 + UV + UV + UV +Face 8619 +UV Count: 3 + UV + UV + UV +Face 8620 +UV Count: 3 + UV + UV + UV +Face 8621 +UV Count: 3 + UV + UV + UV +Face 8622 +UV Count: 3 + UV + UV + UV +Face 8623 +UV Count: 3 + UV + UV + UV +Face 8624 +UV Count: 3 + UV + UV + UV +Face 8625 +UV Count: 3 + UV + UV + UV +Face 8626 +UV Count: 3 + UV + UV + UV +Face 8627 +UV Count: 3 + UV + UV + UV +Face 8628 +UV Count: 3 + UV + UV + UV +Face 8629 +UV Count: 3 + UV + UV + UV +Face 8630 +UV Count: 3 + UV + UV + UV +Face 8631 +UV Count: 3 + UV + UV + UV +Face 8632 +UV Count: 3 + UV + UV + UV +Face 8633 +UV Count: 3 + UV + UV + UV +Face 8634 +UV Count: 3 + UV + UV + UV +Face 8635 +UV Count: 3 + UV + UV + UV +Face 8636 +UV Count: 3 + UV + UV + UV +Face 8637 +UV Count: 3 + UV + UV + UV +Face 8638 +UV Count: 3 + UV + UV + UV +Face 8639 +UV Count: 3 + UV + UV + UV +Face 8640 +UV Count: 3 + UV + UV + UV +Face 8641 +UV Count: 3 + UV + UV + UV +Face 8642 +UV Count: 3 + UV + UV + UV +Face 8643 +UV Count: 3 + UV + UV + UV +Face 8644 +UV Count: 3 + UV + UV + UV +Face 8645 +UV Count: 3 + UV + UV + UV +Face 8646 +UV Count: 3 + UV + UV + UV +Face 8647 +UV Count: 3 + UV + UV + UV +Face 8648 +UV Count: 3 + UV + UV + UV +Face 8649 +UV Count: 3 + UV + UV + UV +Face 8650 +UV Count: 3 + UV + UV + UV +Face 8651 +UV Count: 3 + UV + UV + UV +Face 8652 +UV Count: 3 + UV + UV + UV +Face 8653 +UV Count: 3 + UV + UV + UV +Face 8654 +UV Count: 3 + UV + UV + UV +Face 8655 +UV Count: 3 + UV + UV + UV +Face 8656 +UV Count: 3 + UV + UV + UV +Face 8657 +UV Count: 3 + UV + UV + UV +Face 8658 +UV Count: 3 + UV + UV + UV +Face 8659 +UV Count: 3 + UV + UV + UV +Face 8660 +UV Count: 3 + UV + UV + UV +Face 8661 +UV Count: 3 + UV + UV + UV +Face 8662 +UV Count: 3 + UV + UV + UV +Face 8663 +UV Count: 3 + UV + UV + UV +Face 8664 +UV Count: 3 + UV + UV + UV +Face 8665 +UV Count: 3 + UV + UV + UV +Face 8666 +UV Count: 3 + UV + UV + UV +Face 8667 +UV Count: 3 + UV + UV + UV +Face 8668 +UV Count: 3 + UV + UV + UV +Face 8669 +UV Count: 3 + UV + UV + UV +Face 8670 +UV Count: 3 + UV + UV + UV +Face 8671 +UV Count: 3 + UV + UV + UV +Face 8672 +UV Count: 3 + UV + UV + UV +Face 8673 +UV Count: 3 + UV + UV + UV +Face 8674 +UV Count: 3 + UV + UV + UV +Face 8675 +UV Count: 3 + UV + UV + UV +Face 8676 +UV Count: 3 + UV + UV + UV +Face 8677 +UV Count: 3 + UV + UV + UV +Face 8678 +UV Count: 3 + UV + UV + UV +Face 8679 +UV Count: 3 + UV + UV + UV +Face 8680 +UV Count: 3 + UV + UV + UV +Face 8681 +UV Count: 3 + UV + UV + UV +Face 8682 +UV Count: 3 + UV + UV + UV +Face 8683 +UV Count: 3 + UV + UV + UV +Face 8684 +UV Count: 3 + UV + UV + UV +Face 8685 +UV Count: 3 + UV + UV + UV +Face 8686 +UV Count: 3 + UV + UV + UV +Face 8687 +UV Count: 3 + UV + UV + UV +Face 8688 +UV Count: 3 + UV + UV + UV +Face 8689 +UV Count: 3 + UV + UV + UV +Face 8690 +UV Count: 3 + UV + UV + UV +Face 8691 +UV Count: 3 + UV + UV + UV +Face 8692 +UV Count: 3 + UV + UV + UV +Face 8693 +UV Count: 3 + UV + UV + UV +Face 8694 +UV Count: 3 + UV + UV + UV +Face 8695 +UV Count: 3 + UV + UV + UV +Face 8696 +UV Count: 3 + UV + UV + UV +Face 8697 +UV Count: 3 + UV + UV + UV +Face 8698 +UV Count: 3 + UV + UV + UV +Face 8699 +UV Count: 3 + UV + UV + UV +Face 8700 +UV Count: 3 + UV + UV + UV +Face 8701 +UV Count: 3 + UV + UV + UV +Face 8702 +UV Count: 3 + UV + UV + UV +Face 8703 +UV Count: 3 + UV + UV + UV +Face 8704 +UV Count: 3 + UV + UV + UV +Face 8705 +UV Count: 3 + UV + UV + UV +Face 8706 +UV Count: 3 + UV + UV + UV +Face 8707 +UV Count: 3 + UV + UV + UV +Face 8708 +UV Count: 3 + UV + UV + UV +Face 8709 +UV Count: 3 + UV + UV + UV +Face 8710 +UV Count: 3 + UV + UV + UV +Face 8711 +UV Count: 3 + UV + UV + UV +Face 8712 +UV Count: 3 + UV + UV + UV +Face 8713 +UV Count: 3 + UV + UV + UV +Face 8714 +UV Count: 3 + UV + UV + UV +Face 8715 +UV Count: 3 + UV + UV + UV +Face 8716 +UV Count: 3 + UV + UV + UV +Face 8717 +UV Count: 3 + UV + UV + UV +Face 8718 +UV Count: 3 + UV + UV + UV +Face 8719 +UV Count: 3 + UV + UV + UV +Face 8720 +UV Count: 3 + UV + UV + UV +Face 8721 +UV Count: 3 + UV + UV + UV +Face 8722 +UV Count: 3 + UV + UV + UV +Face 8723 +UV Count: 3 + UV + UV + UV +Face 8724 +UV Count: 3 + UV + UV + UV +Face 8725 +UV Count: 3 + UV + UV + UV +Face 8726 +UV Count: 3 + UV + UV + UV +Face 8727 +UV Count: 3 + UV + UV + UV +Face 8728 +UV Count: 3 + UV + UV + UV +Face 8729 +UV Count: 3 + UV + UV + UV +Face 8730 +UV Count: 3 + UV + UV + UV +Face 8731 +UV Count: 3 + UV + UV + UV +Face 8732 +UV Count: 3 + UV + UV + UV +Face 8733 +UV Count: 3 + UV + UV + UV +Face 8734 +UV Count: 3 + UV + UV + UV +Face 8735 +UV Count: 3 + UV + UV + UV +Face 8736 +UV Count: 3 + UV + UV + UV +Face 8737 +UV Count: 3 + UV + UV + UV +Face 8738 +UV Count: 3 + UV + UV + UV +Face 8739 +UV Count: 3 + UV + UV + UV +Face 8740 +UV Count: 3 + UV + UV + UV +Face 8741 +UV Count: 3 + UV + UV + UV +Face 8742 +UV Count: 3 + UV + UV + UV +Face 8743 +UV Count: 3 + UV + UV + UV +Face 8744 +UV Count: 3 + UV + UV + UV +Face 8745 +UV Count: 3 + UV + UV + UV +Face 8746 +UV Count: 3 + UV + UV + UV +Face 8747 +UV Count: 3 + UV + UV + UV +Face 8748 +UV Count: 3 + UV + UV + UV +Face 8749 +UV Count: 3 + UV + UV + UV +Face 8750 +UV Count: 3 + UV + UV + UV +Face 8751 +UV Count: 3 + UV + UV + UV +Face 8752 +UV Count: 3 + UV + UV + UV +Face 8753 +UV Count: 3 + UV + UV + UV +Face 8754 +UV Count: 3 + UV + UV + UV +Face 8755 +UV Count: 3 + UV + UV + UV +Face 8756 +UV Count: 3 + UV + UV + UV +Face 8757 +UV Count: 3 + UV + UV + UV +Face 8758 +UV Count: 3 + UV + UV + UV +Face 8759 +UV Count: 3 + UV + UV + UV +Face 8760 +UV Count: 3 + UV + UV + UV +Face 8761 +UV Count: 3 + UV + UV + UV +Face 8762 +UV Count: 3 + UV + UV + UV +Face 8763 +UV Count: 3 + UV + UV + UV +Face 8764 +UV Count: 3 + UV + UV + UV +Face 8765 +UV Count: 3 + UV + UV + UV +Face 8766 +UV Count: 3 + UV + UV + UV +Face 8767 +UV Count: 3 + UV + UV + UV +Face 8768 +UV Count: 3 + UV + UV + UV +Face 8769 +UV Count: 3 + UV + UV + UV +Face 8770 +UV Count: 3 + UV + UV + UV +Face 8771 +UV Count: 3 + UV + UV + UV +Face 8772 +UV Count: 3 + UV + UV + UV +Face 8773 +UV Count: 3 + UV + UV + UV +Face 8774 +UV Count: 3 + UV + UV + UV +Face 8775 +UV Count: 3 + UV + UV + UV +Face 8776 +UV Count: 3 + UV + UV + UV +Face 8777 +UV Count: 3 + UV + UV + UV +Face 8778 +UV Count: 3 + UV + UV + UV +Face 8779 +UV Count: 3 + UV + UV + UV +Face 8780 +UV Count: 3 + UV + UV + UV +Face 8781 +UV Count: 3 + UV + UV + UV +Face 8782 +UV Count: 3 + UV + UV + UV +Face 8783 +UV Count: 3 + UV + UV + UV +Face 8784 +UV Count: 3 + UV + UV + UV +Face 8785 +UV Count: 3 + UV + UV + UV +Face 8786 +UV Count: 3 + UV + UV + UV +Face 8787 +UV Count: 3 + UV + UV + UV +Face 8788 +UV Count: 3 + UV + UV + UV +Face 8789 +UV Count: 3 + UV + UV + UV +Face 8790 +UV Count: 3 + UV + UV + UV +Face 8791 +UV Count: 3 + UV + UV + UV +Face 8792 +UV Count: 3 + UV + UV + UV +Face 8793 +UV Count: 3 + UV + UV + UV +Face 8794 +UV Count: 3 + UV + UV + UV +Face 8795 +UV Count: 3 + UV + UV + UV +Face 8796 +UV Count: 3 + UV + UV + UV +Face 8797 +UV Count: 3 + UV + UV + UV +Face 8798 +UV Count: 3 + UV + UV + UV +Face 8799 +UV Count: 3 + UV + UV + UV +Face 8800 +UV Count: 3 + UV + UV + UV +Face 8801 +UV Count: 3 + UV + UV + UV +Face 8802 +UV Count: 3 + UV + UV + UV +Face 8803 +UV Count: 3 + UV + UV + UV +Face 8804 +UV Count: 3 + UV + UV + UV +Face 8805 +UV Count: 3 + UV + UV + UV +Face 8806 +UV Count: 3 + UV + UV + UV +Face 8807 +UV Count: 3 + UV + UV + UV +Face 8808 +UV Count: 3 + UV + UV + UV +Face 8809 +UV Count: 3 + UV + UV + UV +Face 8810 +UV Count: 3 + UV + UV + UV +Face 8811 +UV Count: 3 + UV + UV + UV +Face 8812 +UV Count: 3 + UV + UV + UV +Face 8813 +UV Count: 3 + UV + UV + UV +Face 8814 +UV Count: 3 + UV + UV + UV +Face 8815 +UV Count: 3 + UV + UV + UV +Face 8816 +UV Count: 3 + UV + UV + UV +Face 8817 +UV Count: 3 + UV + UV + UV +Face 8818 +UV Count: 3 + UV + UV + UV +Face 8819 +UV Count: 3 + UV + UV + UV +Face 8820 +UV Count: 3 + UV + UV + UV +Face 8821 +UV Count: 3 + UV + UV + UV +Face 8822 +UV Count: 3 + UV + UV + UV +Face 8823 +UV Count: 3 + UV + UV + UV +Face 8824 +UV Count: 3 + UV + UV + UV +Face 8825 +UV Count: 3 + UV + UV + UV +Face 8826 +UV Count: 3 + UV + UV + UV +Face 8827 +UV Count: 3 + UV + UV + UV +Face 8828 +UV Count: 3 + UV + UV + UV +Face 8829 +UV Count: 3 + UV + UV + UV +Face 8830 +UV Count: 3 + UV + UV + UV +Face 8831 +UV Count: 3 + UV + UV + UV +Face 8832 +UV Count: 3 + UV + UV + UV +Face 8833 +UV Count: 3 + UV + UV + UV +Face 8834 +UV Count: 3 + UV + UV + UV +Face 8835 +UV Count: 3 + UV + UV + UV +Face 8836 +UV Count: 3 + UV + UV + UV +Face 8837 +UV Count: 3 + UV + UV + UV +Face 8838 +UV Count: 3 + UV + UV + UV +Face 8839 +UV Count: 3 + UV + UV + UV +Face 8840 +UV Count: 3 + UV + UV + UV +Face 8841 +UV Count: 3 + UV + UV + UV +Face 8842 +UV Count: 3 + UV + UV + UV +Face 8843 +UV Count: 3 + UV + UV + UV +Face 8844 +UV Count: 3 + UV + UV + UV +Face 8845 +UV Count: 3 + UV + UV + UV +Face 8846 +UV Count: 3 + UV + UV + UV +Face 8847 +UV Count: 3 + UV + UV + UV +Face 8848 +UV Count: 3 + UV + UV + UV +Face 8849 +UV Count: 3 + UV + UV + UV +Face 8850 +UV Count: 3 + UV + UV + UV +Face 8851 +UV Count: 3 + UV + UV + UV +Face 8852 +UV Count: 3 + UV + UV + UV +Face 8853 +UV Count: 3 + UV + UV + UV +Face 8854 +UV Count: 3 + UV + UV + UV +Face 8855 +UV Count: 3 + UV + UV + UV +Face 8856 +UV Count: 3 + UV + UV + UV +Face 8857 +UV Count: 3 + UV + UV + UV +Face 8858 +UV Count: 3 + UV + UV + UV +Face 8859 +UV Count: 3 + UV + UV + UV +Face 8860 +UV Count: 3 + UV + UV + UV +Face 8861 +UV Count: 3 + UV + UV + UV +Face 8862 +UV Count: 3 + UV + UV + UV +Face 8863 +UV Count: 3 + UV + UV + UV +Face 8864 +UV Count: 3 + UV + UV + UV +Face 8865 +UV Count: 3 + UV + UV + UV +Face 8866 +UV Count: 3 + UV + UV + UV +Face 8867 +UV Count: 3 + UV + UV + UV +Face 8868 +UV Count: 3 + UV + UV + UV +Face 8869 +UV Count: 3 + UV + UV + UV +Face 8870 +UV Count: 3 + UV + UV + UV +Face 8871 +UV Count: 3 + UV + UV + UV +Face 8872 +UV Count: 3 + UV + UV + UV +Face 8873 +UV Count: 3 + UV + UV + UV +Face 8874 +UV Count: 3 + UV + UV + UV +Face 8875 +UV Count: 3 + UV + UV + UV +Face 8876 +UV Count: 3 + UV + UV + UV +Face 8877 +UV Count: 3 + UV + UV + UV +Face 8878 +UV Count: 3 + UV + UV + UV +Face 8879 +UV Count: 3 + UV + UV + UV +Face 8880 +UV Count: 3 + UV + UV + UV +Face 8881 +UV Count: 3 + UV + UV + UV +Face 8882 +UV Count: 3 + UV + UV + UV +Face 8883 +UV Count: 3 + UV + UV + UV +Face 8884 +UV Count: 3 + UV + UV + UV +Face 8885 +UV Count: 3 + UV + UV + UV +Face 8886 +UV Count: 3 + UV + UV + UV +Face 8887 +UV Count: 3 + UV + UV + UV +Face 8888 +UV Count: 3 + UV + UV + UV +Face 8889 +UV Count: 3 + UV + UV + UV +Face 8890 +UV Count: 3 + UV + UV + UV +Face 8891 +UV Count: 3 + UV + UV + UV +Face 8892 +UV Count: 3 + UV + UV + UV +Face 8893 +UV Count: 3 + UV + UV + UV +Face 8894 +UV Count: 3 + UV + UV + UV +Face 8895 +UV Count: 3 + UV + UV + UV +Face 8896 +UV Count: 3 + UV + UV + UV +Face 8897 +UV Count: 3 + UV + UV + UV +Face 8898 +UV Count: 3 + UV + UV + UV +Face 8899 +UV Count: 3 + UV + UV + UV +Face 8900 +UV Count: 3 + UV + UV + UV +Face 8901 +UV Count: 3 + UV + UV + UV +Face 8902 +UV Count: 3 + UV + UV + UV +Face 8903 +UV Count: 3 + UV + UV + UV +Face 8904 +UV Count: 3 + UV + UV + UV +Face 8905 +UV Count: 3 + UV + UV + UV +Face 8906 +UV Count: 3 + UV + UV + UV +Face 8907 +UV Count: 3 + UV + UV + UV +Face 8908 +UV Count: 3 + UV + UV + UV +Face 8909 +UV Count: 3 + UV + UV + UV +Face 8910 +UV Count: 3 + UV + UV + UV +Face 8911 +UV Count: 3 + UV + UV + UV +Face 8912 +UV Count: 3 + UV + UV + UV +Face 8913 +UV Count: 3 + UV + UV + UV +Face 8914 +UV Count: 3 + UV + UV + UV +Face 8915 +UV Count: 3 + UV + UV + UV +Face 8916 +UV Count: 3 + UV + UV + UV +Face 8917 +UV Count: 3 + UV + UV + UV +Face 8918 +UV Count: 3 + UV + UV + UV +Face 8919 +UV Count: 3 + UV + UV + UV +Face 8920 +UV Count: 3 + UV + UV + UV +Face 8921 +UV Count: 3 + UV + UV + UV +Face 8922 +UV Count: 3 + UV + UV + UV +Face 8923 +UV Count: 3 + UV + UV + UV +Face 8924 +UV Count: 3 + UV + UV + UV +Face 8925 +UV Count: 3 + UV + UV + UV +Face 8926 +UV Count: 3 + UV + UV + UV +Face 8927 +UV Count: 3 + UV + UV + UV +Face 8928 +UV Count: 3 + UV + UV + UV +Face 8929 +UV Count: 3 + UV + UV + UV +Face 8930 +UV Count: 3 + UV + UV + UV +Face 8931 +UV Count: 3 + UV + UV + UV +Face 8932 +UV Count: 3 + UV + UV + UV +Face 8933 +UV Count: 3 + UV + UV + UV +Face 8934 +UV Count: 3 + UV + UV + UV +Face 8935 +UV Count: 3 + UV + UV + UV +Face 8936 +UV Count: 3 + UV + UV + UV +Face 8937 +UV Count: 3 + UV + UV + UV +Face 8938 +UV Count: 3 + UV + UV + UV +Face 8939 +UV Count: 3 + UV + UV + UV +Face 8940 +UV Count: 3 + UV + UV + UV +Face 8941 +UV Count: 3 + UV + UV + UV +Face 8942 +UV Count: 3 + UV + UV + UV +Face 8943 +UV Count: 3 + UV + UV + UV +Face 8944 +UV Count: 3 + UV + UV + UV +Face 8945 +UV Count: 3 + UV + UV + UV +Face 8946 +UV Count: 3 + UV + UV + UV +Face 8947 +UV Count: 3 + UV + UV + UV +Face 8948 +UV Count: 3 + UV + UV + UV +Face 8949 +UV Count: 3 + UV + UV + UV +Face 8950 +UV Count: 3 + UV + UV + UV +Face 8951 +UV Count: 3 + UV + UV + UV +Face 8952 +UV Count: 3 + UV + UV + UV +Face 8953 +UV Count: 3 + UV + UV + UV +Face 8954 +UV Count: 3 + UV + UV + UV +Face 8955 +UV Count: 3 + UV + UV + UV +Face 8956 +UV Count: 3 + UV + UV + UV +Face 8957 +UV Count: 3 + UV + UV + UV +Face 8958 +UV Count: 3 + UV + UV + UV +Face 8959 +UV Count: 3 + UV + UV + UV +Face 8960 +UV Count: 3 + UV + UV + UV +Face 8961 +UV Count: 3 + UV + UV + UV +Face 8962 +UV Count: 3 + UV + UV + UV +Face 8963 +UV Count: 3 + UV + UV + UV +Face 8964 +UV Count: 3 + UV + UV + UV +Face 8965 +UV Count: 3 + UV + UV + UV +Face 8966 +UV Count: 3 + UV + UV + UV +Face 8967 +UV Count: 3 + UV + UV + UV +Face 8968 +UV Count: 3 + UV + UV + UV +Face 8969 +UV Count: 3 + UV + UV + UV +Face 8970 +UV Count: 3 + UV + UV + UV +Face 8971 +UV Count: 3 + UV + UV + UV +Face 8972 +UV Count: 3 + UV + UV + UV +Face 8973 +UV Count: 3 + UV + UV + UV +Face 8974 +UV Count: 3 + UV + UV + UV +Face 8975 +UV Count: 3 + UV + UV + UV +Face 8976 +UV Count: 3 + UV + UV + UV +Face 8977 +UV Count: 3 + UV + UV + UV +Face 8978 +UV Count: 3 + UV + UV + UV +Face 8979 +UV Count: 3 + UV + UV + UV +Face 8980 +UV Count: 3 + UV + UV + UV +Face 8981 +UV Count: 3 + UV + UV + UV +Face 8982 +UV Count: 3 + UV + UV + UV +Face 8983 +UV Count: 3 + UV + UV + UV +Face 8984 +UV Count: 3 + UV + UV + UV +Face 8985 +UV Count: 3 + UV + UV + UV +Face 8986 +UV Count: 3 + UV + UV + UV +Face 8987 +UV Count: 3 + UV + UV + UV +Face 8988 +UV Count: 3 + UV + UV + UV +Face 8989 +UV Count: 3 + UV + UV + UV +Face 8990 +UV Count: 3 + UV + UV + UV +Face 8991 +UV Count: 3 + UV + UV + UV +Face 8992 +UV Count: 3 + UV + UV + UV +Face 8993 +UV Count: 3 + UV + UV + UV +Face 8994 +UV Count: 3 + UV + UV + UV +Face 8995 +UV Count: 3 + UV + UV + UV +Face 8996 +UV Count: 3 + UV + UV + UV +Face 8997 +UV Count: 3 + UV + UV + UV +Face 8998 +UV Count: 3 + UV + UV + UV +Face 8999 +UV Count: 3 + UV + UV + UV +Face 9000 +UV Count: 3 + UV + UV + UV +Face 9001 +UV Count: 3 + UV + UV + UV +Face 9002 +UV Count: 3 + UV + UV + UV +Face 9003 +UV Count: 3 + UV + UV + UV +Face 9004 +UV Count: 3 + UV + UV + UV +Face 9005 +UV Count: 3 + UV + UV + UV +Face 9006 +UV Count: 3 + UV + UV + UV +Face 9007 +UV Count: 3 + UV + UV + UV +Face 9008 +UV Count: 3 + UV + UV + UV +Face 9009 +UV Count: 3 + UV + UV + UV +Face 9010 +UV Count: 3 + UV + UV + UV +Face 9011 +UV Count: 3 + UV + UV + UV +Face 9012 +UV Count: 3 + UV + UV + UV +Face 9013 +UV Count: 3 + UV + UV + UV +Face 9014 +UV Count: 3 + UV + UV + UV +Face 9015 +UV Count: 3 + UV + UV + UV +Face 9016 +UV Count: 3 + UV + UV + UV +Face 9017 +UV Count: 3 + UV + UV + UV +Face 9018 +UV Count: 3 + UV + UV + UV +Face 9019 +UV Count: 3 + UV + UV + UV +Face 9020 +UV Count: 3 + UV + UV + UV +Face 9021 +UV Count: 3 + UV + UV + UV +Face 9022 +UV Count: 3 + UV + UV + UV +Face 9023 +UV Count: 3 + UV + UV + UV +Face 9024 +UV Count: 3 + UV + UV + UV +Face 9025 +UV Count: 3 + UV + UV + UV +Face 9026 +UV Count: 3 + UV + UV + UV +Face 9027 +UV Count: 3 + UV + UV + UV +Face 9028 +UV Count: 3 + UV + UV + UV +Face 9029 +UV Count: 3 + UV + UV + UV +Face 9030 +UV Count: 3 + UV + UV + UV +Face 9031 +UV Count: 3 + UV + UV + UV +Face 9032 +UV Count: 3 + UV + UV + UV +Face 9033 +UV Count: 3 + UV + UV + UV +Face 9034 +UV Count: 3 + UV + UV + UV +Face 9035 +UV Count: 3 + UV + UV + UV +Face 9036 +UV Count: 3 + UV + UV + UV +Face 9037 +UV Count: 3 + UV + UV + UV +Face 9038 +UV Count: 3 + UV + UV + UV +Face 9039 +UV Count: 3 + UV + UV + UV +Face 9040 +UV Count: 3 + UV + UV + UV +Face 9041 +UV Count: 3 + UV + UV + UV +Face 9042 +UV Count: 3 + UV + UV + UV +Face 9043 +UV Count: 3 + UV + UV + UV +Face 9044 +UV Count: 3 + UV + UV + UV +Face 9045 +UV Count: 3 + UV + UV + UV +Face 9046 +UV Count: 3 + UV + UV + UV +Face 9047 +UV Count: 3 + UV + UV + UV +Face 9048 +UV Count: 3 + UV + UV + UV +Face 9049 +UV Count: 3 + UV + UV + UV +Face 9050 +UV Count: 3 + UV + UV + UV +Face 9051 +UV Count: 3 + UV + UV + UV +Face 9052 +UV Count: 3 + UV + UV + UV +Face 9053 +UV Count: 3 + UV + UV + UV +Face 9054 +UV Count: 3 + UV + UV + UV +Face 9055 +UV Count: 3 + UV + UV + UV +Face 9056 +UV Count: 3 + UV + UV + UV +Face 9057 +UV Count: 3 + UV + UV + UV +Face 9058 +UV Count: 3 + UV + UV + UV +Face 9059 +UV Count: 3 + UV + UV + UV +Face 9060 +UV Count: 3 + UV + UV + UV +Face 9061 +UV Count: 3 + UV + UV + UV +Face 9062 +UV Count: 3 + UV + UV + UV +Face 9063 +UV Count: 3 + UV + UV + UV +Face 9064 +UV Count: 3 + UV + UV + UV +Face 9065 +UV Count: 3 + UV + UV + UV +Face 9066 +UV Count: 3 + UV + UV + UV +Face 9067 +UV Count: 3 + UV + UV + UV +Face 9068 +UV Count: 3 + UV + UV + UV +Face 9069 +UV Count: 3 + UV + UV + UV +Face 9070 +UV Count: 3 + UV + UV + UV +Face 9071 +UV Count: 3 + UV + UV + UV +Face 9072 +UV Count: 3 + UV + UV + UV +Face 9073 +UV Count: 3 + UV + UV + UV +Face 9074 +UV Count: 3 + UV + UV + UV +Face 9075 +UV Count: 3 + UV + UV + UV +Face 9076 +UV Count: 3 + UV + UV + UV +Face 9077 +UV Count: 3 + UV + UV + UV +Face 9078 +UV Count: 3 + UV + UV + UV +Face 9079 +UV Count: 3 + UV + UV + UV +Face 9080 +UV Count: 3 + UV + UV + UV +Face 9081 +UV Count: 3 + UV + UV + UV +Face 9082 +UV Count: 3 + UV + UV + UV +Face 9083 +UV Count: 3 + UV + UV + UV +Face 9084 +UV Count: 3 + UV + UV + UV +Face 9085 +UV Count: 3 + UV + UV + UV +Face 9086 +UV Count: 3 + UV + UV + UV +Face 9087 +UV Count: 3 + UV + UV + UV +Face 9088 +UV Count: 3 + UV + UV + UV +Face 9089 +UV Count: 3 + UV + UV + UV +Face 9090 +UV Count: 3 + UV + UV + UV +Face 9091 +UV Count: 3 + UV + UV + UV +Face 9092 +UV Count: 3 + UV + UV + UV +Face 9093 +UV Count: 3 + UV + UV + UV +Face 9094 +UV Count: 3 + UV + UV + UV +Face 9095 +UV Count: 3 + UV + UV + UV +Face 9096 +UV Count: 3 + UV + UV + UV +Face 9097 +UV Count: 3 + UV + UV + UV +Face 9098 +UV Count: 3 + UV + UV + UV +Face 9099 +UV Count: 3 + UV + UV + UV +Face 9100 +UV Count: 3 + UV + UV + UV +Face 9101 +UV Count: 3 + UV + UV + UV +Face 9102 +UV Count: 3 + UV + UV + UV +Face 9103 +UV Count: 3 + UV + UV + UV +Face 9104 +UV Count: 3 + UV + UV + UV +Face 9105 +UV Count: 3 + UV + UV + UV +Face 9106 +UV Count: 3 + UV + UV + UV +Face 9107 +UV Count: 3 + UV + UV + UV +Face 9108 +UV Count: 3 + UV + UV + UV +Face 9109 +UV Count: 3 + UV + UV + UV +Face 9110 +UV Count: 3 + UV + UV + UV +Face 9111 +UV Count: 3 + UV + UV + UV +Face 9112 +UV Count: 3 + UV + UV + UV +Face 9113 +UV Count: 3 + UV + UV + UV +Face 9114 +UV Count: 3 + UV + UV + UV +Face 9115 +UV Count: 3 + UV + UV + UV +Face 9116 +UV Count: 3 + UV + UV + UV +Face 9117 +UV Count: 3 + UV + UV + UV +Face 9118 +UV Count: 3 + UV + UV + UV +Face 9119 +UV Count: 3 + UV + UV + UV +Face 9120 +UV Count: 3 + UV + UV + UV +Face 9121 +UV Count: 3 + UV + UV + UV +Face 9122 +UV Count: 3 + UV + UV + UV +Face 9123 +UV Count: 3 + UV + UV + UV +Face 9124 +UV Count: 3 + UV + UV + UV +Face 9125 +UV Count: 3 + UV + UV + UV +Face 9126 +UV Count: 3 + UV + UV + UV +Face 9127 +UV Count: 3 + UV + UV + UV +Face 9128 +UV Count: 3 + UV + UV + UV +Face 9129 +UV Count: 3 + UV + UV + UV +Face 9130 +UV Count: 3 + UV + UV + UV +Face 9131 +UV Count: 3 + UV + UV + UV +Face 9132 +UV Count: 3 + UV + UV + UV +Face 9133 +UV Count: 3 + UV + UV + UV +Face 9134 +UV Count: 3 + UV + UV + UV +Face 9135 +UV Count: 3 + UV + UV + UV +Face 9136 +UV Count: 3 + UV + UV + UV +Face 9137 +UV Count: 3 + UV + UV + UV +Face 9138 +UV Count: 3 + UV + UV + UV +Face 9139 +UV Count: 3 + UV + UV + UV +Face 9140 +UV Count: 3 + UV + UV + UV +Face 9141 +UV Count: 3 + UV + UV + UV +Face 9142 +UV Count: 3 + UV + UV + UV +Face 9143 +UV Count: 3 + UV + UV + UV +Face 9144 +UV Count: 3 + UV + UV + UV +Face 9145 +UV Count: 3 + UV + UV + UV +Face 9146 +UV Count: 3 + UV + UV + UV +Face 9147 +UV Count: 3 + UV + UV + UV +Face 9148 +UV Count: 3 + UV + UV + UV +Face 9149 +UV Count: 3 + UV + UV + UV +Face 9150 +UV Count: 3 + UV + UV + UV +Face 9151 +UV Count: 3 + UV + UV + UV +Face 9152 +UV Count: 3 + UV + UV + UV +Face 9153 +UV Count: 3 + UV + UV + UV +Face 9154 +UV Count: 3 + UV + UV + UV +Face 9155 +UV Count: 3 + UV + UV + UV +Face 9156 +UV Count: 3 + UV + UV + UV +Face 9157 +UV Count: 3 + UV + UV + UV +Face 9158 +UV Count: 3 + UV + UV + UV +Face 9159 +UV Count: 3 + UV + UV + UV +Face 9160 +UV Count: 3 + UV + UV + UV +Face 9161 +UV Count: 3 + UV + UV + UV +Face 9162 +UV Count: 3 + UV + UV + UV +Face 9163 +UV Count: 3 + UV + UV + UV +Face 9164 +UV Count: 3 + UV + UV + UV +Face 9165 +UV Count: 3 + UV + UV + UV +Face 9166 +UV Count: 3 + UV + UV + UV +Face 9167 +UV Count: 3 + UV + UV + UV +Face 9168 +UV Count: 3 + UV + UV + UV +Face 9169 +UV Count: 3 + UV + UV + UV +Face 9170 +UV Count: 3 + UV + UV + UV +Face 9171 +UV Count: 3 + UV + UV + UV +Face 9172 +UV Count: 3 + UV + UV + UV +Face 9173 +UV Count: 3 + UV + UV + UV +Face 9174 +UV Count: 3 + UV + UV + UV +Face 9175 +UV Count: 3 + UV + UV + UV +Face 9176 +UV Count: 3 + UV + UV + UV +Face 9177 +UV Count: 3 + UV + UV + UV +Face 9178 +UV Count: 3 + UV + UV + UV +Face 9179 +UV Count: 3 + UV + UV + UV +Face 9180 +UV Count: 3 + UV + UV + UV +Face 9181 +UV Count: 3 + UV + UV + UV +Face 9182 +UV Count: 3 + UV + UV + UV +Face 9183 +UV Count: 3 + UV + UV + UV +Face 9184 +UV Count: 3 + UV + UV + UV +Face 9185 +UV Count: 3 + UV + UV + UV +Face 9186 +UV Count: 3 + UV + UV + UV +Face 9187 +UV Count: 3 + UV + UV + UV +Face 9188 +UV Count: 3 + UV + UV + UV +Face 9189 +UV Count: 3 + UV + UV + UV +Face 9190 +UV Count: 3 + UV + UV + UV +Face 9191 +UV Count: 3 + UV + UV + UV +Face 9192 +UV Count: 3 + UV + UV + UV +Face 9193 +UV Count: 3 + UV + UV + UV +Face 9194 +UV Count: 3 + UV + UV + UV +Face 9195 +UV Count: 3 + UV + UV + UV +Face 9196 +UV Count: 3 + UV + UV + UV +Face 9197 +UV Count: 3 + UV + UV + UV +Face 9198 +UV Count: 3 + UV + UV + UV +Face 9199 +UV Count: 3 + UV + UV + UV +Face 9200 +UV Count: 3 + UV + UV + UV +Face 9201 +UV Count: 3 + UV + UV + UV +Face 9202 +UV Count: 3 + UV + UV + UV +Face 9203 +UV Count: 3 + UV + UV + UV +Face 9204 +UV Count: 3 + UV + UV + UV +Face 9205 +UV Count: 3 + UV + UV + UV +Face 9206 +UV Count: 3 + UV + UV + UV +Face 9207 +UV Count: 3 + UV + UV + UV +Face 9208 +UV Count: 3 + UV + UV + UV +Face 9209 +UV Count: 3 + UV + UV + UV +Face 9210 +UV Count: 3 + UV + UV + UV +Face 9211 +UV Count: 3 + UV + UV + UV +Face 9212 +UV Count: 3 + UV + UV + UV +Face 9213 +UV Count: 3 + UV + UV + UV +Face 9214 +UV Count: 3 + UV + UV + UV +Face 9215 +UV Count: 3 + UV + UV + UV +Face 9216 +UV Count: 3 + UV + UV + UV +Face 9217 +UV Count: 3 + UV + UV + UV +Face 9218 +UV Count: 3 + UV + UV + UV +Face 9219 +UV Count: 3 + UV + UV + UV +Face 9220 +UV Count: 3 + UV + UV + UV +Face 9221 +UV Count: 3 + UV + UV + UV +Face 9222 +UV Count: 3 + UV + UV + UV +Face 9223 +UV Count: 3 + UV + UV + UV +Face 9224 +UV Count: 3 + UV + UV + UV +Face 9225 +UV Count: 3 + UV + UV + UV +Face 9226 +UV Count: 3 + UV + UV + UV +Face 9227 +UV Count: 3 + UV + UV + UV +Face 9228 +UV Count: 3 + UV + UV + UV +Face 9229 +UV Count: 3 + UV + UV + UV +Face 9230 +UV Count: 3 + UV + UV + UV +Face 9231 +UV Count: 3 + UV + UV + UV +Face 9232 +UV Count: 3 + UV + UV + UV +Face 9233 +UV Count: 3 + UV + UV + UV +Face 9234 +UV Count: 3 + UV + UV + UV +Face 9235 +UV Count: 3 + UV + UV + UV +Face 9236 +UV Count: 3 + UV + UV + UV +Face 9237 +UV Count: 3 + UV + UV + UV +Face 9238 +UV Count: 3 + UV + UV + UV +Face 9239 +UV Count: 3 + UV + UV + UV +Face 9240 +UV Count: 3 + UV + UV + UV +Face 9241 +UV Count: 3 + UV + UV + UV +Face 9242 +UV Count: 3 + UV + UV + UV +Face 9243 +UV Count: 3 + UV + UV + UV +Face 9244 +UV Count: 3 + UV + UV + UV +Face 9245 +UV Count: 3 + UV + UV + UV +Face 9246 +UV Count: 3 + UV + UV + UV +Face 9247 +UV Count: 3 + UV + UV + UV +Face 9248 +UV Count: 3 + UV + UV + UV +Face 9249 +UV Count: 3 + UV + UV + UV +Face 9250 +UV Count: 3 + UV + UV + UV +Face 9251 +UV Count: 3 + UV + UV + UV +Face 9252 +UV Count: 3 + UV + UV + UV +Face 9253 +UV Count: 3 + UV + UV + UV +Face 9254 +UV Count: 3 + UV + UV + UV +Face 9255 +UV Count: 3 + UV + UV + UV +Face 9256 +UV Count: 3 + UV + UV + UV +Face 9257 +UV Count: 3 + UV + UV + UV +Face 9258 +UV Count: 3 + UV + UV + UV +Face 9259 +UV Count: 3 + UV + UV + UV +Face 9260 +UV Count: 3 + UV + UV + UV +Face 9261 +UV Count: 3 + UV + UV + UV +Face 9262 +UV Count: 3 + UV + UV + UV +Face 9263 +UV Count: 3 + UV + UV + UV +Face 9264 +UV Count: 3 + UV + UV + UV +Face 9265 +UV Count: 3 + UV + UV + UV +Face 9266 +UV Count: 3 + UV + UV + UV +Face 9267 +UV Count: 3 + UV + UV + UV +Face 9268 +UV Count: 3 + UV + UV + UV +Face 9269 +UV Count: 3 + UV + UV + UV +Face 9270 +UV Count: 3 + UV + UV + UV +Face 9271 +UV Count: 3 + UV + UV + UV +Face 9272 +UV Count: 3 + UV + UV + UV +Face 9273 +UV Count: 3 + UV + UV + UV +Face 9274 +UV Count: 3 + UV + UV + UV +Face 9275 +UV Count: 3 + UV + UV + UV +Face 9276 +UV Count: 3 + UV + UV + UV +Face 9277 +UV Count: 3 + UV + UV + UV +Face 9278 +UV Count: 3 + UV + UV + UV +Face 9279 +UV Count: 3 + UV + UV + UV +Face 9280 +UV Count: 3 + UV + UV + UV +Face 9281 +UV Count: 3 + UV + UV + UV +Face 9282 +UV Count: 3 + UV + UV + UV +Face 9283 +UV Count: 3 + UV + UV + UV +Face 9284 +UV Count: 3 + UV + UV + UV +Face 9285 +UV Count: 3 + UV + UV + UV +Face 9286 +UV Count: 3 + UV + UV + UV +Face 9287 +UV Count: 3 + UV + UV + UV +Face 9288 +UV Count: 3 + UV + UV + UV +Face 9289 +UV Count: 3 + UV + UV + UV +Face 9290 +UV Count: 3 + UV + UV + UV +Face 9291 +UV Count: 3 + UV + UV + UV +Face 9292 +UV Count: 3 + UV + UV + UV +Face 9293 +UV Count: 3 + UV + UV + UV +Face 9294 +UV Count: 3 + UV + UV + UV +Face 9295 +UV Count: 3 + UV + UV + UV +Face 9296 +UV Count: 3 + UV + UV + UV +Face 9297 +UV Count: 3 + UV + UV + UV +Face 9298 +UV Count: 3 + UV + UV + UV +Face 9299 +UV Count: 3 + UV + UV + UV +Face 9300 +UV Count: 3 + UV + UV + UV +Face 9301 +UV Count: 3 + UV + UV + UV +Face 9302 +UV Count: 3 + UV + UV + UV +Face 9303 +UV Count: 3 + UV + UV + UV +Face 9304 +UV Count: 3 + UV + UV + UV +Face 9305 +UV Count: 3 + UV + UV + UV +Face 9306 +UV Count: 3 + UV + UV + UV +Face 9307 +UV Count: 3 + UV + UV + UV +Face 9308 +UV Count: 3 + UV + UV + UV +Face 9309 +UV Count: 3 + UV + UV + UV +Face 9310 +UV Count: 3 + UV + UV + UV +Face 9311 +UV Count: 3 + UV + UV + UV +Face 9312 +UV Count: 3 + UV + UV + UV +Face 9313 +UV Count: 3 + UV + UV + UV +Face 9314 +UV Count: 3 + UV + UV + UV +Face 9315 +UV Count: 3 + UV + UV + UV +Face 9316 +UV Count: 3 + UV + UV + UV +Face 9317 +UV Count: 3 + UV + UV + UV +Face 9318 +UV Count: 3 + UV + UV + UV +Face 9319 +UV Count: 3 + UV + UV + UV +Face 9320 +UV Count: 3 + UV + UV + UV +Face 9321 +UV Count: 3 + UV + UV + UV +Face 9322 +UV Count: 3 + UV + UV + UV +Face 9323 +UV Count: 3 + UV + UV + UV +Face 9324 +UV Count: 3 + UV + UV + UV +Face 9325 +UV Count: 3 + UV + UV + UV +Face 9326 +UV Count: 3 + UV + UV + UV +Face 9327 +UV Count: 3 + UV + UV + UV +Face 9328 +UV Count: 3 + UV + UV + UV +Face 9329 +UV Count: 3 + UV + UV + UV +Face 9330 +UV Count: 3 + UV + UV + UV +Face 9331 +UV Count: 3 + UV + UV + UV +Face 9332 +UV Count: 3 + UV + UV + UV +Face 9333 +UV Count: 3 + UV + UV + UV +Face 9334 +UV Count: 3 + UV + UV + UV +Face 9335 +UV Count: 3 + UV + UV + UV +Face 9336 +UV Count: 3 + UV + UV + UV +Face 9337 +UV Count: 3 + UV + UV + UV +Face 9338 +UV Count: 3 + UV + UV + UV +Face 9339 +UV Count: 3 + UV + UV + UV +Face 9340 +UV Count: 3 + UV + UV + UV +Face 9341 +UV Count: 3 + UV + UV + UV +Face 9342 +UV Count: 3 + UV + UV + UV +Face 9343 +UV Count: 3 + UV + UV + UV +Face 9344 +UV Count: 3 + UV + UV + UV +Face 9345 +UV Count: 3 + UV + UV + UV +Face 9346 +UV Count: 3 + UV + UV + UV +Face 9347 +UV Count: 3 + UV + UV + UV +Face 9348 +UV Count: 3 + UV + UV + UV +Face 9349 +UV Count: 3 + UV + UV + UV +Face 9350 +UV Count: 3 + UV + UV + UV +Face 9351 +UV Count: 3 + UV + UV + UV +Face 9352 +UV Count: 3 + UV + UV + UV +Face 9353 +UV Count: 3 + UV + UV + UV +Face 9354 +UV Count: 3 + UV + UV + UV +Face 9355 +UV Count: 3 + UV + UV + UV +Face 9356 +UV Count: 3 + UV + UV + UV +Face 9357 +UV Count: 3 + UV + UV + UV +Face 9358 +UV Count: 3 + UV + UV + UV +Face 9359 +UV Count: 3 + UV + UV + UV +Face 9360 +UV Count: 3 + UV + UV + UV +Face 9361 +UV Count: 3 + UV + UV + UV +Face 9362 +UV Count: 3 + UV + UV + UV +Face 9363 +UV Count: 3 + UV + UV + UV +Face 9364 +UV Count: 3 + UV + UV + UV +Face 9365 +UV Count: 3 + UV + UV + UV +Face 9366 +UV Count: 3 + UV + UV + UV +Face 9367 +UV Count: 3 + UV + UV + UV +Face 9368 +UV Count: 3 + UV + UV + UV +Face 9369 +UV Count: 3 + UV + UV + UV +Face 9370 +UV Count: 3 + UV + UV + UV +Face 9371 +UV Count: 3 + UV + UV + UV +Face 9372 +UV Count: 3 + UV + UV + UV +Face 9373 +UV Count: 3 + UV + UV + UV +Face 9374 +UV Count: 3 + UV + UV + UV +Face 9375 +UV Count: 3 + UV + UV + UV +Face 9376 +UV Count: 3 + UV + UV + UV +Face 9377 +UV Count: 3 + UV + UV + UV +Face 9378 +UV Count: 3 + UV + UV + UV +Face 9379 +UV Count: 3 + UV + UV + UV +Face 9380 +UV Count: 3 + UV + UV + UV +Face 9381 +UV Count: 3 + UV + UV + UV +Face 9382 +UV Count: 3 + UV + UV + UV +Face 9383 +UV Count: 3 + UV + UV + UV +Face 9384 +UV Count: 3 + UV + UV + UV +Face 9385 +UV Count: 3 + UV + UV + UV +Face 9386 +UV Count: 3 + UV + UV + UV +Face 9387 +UV Count: 3 + UV + UV + UV +Face 9388 +UV Count: 3 + UV + UV + UV +Face 9389 +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 +Vertex 2660: Normal +Vertex 2661: Normal +Vertex 2662: Normal +Vertex 2663: Normal +Vertex 2664: Normal +Vertex 2665: Normal +Vertex 2666: Normal +Vertex 2667: Normal +Vertex 2668: Normal +Vertex 2669: Normal +Vertex 2670: Normal +Vertex 2671: Normal +Vertex 2672: Normal +Vertex 2673: Normal +Vertex 2674: Normal +Vertex 2675: Normal +Vertex 2676: Normal +Vertex 2677: Normal +Vertex 2678: Normal +Vertex 2679: Normal +Vertex 2680: Normal +Vertex 2681: Normal +Vertex 2682: Normal +Vertex 2683: Normal +Vertex 2684: Normal +Vertex 2685: Normal +Vertex 2686: Normal +Vertex 2687: Normal +Vertex 2688: Normal +Vertex 2689: Normal +Vertex 2690: Normal +Vertex 2691: Normal +Vertex 2692: Normal +Vertex 2693: Normal +Vertex 2694: Normal +Vertex 2695: Normal +Vertex 2696: Normal +Vertex 2697: Normal +Vertex 2698: Normal +Vertex 2699: Normal +Vertex 2700: Normal +Vertex 2701: Normal +Vertex 2702: Normal +Vertex 2703: Normal +Vertex 2704: Normal +Vertex 2705: Normal +Vertex 2706: Normal +Vertex 2707: Normal +Vertex 2708: Normal +Vertex 2709: Normal +Vertex 2710: Normal +Vertex 2711: Normal +Vertex 2712: Normal +Vertex 2713: Normal +Vertex 2714: Normal +Vertex 2715: Normal +Vertex 2716: Normal +Vertex 2717: Normal +Vertex 2718: Normal +Vertex 2719: Normal +Vertex 2720: Normal +Vertex 2721: Normal +Vertex 2722: Normal +Vertex 2723: Normal +Vertex 2724: Normal +Vertex 2725: Normal +Vertex 2726: Normal +Vertex 2727: Normal +Vertex 2728: Normal +Vertex 2729: Normal +Vertex 2730: Normal +Vertex 2731: Normal +Vertex 2732: Normal +Vertex 2733: Normal +Vertex 2734: Normal +Vertex 2735: Normal +Vertex 2736: Normal +Vertex 2737: Normal +Vertex 2738: Normal +Vertex 2739: Normal +Vertex 2740: Normal +Vertex 2741: Normal +Vertex 2742: Normal +Vertex 2743: Normal +Vertex 2744: Normal +Vertex 2745: Normal +Vertex 2746: Normal +Vertex 2747: Normal +Vertex 2748: Normal +Vertex 2749: Normal +Vertex 2750: Normal +Vertex 2751: Normal +Vertex 2752: Normal +Vertex 2753: Normal +Vertex 2754: Normal +Vertex 2755: Normal +Vertex 2756: Normal +Vertex 2757: Normal +Vertex 2758: Normal +Vertex 2759: Normal +Vertex 2760: Normal +Vertex 2761: Normal +Vertex 2762: Normal +Vertex 2763: Normal +Vertex 2764: Normal +Vertex 2765: Normal +Vertex 2766: Normal +Vertex 2767: Normal +Vertex 2768: Normal +Vertex 2769: Normal +Vertex 2770: Normal +Vertex 2771: Normal +Vertex 2772: Normal +Vertex 2773: Normal +Vertex 2774: Normal +Vertex 2775: Normal +Vertex 2776: Normal +Vertex 2777: Normal +Vertex 2778: Normal +Vertex 2779: Normal +Vertex 2780: Normal +Vertex 2781: Normal +Vertex 2782: Normal +Vertex 2783: Normal +Vertex 2784: Normal +Vertex 2785: Normal +Vertex 2786: Normal +Vertex 2787: Normal +Vertex 2788: Normal +Vertex 2789: Normal +Vertex 2790: Normal +Vertex 2791: Normal +Vertex 2792: Normal +Vertex 2793: Normal +Vertex 2794: Normal +Vertex 2795: Normal +Vertex 2796: Normal +Vertex 2797: Normal +Vertex 2798: Normal +Vertex 2799: Normal +Vertex 2800: Normal +Vertex 2801: Normal +Vertex 2802: Normal +Vertex 2803: Normal +Vertex 2804: Normal +Vertex 2805: Normal +Vertex 2806: Normal +Vertex 2807: Normal +Vertex 2808: Normal +Vertex 2809: Normal +Vertex 2810: Normal +Vertex 2811: Normal +Vertex 2812: Normal +Vertex 2813: Normal +Vertex 2814: Normal +Vertex 2815: Normal +Vertex 2816: Normal +Vertex 2817: Normal +Vertex 2818: Normal +Vertex 2819: Normal +Vertex 2820: Normal +Vertex 2821: Normal +Vertex 2822: Normal +Vertex 2823: Normal +Vertex 2824: Normal +Vertex 2825: Normal +Vertex 2826: Normal +Vertex 2827: Normal +Vertex 2828: Normal +Vertex 2829: Normal +Vertex 2830: Normal +Vertex 2831: Normal +Vertex 2832: Normal +Vertex 2833: Normal +Vertex 2834: Normal +Vertex 2835: Normal +Vertex 2836: Normal +Vertex 2837: Normal +Vertex 2838: Normal +Vertex 2839: Normal +Vertex 2840: Normal +Vertex 2841: Normal +Vertex 2842: Normal +Vertex 2843: Normal +Vertex 2844: Normal +Vertex 2845: Normal +Vertex 2846: Normal +Vertex 2847: Normal +Vertex 2848: Normal +Vertex 2849: Normal +Vertex 2850: Normal +Vertex 2851: Normal +Vertex 2852: Normal +Vertex 2853: Normal +Vertex 2854: Normal +Vertex 2855: Normal +Vertex 2856: Normal +Vertex 2857: Normal +Vertex 2858: Normal +Vertex 2859: Normal +Vertex 2860: Normal +Vertex 2861: Normal +Vertex 2862: Normal +Vertex 2863: Normal +Vertex 2864: Normal +Vertex 2865: Normal +Vertex 2866: Normal +Vertex 2867: Normal +Vertex 2868: Normal +Vertex 2869: Normal +Vertex 2870: Normal +Vertex 2871: Normal +Vertex 2872: Normal +Vertex 2873: Normal +Vertex 2874: Normal +Vertex 2875: Normal +Vertex 2876: Normal +Vertex 2877: Normal +Vertex 2878: Normal +Vertex 2879: Normal +Vertex 2880: Normal +Vertex 2881: Normal +Vertex 2882: Normal +Vertex 2883: Normal +Vertex 2884: Normal +Vertex 2885: Normal +Vertex 2886: Normal +Vertex 2887: Normal +Vertex 2888: Normal +Vertex 2889: Normal +Vertex 2890: Normal +Vertex 2891: Normal +Vertex 2892: Normal +Vertex 2893: Normal +Vertex 2894: Normal +Vertex 2895: Normal +Vertex 2896: Normal +Vertex 2897: Normal +Vertex 2898: Normal +Vertex 2899: Normal +Vertex 2900: Normal +Vertex 2901: Normal +Vertex 2902: Normal +Vertex 2903: Normal +Vertex 2904: Normal +Vertex 2905: Normal +Vertex 2906: Normal +Vertex 2907: Normal +Vertex 2908: Normal +Vertex 2909: Normal +Vertex 2910: Normal +Vertex 2911: Normal +Vertex 2912: Normal +Vertex 2913: Normal +Vertex 2914: Normal +Vertex 2915: Normal +Vertex 2916: Normal +Vertex 2917: Normal +Vertex 2918: Normal +Vertex 2919: Normal +Vertex 2920: Normal +Vertex 2921: Normal +Vertex 2922: Normal +Vertex 2923: Normal +Vertex 2924: Normal +Vertex 2925: Normal +Vertex 2926: Normal +Vertex 2927: Normal +Vertex 2928: Normal +Vertex 2929: Normal +Vertex 2930: Normal +Vertex 2931: Normal +Vertex 2932: Normal +Vertex 2933: Normal +Vertex 2934: Normal +Vertex 2935: Normal +Vertex 2936: Normal +Vertex 2937: Normal +Vertex 2938: Normal +Vertex 2939: Normal +Vertex 2940: Normal +Vertex 2941: Normal +Vertex 2942: Normal +Vertex 2943: Normal +Vertex 2944: Normal +Vertex 2945: Normal +Vertex 2946: Normal +Vertex 2947: Normal +Vertex 2948: Normal +Vertex 2949: Normal +Vertex 2950: Normal +Vertex 2951: Normal +Vertex 2952: Normal +Vertex 2953: Normal +Vertex 2954: Normal +Vertex 2955: Normal +Vertex 2956: Normal +Vertex 2957: Normal +Vertex 2958: Normal +Vertex 2959: Normal +Vertex 2960: Normal +Vertex 2961: Normal +Vertex 2962: Normal +Vertex 2963: Normal +Vertex 2964: Normal +Vertex 2965: Normal +Vertex 2966: Normal +Vertex 2967: Normal +Vertex 2968: Normal +Vertex 2969: Normal +Vertex 2970: Normal +Vertex 2971: Normal +Vertex 2972: Normal +Vertex 2973: Normal +Vertex 2974: Normal +Vertex 2975: Normal +Vertex 2976: Normal +Vertex 2977: Normal +Vertex 2978: Normal +Vertex 2979: Normal +Vertex 2980: Normal +Vertex 2981: Normal +Vertex 2982: Normal +Vertex 2983: Normal +Vertex 2984: Normal +Vertex 2985: Normal +Vertex 2986: Normal +Vertex 2987: Normal +Vertex 2988: Normal +Vertex 2989: Normal +Vertex 2990: Normal +Vertex 2991: Normal +Vertex 2992: Normal +Vertex 2993: Normal +Vertex 2994: Normal +Vertex 2995: Normal +Vertex 2996: Normal +Vertex 2997: Normal +Vertex 2998: Normal +Vertex 2999: Normal +Vertex 3000: Normal +Vertex 3001: Normal +Vertex 3002: Normal +Vertex 3003: Normal +Vertex 3004: Normal +Vertex 3005: Normal +Vertex 3006: Normal +Vertex 3007: Normal +Vertex 3008: Normal +Vertex 3009: Normal +Vertex 3010: Normal +Vertex 3011: Normal +Vertex 3012: Normal +Vertex 3013: Normal +Vertex 3014: Normal +Vertex 3015: Normal +Vertex 3016: Normal +Vertex 3017: Normal +Vertex 3018: Normal +Vertex 3019: Normal +Vertex 3020: Normal +Vertex 3021: Normal +Vertex 3022: Normal +Vertex 3023: Normal +Vertex 3024: Normal +Vertex 3025: Normal +Vertex 3026: Normal +Vertex 3027: Normal +Vertex 3028: Normal +Vertex 3029: Normal +Vertex 3030: Normal +Vertex 3031: Normal +Vertex 3032: Normal +Vertex 3033: Normal +Vertex 3034: Normal +Vertex 3035: Normal +Vertex 3036: Normal +Vertex 3037: Normal +Vertex 3038: Normal +Vertex 3039: Normal +Vertex 3040: Normal +Vertex 3041: Normal +Vertex 3042: Normal +Vertex 3043: Normal +Vertex 3044: Normal +Vertex 3045: Normal +Vertex 3046: Normal +Vertex 3047: Normal +Vertex 3048: Normal +Vertex 3049: Normal +Vertex 3050: Normal +Vertex 3051: Normal +Vertex 3052: Normal +Vertex 3053: Normal +Vertex 3054: Normal +Vertex 3055: Normal +Vertex 3056: Normal +Vertex 3057: Normal +Vertex 3058: Normal +Vertex 3059: Normal +Vertex 3060: Normal +Vertex 3061: Normal +Vertex 3062: Normal +Vertex 3063: Normal +Vertex 3064: Normal +Vertex 3065: Normal +Vertex 3066: Normal +Vertex 3067: Normal +Vertex 3068: Normal +Vertex 3069: Normal +Vertex 3070: Normal +Vertex 3071: Normal +Vertex 3072: Normal +Vertex 3073: Normal +Vertex 3074: Normal +Vertex 3075: Normal +Vertex 3076: Normal +Vertex 3077: Normal +Vertex 3078: Normal +Vertex 3079: Normal +Vertex 3080: Normal +Vertex 3081: Normal +Vertex 3082: Normal +Vertex 3083: Normal +Vertex 3084: Normal +Vertex 3085: Normal +Vertex 3086: Normal +Vertex 3087: Normal +Vertex 3088: Normal +Vertex 3089: Normal +Vertex 3090: Normal +Vertex 3091: Normal +Vertex 3092: Normal +Vertex 3093: Normal +Vertex 3094: Normal +Vertex 3095: Normal +Vertex 3096: Normal +Vertex 3097: Normal +Vertex 3098: Normal +Vertex 3099: Normal +Vertex 3100: Normal +Vertex 3101: Normal +Vertex 3102: Normal +Vertex 3103: Normal +Vertex 3104: Normal +Vertex 3105: Normal +Vertex 3106: Normal +Vertex 3107: Normal +Vertex 3108: Normal +Vertex 3109: Normal +Vertex 3110: Normal +Vertex 3111: Normal +Vertex 3112: Normal +Vertex 3113: Normal +Vertex 3114: Normal +Vertex 3115: Normal +Vertex 3116: Normal +Vertex 3117: Normal +Vertex 3118: Normal +Vertex 3119: Normal +Vertex 3120: Normal +Vertex 3121: Normal +Vertex 3122: Normal +Vertex 3123: Normal +Vertex 3124: Normal +Vertex 3125: Normal +Vertex 3126: Normal +Vertex 3127: Normal +Vertex 3128: Normal +Vertex 3129: Normal +Vertex 3130: Normal +Vertex 3131: Normal +Vertex 3132: Normal +Vertex 3133: Normal +Vertex 3134: Normal +Vertex 3135: Normal +Vertex 3136: Normal +Vertex 3137: Normal +Vertex 3138: Normal +Vertex 3139: Normal +Vertex 3140: Normal +Vertex 3141: Normal +Vertex 3142: Normal +Vertex 3143: Normal +Vertex 3144: Normal +Vertex 3145: Normal +Vertex 3146: Normal +Vertex 3147: Normal +Vertex 3148: Normal +Vertex 3149: Normal +Vertex 3150: Normal +Vertex 3151: Normal +Vertex 3152: Normal +Vertex 3153: Normal +Vertex 3154: Normal +Vertex 3155: Normal +Vertex 3156: Normal +Vertex 3157: Normal +Vertex 3158: Normal +Vertex 3159: Normal +Vertex 3160: Normal +Vertex 3161: Normal +Vertex 3162: Normal +Vertex 3163: Normal +Vertex 3164: Normal +Vertex 3165: Normal +Vertex 3166: Normal +Vertex 3167: Normal +Vertex 3168: Normal +Vertex 3169: Normal +Vertex 3170: Normal +Vertex 3171: Normal +Vertex 3172: Normal +Vertex 3173: Normal +Vertex 3174: Normal +Vertex 3175: Normal +Vertex 3176: Normal +Vertex 3177: Normal +Vertex 3178: Normal +Vertex 3179: Normal +Vertex 3180: Normal +Vertex 3181: Normal +Vertex 3182: Normal +Vertex 3183: Normal +Vertex 3184: Normal +Vertex 3185: Normal +Vertex 3186: Normal +Vertex 3187: Normal +Vertex 3188: Normal +Vertex 3189: Normal +Vertex 3190: Normal +Vertex 3191: Normal +Vertex 3192: Normal +Vertex 3193: Normal +Vertex 3194: Normal +Vertex 3195: Normal +Vertex 3196: Normal +Vertex 3197: Normal +Vertex 3198: Normal +Vertex 3199: Normal +Vertex 3200: Normal +Vertex 3201: Normal +Vertex 3202: Normal +Vertex 3203: Normal +Vertex 3204: Normal +Vertex 3205: Normal +Vertex 3206: Normal +Vertex 3207: Normal +Vertex 3208: Normal +Vertex 3209: Normal +Vertex 3210: Normal +Vertex 3211: Normal +Vertex 3212: Normal +Vertex 3213: Normal +Vertex 3214: Normal +Vertex 3215: Normal +Vertex 3216: Normal +Vertex 3217: Normal +Vertex 3218: Normal +Vertex 3219: Normal +Vertex 3220: Normal +Vertex 3221: Normal +Vertex 3222: Normal +Vertex 3223: Normal +Vertex 3224: Normal +Vertex 3225: Normal +Vertex 3226: Normal +Vertex 3227: Normal +Vertex 3228: Normal +Vertex 3229: Normal +Vertex 3230: Normal +Vertex 3231: Normal +Vertex 3232: Normal +Vertex 3233: Normal +Vertex 3234: Normal +Vertex 3235: Normal +Vertex 3236: Normal +Vertex 3237: Normal +Vertex 3238: Normal +Vertex 3239: Normal +Vertex 3240: Normal +Vertex 3241: Normal +Vertex 3242: Normal +Vertex 3243: Normal +Vertex 3244: Normal +Vertex 3245: Normal +Vertex 3246: Normal +Vertex 3247: Normal +Vertex 3248: Normal +Vertex 3249: Normal +Vertex 3250: Normal +Vertex 3251: Normal +Vertex 3252: Normal +Vertex 3253: Normal +Vertex 3254: Normal +Vertex 3255: Normal +Vertex 3256: Normal +Vertex 3257: Normal +Vertex 3258: Normal +Vertex 3259: Normal +Vertex 3260: Normal +Vertex 3261: Normal +Vertex 3262: Normal +Vertex 3263: Normal +Vertex 3264: Normal +Vertex 3265: Normal +Vertex 3266: Normal +Vertex 3267: Normal +Vertex 3268: Normal +Vertex 3269: Normal +Vertex 3270: Normal +Vertex 3271: Normal +Vertex 3272: Normal +Vertex 3273: Normal +Vertex 3274: Normal +Vertex 3275: Normal +Vertex 3276: Normal +Vertex 3277: Normal +Vertex 3278: Normal +Vertex 3279: Normal +Vertex 3280: Normal +Vertex 3281: Normal +Vertex 3282: Normal +Vertex 3283: Normal +Vertex 3284: Normal +Vertex 3285: Normal +Vertex 3286: Normal +Vertex 3287: Normal +Vertex 3288: Normal +Vertex 3289: Normal +Vertex 3290: Normal +Vertex 3291: Normal +Vertex 3292: Normal +Vertex 3293: Normal +Vertex 3294: Normal +Vertex 3295: Normal +Vertex 3296: Normal +Vertex 3297: Normal +Vertex 3298: Normal +Vertex 3299: Normal +Vertex 3300: Normal +Vertex 3301: Normal +Vertex 3302: Normal +Vertex 3303: Normal +Vertex 3304: Normal +Vertex 3305: Normal +Vertex 3306: Normal +Vertex 3307: Normal +Vertex 3308: Normal +Vertex 3309: Normal +Vertex 3310: Normal +Vertex 3311: Normal +Vertex 3312: Normal +Vertex 3313: Normal +Vertex 3314: Normal +Vertex 3315: Normal +Vertex 3316: Normal +Vertex 3317: Normal +Vertex 3318: Normal +Vertex 3319: Normal +Vertex 3320: Normal +Vertex 3321: Normal +Vertex 3322: Normal +Vertex 3323: Normal +Vertex 3324: Normal +Vertex 3325: Normal +Vertex 3326: Normal +Vertex 3327: Normal +Vertex 3328: Normal +Vertex 3329: Normal +Vertex 3330: Normal +Vertex 3331: Normal +Vertex 3332: Normal +Vertex 3333: Normal +Vertex 3334: Normal +Vertex 3335: Normal +Vertex 3336: Normal +Vertex 3337: Normal +Vertex 3338: Normal +Vertex 3339: Normal +Vertex 3340: Normal +Vertex 3341: Normal +Vertex 3342: Normal +Vertex 3343: Normal +Vertex 3344: Normal +Vertex 3345: Normal +Vertex 3346: Normal +Vertex 3347: Normal +Vertex 3348: Normal +Vertex 3349: Normal +Vertex 3350: Normal +Vertex 3351: Normal +Vertex 3352: Normal +Vertex 3353: Normal +Vertex 3354: Normal +Vertex 3355: Normal +Vertex 3356: Normal +Vertex 3357: Normal +Vertex 3358: Normal +Vertex 3359: Normal +Vertex 3360: Normal +Vertex 3361: Normal +Vertex 3362: Normal +Vertex 3363: Normal +Vertex 3364: Normal +Vertex 3365: Normal +Vertex 3366: Normal +Vertex 3367: Normal +Vertex 3368: Normal +Vertex 3369: Normal +Vertex 3370: Normal +Vertex 3371: Normal +Vertex 3372: Normal +Vertex 3373: Normal +Vertex 3374: Normal +Vertex 3375: Normal +Vertex 3376: Normal +Vertex 3377: Normal +Vertex 3378: Normal +Vertex 3379: Normal +Vertex 3380: Normal +Vertex 3381: Normal +Vertex 3382: Normal +Vertex 3383: Normal +Vertex 3384: Normal +Vertex 3385: Normal +Vertex 3386: Normal +Vertex 3387: Normal +Vertex 3388: Normal +Vertex 3389: Normal +Vertex 3390: Normal +Vertex 3391: Normal +Vertex 3392: Normal +Vertex 3393: Normal +Vertex 3394: Normal +Vertex 3395: Normal +Vertex 3396: Normal +Vertex 3397: Normal +Vertex 3398: Normal +Vertex 3399: Normal +Vertex 3400: Normal +Vertex 3401: Normal +Vertex 3402: Normal +Vertex 3403: Normal +Vertex 3404: Normal +Vertex 3405: Normal +Vertex 3406: Normal +Vertex 3407: Normal +Vertex 3408: Normal +Vertex 3409: Normal +Vertex 3410: Normal +Vertex 3411: Normal +Vertex 3412: Normal +Vertex 3413: Normal +Vertex 3414: Normal +Vertex 3415: Normal +Vertex 3416: Normal +Vertex 3417: Normal +Vertex 3418: Normal +Vertex 3419: Normal +Vertex 3420: Normal +Vertex 3421: Normal +Vertex 3422: Normal +Vertex 3423: Normal +Vertex 3424: Normal +Vertex 3425: Normal +Vertex 3426: Normal +Vertex 3427: Normal +Vertex 3428: Normal +Vertex 3429: Normal +Vertex 3430: Normal +Vertex 3431: Normal +Vertex 3432: Normal +Vertex 3433: Normal +Vertex 3434: Normal +Vertex 3435: Normal +Vertex 3436: Normal +Vertex 3437: Normal +Vertex 3438: Normal +Vertex 3439: Normal +Vertex 3440: Normal +Vertex 3441: Normal +Vertex 3442: Normal +Vertex 3443: Normal +Vertex 3444: Normal +Vertex 3445: Normal +Vertex 3446: Normal +Vertex 3447: Normal +Vertex 3448: Normal +Vertex 3449: Normal +Vertex 3450: Normal +Vertex 3451: Normal +Vertex 3452: Normal +Vertex 3453: Normal +Vertex 3454: Normal +Vertex 3455: Normal +Vertex 3456: Normal +Vertex 3457: Normal +Vertex 3458: Normal +Vertex 3459: Normal +Vertex 3460: Normal +Vertex 3461: Normal +Vertex 3462: Normal +Vertex 3463: Normal +Vertex 3464: Normal +Vertex 3465: Normal +Vertex 3466: Normal +Vertex 3467: Normal +Vertex 3468: Normal +Vertex 3469: Normal +Vertex 3470: Normal +Vertex 3471: Normal +Vertex 3472: Normal +Vertex 3473: Normal +Vertex 3474: Normal +Vertex 3475: Normal +Vertex 3476: Normal +Vertex 3477: Normal +Vertex 3478: Normal +Vertex 3479: Normal +Vertex 3480: Normal +Vertex 3481: Normal +Vertex 3482: Normal +Vertex 3483: Normal +Vertex 3484: Normal +Vertex 3485: Normal +Vertex 3486: Normal +Vertex 3487: Normal +Vertex 3488: Normal +Vertex 3489: Normal +Vertex 3490: Normal +Vertex 3491: Normal +Vertex 3492: Normal +Vertex 3493: Normal +Vertex 3494: Normal +Vertex 3495: Normal +Vertex 3496: Normal +Vertex 3497: Normal +Vertex 3498: Normal +Vertex 3499: Normal +Vertex 3500: Normal +Vertex 3501: Normal +Vertex 3502: Normal +Vertex 3503: Normal +Vertex 3504: Normal +Vertex 3505: Normal +Vertex 3506: Normal +Vertex 3507: Normal +Vertex 3508: Normal +Vertex 3509: Normal +Vertex 3510: Normal +Vertex 3511: Normal +Vertex 3512: Normal +Vertex 3513: Normal +Vertex 3514: Normal +Vertex 3515: Normal +Vertex 3516: Normal +Vertex 3517: Normal +Vertex 3518: Normal +Vertex 3519: Normal +Vertex 3520: Normal +Vertex 3521: Normal +Vertex 3522: Normal +Vertex 3523: Normal +Vertex 3524: Normal +Vertex 3525: Normal +Vertex 3526: Normal +Vertex 3527: Normal +Vertex 3528: Normal +Vertex 3529: Normal +Vertex 3530: Normal +Vertex 3531: Normal +Vertex 3532: Normal +Vertex 3533: Normal +Vertex 3534: Normal +Vertex 3535: Normal +Vertex 3536: Normal +Vertex 3537: Normal +Vertex 3538: Normal +Vertex 3539: Normal +Vertex 3540: Normal +Vertex 3541: Normal +Vertex 3542: Normal +Vertex 3543: Normal +Vertex 3544: Normal +Vertex 3545: Normal +Vertex 3546: Normal +Vertex 3547: Normal +Vertex 3548: Normal +Vertex 3549: Normal +Vertex 3550: Normal +Vertex 3551: Normal +Vertex 3552: Normal +Vertex 3553: Normal +Vertex 3554: Normal +Vertex 3555: Normal +Vertex 3556: Normal +Vertex 3557: Normal +Vertex 3558: Normal +Vertex 3559: Normal +Vertex 3560: Normal +Vertex 3561: Normal +Vertex 3562: Normal +Vertex 3563: Normal +Vertex 3564: Normal +Vertex 3565: Normal +Vertex 3566: Normal +Vertex 3567: Normal +Vertex 3568: Normal +Vertex 3569: Normal +Vertex 3570: Normal +Vertex 3571: Normal +Vertex 3572: Normal +Vertex 3573: Normal +Vertex 3574: Normal +Vertex 3575: Normal +Vertex 3576: Normal +Vertex 3577: Normal +Vertex 3578: Normal +Vertex 3579: Normal +Vertex 3580: Normal +Vertex 3581: Normal +Vertex 3582: Normal +Vertex 3583: Normal +Vertex 3584: Normal +Vertex 3585: Normal +Vertex 3586: Normal +Vertex 3587: Normal +Vertex 3588: Normal +Vertex 3589: Normal +Vertex 3590: Normal +Vertex 3591: Normal +Vertex 3592: Normal +Vertex 3593: Normal +Vertex 3594: Normal +Vertex 3595: Normal +Vertex 3596: Normal +Vertex 3597: Normal +Vertex 3598: Normal +Vertex 3599: Normal +Vertex 3600: Normal +Vertex 3601: Normal +Vertex 3602: Normal +Vertex 3603: Normal +Vertex 3604: Normal +Vertex 3605: Normal +Vertex 3606: Normal +Vertex 3607: Normal +Vertex 3608: Normal +Vertex 3609: Normal +Vertex 3610: Normal +Vertex 3611: Normal +Vertex 3612: Normal +Vertex 3613: Normal +Vertex 3614: Normal +Vertex 3615: Normal +Vertex 3616: Normal +Vertex 3617: Normal +Vertex 3618: Normal +Vertex 3619: Normal +Vertex 3620: Normal +Vertex 3621: Normal +Vertex 3622: Normal +Vertex 3623: Normal +Vertex 3624: Normal +Vertex 3625: Normal +Vertex 3626: Normal +Vertex 3627: Normal +Vertex 3628: Normal +Vertex 3629: Normal +Vertex 3630: Normal +Vertex 3631: Normal +Vertex 3632: Normal +Vertex 3633: Normal +Vertex 3634: Normal +Vertex 3635: Normal +Vertex 3636: Normal +Vertex 3637: Normal +Vertex 3638: Normal +Vertex 3639: Normal +Vertex 3640: Normal +Vertex 3641: Normal +Vertex 3642: Normal +Vertex 3643: Normal +Vertex 3644: Normal +Vertex 3645: Normal +Vertex 3646: Normal +Vertex 3647: Normal +Vertex 3648: Normal +Vertex 3649: Normal +Vertex 3650: Normal +Vertex 3651: Normal +Vertex 3652: Normal +Vertex 3653: Normal +Vertex 3654: Normal +Vertex 3655: Normal +Vertex 3656: Normal +Vertex 3657: Normal +Vertex 3658: Normal +Vertex 3659: Normal +Vertex 3660: Normal +Vertex 3661: Normal +Vertex 3662: Normal +Vertex 3663: Normal +Vertex 3664: Normal +Vertex 3665: Normal +Vertex 3666: Normal +Vertex 3667: Normal +Vertex 3668: Normal +Vertex 3669: Normal +Vertex 3670: Normal +Vertex 3671: Normal +Vertex 3672: Normal +Vertex 3673: Normal +Vertex 3674: Normal +Vertex 3675: Normal +Vertex 3676: Normal +Vertex 3677: Normal +Vertex 3678: Normal +Vertex 3679: Normal +Vertex 3680: Normal +Vertex 3681: Normal +Vertex 3682: Normal +Vertex 3683: Normal +Vertex 3684: Normal +Vertex 3685: Normal +Vertex 3686: Normal +Vertex 3687: Normal +Vertex 3688: Normal +Vertex 3689: Normal +Vertex 3690: Normal +Vertex 3691: Normal +Vertex 3692: Normal +Vertex 3693: Normal +Vertex 3694: Normal +Vertex 3695: Normal +Vertex 3696: Normal +Vertex 3697: Normal +Vertex 3698: Normal +Vertex 3699: Normal +Vertex 3700: Normal +Vertex 3701: Normal +Vertex 3702: Normal +Vertex 3703: Normal +Vertex 3704: Normal +Vertex 3705: Normal +Vertex 3706: Normal +Vertex 3707: Normal +Vertex 3708: Normal +Vertex 3709: Normal +Vertex 3710: Normal +Vertex 3711: Normal +Vertex 3712: Normal +Vertex 3713: Normal +Vertex 3714: Normal +Vertex 3715: Normal +Vertex 3716: Normal +Vertex 3717: Normal +Vertex 3718: Normal +Vertex 3719: Normal +Vertex 3720: Normal +Vertex 3721: Normal +Vertex 3722: Normal +Vertex 3723: Normal +Vertex 3724: Normal +Vertex 3725: Normal +Vertex 3726: Normal +Vertex 3727: Normal +Vertex 3728: Normal +Vertex 3729: Normal +Vertex 3730: Normal +Vertex 3731: Normal +Vertex 3732: Normal +Vertex 3733: Normal +Vertex 3734: Normal +Vertex 3735: Normal +Vertex 3736: Normal +Vertex 3737: Normal +Vertex 3738: Normal +Vertex 3739: Normal +Vertex 3740: Normal +Vertex 3741: Normal +Vertex 3742: Normal +Vertex 3743: Normal +Vertex 3744: Normal +Vertex 3745: Normal +Vertex 3746: Normal +Vertex 3747: Normal +Vertex 3748: Normal +Vertex 3749: Normal +Vertex 3750: Normal +Vertex 3751: Normal +Vertex 3752: Normal +Vertex 3753: Normal +Vertex 3754: Normal +Vertex 3755: Normal +Vertex 3756: Normal +Vertex 3757: Normal +Vertex 3758: Normal +Vertex 3759: Normal +Vertex 3760: Normal +Vertex 3761: Normal +Vertex 3762: Normal +Vertex 3763: Normal +Vertex 3764: Normal +Vertex 3765: Normal +Vertex 3766: Normal +Vertex 3767: Normal +Vertex 3768: Normal +Vertex 3769: Normal +Vertex 3770: Normal +Vertex 3771: Normal +Vertex 3772: Normal +Vertex 3773: Normal +Vertex 3774: Normal +Vertex 3775: Normal +Vertex 3776: Normal +Vertex 3777: Normal +Vertex 3778: Normal +Vertex 3779: Normal +Vertex 3780: Normal +Vertex 3781: Normal +Vertex 3782: Normal +Vertex 3783: Normal +Vertex 3784: Normal +Vertex 3785: Normal +Vertex 3786: Normal +Vertex 3787: Normal +Vertex 3788: Normal +Vertex 3789: Normal +Vertex 3790: Normal +Vertex 3791: Normal +Vertex 3792: Normal +Vertex 3793: Normal +Vertex 3794: Normal +Vertex 3795: Normal +Vertex 3796: Normal +Vertex 3797: Normal +Vertex 3798: Normal +Vertex 3799: Normal +Vertex 3800: Normal +Vertex 3801: Normal +Vertex 3802: Normal +Vertex 3803: Normal +Vertex 3804: Normal +Vertex 3805: Normal +Vertex 3806: Normal +Vertex 3807: Normal +Vertex 3808: Normal +Vertex 3809: Normal +Vertex 3810: Normal +Vertex 3811: Normal +Vertex 3812: Normal +Vertex 3813: Normal +Vertex 3814: Normal +Vertex 3815: Normal +Vertex 3816: Normal +Vertex 3817: Normal +Vertex 3818: Normal +Vertex 3819: Normal +Vertex 3820: Normal +Vertex 3821: Normal +Vertex 3822: Normal +Vertex 3823: Normal +Vertex 3824: Normal +Vertex 3825: Normal +Vertex 3826: Normal +Vertex 3827: Normal +Vertex 3828: Normal +Vertex 3829: Normal +Vertex 3830: Normal +Vertex 3831: Normal +Vertex 3832: Normal +Vertex 3833: Normal +Vertex 3834: Normal +Vertex 3835: Normal +Vertex 3836: Normal +Vertex 3837: Normal +Vertex 3838: Normal +Vertex 3839: Normal +Vertex 3840: Normal +Vertex 3841: Normal +Vertex 3842: Normal +Vertex 3843: Normal +Vertex 3844: Normal +Vertex 3845: Normal +Vertex 3846: Normal +Vertex 3847: Normal +Vertex 3848: Normal +Vertex 3849: Normal +Vertex 3850: Normal +Vertex 3851: Normal +Vertex 3852: Normal +Vertex 3853: Normal +Vertex 3854: Normal +Vertex 3855: Normal +Vertex 3856: Normal +Vertex 3857: Normal +Vertex 3858: Normal +Vertex 3859: Normal +Vertex 3860: Normal +Vertex 3861: Normal +Vertex 3862: Normal +Vertex 3863: Normal +Vertex 3864: Normal +Vertex 3865: Normal +Vertex 3866: Normal +Vertex 3867: Normal +Vertex 3868: Normal +Vertex 3869: Normal +Vertex 3870: Normal +Vertex 3871: Normal +Vertex 3872: Normal +Vertex 3873: Normal +Vertex 3874: Normal +Vertex 3875: Normal +Vertex 3876: Normal +Vertex 3877: Normal +Vertex 3878: Normal +Vertex 3879: Normal +Vertex 3880: Normal +Vertex 3881: Normal +Vertex 3882: Normal +Vertex 3883: Normal +Vertex 3884: Normal +Vertex 3885: Normal +Vertex 3886: Normal +Vertex 3887: Normal +Vertex 3888: Normal +Vertex 3889: Normal +Vertex 3890: Normal +Vertex 3891: Normal +Vertex 3892: Normal +Vertex 3893: Normal +Vertex 3894: Normal +Vertex 3895: Normal +Vertex 3896: Normal +Vertex 3897: Normal +Vertex 3898: Normal +Vertex 3899: Normal +Vertex 3900: Normal +Vertex 3901: Normal +Vertex 3902: Normal +Vertex 3903: Normal +Vertex 3904: Normal +Vertex 3905: Normal +Vertex 3906: Normal +Vertex 3907: Normal +Vertex 3908: Normal +Vertex 3909: Normal +Vertex 3910: Normal +Vertex 3911: Normal +Vertex 3912: Normal +Vertex 3913: Normal +Vertex 3914: Normal +Vertex 3915: Normal +Vertex 3916: Normal +Vertex 3917: Normal +Vertex 3918: Normal +Vertex 3919: Normal +Vertex 3920: Normal +Vertex 3921: Normal +Vertex 3922: Normal +Vertex 3923: Normal +Vertex 3924: Normal +Vertex 3925: Normal +Vertex 3926: Normal +Vertex 3927: Normal +Vertex 3928: Normal +Vertex 3929: Normal +Vertex 3930: Normal +Vertex 3931: Normal +Vertex 3932: Normal +Vertex 3933: Normal +Vertex 3934: Normal +Vertex 3935: Normal +Vertex 3936: Normal +Vertex 3937: Normal +Vertex 3938: Normal +Vertex 3939: Normal +Vertex 3940: Normal +Vertex 3941: Normal +Vertex 3942: Normal +Vertex 3943: Normal +Vertex 3944: Normal +Vertex 3945: Normal +Vertex 3946: Normal +Vertex 3947: Normal +Vertex 3948: Normal +Vertex 3949: Normal +Vertex 3950: Normal +Vertex 3951: Normal +Vertex 3952: Normal +Vertex 3953: Normal +Vertex 3954: Normal +Vertex 3955: Normal +Vertex 3956: Normal +Vertex 3957: Normal +Vertex 3958: Normal +Vertex 3959: Normal +Vertex 3960: Normal +Vertex 3961: Normal +Vertex 3962: Normal +Vertex 3963: Normal +Vertex 3964: Normal +Vertex 3965: Normal +Vertex 3966: Normal +Vertex 3967: Normal +Vertex 3968: Normal +Vertex 3969: Normal +Vertex 3970: Normal +Vertex 3971: Normal +Vertex 3972: Normal +Vertex 3973: Normal +Vertex 3974: Normal +Vertex 3975: Normal +Vertex 3976: Normal +Vertex 3977: Normal +Vertex 3978: Normal +Vertex 3979: Normal +Vertex 3980: Normal +Vertex 3981: Normal +Vertex 3982: Normal +Vertex 3983: Normal +Vertex 3984: Normal +Vertex 3985: Normal +Vertex 3986: Normal +Vertex 3987: Normal +Vertex 3988: Normal +Vertex 3989: Normal +Vertex 3990: Normal +Vertex 3991: Normal +Vertex 3992: Normal +Vertex 3993: Normal +Vertex 3994: Normal +Vertex 3995: Normal +Vertex 3996: Normal +Vertex 3997: Normal +Vertex 3998: Normal +Vertex 3999: Normal +Vertex 4000: Normal +Vertex 4001: Normal +Vertex 4002: Normal +Vertex 4003: Normal +Vertex 4004: Normal +Vertex 4005: Normal +Vertex 4006: Normal +Vertex 4007: Normal +Vertex 4008: Normal +Vertex 4009: Normal +Vertex 4010: Normal +Vertex 4011: Normal +Vertex 4012: Normal +Vertex 4013: Normal +Vertex 4014: Normal +Vertex 4015: Normal +Vertex 4016: Normal +Vertex 4017: Normal +Vertex 4018: Normal +Vertex 4019: Normal +Vertex 4020: Normal +Vertex 4021: Normal +Vertex 4022: Normal +Vertex 4023: Normal +Vertex 4024: Normal +Vertex 4025: Normal +Vertex 4026: Normal +Vertex 4027: Normal +Vertex 4028: Normal +Vertex 4029: Normal +Vertex 4030: Normal +Vertex 4031: Normal +Vertex 4032: Normal +Vertex 4033: Normal +Vertex 4034: Normal +Vertex 4035: Normal +Vertex 4036: Normal +Vertex 4037: Normal +Vertex 4038: Normal +Vertex 4039: Normal +Vertex 4040: Normal +Vertex 4041: Normal +Vertex 4042: Normal +Vertex 4043: Normal +Vertex 4044: Normal +Vertex 4045: Normal +Vertex 4046: Normal +Vertex 4047: Normal +Vertex 4048: Normal +Vertex 4049: Normal +Vertex 4050: Normal +Vertex 4051: Normal +Vertex 4052: Normal +Vertex 4053: Normal +Vertex 4054: Normal +Vertex 4055: Normal +Vertex 4056: Normal +Vertex 4057: Normal +Vertex 4058: Normal +Vertex 4059: Normal +Vertex 4060: Normal +Vertex 4061: Normal +Vertex 4062: Normal +Vertex 4063: Normal +Vertex 4064: Normal +Vertex 4065: Normal +Vertex 4066: Normal +Vertex 4067: Normal +Vertex 4068: Normal +Vertex 4069: Normal +Vertex 4070: Normal +Vertex 4071: Normal +Vertex 4072: Normal +Vertex 4073: Normal +Vertex 4074: Normal +Vertex 4075: Normal +Vertex 4076: Normal +Vertex 4077: Normal +Vertex 4078: Normal +Vertex 4079: Normal +Vertex 4080: Normal +Vertex 4081: Normal +Vertex 4082: Normal +Vertex 4083: Normal +Vertex 4084: Normal +Vertex 4085: Normal +Vertex 4086: Normal +Vertex 4087: Normal +Vertex 4088: Normal +Vertex 4089: Normal +Vertex 4090: Normal +Vertex 4091: Normal +Vertex 4092: Normal +Vertex 4093: Normal +Vertex 4094: Normal +Vertex 4095: Normal +Vertex 4096: Normal +Vertex 4097: Normal +Vertex 4098: Normal +Vertex 4099: Normal +Vertex 4100: Normal +Vertex 4101: Normal +Vertex 4102: Normal +Vertex 4103: Normal +Vertex 4104: Normal +Vertex 4105: Normal +Vertex 4106: Normal +Vertex 4107: Normal +Vertex 4108: Normal +Vertex 4109: Normal +Vertex 4110: Normal +Vertex 4111: Normal +Vertex 4112: Normal +Vertex 4113: Normal +Vertex 4114: Normal +Vertex 4115: Normal +Vertex 4116: Normal +Vertex 4117: Normal +Vertex 4118: Normal +Vertex 4119: Normal +Vertex 4120: Normal +Vertex 4121: Normal +Vertex 4122: Normal +Vertex 4123: Normal +Vertex 4124: Normal +Vertex 4125: Normal +Vertex 4126: Normal +Vertex 4127: Normal +Vertex 4128: Normal +Vertex 4129: Normal +Vertex 4130: Normal +Vertex 4131: Normal +Vertex 4132: Normal +Vertex 4133: Normal +Vertex 4134: Normal +Vertex 4135: Normal +Vertex 4136: Normal +Vertex 4137: Normal +Vertex 4138: Normal +Vertex 4139: Normal +Vertex 4140: Normal +Vertex 4141: Normal +Vertex 4142: Normal +Vertex 4143: Normal +Vertex 4144: Normal +Vertex 4145: Normal +Vertex 4146: Normal +Vertex 4147: Normal +Vertex 4148: Normal +Vertex 4149: Normal +Vertex 4150: Normal +Vertex 4151: Normal +Vertex 4152: Normal +Vertex 4153: Normal +Vertex 4154: Normal +Vertex 4155: Normal +Vertex 4156: Normal +Vertex 4157: Normal +Vertex 4158: Normal +Vertex 4159: Normal +Vertex 4160: Normal +Vertex 4161: Normal +Vertex 4162: Normal +Vertex 4163: Normal +Vertex 4164: Normal +Vertex 4165: Normal +Vertex 4166: Normal +Vertex 4167: Normal +Vertex 4168: Normal +Vertex 4169: Normal +Vertex 4170: Normal +Vertex 4171: Normal +Vertex 4172: Normal +Vertex 4173: Normal +Vertex 4174: Normal +Vertex 4175: Normal +Vertex 4176: Normal +Vertex 4177: Normal +Vertex 4178: Normal +Vertex 4179: Normal +Vertex 4180: Normal +Vertex 4181: Normal +Vertex 4182: Normal +Vertex 4183: Normal +Vertex 4184: Normal +Vertex 4185: Normal +Vertex 4186: Normal +Vertex 4187: Normal +Vertex 4188: Normal +Vertex 4189: Normal +Vertex 4190: Normal +Vertex 4191: Normal +Vertex 4192: Normal +Vertex 4193: Normal +Vertex 4194: Normal +Vertex 4195: Normal +Vertex 4196: Normal +Vertex 4197: Normal +Vertex 4198: Normal +Vertex 4199: Normal +Vertex 4200: Normal +Vertex 4201: Normal +Vertex 4202: Normal +Vertex 4203: Normal +Vertex 4204: Normal +Vertex 4205: Normal +Vertex 4206: Normal +Vertex 4207: Normal +Vertex 4208: Normal +Vertex 4209: Normal +Vertex 4210: Normal +Vertex 4211: Normal +Vertex 4212: Normal +Vertex 4213: Normal +Vertex 4214: Normal +Vertex 4215: Normal +Vertex 4216: Normal +Vertex 4217: Normal +Vertex 4218: Normal +Vertex 4219: Normal +Vertex 4220: Normal +Vertex 4221: Normal +Vertex 4222: Normal +Vertex 4223: Normal +Vertex 4224: Normal +Vertex 4225: Normal +Vertex 4226: Normal +Vertex 4227: Normal +Vertex 4228: Normal +Vertex 4229: Normal +Vertex 4230: Normal +Vertex 4231: Normal +Vertex 4232: Normal +Vertex 4233: Normal +Vertex 4234: Normal +Vertex 4235: Normal +Vertex 4236: Normal +Vertex 4237: Normal +Vertex 4238: Normal +Vertex 4239: Normal +Vertex 4240: Normal +Vertex 4241: Normal +Vertex 4242: Normal +Vertex 4243: Normal +Vertex 4244: Normal +Vertex 4245: Normal +Vertex 4246: Normal +Vertex 4247: Normal +Vertex 4248: Normal +Vertex 4249: Normal +Vertex 4250: Normal +Vertex 4251: Normal +Vertex 4252: Normal +Vertex 4253: Normal +Vertex 4254: Normal +Vertex 4255: Normal +Vertex 4256: Normal +Vertex 4257: Normal +Vertex 4258: Normal +Vertex 4259: Normal +Vertex 4260: Normal +Vertex 4261: Normal +Vertex 4262: Normal +Vertex 4263: Normal +Vertex 4264: Normal +Vertex 4265: Normal +Vertex 4266: Normal +Vertex 4267: Normal +Vertex 4268: Normal +Vertex 4269: Normal +Vertex 4270: Normal +Vertex 4271: Normal +Vertex 4272: Normal +Vertex 4273: Normal +Vertex 4274: Normal +Vertex 4275: Normal +Vertex 4276: Normal +Vertex 4277: Normal +Vertex 4278: Normal +Vertex 4279: Normal +Vertex 4280: Normal +Vertex 4281: Normal +Vertex 4282: Normal +Vertex 4283: Normal +Vertex 4284: Normal +Vertex 4285: Normal +Vertex 4286: Normal +Vertex 4287: Normal +Vertex 4288: Normal +Vertex 4289: Normal +Vertex 4290: Normal +Vertex 4291: Normal +Vertex 4292: Normal +Vertex 4293: Normal +Vertex 4294: Normal +Vertex 4295: Normal +Vertex 4296: Normal +Vertex 4297: Normal +Vertex 4298: Normal +Vertex 4299: Normal +Vertex 4300: Normal +Vertex 4301: Normal +Vertex 4302: Normal +Vertex 4303: Normal +Vertex 4304: Normal +Vertex 4305: Normal +Vertex 4306: Normal +Vertex 4307: Normal +Vertex 4308: Normal +Vertex 4309: Normal +Vertex 4310: Normal +Vertex 4311: Normal +Vertex 4312: Normal +Vertex 4313: Normal +Vertex 4314: Normal +Vertex 4315: Normal +Vertex 4316: Normal +Vertex 4317: Normal +Vertex 4318: Normal +Vertex 4319: Normal +Vertex 4320: Normal +Vertex 4321: Normal +Vertex 4322: Normal +Vertex 4323: Normal +Vertex 4324: Normal +Vertex 4325: Normal +Vertex 4326: Normal +Vertex 4327: Normal +Vertex 4328: Normal +Vertex 4329: Normal +Vertex 4330: Normal +Vertex 4331: Normal +Vertex 4332: Normal +Vertex 4333: Normal +Vertex 4334: Normal +Vertex 4335: Normal +Vertex 4336: Normal +Vertex 4337: Normal +Vertex 4338: Normal +Vertex 4339: Normal +Vertex 4340: Normal +Vertex 4341: Normal +Vertex 4342: Normal +Vertex 4343: Normal +Vertex 4344: Normal +Vertex 4345: Normal +Vertex 4346: Normal +Vertex 4347: Normal +Vertex 4348: Normal +Vertex 4349: Normal +Vertex 4350: Normal +Vertex 4351: Normal +Vertex 4352: Normal +Vertex 4353: Normal +Vertex 4354: Normal +Vertex 4355: Normal +Vertex 4356: Normal +Vertex 4357: Normal +Vertex 4358: Normal +Vertex 4359: Normal +Vertex 4360: Normal +Vertex 4361: Normal +Vertex 4362: Normal +Vertex 4363: Normal +Vertex 4364: Normal +Vertex 4365: Normal +Vertex 4366: Normal +Vertex 4367: Normal +Vertex 4368: Normal +Vertex 4369: Normal +Vertex 4370: Normal +Vertex 4371: Normal +Vertex 4372: Normal +Vertex 4373: Normal +Vertex 4374: Normal +Vertex 4375: Normal +Vertex 4376: Normal +Vertex 4377: Normal +Vertex 4378: Normal +Vertex 4379: Normal +Vertex 4380: Normal +Vertex 4381: Normal +Vertex 4382: Normal +Vertex 4383: Normal +Vertex 4384: Normal +Vertex 4385: Normal +Vertex 4386: Normal +Vertex 4387: Normal +Vertex 4388: Normal +Vertex 4389: Normal +Vertex 4390: Normal +Vertex 4391: Normal +Vertex 4392: Normal +Vertex 4393: Normal +Vertex 4394: Normal +Vertex 4395: Normal +Vertex 4396: Normal +Vertex 4397: Normal +Vertex 4398: Normal +Vertex 4399: Normal +Vertex 4400: Normal +Vertex 4401: Normal +Vertex 4402: Normal +Vertex 4403: Normal +Vertex 4404: Normal +Vertex 4405: Normal +Vertex 4406: Normal +Vertex 4407: Normal +Vertex 4408: Normal +Vertex 4409: Normal +Vertex 4410: Normal +Vertex 4411: Normal +Vertex 4412: Normal +Vertex 4413: Normal +Vertex 4414: Normal +Vertex 4415: Normal +Vertex 4416: Normal +Vertex 4417: Normal +Vertex 4418: Normal +Vertex 4419: Normal +Vertex 4420: Normal +Vertex 4421: Normal +Vertex 4422: Normal +Vertex 4423: Normal +Vertex 4424: Normal +Vertex 4425: Normal +Vertex 4426: Normal +Vertex 4427: Normal +Vertex 4428: Normal +Vertex 4429: Normal +Vertex 4430: Normal +Vertex 4431: Normal +Vertex 4432: Normal +Vertex 4433: Normal +Vertex 4434: Normal +Vertex 4435: Normal +Vertex 4436: Normal +Vertex 4437: Normal +Vertex 4438: Normal +Vertex 4439: Normal +Vertex 4440: Normal +Vertex 4441: Normal +Vertex 4442: Normal +Vertex 4443: Normal +Vertex 4444: Normal +Vertex 4445: Normal +Vertex 4446: Normal +Vertex 4447: Normal +Vertex 4448: Normal +Vertex 4449: Normal +Vertex 4450: Normal +Vertex 4451: Normal +Vertex 4452: Normal +Vertex 4453: Normal +Vertex 4454: Normal +Vertex 4455: Normal +Vertex 4456: Normal +Vertex 4457: Normal +Vertex 4458: Normal +Vertex 4459: Normal +Vertex 4460: Normal +Vertex 4461: Normal +Vertex 4462: Normal +Vertex 4463: Normal +Vertex 4464: Normal +Vertex 4465: Normal +Vertex 4466: Normal +Vertex 4467: Normal +Vertex 4468: Normal +Vertex 4469: Normal +Vertex 4470: Normal +Vertex 4471: Normal +Vertex 4472: Normal +Vertex 4473: Normal +Vertex 4474: Normal +Vertex 4475: Normal +Vertex 4476: Normal +Vertex 4477: Normal +Vertex 4478: Normal +Vertex 4479: Normal +Vertex 4480: Normal +Vertex 4481: Normal +Vertex 4482: Normal +Vertex 4483: Normal +Vertex 4484: Normal +Vertex 4485: Normal +Vertex 4486: Normal +Vertex 4487: Normal +Vertex 4488: Normal +Vertex 4489: Normal +Vertex 4490: Normal +Vertex 4491: Normal +Vertex 4492: Normal +Vertex 4493: Normal +Vertex 4494: Normal +Vertex 4495: Normal +Vertex 4496: Normal +Vertex 4497: Normal +Vertex 4498: Normal +Vertex 4499: Normal +Vertex 4500: Normal +Vertex 4501: Normal +Vertex 4502: Normal +Vertex 4503: Normal +Vertex 4504: Normal +Vertex 4505: Normal +Vertex 4506: Normal +Vertex 4507: Normal +Vertex 4508: Normal +Vertex 4509: Normal +Vertex 4510: Normal +Vertex 4511: Normal +Vertex 4512: Normal +Vertex 4513: Normal +Vertex 4514: Normal +Vertex 4515: Normal +Vertex 4516: Normal +Vertex 4517: Normal +Vertex 4518: Normal +Vertex 4519: Normal +Vertex 4520: Normal +Vertex 4521: Normal +Vertex 4522: Normal +Vertex 4523: Normal +Vertex 4524: Normal +Vertex 4525: Normal +Vertex 4526: Normal +Vertex 4527: Normal +Vertex 4528: Normal +Vertex 4529: Normal +Vertex 4530: Normal +Vertex 4531: Normal +Vertex 4532: Normal +Vertex 4533: Normal +Vertex 4534: Normal +Vertex 4535: Normal +Vertex 4536: Normal +Vertex 4537: Normal +Vertex 4538: Normal +Vertex 4539: Normal +Vertex 4540: Normal +Vertex 4541: Normal +Vertex 4542: Normal +Vertex 4543: Normal +Vertex 4544: Normal +Vertex 4545: Normal +Vertex 4546: Normal +Vertex 4547: Normal +Vertex 4548: Normal +Vertex 4549: Normal +Vertex 4550: Normal +Vertex 4551: Normal +Vertex 4552: Normal +Vertex 4553: Normal +Vertex 4554: Normal +Vertex 4555: Normal +Vertex 4556: Normal +Vertex 4557: Normal +Vertex 4558: Normal +Vertex 4559: Normal +Vertex 4560: Normal +Vertex 4561: Normal +Vertex 4562: Normal +Vertex 4563: Normal +Vertex 4564: Normal +Vertex 4565: Normal +Vertex 4566: Normal +Vertex 4567: Normal +Vertex 4568: Normal +Vertex 4569: Normal +Vertex 4570: Normal +Vertex 4571: Normal +Vertex 4572: Normal +Vertex 4573: Normal +Vertex 4574: Normal +Vertex 4575: Normal +Vertex 4576: Normal +Vertex 4577: Normal +Vertex 4578: Normal +Vertex 4579: Normal +Vertex 4580: Normal +Vertex 4581: Normal +Vertex 4582: Normal +Vertex 4583: Normal +Vertex 4584: Normal +Vertex 4585: Normal +Vertex 4586: Normal +Vertex 4587: Normal +Vertex 4588: Normal +Vertex 4589: Normal +Vertex 4590: Normal +Vertex 4591: Normal +Vertex 4592: Normal +Vertex 4593: Normal +Vertex 4594: Normal +Vertex 4595: Normal +Vertex 4596: Normal +Vertex 4597: Normal +Vertex 4598: Normal +Vertex 4599: Normal +Vertex 4600: Normal +Vertex 4601: Normal +Vertex 4602: Normal +Vertex 4603: Normal +Vertex 4604: Normal +Vertex 4605: Normal +Vertex 4606: Normal +Vertex 4607: Normal +Vertex 4608: Normal +Vertex 4609: Normal +Vertex 4610: Normal +Vertex 4611: Normal +Vertex 4612: Normal +Vertex 4613: Normal +Vertex 4614: Normal +Vertex 4615: Normal +Vertex 4616: Normal +Vertex 4617: Normal +Vertex 4618: Normal +Vertex 4619: Normal +Vertex 4620: Normal +Vertex 4621: Normal +Vertex 4622: Normal +Vertex 4623: Normal +Vertex 4624: Normal +Vertex 4625: Normal +Vertex 4626: Normal +Vertex 4627: Normal +Vertex 4628: Normal +Vertex 4629: Normal +Vertex 4630: Normal +Vertex 4631: Normal +Vertex 4632: Normal +Vertex 4633: Normal +Vertex 4634: Normal +Vertex 4635: Normal +Vertex 4636: Normal +Vertex 4637: Normal +Vertex 4638: Normal +Vertex 4639: Normal +Vertex 4640: Normal +Vertex 4641: Normal +Vertex 4642: Normal +Vertex 4643: Normal +Vertex 4644: Normal +Vertex 4645: Normal +Vertex 4646: Normal +Vertex 4647: Normal +Vertex 4648: Normal +Vertex 4649: Normal +Vertex 4650: Normal +Vertex 4651: Normal +Vertex 4652: Normal +Vertex 4653: Normal +Vertex 4654: Normal +Vertex 4655: Normal +Vertex 4656: Normal +Vertex 4657: Normal +Vertex 4658: Normal +Vertex 4659: Normal +Vertex 4660: Normal +Vertex 4661: Normal +Vertex 4662: Normal +Vertex 4663: Normal +Vertex 4664: Normal +Vertex 4665: Normal +Vertex 4666: Normal +Vertex 4667: Normal +Vertex 4668: Normal +Vertex 4669: Normal +Vertex 4670: Normal +Vertex 4671: Normal +Vertex 4672: Normal +Vertex 4673: Normal +Vertex 4674: Normal +Vertex 4675: Normal +Vertex 4676: Normal +Vertex 4677: Normal +Vertex 4678: Normal +Vertex 4679: Normal +Vertex 4680: Normal +Vertex 4681: Normal +Vertex 4682: Normal +Vertex 4683: Normal +Vertex 4684: Normal +Vertex 4685: Normal +Vertex 4686: Normal +Vertex 4687: Normal +Vertex 4688: Normal +Vertex 4689: Normal +Vertex 4690: Normal +Vertex 4691: Normal +Vertex 4692: Normal +Vertex 4693: Normal +Vertex 4694: Normal +Vertex 4695: Normal +Vertex 4696: Normal +Vertex 4697: Normal +Vertex 4698: Normal +Vertex 4699: Normal +Vertex 4700: Normal +Vertex 4701: Normal +Vertex 4702: Normal +Vertex 4703: Normal +Vertex 4704: Normal +Vertex 4705: Normal +Vertex 4706: Normal +Vertex 4707: Normal +Vertex 4708: Normal +Vertex 4709: Normal +Vertex 4710: Normal +Vertex 4711: Normal +Vertex 4712: Normal +Vertex 4713: Normal +Vertex 4714: Normal +Vertex 4715: Normal +Vertex 4716: Normal +Vertex 4717: Normal +Vertex 4718: Normal +Vertex 4719: Normal +Vertex 4720: Normal +Vertex 4721: Normal +Vertex 4722: Normal +Vertex 4723: Normal +Vertex 4724: Normal +Vertex 4725: Normal +Vertex 4726: Normal +Vertex 4727: Normal +Vertex 4728: Normal +Vertex 4729: Normal +Vertex 4730: Normal +Vertex 4731: Normal +Vertex 4732: Normal +Vertex 4733: Normal +Vertex 4734: Normal +Vertex 4735: Normal +Vertex 4736: Normal +Vertex 4737: Normal +Vertex 4738: Normal +Vertex 4739: Normal +Vertex 4740: Normal +Vertex 4741: Normal +Vertex 4742: Normal +Vertex 4743: Normal +Vertex 4744: Normal +Vertex 4745: Normal +Vertex 4746: Normal +Vertex 4747: Normal +Vertex 4748: Normal +Vertex 4749: Normal +Vertex 4750: Normal +Vertex 4751: Normal +Vertex 4752: Normal +Vertex 4753: Normal +Vertex 4754: Normal +Vertex 4755: Normal +Vertex 4756: Normal +Vertex 4757: Normal +Vertex 4758: Normal +Vertex 4759: Normal +Vertex 4760: Normal +Vertex 4761: Normal +Vertex 4762: Normal +Vertex 4763: Normal +Vertex 4764: Normal +Vertex 4765: Normal +Vertex 4766: Normal +Vertex 4767: Normal +Vertex 4768: Normal +Vertex 4769: Normal +Vertex 4770: Normal +Vertex 4771: Normal +Vertex 4772: Normal +Vertex 4773: Normal +Vertex 4774: Normal +Vertex 4775: Normal +Vertex 4776: Normal +Vertex 4777: Normal +Vertex 4778: Normal +Vertex 4779: Normal +Vertex 4780: Normal +Vertex 4781: Normal +Vertex 4782: Normal +Vertex 4783: Normal +Vertex 4784: Normal +Vertex 4785: Normal +Vertex 4786: Normal +Vertex 4787: Normal +Vertex 4788: Normal +Vertex 4789: Normal +Vertex 4790: Normal +Vertex 4791: Normal +Vertex 4792: Normal +Vertex 4793: Normal +Vertex 4794: Normal +Vertex 4795: Normal +Vertex 4796: Normal +Vertex 4797: Normal +Vertex 4798: Normal +Vertex 4799: Normal +Vertex 4800: Normal +Vertex 4801: Normal +Vertex 4802: Normal +Vertex 4803: Normal +Vertex 4804: Normal +Vertex 4805: Normal +Vertex 4806: Normal +Vertex 4807: Normal +Vertex 4808: Normal +Vertex 4809: Normal +Vertex 4810: Normal +Vertex 4811: Normal +Vertex 4812: Normal +Vertex 4813: Normal +Vertex 4814: Normal +Vertex 4815: Normal +Vertex 4816: Normal +Vertex 4817: Normal +Vertex 4818: Normal +Vertex 4819: Normal +Vertex 4820: Normal +Vertex 4821: Normal +Vertex 4822: Normal +Vertex 4823: Normal +Vertex 4824: Normal +Vertex 4825: Normal +Vertex 4826: Normal +Vertex 4827: Normal +Vertex 4828: Normal +Vertex 4829: Normal +Vertex 4830: Normal +Vertex 4831: Normal +Vertex 4832: Normal +Vertex 4833: Normal +Vertex 4834: Normal +Vertex 4835: Normal +Vertex 4836: Normal +Vertex 4837: Normal +Vertex 4838: Normal +Vertex 4839: Normal +Vertex 4840: Normal +Vertex 4841: Normal +Vertex 4842: Normal +Vertex 4843: Normal +Vertex 4844: Normal +Vertex 4845: Normal +Vertex 4846: Normal +Vertex 4847: Normal +Vertex 4848: Normal +Vertex 4849: Normal +Vertex 4850: Normal +Vertex 4851: Normal +Vertex 4852: Normal +Vertex 4853: Normal +Vertex 4854: Normal +Vertex 4855: Normal +Vertex 4856: Normal +Vertex 4857: Normal +Vertex 4858: Normal +Vertex 4859: Normal +Vertex 4860: Normal +Vertex 4861: Normal +Vertex 4862: Normal +Vertex 4863: Normal +Vertex 4864: Normal +Vertex 4865: Normal +Vertex 4866: Normal +Vertex 4867: Normal +Vertex 4868: Normal +Vertex 4869: Normal +Vertex 4870: Normal +Vertex 4871: Normal +Vertex 4872: Normal +Vertex 4873: Normal +Vertex 4874: Normal +Vertex 4875: Normal +Vertex 4876: Normal +Vertex 4877: Normal +Vertex 4878: Normal +Vertex 4879: Normal +Vertex 4880: Normal +Vertex 4881: Normal +Vertex 4882: Normal +Vertex 4883: Normal +Vertex 4884: Normal +Vertex 4885: Normal +Vertex 4886: Normal +Vertex 4887: Normal +Vertex 4888: Normal +Vertex 4889: Normal +Vertex 4890: Normal +Vertex 4891: Normal +Vertex 4892: Normal +Vertex 4893: Normal +Vertex 4894: Normal +Vertex 4895: Normal +Vertex 4896: Normal +Vertex 4897: Normal +Vertex 4898: Normal +Vertex 4899: Normal +Vertex 4900: Normal +Vertex 4901: Normal +Vertex 4902: Normal +Vertex 4903: Normal +Vertex 4904: Normal +Vertex 4905: Normal +Vertex 4906: Normal +Vertex 4907: Normal +Vertex 4908: Normal +Vertex 4909: Normal +Vertex 4910: Normal +Vertex 4911: Normal +Vertex 4912: Normal +Vertex 4913: Normal +Vertex 4914: Normal +Vertex 4915: Normal +Vertex 4916: Normal +Vertex 4917: Normal +Vertex 4918: Normal +Vertex 4919: Normal +Vertex 4920: Normal +Vertex 4921: Normal +Vertex 4922: Normal +Vertex 4923: Normal +Vertex 4924: Normal +Vertex 4925: Normal +Vertex 4926: Normal +Vertex 4927: Normal +Vertex 4928: Normal +Vertex 4929: Normal +Vertex 4930: Normal +Vertex 4931: Normal +Vertex 4932: Normal +Vertex 4933: Normal +Vertex 4934: Normal +Vertex 4935: Normal +Vertex 4936: Normal +Vertex 4937: Normal +Vertex 4938: Normal +Vertex 4939: Normal +Vertex 4940: Normal +Vertex 4941: Normal +Vertex 4942: Normal +Vertex 4943: Normal +Vertex 4944: Normal +Vertex 4945: Normal +Vertex 4946: Normal +Vertex 4947: Normal +Vertex 4948: Normal +Vertex 4949: Normal +Vertex 4950: Normal +Vertex 4951: Normal +Vertex 4952: Normal +Vertex 4953: Normal +Vertex 4954: Normal +Vertex 4955: Normal +Vertex 4956: Normal +Vertex 4957: Normal +Vertex 4958: Normal +Vertex 4959: Normal +Vertex 4960: Normal +Vertex 4961: Normal +Vertex 4962: Normal +Vertex 4963: Normal +Vertex 4964: Normal +Vertex 4965: Normal +Vertex 4966: Normal +Vertex 4967: Normal +Vertex 4968: Normal +Vertex 4969: Normal +Vertex 4970: Normal +Vertex 4971: Normal +Vertex 4972: Normal +Vertex 4973: Normal +Vertex 4974: Normal +Vertex 4975: Normal +Vertex 4976: Normal +Vertex 4977: Normal +Vertex 4978: Normal +Vertex 4979: Normal +Vertex 4980: Normal +Vertex 4981: Normal +Vertex 4982: Normal +Vertex 4983: Normal +Vertex 4984: Normal +Vertex 4985: Normal +Vertex 4986: Normal +Vertex 4987: Normal +Vertex 4988: Normal +Vertex 4989: Normal +Vertex 4990: Normal +Vertex 4991: Normal +Vertex 4992: Normal +Vertex 4993: Normal +Vertex 4994: Normal +Vertex 4995: Normal +Vertex 4996: Normal +Vertex 4997: Normal +Vertex 4998: Normal +Vertex 4999: Normal +Vertex 5000: Normal +Vertex 5001: Normal +Vertex 5002: Normal +Vertex 5003: Normal +Vertex 5004: Normal +Vertex 5005: Normal +Vertex 5006: Normal +Vertex 5007: Normal +Vertex 5008: Normal +Vertex 5009: Normal +Vertex 5010: Normal +Vertex 5011: Normal +Vertex 5012: Normal +Vertex 5013: Normal +Vertex 5014: Normal +Vertex 5015: Normal +Vertex 5016: Normal +Vertex 5017: Normal +Vertex 5018: Normal +Vertex 5019: Normal +Vertex 5020: Normal +Vertex 5021: Normal +Vertex 5022: Normal +Vertex 5023: Normal +Vertex 5024: Normal +Vertex 5025: Normal +Vertex 5026: Normal +Vertex 5027: Normal +Vertex 5028: Normal +Vertex 5029: Normal +Vertex 5030: Normal +Vertex 5031: Normal +Vertex 5032: Normal +Vertex 5033: Normal +Vertex 5034: Normal +Vertex 5035: Normal +Vertex 5036: Normal +Vertex 5037: Normal +Vertex 5038: Normal +Vertex 5039: Normal +Vertex 5040: Normal +Vertex 5041: Normal +Vertex 5042: Normal +Vertex 5043: Normal +Vertex 5044: Normal +Vertex 5045: Normal +Vertex 5046: Normal +Vertex 5047: Normal +Vertex 5048: Normal +Vertex 5049: Normal +Vertex 5050: Normal +Vertex 5051: Normal +Vertex 5052: Normal +Vertex 5053: Normal +Vertex 5054: Normal +Vertex 5055: Normal +Vertex 5056: Normal +Vertex 5057: Normal +Vertex 5058: Normal +Vertex 5059: Normal +Vertex 5060: Normal +Vertex 5061: Normal +Vertex 5062: Normal +Vertex 5063: Normal +Vertex 5064: Normal +Vertex 5065: Normal +Vertex 5066: Normal +Vertex 5067: Normal +Vertex 5068: Normal +Vertex 5069: Normal +Vertex 5070: Normal +Vertex 5071: Normal +Vertex 5072: Normal +Vertex 5073: Normal +Vertex 5074: Normal +Vertex 5075: Normal +Vertex 5076: Normal +Vertex 5077: Normal +Vertex 5078: Normal +Vertex 5079: Normal +Vertex 5080: Normal +Vertex 5081: Normal +Vertex 5082: Normal +Vertex 5083: Normal +Vertex 5084: Normal +Vertex 5085: Normal +Vertex 5086: Normal +Vertex 5087: Normal +Vertex 5088: Normal +Vertex 5089: Normal +Vertex 5090: Normal +Vertex 5091: Normal +Vertex 5092: Normal +Vertex 5093: Normal +Vertex 5094: Normal +Vertex 5095: Normal +Vertex 5096: Normal +Vertex 5097: Normal +Vertex 5098: Normal +Vertex 5099: Normal +Vertex 5100: Normal +Vertex 5101: Normal +Vertex 5102: Normal +Vertex 5103: Normal +Vertex 5104: Normal +Vertex 5105: Normal +Vertex 5106: Normal +Vertex 5107: Normal +Vertex 5108: Normal +Vertex 5109: Normal +Vertex 5110: Normal +Vertex 5111: Normal +Vertex 5112: Normal +Vertex 5113: Normal +Vertex 5114: Normal +Vertex 5115: Normal +Vertex 5116: Normal +Vertex 5117: Normal +Vertex 5118: Normal +Vertex 5119: Normal +Vertex 5120: Normal +Vertex 5121: Normal +Vertex 5122: Normal +Vertex 5123: Normal +Vertex 5124: Normal +Vertex 5125: Normal +Vertex 5126: Normal +Vertex 5127: Normal +Vertex 5128: Normal +Vertex 5129: Normal +Vertex 5130: Normal +Vertex 5131: Normal +Vertex 5132: Normal +Vertex 5133: Normal +Vertex 5134: Normal +Vertex 5135: Normal +Vertex 5136: Normal +Vertex 5137: Normal +Vertex 5138: Normal +Vertex 5139: Normal +Vertex 5140: Normal +Vertex 5141: Normal +Vertex 5142: Normal +Vertex 5143: Normal +Vertex 5144: Normal +Vertex 5145: Normal +Vertex 5146: Normal +Vertex 5147: Normal +Vertex 5148: Normal +Vertex 5149: Normal +Vertex 5150: Normal +Vertex 5151: Normal +Vertex 5152: Normal +Vertex 5153: Normal +Vertex 5154: Normal +Vertex 5155: Normal +Vertex 5156: Normal +Vertex 5157: Normal +Vertex 5158: Normal +Vertex 5159: Normal +Vertex 5160: Normal +Vertex 5161: Normal +Vertex 5162: Normal +Vertex 5163: Normal +Vertex 5164: Normal +Vertex 5165: Normal +Vertex 5166: Normal +Vertex 5167: Normal +Vertex 5168: Normal +Vertex 5169: Normal +Vertex 5170: Normal +Vertex 5171: Normal +Vertex 5172: Normal +Vertex 5173: Normal +Vertex 5174: Normal +Vertex 5175: Normal +Vertex 5176: Normal +Vertex 5177: Normal +Vertex 5178: Normal +Vertex 5179: Normal +Vertex 5180: Normal +Vertex 5181: Normal +Vertex 5182: Normal +Vertex 5183: Normal +Vertex 5184: Normal +Vertex 5185: Normal +Vertex 5186: Normal +Vertex 5187: Normal +Vertex 5188: Normal +Vertex 5189: Normal +Vertex 5190: Normal +Vertex 5191: Normal +Vertex 5192: Normal +Vertex 5193: Normal +Vertex 5194: Normal +Vertex 5195: Normal +Vertex 5196: Normal +Vertex 5197: Normal +Vertex 5198: Normal +Vertex 5199: Normal +Vertex 5200: Normal +Vertex 5201: Normal +Vertex 5202: Normal +Vertex 5203: Normal +Vertex 5204: Normal +Vertex 5205: Normal +Vertex 5206: Normal +Vertex 5207: Normal +Vertex 5208: Normal +Vertex 5209: Normal +Vertex 5210: Normal +Vertex 5211: Normal +Vertex 5212: Normal +Vertex 5213: Normal +Vertex 5214: Normal +Vertex 5215: Normal +Vertex 5216: Normal +Vertex 5217: Normal +Vertex 5218: Normal +Vertex 5219: Normal +Vertex 5220: Normal +Vertex 5221: Normal +Vertex 5222: Normal +Vertex 5223: Normal +Vertex 5224: Normal +Vertex 5225: Normal +Vertex 5226: Normal +Vertex 5227: Normal +Vertex 5228: Normal +Vertex 5229: Normal +Vertex 5230: Normal +Vertex 5231: Normal +Vertex 5232: Normal +Vertex 5233: Normal +Vertex 5234: Normal +Vertex 5235: Normal +Vertex 5236: Normal +Vertex 5237: Normal +Vertex 5238: Normal +Vertex 5239: Normal +Vertex 5240: Normal +Vertex 5241: Normal +Vertex 5242: Normal +Vertex 5243: Normal +Vertex 5244: Normal +Vertex 5245: Normal +Vertex 5246: Normal +Vertex 5247: Normal +Vertex 5248: Normal +Vertex 5249: Normal +Vertex 5250: Normal +Vertex 5251: Normal +Vertex 5252: Normal +Vertex 5253: Normal +Vertex 5254: Normal +Vertex 5255: Normal +Vertex 5256: Normal +Vertex 5257: Normal +Vertex 5258: Normal +Vertex 5259: Normal +Vertex 5260: Normal +Vertex 5261: Normal +Vertex 5262: Normal +Vertex 5263: Normal +Vertex 5264: Normal +Vertex 5265: Normal +Vertex 5266: Normal +Vertex 5267: Normal +Vertex 5268: Normal +Vertex 5269: Normal +Vertex 5270: Normal +Vertex 5271: Normal +Vertex 5272: Normal +Vertex 5273: Normal +Vertex 5274: Normal +Vertex 5275: Normal +Vertex 5276: Normal +Vertex 5277: Normal +Vertex 5278: Normal +Vertex 5279: Normal +Vertex 5280: Normal +Vertex 5281: Normal +Vertex 5282: Normal +Vertex 5283: Normal +Vertex 5284: Normal +Vertex 5285: Normal +Vertex 5286: Normal +Vertex 5287: Normal +Vertex 5288: Normal +Vertex 5289: Normal +Vertex 5290: Normal +Vertex 5291: Normal +Vertex 5292: Normal +Vertex 5293: Normal +Vertex 5294: Normal +Vertex 5295: Normal +Vertex 5296: Normal +Vertex 5297: Normal +Vertex 5298: Normal +Vertex 5299: Normal +Vertex 5300: Normal +Vertex 5301: Normal +Vertex 5302: Normal +Vertex 5303: Normal +Vertex 5304: Normal +Vertex 5305: Normal +Vertex 5306: Normal +Vertex 5307: Normal +Vertex 5308: Normal +Vertex 5309: Normal +Vertex 5310: Normal +Vertex 5311: Normal +Vertex 5312: Normal +Vertex 5313: Normal +Vertex 5314: Normal +Vertex 5315: Normal +Vertex 5316: Normal +Vertex 5317: Normal +Vertex 5318: Normal +Vertex 5319: Normal +Vertex 5320: Normal +Vertex 5321: Normal +Vertex 5322: Normal +Vertex 5323: Normal +Vertex 5324: Normal +Vertex 5325: Normal +Vertex 5326: Normal +Vertex 5327: Normal +Vertex 5328: Normal +Vertex 5329: Normal +Vertex 5330: Normal +Vertex 5331: Normal +Vertex 5332: Normal +Vertex 5333: Normal +Vertex 5334: Normal +Vertex 5335: Normal +Vertex 5336: Normal +Vertex 5337: Normal +Vertex 5338: Normal +Vertex 5339: Normal +Vertex 5340: Normal +Vertex 5341: Normal +Vertex 5342: Normal +Vertex 5343: Normal +Vertex 5344: Normal +Vertex 5345: Normal +Vertex 5346: Normal +Vertex 5347: Normal +Vertex 5348: Normal +Vertex 5349: Normal +Vertex 5350: Normal +Vertex 5351: Normal +Vertex 5352: Normal +Vertex 5353: Normal +Vertex 5354: Normal +Vertex 5355: Normal +Vertex 5356: Normal +Vertex 5357: Normal +Vertex 5358: Normal +Vertex 5359: Normal +Vertex 5360: Normal +Vertex 5361: Normal +Vertex 5362: Normal +Vertex 5363: Normal +Vertex 5364: Normal +Vertex 5365: Normal +Vertex 5366: Normal +Vertex 5367: Normal +Vertex 5368: Normal +Vertex 5369: Normal +Vertex 5370: Normal +Vertex 5371: Normal +Vertex 5372: Normal +Vertex 5373: Normal +Vertex 5374: Normal +Vertex 5375: Normal +Vertex 5376: Normal +Vertex 5377: Normal +Vertex 5378: Normal +Vertex 5379: Normal +Vertex 5380: Normal +Vertex 5381: Normal +Vertex 5382: Normal +Vertex 5383: Normal +Vertex 5384: Normal +Vertex 5385: Normal +Vertex 5386: Normal +Vertex 5387: Normal +Vertex 5388: Normal +Vertex 5389: Normal +Vertex 5390: Normal +Vertex 5391: Normal +Vertex 5392: Normal +Vertex 5393: Normal +Vertex 5394: Normal +Vertex 5395: Normal +Vertex 5396: Normal +Vertex 5397: Normal +Vertex 5398: Normal +Vertex 5399: Normal +===Triangles: 9390 +Triangle: [1235, 33, 1236] +Triangle: [1237, 706, 705] +Triangle: [1238, 705, 704] +Triangle: [702, 27, 701] +Triangle: [1240, 35, 1235] +Triangle: [703, 26, 702] +Triangle: [1240, 704, 36] +Triangle: [1244, 707, 706] +Triangle: [1236, 32, 1242] +Triangle: [701, 38, 698] +Triangle: [1243, 32, 31] +Triangle: [1241, 31, 30] +Triangle: [1222, 48, 1228] +Triangle: [1229, 41, 50] +Triangle: [1223, 47, 41] +Triangle: [1230, 40, 39] +Triangle: [1231, 48, 49] +Triangle: [1230, 42, 1232] +Triangle: [1224, 49, 47] +Triangle: [1232, 43, 1233] +Triangle: [1234, 50, 51] +Triangle: [1279, 46, 1222] +Triangle: [1278, 51, 40] +Triangle: [1281, 45, 1279] +Triangle: [1233, 44, 1281] +Triangle: [18, 61, 64] +Triangle: [18, 63, 19] +Triangle: [25, 57, 14] +Triangle: [19, 52, 20] +Triangle: [25, 55, 62] +Triangle: [16, 61, 17] +Triangle: [23, 56, 21] +Triangle: [16, 58, 60] +Triangle: [22, 59, 23] +Triangle: [14, 58, 13] +Triangle: [15, 56, 54] +Triangle: [24, 54, 55] +Triangle: [22, 52, 53] +Triangle: [10, 1210, 1211] +Triangle: [1220, 1, 1219] +Triangle: [7, 1212, 1213] +Triangle: [1, 1218, 1219] +Triangle: [9, 1211, 1212] +Triangle: [1218, 3, 1217] +Triangle: [1209, 11, 1221] +Triangle: [5, 1214, 1215] +Triangle: [1221, 12, 1220] +Triangle: [4, 1215, 1216] +Triangle: [3, 1216, 1217] +Triangle: [6, 1213, 1214] +Triangle: [1253, 70, 1287] +Triangle: [1259, 70, 69] +Triangle: [1254, 1275, 1274] +Triangle: [1255, 1277, 65] +Triangle: [1249, 77, 1254] +Triangle: [1252, 76, 1253] +Triangle: [1257, 74, 67] +Triangle: [1250, 75, 1252] +Triangle: [1251, 71, 74] +Triangle: [1258, 73, 1250] +Triangle: [1256, 67, 66] +Triangle: [1249, 66, 72] +Triangle: [1255, 71, 1248] +Triangle: [82, 712, 713] +Triangle: [712, 80, 714] +Triangle: [80, 711, 714] +Triangle: [715, 35, 711] +Triangle: [82, 86, 81] +Triangle: [88, 94, 86] +Triangle: [130, 162, 161] +Triangle: [83, 92, 88] +Triangle: [106, 104, 100] +Triangle: [160, 92, 91] +Triangle: [86, 95, 81] +Triangle: [80, 95, 96] +Triangle: [78, 96, 97] +Triangle: [79, 97, 98] +Triangle: [99, 713, 716] +Triangle: [82, 100, 85] +Triangle: [95, 170, 96] +Triangle: [94, 171, 95] +Triangle: [85, 104, 87] +Triangle: [107, 716, 717] +Triangle: [99, 106, 100] +Triangle: [173, 94, 92] +Triangle: [83, 109, 84] +Triangle: [109, 87, 110] +Triangle: [103, 109, 111] +Triangle: [111, 110, 108] +Triangle: [112, 87, 104] +Triangle: [108, 112, 113] +Triangle: [115, 104, 105] +Triangle: [112, 114, 113] +Triangle: [98, 116, 117] +Triangle: [139, 119, 140] +Triangle: [118, 121, 119] +Triangle: [174, 123, 175] +Triangle: [174, 124, 176] +Triangle: [89, 177, 179] +Triangle: [177, 128, 178] +Triangle: [126, 137, 128] +Triangle: [124, 166, 89] +Triangle: [124, 163, 165] +Triangle: [164, 120, 118] +Triangle: [116, 140, 117] +Triangle: [139, 164, 118] +Triangle: [116, 167, 139] +Triangle: [169, 116, 97] +Triangle: [169, 96, 170] +Triangle: [86, 87, 88] +Triangle: [131, 161, 159] +Triangle: [132, 159, 158] +Triangle: [160, 132, 158] +Triangle: [89, 162, 126] +Triangle: [176, 89, 179] +Triangle: [101, 155, 102] +Triangle: [152, 144, 145] +Triangle: [134, 151, 133] +Triangle: [135, 151, 154] +Triangle: [157, 153, 156] +Triangle: [152, 146, 155] +Triangle: [150, 152, 153] +Triangle: [151, 153, 154] +Triangle: [141, 149, 150] +Triangle: [149, 142, 144] +Triangle: [136, 157, 93] +Triangle: [93, 156, 101] +Triangle: [138, 150, 151] +Triangle: [148, 154, 157] +Triangle: [153, 155, 156] +Triangle: [155, 147, 102] +Triangle: [102, 159, 101] +Triangle: [147, 158, 102] +Triangle: [136, 161, 162] +Triangle: [93, 159, 161] +Triangle: [134, 163, 164] +Triangle: [133, 165, 163] +Triangle: [136, 166, 148] +Triangle: [134, 167, 138] +Triangle: [138, 168, 141] +Triangle: [142, 169, 170] +Triangle: [143, 168, 169] +Triangle: [142, 171, 144] +Triangle: [145, 171, 172] +Triangle: [146, 172, 173] +Triangle: [147, 173, 160] +Triangle: [148, 165, 135] +Triangle: [125, 179, 90] +Triangle: [127, 178, 129] +Triangle: [90, 177, 127] +Triangle: [122, 176, 125] +Triangle: [120, 175, 121] +Triangle: [107, 180, 106] +Triangle: [180, 183, 182] +Triangle: [183, 186, 182] +Triangle: [181, 717, 718] +Triangle: [183, 718, 719] +Triangle: [720, 183, 719] +Triangle: [192, 720, 721] +Triangle: [722, 192, 721] +Triangle: [723, 191, 722] +Triangle: [715, 190, 723] +Triangle: [184, 193, 186] +Triangle: [198, 193, 199] +Triangle: [192, 187, 184] +Triangle: [191, 188, 192] +Triangle: [195, 190, 189] +Triangle: [79, 189, 190] +Triangle: [204, 196, 205] +Triangle: [201, 186, 198] +Triangle: [202, 201, 198] +Triangle: [182, 200, 180] +Triangle: [202, 199, 203] +Triangle: [180, 105, 106] +Triangle: [115, 200, 208] +Triangle: [210, 207, 208] +Triangle: [185, 203, 194] +Triangle: [197, 202, 185] +Triangle: [201, 205, 200] +Triangle: [114, 208, 207] +Triangle: [696, 196, 206] +Triangle: [696, 200, 205] +Triangle: [189, 217, 195] +Triangle: [218, 211, 212] +Triangle: [219, 212, 213] +Triangle: [220, 213, 214] +Triangle: [221, 214, 215] +Triangle: [222, 215, 216] +Triangle: [117, 189, 98] +Triangle: [140, 211, 117] +Triangle: [119, 212, 140] +Triangle: [214, 119, 121] +Triangle: [215, 121, 175] +Triangle: [216, 175, 123] +Triangle: [223, 188, 195] +Triangle: [187, 227, 193] +Triangle: [193, 226, 199] +Triangle: [203, 226, 224] +Triangle: [228, 195, 217] +Triangle: [223, 229, 227] +Triangle: [226, 229, 230] +Triangle: [250, 249, 224] +Triangle: [229, 233, 234] +Triangle: [234, 230, 229] +Triangle: [233, 217, 218] +Triangle: [233, 236, 234] +Triangle: [235, 238, 236] +Triangle: [238, 239, 240] +Triangle: [240, 241, 242] +Triangle: [231, 244, 243] +Triangle: [243, 246, 245] +Triangle: [242, 262, 248] +Triangle: [234, 244, 232] +Triangle: [238, 244, 236] +Triangle: [247, 264, 240] +Triangle: [235, 218, 219] +Triangle: [237, 219, 220] +Triangle: [221, 237, 220] +Triangle: [222, 239, 221] +Triangle: [194, 224, 249] +Triangle: [226, 250, 224] +Triangle: [225, 250, 230] +Triangle: [225, 232, 231] +Triangle: [129, 256, 127] +Triangle: [122, 267, 123] +Triangle: [90, 255, 125] +Triangle: [216, 268, 222] +Triangle: [241, 261, 242] +Triangle: [125, 265, 122] +Triangle: [90, 256, 252] +Triangle: [264, 238, 240] +Triangle: [264, 245, 246] +Triangle: [123, 266, 216] +Triangle: [242, 247, 240] +Triangle: [265, 255, 253] +Triangle: [259, 266, 258] +Triangle: [265, 254, 267] +Triangle: [267, 258, 266] +Triangle: [241, 268, 260] +Triangle: [260, 268, 259] +Triangle: [8, 1209, 1210] +Triangle: [111, 269, 103] +Triangle: [302, 272, 271] +Triangle: [277, 274, 278] +Triangle: [270, 275, 269] +Triangle: [276, 278, 275] +Triangle: [277, 280, 281] +Triangle: [273, 281, 279] +Triangle: [281, 283, 284] +Triangle: [279, 284, 282] +Triangle: [284, 286, 287] +Triangle: [282, 287, 285] +Triangle: [287, 289, 290] +Triangle: [287, 288, 285] +Triangle: [289, 293, 290] +Triangle: [290, 291, 288] +Triangle: [294, 276, 270] +Triangle: [280, 295, 283] +Triangle: [283, 694, 286] +Triangle: [286, 296, 289] +Triangle: [292, 296, 297] +Triangle: [108, 270, 111] +Triangle: [295, 108, 113] +Triangle: [694, 113, 114] +Triangle: [296, 114, 207] +Triangle: [297, 207, 209] +Triangle: [273, 302, 274] +Triangle: [303, 273, 279] +Triangle: [303, 305, 304] +Triangle: [301, 304, 272] +Triangle: [305, 282, 306] +Triangle: [285, 306, 282] +Triangle: [300, 309, 285] +Triangle: [307, 309, 308] +Triangle: [300, 288, 299] +Triangle: [299, 291, 298] +Triangle: [323, 317, 315] +Triangle: [310, 328, 329] +Triangle: [326, 329, 325] +Triangle: [312, 325, 329] +Triangle: [325, 316, 326] +Triangle: [330, 315, 316] +Triangle: [313, 330, 312] +Triangle: [323, 318, 314] +Triangle: [317, 321, 322] +Triangle: [314, 320, 321] +Triangle: [320, 313, 319] +Triangle: [319, 312, 311] +Triangle: [329, 311, 312] +Triangle: [316, 331, 332] +Triangle: [331, 317, 324] +Triangle: [333, 317, 322] +Triangle: [340, 331, 324] +Triangle: [340, 333, 339] +Triangle: [322, 339, 333] +Triangle: [342, 345, 341] +Triangle: [342, 338, 339] +Triangle: [337, 339, 338] +Triangle: [336, 340, 337] +Triangle: [346, 343, 344] +Triangle: [321, 342, 322] +Triangle: [320, 343, 321] +Triangle: [308, 328, 307] +Triangle: [319, 308, 347] +Triangle: [319, 344, 320] +Triangle: [347, 300, 348] +Triangle: [344, 348, 346] +Triangle: [350, 345, 346] +Triangle: [634, 631, 632] +Triangle: [356, 681, 679] +Triangle: [352, 346, 348] +Triangle: [352, 300, 299] +Triangle: [680, 352, 299] +Triangle: [358, 353, 354] +Triangle: [350, 682, 679] +Triangle: [587, 634, 635] +Triangle: [683, 353, 680] +Triangle: [341, 362, 338] +Triangle: [685, 359, 684] +Triangle: [361, 363, 360] +Triangle: [341, 349, 359] +Triangle: [684, 349, 681] +Triangle: [351, 360, 355] +Triangle: [366, 338, 365] +Triangle: [367, 338, 362] +Triangle: [686, 362, 685] +Triangle: [369, 363, 364] +Triangle: [327, 332, 336] +Triangle: [326, 327, 334] +Triangle: [335, 326, 334] +Triangle: [310, 371, 307] +Triangle: [371, 306, 307] +Triangle: [376, 379, 377] +Triangle: [271, 379, 378] +Triangle: [375, 379, 380] +Triangle: [272, 380, 271] +Triangle: [374, 380, 381] +Triangle: [382, 272, 304] +Triangle: [383, 304, 305] +Triangle: [305, 370, 383] +Triangle: [406, 393, 401] +Triangle: [394, 406, 402] +Triangle: [395, 402, 403] +Triangle: [404, 395, 403] +Triangle: [404, 389, 405] +Triangle: [397, 405, 396] +Triangle: [398, 403, 392] +Triangle: [403, 390, 392] +Triangle: [390, 406, 400] +Triangle: [400, 401, 391] +Triangle: [415, 405, 389] +Triangle: [415, 389, 412] +Triangle: [396, 415, 388] +Triangle: [413, 415, 412] +Triangle: [414, 412, 411] +Triangle: [398, 412, 389] +Triangle: [411, 392, 410] +Triangle: [409, 392, 390] +Triangle: [409, 400, 408] +Triangle: [400, 407, 408] +Triangle: [411, 416, 414] +Triangle: [417, 410, 409] +Triangle: [408, 417, 409] +Triangle: [419, 408, 407] +Triangle: [418, 422, 421] +Triangle: [421, 417, 418] +Triangle: [426, 416, 417] +Triangle: [428, 430, 439] +Triangle: [429, 385, 447] +Triangle: [373, 381, 382] +Triangle: [372, 382, 383] +Triangle: [424, 429, 447] +Triangle: [447, 423, 444] +Triangle: [425, 374, 373] +Triangle: [420, 422, 387] +Triangle: [413, 441, 388] +Triangle: [428, 414, 416] +Triangle: [427, 413, 414] +Triangle: [426, 420, 430] +Triangle: [387, 432, 420] +Triangle: [420, 386, 430] +Triangle: [432, 433, 434] +Triangle: [433, 436, 434] +Triangle: [435, 438, 436] +Triangle: [376, 438, 437] +Triangle: [385, 428, 439] +Triangle: [439, 386, 440] +Triangle: [386, 434, 440] +Triangle: [385, 440, 423] +Triangle: [423, 443, 442] +Triangle: [445, 384, 425] +Triangle: [444, 442, 384] +Triangle: [443, 434, 436] +Triangle: [446, 436, 438] +Triangle: [446, 377, 375] +Triangle: [446, 442, 443] +Triangle: [374, 442, 375] +Triangle: [444, 424, 447] +Triangle: [399, 461, 393] +Triangle: [461, 463, 460] +Triangle: [394, 462, 399] +Triangle: [463, 465, 464] +Triangle: [463, 466, 460] +Triangle: [448, 464, 467] +Triangle: [474, 448, 467] +Triangle: [475, 468, 459] +Triangle: [465, 476, 464] +Triangle: [477, 478, 479] +Triangle: [476, 467, 464] +Triangle: [485, 468, 469] +Triangle: [469, 449, 485] +Triangle: [470, 484, 469] +Triangle: [470, 482, 483] +Triangle: [471, 481, 482] +Triangle: [480, 472, 473] +Triangle: [498, 484, 483] +Triangle: [450, 486, 488] +Triangle: [484, 487, 449] +Triangle: [495, 488, 496] +Triangle: [458, 489, 490] +Triangle: [525, 490, 526] +Triangle: [456, 491, 492] +Triangle: [619, 492, 620] +Triangle: [452, 494, 453] +Triangle: [495, 489, 451] +Triangle: [486, 499, 488] +Triangle: [497, 488, 499] +Triangle: [489, 497, 500] +Triangle: [490, 500, 501] +Triangle: [526, 501, 527] +Triangle: [492, 502, 503] +Triangle: [480, 476, 477] +Triangle: [473, 509, 510] +Triangle: [471, 507, 508] +Triangle: [469, 505, 506] +Triangle: [473, 504, 467] +Triangle: [472, 508, 509] +Triangle: [470, 506, 507] +Triangle: [474, 505, 468] +Triangle: [474, 504, 511] +Triangle: [512, 508, 507] +Triangle: [512, 506, 505] +Triangle: [510, 512, 504] +Triangle: [511, 512, 505] +Triangle: [519, 483, 482] +Triangle: [498, 520, 499] +Triangle: [521, 499, 520] +Triangle: [481, 513, 516] +Triangle: [514, 516, 513] +Triangle: [515, 517, 514] +Triangle: [482, 516, 519] +Triangle: [517, 519, 516] +Triangle: [521, 517, 518] +Triangle: [500, 521, 522] +Triangle: [518, 522, 521] +Triangle: [524, 518, 515] +Triangle: [501, 522, 523] +Triangle: [491, 527, 502] +Triangle: [457, 526, 491] +Triangle: [527, 523, 524] +Triangle: [527, 528, 502] +Triangle: [503, 528, 529] +Triangle: [528, 530, 532] +Triangle: [531, 524, 515] +Triangle: [533, 515, 514] +Triangle: [513, 533, 514] +Triangle: [477, 513, 480] +Triangle: [479, 534, 477] +Triangle: [531, 537, 536] +Triangle: [530, 536, 532] +Triangle: [532, 539, 540] +Triangle: [542, 539, 541] +Triangle: [544, 541, 543] +Triangle: [546, 543, 545] +Triangle: [547, 546, 545] +Triangle: [549, 548, 547] +Triangle: [552, 549, 551] +Triangle: [552, 553, 554] +Triangle: [554, 555, 556] +Triangle: [560, 557, 558] +Triangle: [556, 559, 560] +Triangle: [558, 561, 562] +Triangle: [562, 563, 564] +Triangle: [564, 565, 566] +Triangle: [492, 621, 620] +Triangle: [493, 568, 494] +Triangle: [621, 565, 567] +Triangle: [563, 567, 565] +Triangle: [529, 623, 622] +Triangle: [528, 538, 529] +Triangle: [538, 540, 569] +Triangle: [538, 624, 623] +Triangle: [566, 581, 564] +Triangle: [564, 580, 562] +Triangle: [562, 579, 558] +Triangle: [558, 578, 560] +Triangle: [578, 556, 560] +Triangle: [556, 576, 554] +Triangle: [554, 575, 552] +Triangle: [575, 550, 552] +Triangle: [574, 548, 550] +Triangle: [548, 572, 546] +Triangle: [546, 571, 544] +Triangle: [571, 542, 544] +Triangle: [570, 540, 542] +Triangle: [534, 537, 533] +Triangle: [583, 536, 537] +Triangle: [541, 583, 585] +Triangle: [541, 584, 543] +Triangle: [543, 586, 545] +Triangle: [545, 587, 547] +Triangle: [549, 587, 588] +Triangle: [551, 588, 589] +Triangle: [551, 590, 553] +Triangle: [605, 597, 606] +Triangle: [607, 598, 605] +Triangle: [608, 591, 609] +Triangle: [610, 599, 607] +Triangle: [608, 593, 592] +Triangle: [612, 600, 610] +Triangle: [611, 594, 593] +Triangle: [612, 602, 601] +Triangle: [613, 595, 594] +Triangle: [614, 603, 602] +Triangle: [615, 596, 595] +Triangle: [618, 603, 616] +Triangle: [617, 597, 596] +Triangle: [609, 625, 626] +Triangle: [569, 626, 624] +Triangle: [574, 606, 617] +Triangle: [582, 616, 581] +Triangle: [573, 617, 615] +Triangle: [580, 616, 614] +Triangle: [572, 615, 613] +Triangle: [579, 614, 612] +Triangle: [571, 613, 611] +Triangle: [579, 610, 578] +Triangle: [570, 611, 608] +Triangle: [578, 607, 577] +Triangle: [570, 609, 569] +Triangle: [577, 605, 576] +Triangle: [576, 606, 575] +Triangle: [582, 626, 618] +Triangle: [618, 625, 604] +Triangle: [623, 582, 566] +Triangle: [622, 566, 565] +Triangle: [529, 621, 503] +Triangle: [620, 567, 493] +Triangle: [452, 620, 493] +Triangle: [478, 394, 395] +Triangle: [583, 535, 628] +Triangle: [479, 628, 535] +Triangle: [478, 627, 479] +Triangle: [627, 631, 628] +Triangle: [632, 629, 630] +Triangle: [397, 627, 395] +Triangle: [396, 629, 397] +Triangle: [633, 584, 585] +Triangle: [631, 633, 628] +Triangle: [588, 635, 636] +Triangle: [388, 630, 396] +Triangle: [441, 638, 388] +Triangle: [424, 637, 441] +Triangle: [630, 640, 632] +Triangle: [637, 640, 638] +Triangle: [639, 445, 425] +Triangle: [634, 640, 643] +Triangle: [640, 642, 643] +Triangle: [639, 641, 642] +Triangle: [641, 373, 372] +Triangle: [644, 383, 370] +Triangle: [641, 644, 645] +Triangle: [371, 644, 370] +Triangle: [335, 645, 371] +Triangle: [334, 646, 335] +Triangle: [642, 645, 646] +Triangle: [642, 647, 643] +Triangle: [635, 643, 647] +Triangle: [636, 647, 648] +Triangle: [648, 334, 327] +Triangle: [650, 327, 336] +Triangle: [648, 649, 636] +Triangle: [589, 636, 649] +Triangle: [652, 336, 337] +Triangle: [650, 651, 649] +Triangle: [590, 649, 651] +Triangle: [654, 337, 366] +Triangle: [653, 652, 654] +Triangle: [655, 651, 653] +Triangle: [553, 655, 555] +Triangle: [453, 659, 455] +Triangle: [568, 659, 494] +Triangle: [658, 563, 561] +Triangle: [561, 657, 658] +Triangle: [657, 559, 656] +Triangle: [555, 656, 559] +Triangle: [663, 655, 653] +Triangle: [656, 662, 657] +Triangle: [657, 661, 658] +Triangle: [661, 659, 658] +Triangle: [455, 660, 454] +Triangle: [454, 665, 664] +Triangle: [669, 366, 365] +Triangle: [654, 670, 653] +Triangle: [670, 663, 653] +Triangle: [668, 662, 663] +Triangle: [662, 666, 661] +Triangle: [661, 665, 660] +Triangle: [669, 674, 670] +Triangle: [677, 674, 671] +Triangle: [673, 675, 672] +Triangle: [672, 678, 677] +Triangle: [671, 365, 367] +Triangle: [368, 685, 363] +Triangle: [355, 684, 681] +Triangle: [363, 684, 360] +Triangle: [298, 680, 299] +Triangle: [679, 357, 356] +Triangle: [353, 682, 680] +Triangle: [679, 349, 350] +Triangle: [677, 367, 686] +Triangle: [672, 686, 368] +Triangle: [369, 672, 368] +Triangle: [668, 690, 667] +Triangle: [667, 689, 666] +Triangle: [664, 687, 688] +Triangle: [687, 666, 689] +Triangle: [670, 691, 668] +Triangle: [678, 691, 674] +Triangle: [675, 690, 678] +Triangle: [689, 692, 687] +Triangle: [687, 693, 688] +Triangle: [676, 692, 675] +Triangle: [583, 633, 585] +Triangle: [358, 356, 357] +Triangle: [355, 695, 351] +Triangle: [696, 210, 208] +Triangle: [710, 702, 709] +Triangle: [697, 38, 37] +Triangle: [699, 28, 34] +Triangle: [700, 37, 28] +Triangle: [709, 701, 708] +Triangle: [708, 698, 707] +Triangle: [36, 699, 34] +Triangle: [706, 698, 697] +Triangle: [704, 700, 699] +Triangle: [705, 697, 700] +Triangle: [1247, 709, 1246] +Triangle: [1246, 708, 1239] +Triangle: [1239, 707, 1245] +Triangle: [1241, 710, 1247] +Triangle: [30, 703, 710] +Triangle: [33, 723, 32] +Triangle: [32, 722, 31] +Triangle: [31, 721, 30] +Triangle: [721, 29, 30] +Triangle: [29, 719, 26] +Triangle: [719, 27, 26] +Triangle: [718, 38, 27] +Triangle: [717, 37, 38] +Triangle: [716, 28, 37] +Triangle: [79, 711, 78] +Triangle: [714, 35, 36] +Triangle: [712, 36, 34] +Triangle: [713, 34, 28] +Triangle: [733, 262, 261] +Triangle: [734, 261, 260] +Triangle: [260, 731, 734] +Triangle: [259, 730, 731] +Triangle: [258, 729, 730] +Triangle: [729, 253, 728] +Triangle: [728, 255, 727] +Triangle: [727, 252, 726] +Triangle: [726, 256, 725] +Triangle: [725, 257, 724] +Triangle: [732, 5216, 5217] +Triangle: [743, 5196, 5198] +Triangle: [5218, 731, 5219] +Triangle: [5219, 730, 5215] +Triangle: [730, 5214, 5215] +Triangle: [729, 5213, 5214] +Triangle: [728, 5212, 5213] +Triangle: [727, 5211, 5212] +Triangle: [5211, 725, 5210] +Triangle: [5210, 724, 5220] +Triangle: [1195, 747, 759] +Triangle: [1197, 760, 797] +Triangle: [1133, 770, 1136] +Triangle: [785, 779, 778] +Triangle: [791, 773, 790] +Triangle: [784, 780, 779] +Triangle: [1096, 751, 750] +Triangle: [1204, 762, 1200] +Triangle: [1201, 800, 1202] +Triangle: [1102, 804, 1100] +Triangle: [796, 776, 767] +Triangle: [1194, 766, 765] +Triangle: [1202, 746, 1196] +Triangle: [1093, 750, 752] +Triangle: [1006, 1008, 1007] +Triangle: [891, 786, 787] +Triangle: [786, 778, 777] +Triangle: [805, 837, 807] +Triangle: [893, 783, 784] +Triangle: [888, 788, 896] +Triangle: [887, 785, 786] +Triangle: [1147, 767, 776] +Triangle: [894, 792, 899] +Triangle: [795, 767, 768] +Triangle: [783, 781, 780] +Triangle: [896, 789, 895] +Triangle: [897, 793, 894] +Triangle: [895, 782, 886] +Triangle: [885, 794, 897] +Triangle: [788, 773, 775] +Triangle: [885, 796, 795] +Triangle: [793, 771, 792] +Triangle: [898, 790, 888] +Triangle: [782, 774, 781] +Triangle: [892, 784, 785] +Triangle: [795, 769, 794] +Triangle: [789, 775, 774] +Triangle: [787, 777, 776] +Triangle: [886, 783, 890] +Triangle: [794, 770, 793] +Triangle: [889, 787, 796] +Triangle: [1090, 802, 801] +Triangle: [1097, 758, 1101] +Triangle: [1094, 755, 1095] +Triangle: [1104, 757, 1097] +Triangle: [1095, 756, 1104] +Triangle: [1205, 798, 766] +Triangle: [1200, 761, 1206] +Triangle: [1207, 763, 1204] +Triangle: [1100, 803, 1092] +Triangle: [1091, 748, 1102] +Triangle: [1098, 803, 802] +Triangle: [1103, 752, 753] +Triangle: [1196, 747, 1199] +Triangle: [805, 808, 806] +Triangle: [806, 809, 805] +Triangle: [868, 810, 813] +Triangle: [869, 813, 816] +Triangle: [806, 813, 810] +Triangle: [812, 806, 808] +Triangle: [867, 816, 818] +Triangle: [814, 813, 811] +Triangle: [812, 814, 811] +Triangle: [817, 814, 815] +Triangle: [818, 816, 817] +Triangle: [862, 822, 821] +Triangle: [861, 822, 855] +Triangle: [864, 871, 857] +Triangle: [819, 833, 820] +Triangle: [820, 866, 819] +Triangle: [820, 835, 822] +Triangle: [824, 807, 823] +Triangle: [823, 826, 824] +Triangle: [826, 897, 828] +Triangle: [828, 894, 830] +Triangle: [824, 828, 827] +Triangle: [808, 827, 812] +Triangle: [899, 830, 894] +Triangle: [827, 830, 829] +Triangle: [812, 829, 815] +Triangle: [829, 817, 815] +Triangle: [835, 895, 834] +Triangle: [833, 896, 835] +Triangle: [807, 847, 823] +Triangle: [888, 832, 898] +Triangle: [838, 805, 809] +Triangle: [823, 848, 825] +Triangle: [838, 865, 841] +Triangle: [863, 841, 865] +Triangle: [838, 839, 836] +Triangle: [837, 839, 840] +Triangle: [839, 842, 840] +Triangle: [843, 842, 841] +Triangle: [863, 844, 843] +Triangle: [821, 835, 834] +Triangle: [843, 852, 851] +Triangle: [856, 821, 846] +Triangle: [859, 846, 845] +Triangle: [853, 844, 845] +Triangle: [844, 859, 845] +Triangle: [846, 853, 845] +Triangle: [857, 809, 864] +Triangle: [891, 825, 848] +Triangle: [887, 848, 850] +Triangle: [892, 850, 851] +Triangle: [849, 848, 847] +Triangle: [837, 849, 847] +Triangle: [842, 849, 840] +Triangle: [851, 850, 842] +Triangle: [893, 851, 852] +Triangle: [886, 834, 895] +Triangle: [890, 854, 886] +Triangle: [864, 810, 858] +Triangle: [890, 852, 853] +Triangle: [851, 842, 843] +Triangle: [1198, 797, 798] +Triangle: [1203, 759, 760] +Triangle: [862, 870, 879] +Triangle: [1101, 749, 1091] +Triangle: [866, 873, 883] +Triangle: [859, 872, 878] +Triangle: [857, 882, 865] +Triangle: [860, 880, 872] +Triangle: [868, 875, 884] +Triangle: [858, 884, 877] +Triangle: [869, 874, 875] +Triangle: [858, 881, 864] +Triangle: [856, 878, 870] +Triangle: [855, 873, 861] +Triangle: [865, 880, 863] +Triangle: [855, 879, 876] +Triangle: [909, 1018, 900] +Triangle: [1049, 1138, 1144] +Triangle: [1139, 1042, 1142] +Triangle: [1145, 1054, 1141] +Triangle: [1045, 1140, 1135] +Triangle: [1141, 1044, 1143] +Triangle: [1144, 1048, 1049] +Triangle: [1146, 1053, 1145] +Triangle: [1042, 1134, 1142] +Triangle: [1043, 1136, 1134] +Triangle: [1050, 1146, 1138] +Triangle: [1143, 1045, 1135] +Triangle: [1042, 1108, 1043] +Triangle: [1044, 1112, 1045] +Triangle: [1046, 1108, 1109] +Triangle: [818, 832, 819] +Triangle: [1050, 1118, 1117] +Triangle: [881, 1091, 871] +Triangle: [1051, 1119, 1042] +Triangle: [1045, 1107, 1052] +Triangle: [1053, 1114, 1054] +Triangle: [1044, 1114, 1113] +Triangle: [1048, 1155, 1049] +Triangle: [1055, 1115, 1053] +Triangle: [1047, 1109, 1121] +Triangle: [1055, 1117, 1116] +Triangle: [747, 917, 759] +Triangle: [916, 746, 915] +Triangle: [759, 920, 918] +Triangle: [760, 918, 919] +Triangle: [920, 919, 918] +Triangle: [1047, 1137, 1133] +Triangle: [971, 1065, 1064] +Triangle: [981, 930, 985] +Triangle: [1001, 1021, 984] +Triangle: [1067, 932, 930] +Triangle: [1068, 934, 932] +Triangle: [1070, 936, 1029] +Triangle: [1148, 989, 1061] +Triangle: [1073, 940, 938] +Triangle: [952, 1059, 1058] +Triangle: [994, 950, 995] +Triangle: [1075, 944, 942] +Triangle: [1076, 946, 944] +Triangle: [1077, 948, 946] +Triangle: [948, 1079, 950] +Triangle: [1058, 1081, 952] +Triangle: [1082, 954, 1040] +Triangle: [952, 1084, 957] +Triangle: [1083, 958, 954] +Triangle: [1085, 960, 958] +Triangle: [960, 1087, 962] +Triangle: [962, 1088, 964] +Triangle: [979, 966, 983] +Triangle: [966, 1065, 924] +Triangle: [977, 980, 928] +Triangle: [925, 1064, 1066] +Triangle: [1208, 753, 1194] +Triangle: [974, 952, 957] +Triangle: [1075, 940, 1074] +Triangle: [946, 994, 993] +Triangle: [944, 993, 992] +Triangle: [992, 942, 944] +Triangle: [991, 940, 942] +Triangle: [1151, 989, 938] +Triangle: [1041, 957, 1040] +Triangle: [1031, 934, 1029] +Triangle: [987, 932, 934] +Triangle: [932, 985, 930] +Triangle: [1001, 983, 996] +Triangle: [964, 1089, 966] +Triangle: [925, 982, 971] +Triangle: [982, 924, 971] +Triangle: [924, 983, 966] +Triangle: [984, 979, 983] +Triangle: [978, 929, 980] +Triangle: [964, 978, 962] +Triangle: [962, 977, 960] +Triangle: [960, 976, 958] +Triangle: [976, 954, 958] +Triangle: [902, 997, 998] +Triangle: [969, 1000, 968] +Triangle: [1012, 1002, 1013] +Triangle: [982, 1001, 996] +Triangle: [1032, 1004, 1005] +Triangle: [1126, 915, 746] +Triangle: [754, 1103, 753] +Triangle: [1103, 874, 883] +Triangle: [883, 867, 866] +Triangle: [1208, 764, 1207] +Triangle: [866, 818, 819] +Triangle: [898, 831, 899] +Triangle: [1099, 801, 751] +Triangle: [834, 846, 821] +Triangle: [889, 826, 825] +Triangle: [1000, 1012, 1013] +Triangle: [903, 998, 1017] +Triangle: [1005, 1034, 1032] +Triangle: [968, 1015, 1025] +Triangle: [1000, 1014, 1015] +Triangle: [1012, 1020, 1021] +Triangle: [969, 1019, 1026] +Triangle: [1033, 1111, 1035] +Triangle: [900, 997, 901] +Triangle: [1003, 1013, 1002] +Triangle: [1014, 1022, 1015] +Triangle: [1015, 1027, 1025] +Triangle: [1016, 1036, 1034] +Triangle: [981, 1002, 982] +Triangle: [1066, 930, 925] +Triangle: [929, 1021, 1020] +Triangle: [1025, 1023, 1016] +Triangle: [999, 1026, 1020] +Triangle: [968, 1016, 1005] +Triangle: [1005, 969, 968] +Triangle: [1020, 980, 929] +Triangle: [1026, 928, 980] +Triangle: [985, 1003, 981] +Triangle: [1027, 985, 986] +Triangle: [1023, 986, 987] +Triangle: [1036, 987, 1031] +Triangle: [1024, 1128, 988] +Triangle: [1129, 1024, 1017] +Triangle: [1004, 1035, 1019] +Triangle: [1130, 1017, 998] +Triangle: [998, 1127, 1130] +Triangle: [988, 1132, 936] +Triangle: [1069, 1029, 934] +Triangle: [1028, 1019, 1035] +Triangle: [976, 928, 1028] +Triangle: [1037, 1035, 1111] +Triangle: [975, 1028, 1037] +Triangle: [1056, 1110, 1051] +Triangle: [975, 1040, 954] +Triangle: [1084, 1040, 957] +Triangle: [1041, 1037, 1038] +Triangle: [1038, 974, 1041] +Triangle: [1052, 1106, 1056] +Triangle: [907, 991, 992] +Triangle: [906, 991, 908] +Triangle: [904, 1017, 1024] +Triangle: [1072, 938, 1148] +Triangle: [1152, 990, 906] +Triangle: [791, 899, 792] +Triangle: [904, 1063, 1121] +Triangle: [909, 970, 974] +Triangle: [907, 993, 914] +Triangle: [914, 994, 913] +Triangle: [950, 1080, 1058] +Triangle: [1058, 995, 950] +Triangle: [911, 970, 910] +Triangle: [912, 1059, 911] +Triangle: [913, 995, 912] +Triangle: [1071, 1148, 936] +Triangle: [936, 1061, 988] +Triangle: [949, 945, 943] +Triangle: [926, 1064, 1065] +Triangle: [931, 1066, 927] +Triangle: [933, 1067, 931] +Triangle: [935, 1068, 933] +Triangle: [937, 1070, 1030] +Triangle: [939, 1072, 1060] +Triangle: [941, 1073, 939] +Triangle: [943, 1074, 941] +Triangle: [945, 1075, 943] +Triangle: [945, 1077, 1076] +Triangle: [947, 1078, 1077] +Triangle: [951, 1078, 949] +Triangle: [953, 1080, 1057] +Triangle: [1039, 1083, 1082] +Triangle: [956, 1081, 953] +Triangle: [955, 1085, 1083] +Triangle: [959, 1086, 1085] +Triangle: [961, 1087, 1086] +Triangle: [963, 1088, 1087] +Triangle: [926, 1089, 967] +Triangle: [967, 1088, 965] +Triangle: [927, 1064, 972] +Triangle: [1030, 1069, 935] +Triangle: [956, 1082, 1084] +Triangle: [1057, 1079, 951] +Triangle: [1060, 1071, 937] +Triangle: [941, 949, 943] +Triangle: [939, 951, 941] +Triangle: [1060, 1057, 939] +Triangle: [1060, 956, 953] +Triangle: [1039, 937, 1030] +Triangle: [1030, 955, 1039] +Triangle: [959, 935, 933] +Triangle: [961, 933, 931] +Triangle: [963, 931, 927] +Triangle: [965, 927, 972] +Triangle: [972, 967, 965] +Triangle: [879, 1090, 1099] +Triangle: [900, 1106, 909] +Triangle: [883, 1093, 1103] +Triangle: [878, 1092, 1098] +Triangle: [871, 1102, 882] +Triangle: [880, 1092, 872] +Triangle: [884, 1095, 1104] +Triangle: [884, 1097, 877] +Triangle: [875, 1094, 1095] +Triangle: [877, 1101, 881] +Triangle: [870, 1098, 1090] +Triangle: [1133, 772, 771] +Triangle: [876, 1093, 873] +Triangle: [882, 1100, 880] +Triangle: [876, 1099, 1096] +Triangle: [1052, 1147, 1140] +Triangle: [1118, 1152, 906] +Triangle: [1118, 908, 1117] +Triangle: [1117, 907, 1116] +Triangle: [907, 1115, 1116] +Triangle: [914, 1114, 1115] +Triangle: [913, 1113, 1114] +Triangle: [912, 1112, 1113] +Triangle: [1112, 910, 1107] +Triangle: [1107, 909, 1106] +Triangle: [1018, 1037, 1111] +Triangle: [1110, 901, 1119] +Triangle: [1119, 902, 1108] +Triangle: [1109, 902, 903] +Triangle: [1121, 903, 904] +Triangle: [1062, 1120, 1063] +Triangle: [1007, 1123, 1124] +Triangle: [1122, 1124, 1123] +Triangle: [988, 1149, 1024] +Triangle: [1062, 1024, 1149] +Triangle: [1206, 799, 1201] +Triangle: [1029, 936, 1132] +Triangle: [1129, 1032, 1034] +Triangle: [1130, 1033, 1032] +Triangle: [1128, 1036, 1031] +Triangle: [1111, 997, 1018] +Triangle: [1132, 1031, 1029] +Triangle: [1131, 1034, 1036] +Triangle: [1140, 776, 777] +Triangle: [1154, 1048, 1047] +Triangle: [1143, 778, 779] +Triangle: [1138, 774, 775] +Triangle: [769, 1136, 770] +Triangle: [768, 1134, 769] +Triangle: [1146, 781, 774] +Triangle: [772, 1144, 773] +Triangle: [1141, 779, 780] +Triangle: [1135, 777, 778] +Triangle: [781, 1141, 780] +Triangle: [767, 1142, 768] +Triangle: [1144, 775, 773] +Triangle: [1051, 1147, 1056] +Triangle: [1046, 1133, 1136] +Triangle: [772, 792, 771] +Triangle: [1118, 1155, 1150] +Triangle: [1150, 905, 1152] +Triangle: [1153, 1063, 1120] +Triangle: [1155, 1120, 1150] +Triangle: [1152, 989, 1151] +Triangle: [1121, 1154, 1047] +Triangle: [1149, 905, 1062] +Triangle: [989, 1149, 1061] +Triangle: [1166, 1164, 1165] +Triangle: [1009, 1166, 922] +Triangle: [1191, 1163, 1164] +Triangle: [1169, 1163, 1168] +Triangle: [921, 1171, 919] +Triangle: [1170, 1166, 1171] +Triangle: [1165, 1171, 1166] +Triangle: [919, 1172, 760] +Triangle: [1173, 1165, 1164] +Triangle: [797, 1172, 1173] +Triangle: [1174, 1164, 1163] +Triangle: [1175, 1163, 1162] +Triangle: [798, 1173, 1174] +Triangle: [766, 1174, 1175] +Triangle: [1176, 1162, 1161] +Triangle: [1160, 1176, 1161] +Triangle: [1159, 1177, 1160] +Triangle: [1158, 1178, 1159] +Triangle: [1179, 1157, 1180] +Triangle: [766, 1176, 765] +Triangle: [765, 1177, 1011] +Triangle: [1011, 1178, 764] +Triangle: [764, 1179, 763] +Triangle: [763, 1180, 762] +Triangle: [1182, 1157, 1156] +Triangle: [762, 1182, 761] +Triangle: [1181, 1182, 1156] +Triangle: [1182, 1183, 761] +Triangle: [799, 1183, 1184] +Triangle: [1123, 1183, 1122] +Triangle: [1184, 1008, 1185] +Triangle: [799, 1185, 800] +Triangle: [1008, 1126, 1185] +Triangle: [800, 1126, 746] +Triangle: [1125, 1181, 973] +Triangle: [1186, 1181, 1156] +Triangle: [735, 1186, 1156] +Triangle: [736, 1156, 1157] +Triangle: [737, 1157, 1158] +Triangle: [737, 1159, 738] +Triangle: [739, 1159, 1160] +Triangle: [740, 1160, 1161] +Triangle: [740, 1187, 744] +Triangle: [1162, 1187, 1161] +Triangle: [1188, 744, 1187] +Triangle: [1189, 1187, 1169] +Triangle: [1189, 1168, 1190] +Triangle: [1191, 1167, 1192] +Triangle: [1192, 1009, 1010] +Triangle: [1192, 1168, 1191] +Triangle: [741, 1188, 1193] +Triangle: [1193, 742, 741] +Triangle: [1193, 1189, 1190] +Triangle: [1190, 923, 1193] +Triangle: [1105, 1192, 1010] +Triangle: [758, 1201, 749] +Triangle: [754, 1207, 755] +Triangle: [1011, 1194, 765] +Triangle: [801, 1195, 1203] +Triangle: [750, 1197, 1198] +Triangle: [804, 1199, 803] +Triangle: [755, 1204, 756] +Triangle: [757, 1206, 758] +Triangle: [752, 1198, 1205] +Triangle: [748, 1196, 804] +Triangle: [753, 1205, 1194] +Triangle: [749, 1202, 748] +Triangle: [756, 1200, 757] +Triangle: [751, 1203, 1197] +Triangle: [802, 1199, 1195] +Triangle: [1210, 50, 41] +Triangle: [1214, 48, 46] +Triangle: [43, 1216, 44] +Triangle: [44, 1215, 45] +Triangle: [51, 1220, 40] +Triangle: [45, 1214, 46] +Triangle: [50, 1221, 51] +Triangle: [42, 1217, 43] +Triangle: [1212, 47, 49] +Triangle: [1219, 42, 39] +Triangle: [1213, 49, 48] +Triangle: [40, 1219, 39] +Triangle: [1211, 41, 47] +Triangle: [76, 1227, 70] +Triangle: [70, 1226, 69] +Triangle: [77, 1278, 1275] +Triangle: [65, 1279, 1222] +Triangle: [72, 1234, 77] +Triangle: [75, 1280, 76] +Triangle: [67, 1231, 1224] +Triangle: [75, 1283, 1282] +Triangle: [74, 1228, 1231] +Triangle: [73, 1225, 1283] +Triangle: [66, 1224, 1223] +Triangle: [66, 1229, 72] +Triangle: [65, 1228, 71] +Triangle: [1269, 1247, 1273] +Triangle: [1264, 1245, 1271] +Triangle: [1272, 1239, 1264] +Triangle: [1273, 1246, 1272] +Triangle: [1269, 1243, 1241] +Triangle: [1266, 1242, 1243] +Triangle: [1261, 1242, 1265] +Triangle: [1270, 1245, 1244] +Triangle: [1268, 1238, 1240] +Triangle: [1268, 1235, 1267] +Triangle: [1263, 1237, 1238] +Triangle: [1262, 1244, 1237] +Triangle: [1267, 1236, 1261] +Triangle: [52, 1248, 53] +Triangle: [55, 1256, 1249] +Triangle: [54, 1257, 1256] +Triangle: [57, 1284, 58] +Triangle: [59, 1248, 1251] +Triangle: [58, 1285, 60] +Triangle: [56, 1251, 1257] +Triangle: [60, 1286, 61] +Triangle: [55, 1254, 62] +Triangle: [63, 1255, 52] +Triangle: [62, 1274, 57] +Triangle: [63, 1260, 1276] +Triangle: [64, 1286, 1260] +Triangle: [20, 1267, 1261] +Triangle: [15, 1270, 1262] +Triangle: [21, 1262, 1263] +Triangle: [23, 1267, 22] +Triangle: [21, 1268, 23] +Triangle: [24, 1271, 1270] +Triangle: [20, 1265, 19] +Triangle: [19, 1266, 18] +Triangle: [18, 1269, 17] +Triangle: [13, 1273, 1272] +Triangle: [14, 1272, 1264] +Triangle: [25, 1264, 1271] +Triangle: [17, 1273, 16] +Triangle: [1258, 1275, 68] +Triangle: [1259, 1277, 1276] +Triangle: [1225, 1275, 1278] +Triangle: [1226, 1277, 69] +Triangle: [1280, 1281, 1227] +Triangle: [1227, 1279, 1226] +Triangle: [1280, 1232, 1233] +Triangle: [1282, 1230, 1232] +Triangle: [1283, 1278, 1230] +Triangle: [1250, 1274, 1258] +Triangle: [1252, 1284, 1250] +Triangle: [1253, 1285, 1252] +Triangle: [1259, 1260, 1287] +Triangle: [1253, 1260, 1286] +Triangle: [1321, 2415, 2416] +Triangle: [2417, 1907, 2424] +Triangle: [2418, 1906, 2417] +Triangle: [1315, 1903, 1902] +Triangle: [1323, 2420, 2415] +Triangle: [1314, 1904, 1903] +Triangle: [2420, 1905, 2418] +Triangle: [2424, 1908, 2425] +Triangle: [1320, 2416, 2422] +Triangle: [1326, 1902, 1899] +Triangle: [2423, 1320, 2422] +Triangle: [2421, 1319, 2423] +Triangle: [1336, 2402, 2408] +Triangle: [2409, 1329, 2403] +Triangle: [2403, 1335, 2404] +Triangle: [2410, 1328, 2458] +Triangle: [2411, 1336, 2408] +Triangle: [1330, 2410, 2412] +Triangle: [2404, 1337, 2411] +Triangle: [1331, 2412, 2413] +Triangle: [2414, 1338, 2409] +Triangle: [1334, 2459, 2402] +Triangle: [2458, 1339, 2414] +Triangle: [1333, 2461, 2459] +Triangle: [1332, 2413, 2461] +Triangle: [1306, 1349, 1305] +Triangle: [1351, 1306, 1307] +Triangle: [1345, 1313, 1302] +Triangle: [1340, 1307, 1308] +Triangle: [1313, 1343, 1312] +Triangle: [1349, 1304, 1305] +Triangle: [1344, 1311, 1309] +Triangle: [1304, 1346, 1301] +Triangle: [1347, 1310, 1311] +Triangle: [1346, 1302, 1301] +Triangle: [1303, 1344, 1309] +Triangle: [1312, 1342, 1303] +Triangle: [1310, 1340, 1308] +Triangle: [2390, 1298, 2391] +Triangle: [2400, 1289, 1300] +Triangle: [2392, 1295, 2393] +Triangle: [2398, 1289, 2399] +Triangle: [2391, 1297, 2392] +Triangle: [2398, 1291, 1288] +Triangle: [2389, 1299, 1290] +Triangle: [2394, 1293, 2395] +Triangle: [2401, 1300, 1299] +Triangle: [2395, 1292, 2396] +Triangle: [2396, 1291, 2397] +Triangle: [2393, 1294, 2394] +Triangle: [1358, 2433, 2467] +Triangle: [2439, 1358, 2467] +Triangle: [2455, 2434, 2454] +Triangle: [2435, 2457, 2456] +Triangle: [1365, 2429, 2434] +Triangle: [1364, 2432, 2433] +Triangle: [2437, 1362, 2431] +Triangle: [1363, 2430, 2432] +Triangle: [2431, 1359, 2428] +Triangle: [1361, 2438, 2430] +Triangle: [2436, 1355, 2437] +Triangle: [2429, 1354, 2436] +Triangle: [1359, 2435, 2428] +Triangle: [1913, 1370, 1914] +Triangle: [1913, 1368, 1369] +Triangle: [1912, 1368, 1915] +Triangle: [1916, 1323, 1321] +Triangle: [1372, 1370, 1369] +Triangle: [1379, 1374, 1372] +Triangle: [130, 1440, 137] +Triangle: [1377, 83, 1374] +Triangle: [1388, 1390, 1385] +Triangle: [1438, 1377, 1451] +Triangle: [1380, 1372, 1369] +Triangle: [1368, 1380, 1369] +Triangle: [1381, 1366, 1382] +Triangle: [1367, 1382, 1366] +Triangle: [1914, 1384, 1917] +Triangle: [1385, 1370, 1371] +Triangle: [1380, 1448, 1449] +Triangle: [1379, 1449, 1450] +Triangle: [1388, 1371, 1373] +Triangle: [1917, 1391, 1918] +Triangle: [1384, 1390, 1391] +Triangle: [1451, 1379, 1450] +Triangle: [1393, 83, 84] +Triangle: [1373, 1393, 1394] +Triangle: [103, 1393, 84] +Triangle: [1394, 1395, 1392] +Triangle: [1373, 1396, 1388] +Triangle: [1392, 1396, 1394] +Triangle: [1388, 1399, 1389] +Triangle: [1398, 1396, 1397] +Triangle: [1383, 1400, 1382] +Triangle: [1403, 1417, 1418] +Triangle: [1405, 1402, 1403] +Triangle: [1407, 1452, 1453] +Triangle: [1452, 1408, 1404] +Triangle: [1455, 1375, 1456] +Triangle: [1455, 128, 1410] +Triangle: [137, 1410, 128] +Triangle: [1444, 1408, 1375] +Triangle: [1408, 1441, 1404] +Triangle: [1442, 1404, 1441] +Triangle: [1418, 1400, 1401] +Triangle: [1417, 1442, 1445] +Triangle: [1400, 1445, 1446] +Triangle: [1400, 1447, 1382] +Triangle: [1381, 1447, 1448] +Triangle: [1372, 1373, 1371] +Triangle: [131, 1439, 130] +Triangle: [1437, 132, 1436] +Triangle: [132, 1438, 1436] +Triangle: [1440, 1375, 1410] +Triangle: [1454, 1375, 1408] +Triangle: [1386, 1433, 1434] +Triangle: [1430, 1422, 1427] +Triangle: [1429, 1413, 1412] +Triangle: [1414, 1429, 1412] +Triangle: [1435, 1431, 1432] +Triangle: [1424, 1430, 1433] +Triangle: [1430, 1428, 1431] +Triangle: [1431, 1429, 1432] +Triangle: [1427, 1419, 1428] +Triangle: [1427, 1420, 1421] +Triangle: [1415, 1435, 1426] +Triangle: [1378, 1434, 1435] +Triangle: [1428, 1416, 1429] +Triangle: [1426, 1432, 1414] +Triangle: [1433, 1431, 1434] +Triangle: [1425, 1433, 1387] +Triangle: [1437, 1387, 1386] +Triangle: [1436, 1425, 1387] +Triangle: [1415, 1439, 1378] +Triangle: [1378, 1437, 1386] +Triangle: [1413, 1441, 1412] +Triangle: [1412, 1443, 1414] +Triangle: [1444, 1415, 1426] +Triangle: [1445, 1413, 1416] +Triangle: [1446, 1416, 1419] +Triangle: [1420, 1447, 1421] +Triangle: [1421, 1446, 1419] +Triangle: [1449, 1420, 1422] +Triangle: [1423, 1449, 1422] +Triangle: [1424, 1450, 1423] +Triangle: [1425, 1451, 1424] +Triangle: [1443, 1426, 1414] +Triangle: [1409, 1456, 1454] +Triangle: [1411, 178, 1455] +Triangle: [1376, 1455, 1456] +Triangle: [1406, 1454, 1452] +Triangle: [1453, 1404, 1405] +Triangle: [1457, 1391, 1390] +Triangle: [1457, 1460, 1458] +Triangle: [1462, 1460, 1459] +Triangle: [1918, 1458, 1919] +Triangle: [1919, 1460, 1920] +Triangle: [1921, 1460, 1461] +Triangle: [1921, 1468, 1922] +Triangle: [1468, 1923, 1922] +Triangle: [1467, 1924, 1923] +Triangle: [1466, 1916, 1924] +Triangle: [1469, 1461, 1462] +Triangle: [1471, 1469, 1462] +Triangle: [1463, 1468, 1461] +Triangle: [1467, 1464, 1470] +Triangle: [1470, 1466, 1467] +Triangle: [1367, 1465, 1383] +Triangle: [196, 1477, 1478] +Triangle: [1462, 1474, 1471] +Triangle: [1475, 1474, 1477] +Triangle: [1473, 1459, 1457] +Triangle: [1475, 1472, 1471] +Triangle: [1389, 1457, 1390] +Triangle: [1399, 1473, 1389] +Triangle: [1479, 210, 1480] +Triangle: [185, 1476, 1475] +Triangle: [1475, 197, 185] +Triangle: [1478, 1474, 1473] +Triangle: [1398, 1480, 1399] +Triangle: [196, 1897, 206] +Triangle: [1897, 1473, 1480] +Triangle: [1487, 1465, 1470] +Triangle: [1481, 1488, 1482] +Triangle: [1482, 1489, 1483] +Triangle: [1483, 1490, 1484] +Triangle: [1484, 1491, 1485] +Triangle: [1485, 1492, 1486] +Triangle: [1401, 1465, 1481] +Triangle: [1418, 1481, 1482] +Triangle: [1403, 1482, 1483] +Triangle: [1403, 1484, 1405] +Triangle: [1405, 1485, 1453] +Triangle: [1453, 1486, 1407] +Triangle: [1493, 1464, 1463] +Triangle: [1496, 1463, 1469] +Triangle: [1469, 1495, 1496] +Triangle: [1476, 1495, 1472] +Triangle: [1470, 1497, 1487] +Triangle: [1498, 1493, 1496] +Triangle: [1495, 1498, 1496] +Triangle: [1513, 249, 251] +Triangle: [1498, 1501, 1497] +Triangle: [1499, 1502, 1498] +Triangle: [1487, 1501, 1488] +Triangle: [1504, 1501, 1502] +Triangle: [1506, 1503, 1504] +Triangle: [1506, 1507, 1505] +Triangle: [1508, 1509, 1507] +Triangle: [231, 1511, 1500] +Triangle: [243, 1512, 1511] +Triangle: [262, 1510, 248] +Triangle: [1511, 1502, 1500] +Triangle: [1506, 1511, 1512] +Triangle: [1523, 247, 1508] +Triangle: [1488, 1503, 1489] +Triangle: [1489, 1505, 1490] +Triangle: [1491, 1505, 1507] +Triangle: [1492, 1507, 1509] +Triangle: [194, 1494, 1476] +Triangle: [1495, 1513, 1499] +Triangle: [225, 1513, 251] +Triangle: [225, 1500, 1499] +Triangle: [1518, 129, 1411] +Triangle: [1526, 1406, 1407] +Triangle: [1517, 1376, 1409] +Triangle: [1527, 1486, 1492] +Triangle: [1522, 1509, 1510] +Triangle: [1524, 1409, 1406] +Triangle: [1376, 1518, 1411] +Triangle: [1506, 1523, 1508] +Triangle: [245, 1523, 1512] +Triangle: [1525, 1407, 1486] +Triangle: [1510, 247, 248] +Triangle: [1524, 1515, 1517] +Triangle: [1520, 1525, 1527] +Triangle: [1516, 1524, 1526] +Triangle: [1519, 1526, 1525] +Triangle: [1509, 1527, 1492] +Triangle: [1521, 1520, 1527] +Triangle: [2389, 1296, 2390] +Triangle: [269, 1395, 103] +Triangle: [302, 1529, 1550] +Triangle: [274, 1532, 278] +Triangle: [275, 1528, 269] +Triangle: [278, 1531, 275] +Triangle: [1532, 1534, 1531] +Triangle: [1530, 1535, 1532] +Triangle: [1535, 1537, 1534] +Triangle: [1533, 1538, 1535] +Triangle: [1538, 1540, 1537] +Triangle: [1536, 1541, 1538] +Triangle: [1541, 1543, 1540] +Triangle: [1542, 1541, 1539] +Triangle: [293, 1543, 1544] +Triangle: [291, 1544, 1542] +Triangle: [1531, 1545, 1528] +Triangle: [1546, 1534, 1537] +Triangle: [1896, 1537, 1540] +Triangle: [1547, 1540, 1543] +Triangle: [292, 1547, 1543] +Triangle: [1392, 1528, 1545] +Triangle: [1392, 1546, 1397] +Triangle: [1397, 1896, 1398] +Triangle: [1398, 1547, 1479] +Triangle: [1479, 297, 209] +Triangle: [302, 1530, 274] +Triangle: [1530, 1551, 1533] +Triangle: [1551, 1553, 1533] +Triangle: [1552, 1550, 1529] +Triangle: [1536, 1553, 1554] +Triangle: [1539, 1554, 1557] +Triangle: [1549, 1557, 1556] +Triangle: [1555, 1557, 1554] +Triangle: [1549, 1542, 1539] +Triangle: [1548, 291, 1542] +Triangle: [1565, 1571, 1563] +Triangle: [1576, 1558, 1577] +Triangle: [1577, 1574, 1573] +Triangle: [1560, 1573, 1578] +Triangle: [1573, 1564, 1578] +Triangle: [1563, 1578, 1564] +Triangle: [1578, 1561, 1560] +Triangle: [1566, 1571, 1562] +Triangle: [1565, 1569, 1562] +Triangle: [1568, 1562, 1569] +Triangle: [1568, 1561, 1566] +Triangle: [1560, 1567, 1559] +Triangle: [1559, 1577, 1560] +Triangle: [1564, 1579, 1563] +Triangle: [1579, 1565, 1563] +Triangle: [1565, 1581, 1570] +Triangle: [1579, 1588, 1572] +Triangle: [1581, 1588, 1587] +Triangle: [1570, 1587, 1590] +Triangle: [1593, 1590, 1589] +Triangle: [1586, 1590, 1587] +Triangle: [1585, 1587, 1588] +Triangle: [1588, 1584, 1585] +Triangle: [1591, 1594, 1592] +Triangle: [1569, 1590, 1591] +Triangle: [1568, 1591, 1592] +Triangle: [1576, 1556, 1555] +Triangle: [1556, 1567, 1595] +Triangle: [1567, 1592, 1595] +Triangle: [1549, 1595, 1596] +Triangle: [1596, 1592, 1594] +Triangle: [1593, 1598, 1594] +Triangle: [1842, 1839, 1795] +Triangle: [1886, 1602, 1884] +Triangle: [1594, 1599, 1596] +Triangle: [1549, 1599, 1548] +Triangle: [1885, 1599, 1887] +Triangle: [1600, 358, 354] +Triangle: [1887, 1598, 1884] +Triangle: [1842, 1796, 1843] +Triangle: [683, 1600, 354] +Triangle: [1606, 1589, 1586] +Triangle: [1604, 1889, 1888] +Triangle: [361, 1607, 364] +Triangle: [1589, 1597, 1593] +Triangle: [1597, 1888, 1886] +Triangle: [351, 1605, 361] +Triangle: [1609, 1586, 1585] +Triangle: [1586, 1610, 1606] +Triangle: [1606, 1890, 1889] +Triangle: [1607, 369, 364] +Triangle: [1580, 1575, 1584] +Triangle: [1575, 1574, 1582] +Triangle: [1574, 1583, 1582] +Triangle: [1613, 1558, 1555] +Triangle: [1613, 1554, 1612] +Triangle: [376, 1619, 378] +Triangle: [271, 1619, 1620] +Triangle: [1617, 1619, 1618] +Triangle: [1529, 1620, 1621] +Triangle: [1616, 1620, 1617] +Triangle: [1529, 1622, 1552] +Triangle: [1552, 1623, 1553] +Triangle: [1553, 1612, 1554] +Triangle: [1642, 393, 1636] +Triangle: [1642, 1631, 1638] +Triangle: [1638, 1632, 1639] +Triangle: [1640, 1632, 1634] +Triangle: [1628, 1640, 1641] +Triangle: [1641, 1634, 1633] +Triangle: [1635, 1639, 1640] +Triangle: [1629, 1639, 1630] +Triangle: [1629, 1642, 1638] +Triangle: [1637, 401, 1642] +Triangle: [1650, 1628, 1641] +Triangle: [1650, 1647, 1628] +Triangle: [1650, 1633, 1627] +Triangle: [1650, 1648, 1647] +Triangle: [1647, 1649, 1646] +Triangle: [1635, 1647, 1646] +Triangle: [1630, 1646, 1645] +Triangle: [1644, 1630, 1645] +Triangle: [1637, 1644, 1643] +Triangle: [1637, 407, 391] +Triangle: [1651, 1646, 1649] +Triangle: [1645, 1652, 1644] +Triangle: [1643, 1652, 1653] +Triangle: [419, 1643, 1653] +Triangle: [422, 1653, 1655] +Triangle: [1652, 1655, 1653] +Triangle: [1651, 1659, 1652] +Triangle: [1661, 1663, 1659] +Triangle: [1662, 1625, 1660] +Triangle: [1615, 1621, 1616] +Triangle: [1614, 1622, 1615] +Triangle: [1657, 1662, 1670] +Triangle: [1656, 1676, 1673] +Triangle: [1616, 1658, 1615] +Triangle: [422, 1654, 387] +Triangle: [1670, 1648, 1627] +Triangle: [1661, 1649, 1660] +Triangle: [1660, 1648, 1662] +Triangle: [1659, 1654, 1655] +Triangle: [1664, 387, 1654] +Triangle: [1654, 1626, 1664] +Triangle: [1664, 433, 431] +Triangle: [1666, 433, 1665] +Triangle: [1667, 435, 1666] +Triangle: [376, 1667, 1618] +Triangle: [1661, 1625, 1668] +Triangle: [1668, 1626, 1663] +Triangle: [1626, 1665, 1664] +Triangle: [1625, 1669, 1668] +Triangle: [1656, 1672, 1669] +Triangle: [1624, 1674, 1658] +Triangle: [1673, 1671, 1656] +Triangle: [1665, 1672, 1666] +Triangle: [1675, 1666, 1672] +Triangle: [1618, 1675, 1617] +Triangle: [1671, 1675, 1672] +Triangle: [1616, 1671, 1624] +Triangle: [1657, 1673, 1676] +Triangle: [1636, 461, 1677] +Triangle: [1678, 461, 460] +Triangle: [1631, 1677, 1680] +Triangle: [1680, 1678, 1679] +Triangle: [466, 1678, 460] +Triangle: [448, 1679, 466] +Triangle: [1688, 448, 475] +Triangle: [1682, 475, 459] +Triangle: [1680, 1689, 1691] +Triangle: [1690, 1691, 1689] +Triangle: [1681, 1689, 1679] +Triangle: [1682, 485, 1683] +Triangle: [449, 1683, 485] +Triangle: [1697, 1684, 1683] +Triangle: [1684, 1695, 1685] +Triangle: [1685, 1694, 1686] +Triangle: [1693, 1686, 1694] +Triangle: [1697, 1708, 1696] +Triangle: [450, 1698, 487] +Triangle: [487, 1697, 449] +Triangle: [495, 1699, 450] +Triangle: [458, 1700, 451] +Triangle: [525, 1701, 458] +Triangle: [456, 1702, 457] +Triangle: [619, 1703, 456] +Triangle: [1705, 452, 453] +Triangle: [1700, 495, 451] +Triangle: [1709, 1698, 1699] +Triangle: [1707, 1699, 1706] +Triangle: [1700, 1707, 1706] +Triangle: [1701, 1710, 1700] +Triangle: [1735, 1711, 1701] +Triangle: [1703, 1712, 1702] +Triangle: [1689, 1693, 1690] +Triangle: [1687, 1719, 1686] +Triangle: [1685, 1717, 1684] +Triangle: [1683, 1715, 1682] +Triangle: [1714, 1687, 1681] +Triangle: [1686, 1718, 1685] +Triangle: [1684, 1716, 1683] +Triangle: [1715, 1688, 1682] +Triangle: [1688, 1714, 1681] +Triangle: [1722, 1718, 1719] +Triangle: [1716, 1722, 1715] +Triangle: [1722, 1720, 1714] +Triangle: [1721, 1722, 1714] +Triangle: [1696, 1729, 1695] +Triangle: [1730, 1708, 1709] +Triangle: [1731, 1709, 1707] +Triangle: [1694, 1723, 1693] +Triangle: [1724, 1726, 1727] +Triangle: [1725, 1727, 1728] +Triangle: [1695, 1726, 1694] +Triangle: [1727, 1729, 1730] +Triangle: [1727, 1731, 1728] +Triangle: [1710, 1731, 1707] +Triangle: [1728, 1732, 1733] +Triangle: [1734, 1728, 1733] +Triangle: [1711, 1732, 1710] +Triangle: [1702, 1736, 1735] +Triangle: [457, 1735, 525] +Triangle: [1733, 1736, 1734] +Triangle: [1737, 1736, 1712] +Triangle: [1713, 1737, 1712] +Triangle: [1737, 1739, 1734] +Triangle: [1740, 1734, 1739] +Triangle: [1725, 1742, 1724] +Triangle: [1723, 1742, 1743] +Triangle: [1690, 1723, 1743] +Triangle: [1692, 1743, 1744] +Triangle: [1740, 1746, 1742] +Triangle: [1739, 1745, 1740] +Triangle: [1741, 1748, 1745] +Triangle: [1748, 1751, 1750] +Triangle: [1750, 1753, 1752] +Triangle: [1752, 1755, 1754] +Triangle: [1756, 1755, 1757] +Triangle: [1758, 1757, 1759] +Triangle: [1758, 1761, 1760] +Triangle: [1761, 1762, 1760] +Triangle: [1763, 1764, 1762] +Triangle: [1769, 1766, 1768] +Triangle: [1765, 1768, 1764] +Triangle: [1767, 1770, 1766] +Triangle: [1771, 1772, 1770] +Triangle: [1773, 1774, 1772] +Triangle: [1829, 1703, 1828] +Triangle: [1777, 1704, 1705] +Triangle: [1829, 1774, 1830] +Triangle: [1772, 1776, 1777] +Triangle: [1831, 1738, 1830] +Triangle: [1747, 1737, 1738] +Triangle: [1747, 1749, 1741] +Triangle: [1832, 1747, 1831] +Triangle: [1775, 1790, 1791] +Triangle: [1773, 1789, 1790] +Triangle: [1771, 1788, 1789] +Triangle: [1767, 1787, 1788] +Triangle: [1765, 1787, 1769] +Triangle: [1765, 1785, 1786] +Triangle: [1763, 1784, 1785] +Triangle: [1759, 1784, 1761] +Triangle: [1757, 1783, 1759] +Triangle: [1757, 1781, 1782] +Triangle: [1755, 1780, 1781] +Triangle: [1751, 1780, 1753] +Triangle: [1749, 1779, 1751] +Triangle: [1746, 1743, 1742] +Triangle: [1745, 1792, 1746] +Triangle: [1750, 1792, 1748] +Triangle: [1793, 1750, 1752] +Triangle: [1795, 1752, 1754] +Triangle: [1796, 1754, 1756] +Triangle: [1758, 1796, 1756] +Triangle: [1760, 1797, 1758] +Triangle: [1799, 1760, 1762] +Triangle: [1806, 1814, 1815] +Triangle: [1807, 1816, 1814] +Triangle: [1800, 1817, 1818] +Triangle: [1808, 1819, 1816] +Triangle: [1817, 1802, 1820] +Triangle: [1809, 1821, 1819] +Triangle: [1820, 1803, 1822] +Triangle: [1821, 1811, 1823] +Triangle: [1822, 1804, 1824] +Triangle: [1823, 1812, 1825] +Triangle: [1824, 1805, 1826] +Triangle: [1812, 1827, 1825] +Triangle: [1826, 1806, 1815] +Triangle: [1833, 1818, 1834] +Triangle: [1834, 1778, 1832] +Triangle: [1783, 1815, 1784] +Triangle: [1825, 1791, 1790] +Triangle: [1782, 1826, 1783] +Triangle: [1789, 1825, 1790] +Triangle: [1781, 1824, 1782] +Triangle: [1788, 1823, 1789] +Triangle: [1780, 1822, 1781] +Triangle: [1819, 1788, 1787] +Triangle: [1779, 1820, 1780] +Triangle: [1816, 1787, 1786] +Triangle: [1818, 1779, 1778] +Triangle: [1814, 1786, 1785] +Triangle: [1815, 1785, 1784] +Triangle: [1791, 1834, 1832] +Triangle: [1827, 1833, 1834] +Triangle: [1791, 1831, 1775] +Triangle: [1775, 1830, 1774] +Triangle: [1829, 1738, 1713] +Triangle: [1776, 1828, 1704] +Triangle: [452, 1828, 619] +Triangle: [1631, 1691, 1632] +Triangle: [1792, 1744, 1746] +Triangle: [1836, 1692, 1744] +Triangle: [1835, 1691, 1692] +Triangle: [1839, 1835, 1836] +Triangle: [1837, 1840, 1838] +Triangle: [1634, 1835, 1837] +Triangle: [1633, 1837, 1838] +Triangle: [1793, 1841, 1794] +Triangle: [1841, 1839, 1836] +Triangle: [1797, 1843, 1796] +Triangle: [1627, 1838, 1846] +Triangle: [1846, 1670, 1627] +Triangle: [1845, 1657, 1670] +Triangle: [1848, 1838, 1840] +Triangle: [1848, 1845, 1846] +Triangle: [1674, 1847, 1658] +Triangle: [1842, 1848, 1840] +Triangle: [1848, 1850, 1847] +Triangle: [1849, 1847, 1850] +Triangle: [1615, 1849, 1614] +Triangle: [1623, 1852, 1612] +Triangle: [1849, 1852, 1614] +Triangle: [1613, 1852, 1853] +Triangle: [1583, 1853, 1854] +Triangle: [1582, 1854, 1855] +Triangle: [1850, 1853, 1849] +Triangle: [1855, 1850, 1851] +Triangle: [1843, 1851, 1842] +Triangle: [1844, 1855, 1843] +Triangle: [1582, 1856, 1575] +Triangle: [1575, 1858, 1584] +Triangle: [1856, 1857, 1858] +Triangle: [1798, 1844, 1797] +Triangle: [1584, 1860, 1585] +Triangle: [1858, 1859, 1860] +Triangle: [1799, 1857, 1798] +Triangle: [1585, 1862, 1609] +Triangle: [1860, 1861, 1862] +Triangle: [1863, 1859, 1799] +Triangle: [1863, 1762, 1764] +Triangle: [1867, 453, 455] +Triangle: [1867, 1777, 1705] +Triangle: [1772, 1866, 1770] +Triangle: [1770, 1865, 1766] +Triangle: [1865, 1768, 1766] +Triangle: [1864, 1764, 1768] +Triangle: [1863, 1871, 1861] +Triangle: [1864, 1870, 1871] +Triangle: [1865, 1869, 1870] +Triangle: [1867, 1869, 1866] +Triangle: [1868, 455, 454] +Triangle: [454, 1872, 1868] +Triangle: [1609, 1876, 1608] +Triangle: [1862, 1877, 1876] +Triangle: [1871, 1877, 1861] +Triangle: [1870, 1875, 1871] +Triangle: [1870, 1873, 1874] +Triangle: [1869, 1872, 1873] +Triangle: [1880, 1876, 1877] +Triangle: [1882, 1880, 1883] +Triangle: [673, 1881, 676] +Triangle: [1879, 1883, 1881] +Triangle: [1608, 1878, 1610] +Triangle: [1889, 1611, 1607] +Triangle: [1601, 1888, 1605] +Triangle: [1888, 1607, 1605] +Triangle: [298, 1885, 683] +Triangle: [1603, 1884, 1602] +Triangle: [1600, 1887, 1603] +Triangle: [1597, 1884, 1598] +Triangle: [1882, 1610, 1878] +Triangle: [1890, 1879, 1611] +Triangle: [369, 1879, 673] +Triangle: [1875, 1893, 1894] +Triangle: [1874, 1892, 1893] +Triangle: [1891, 664, 688] +Triangle: [1873, 1891, 1892] +Triangle: [1894, 1877, 1875] +Triangle: [1894, 1883, 1880] +Triangle: [1893, 1881, 1883] +Triangle: [1895, 1892, 1891] +Triangle: [693, 1891, 688] +Triangle: [676, 1895, 693] +Triangle: [1841, 1792, 1794] +Triangle: [358, 1602, 695] +Triangle: [695, 1601, 351] +Triangle: [210, 1897, 1480] +Triangle: [1903, 1911, 1910] +Triangle: [1898, 1326, 1899] +Triangle: [1900, 1316, 1901] +Triangle: [1901, 1325, 1898] +Triangle: [1902, 1910, 1909] +Triangle: [1899, 1909, 1908] +Triangle: [1324, 1900, 1905] +Triangle: [1907, 1899, 1908] +Triangle: [1905, 1901, 1906] +Triangle: [1906, 1898, 1907] +Triangle: [1910, 2427, 2426] +Triangle: [1909, 2426, 2419] +Triangle: [1908, 2419, 2425] +Triangle: [1911, 2421, 2427] +Triangle: [1904, 1318, 1911] +Triangle: [1924, 1321, 1320] +Triangle: [1923, 1320, 1319] +Triangle: [1922, 1319, 1318] +Triangle: [1317, 1922, 1318] +Triangle: [1317, 1920, 1921] +Triangle: [1315, 1920, 1314] +Triangle: [1326, 1919, 1315] +Triangle: [1325, 1918, 1326] +Triangle: [1316, 1917, 1325] +Triangle: [1367, 1912, 1916] +Triangle: [1323, 1915, 1324] +Triangle: [1324, 1913, 1322] +Triangle: [1322, 1914, 1316] +Triangle: [1932, 262, 732] +Triangle: [1933, 1522, 1932] +Triangle: [1931, 1521, 1933] +Triangle: [1930, 1520, 1931] +Triangle: [1929, 1519, 1930] +Triangle: [1929, 1515, 1516] +Triangle: [1928, 1517, 1515] +Triangle: [1927, 1514, 1517] +Triangle: [1926, 1518, 1514] +Triangle: [1925, 257, 1518] +Triangle: [5227, 732, 5217] +Triangle: [5207, 1941, 5208] +Triangle: [1931, 5228, 5229] +Triangle: [5229, 1930, 1931] +Triangle: [5225, 1930, 5226] +Triangle: [5224, 1929, 5225] +Triangle: [5223, 1928, 5224] +Triangle: [5222, 1927, 5223] +Triangle: [5222, 1925, 1926] +Triangle: [724, 5221, 5220] +Triangle: [2375, 1944, 2379] +Triangle: [2377, 1957, 2383] +Triangle: [1967, 2315, 2318] +Triangle: [1982, 1976, 1981] +Triangle: [1970, 1988, 1987] +Triangle: [1981, 1977, 1980] +Triangle: [2281, 1948, 2284] +Triangle: [1959, 2384, 2380] +Triangle: [1997, 2381, 2382] +Triangle: [2001, 2287, 2285] +Triangle: [1993, 1973, 1984] +Triangle: [2374, 1963, 2385] +Triangle: [1943, 2382, 2376] +Triangle: [2278, 1947, 2281] +Triangle: [2195, 1006, 1007] +Triangle: [2088, 1983, 2084] +Triangle: [1983, 1975, 1982] +Triangle: [2002, 2034, 2033] +Triangle: [2090, 1980, 2087] +Triangle: [1985, 2085, 2093] +Triangle: [2084, 1982, 2089] +Triangle: [2329, 1964, 2321] +Triangle: [1989, 2091, 2096] +Triangle: [1992, 1964, 1993] +Triangle: [1980, 1978, 1979] +Triangle: [1986, 2093, 2092] +Triangle: [1990, 2094, 2091] +Triangle: [1979, 2092, 2083] +Triangle: [1991, 2082, 2094] +Triangle: [1985, 1970, 1987] +Triangle: [2082, 1993, 2086] +Triangle: [1968, 1990, 1989] +Triangle: [1987, 2095, 2085] +Triangle: [1979, 1971, 1986] +Triangle: [2089, 1981, 2090] +Triangle: [1966, 1992, 1991] +Triangle: [1986, 1972, 1985] +Triangle: [1984, 1974, 1983] +Triangle: [1980, 2083, 2087] +Triangle: [1967, 1991, 1990] +Triangle: [2086, 1984, 2088] +Triangle: [2275, 1999, 2283] +Triangle: [1955, 2282, 2286] +Triangle: [1952, 2279, 2280] +Triangle: [1954, 2289, 2282] +Triangle: [1953, 2280, 2289] +Triangle: [2385, 1995, 2378] +Triangle: [1958, 2380, 2386] +Triangle: [1960, 2387, 2384] +Triangle: [2000, 2285, 2277] +Triangle: [1945, 2276, 2287] +Triangle: [2283, 2000, 2277] +Triangle: [2288, 1949, 2278] +Triangle: [1944, 2376, 2379] +Triangle: [2002, 2005, 2004] +Triangle: [2003, 2006, 2007] +Triangle: [2065, 2007, 2055] +Triangle: [2010, 2066, 2013] +Triangle: [2003, 2010, 2008] +Triangle: [2003, 2009, 2005] +Triangle: [2013, 2064, 2015] +Triangle: [2010, 2011, 2008] +Triangle: [2009, 2011, 2012] +Triangle: [2011, 2014, 2012] +Triangle: [2015, 2014, 2013] +Triangle: [2059, 2019, 2052] +Triangle: [2019, 2058, 2052] +Triangle: [2068, 2061, 2054] +Triangle: [2030, 2016, 2017] +Triangle: [2017, 2063, 2058] +Triangle: [2032, 2017, 2019] +Triangle: [2004, 2021, 2020] +Triangle: [2023, 2020, 2021] +Triangle: [2023, 2094, 2082] +Triangle: [2025, 2091, 2094] +Triangle: [2021, 2025, 2023] +Triangle: [2005, 2024, 2021] +Triangle: [2027, 2096, 2091] +Triangle: [2024, 2027, 2025] +Triangle: [2009, 2026, 2024] +Triangle: [2014, 2026, 2012] +Triangle: [831, 817, 830] +Triangle: [2032, 2092, 2093] +Triangle: [2030, 2093, 2085] +Triangle: [2004, 2044, 2034] +Triangle: [2029, 2085, 2095] +Triangle: [2002, 2035, 2006] +Triangle: [2020, 2045, 2044] +Triangle: [2035, 2062, 2054] +Triangle: [2038, 2060, 2062] +Triangle: [2036, 2035, 2033] +Triangle: [2034, 2036, 2033] +Triangle: [2039, 2036, 2037] +Triangle: [2040, 2038, 2039] +Triangle: [2060, 2041, 2057] +Triangle: [2018, 2032, 2019] +Triangle: [2049, 2040, 2048] +Triangle: [2018, 2053, 2043] +Triangle: [2056, 2043, 2053] +Triangle: [2041, 2050, 2042] +Triangle: [2041, 2056, 2057] +Triangle: [2043, 2050, 2051] +Triangle: [2006, 2054, 2061] +Triangle: [2022, 2088, 2045] +Triangle: [2084, 2045, 2088] +Triangle: [2047, 2089, 2048] +Triangle: [2045, 2046, 2044] +Triangle: [2034, 2046, 2037] +Triangle: [2046, 2039, 2037] +Triangle: [2048, 2039, 2047] +Triangle: [2090, 2048, 2089] +Triangle: [2031, 2083, 2092] +Triangle: [2051, 2087, 2083] +Triangle: [2007, 2061, 2055] +Triangle: [2049, 2087, 2050] +Triangle: [2048, 2040, 2039] +Triangle: [2378, 1994, 2377] +Triangle: [2383, 1956, 2375] +Triangle: [2059, 2067, 2053] +Triangle: [2286, 1946, 1955] +Triangle: [2063, 2070, 2058] +Triangle: [2056, 2069, 2057] +Triangle: [2079, 2054, 2062] +Triangle: [2057, 2077, 2060] +Triangle: [2065, 2072, 2066] +Triangle: [2055, 2081, 2065] +Triangle: [2066, 2071, 2064] +Triangle: [2078, 2055, 2061] +Triangle: [2053, 2075, 2056] +Triangle: [2070, 2052, 2058] +Triangle: [2077, 2062, 2060] +Triangle: [2052, 2076, 2059] +Triangle: [2106, 2203, 2223] +Triangle: [2320, 2234, 2326] +Triangle: [2321, 2227, 2236] +Triangle: [2327, 2239, 2238] +Triangle: [2322, 2230, 2317] +Triangle: [2323, 2229, 2239] +Triangle: [2326, 2233, 2319] +Triangle: [2328, 2238, 2240] +Triangle: [2316, 2227, 2324] +Triangle: [2318, 2228, 2316] +Triangle: [2328, 2235, 2320] +Triangle: [2325, 2230, 2229] +Triangle: [2292, 2227, 2228] +Triangle: [2296, 2229, 2230] +Triangle: [2231, 2292, 2228] +Triangle: [2029, 2015, 2016] +Triangle: [2235, 2302, 2234] +Triangle: [2276, 2078, 2068] +Triangle: [2303, 2236, 2227] +Triangle: [2291, 2230, 2237] +Triangle: [2298, 2238, 2239] +Triangle: [2229, 2298, 2239] +Triangle: [2337, 2233, 2234] +Triangle: [2299, 2240, 2238] +Triangle: [2232, 2293, 2231] +Triangle: [2240, 2301, 2235] +Triangle: [917, 1944, 1956] +Triangle: [916, 1943, 1944] +Triangle: [920, 1956, 2112] +Triangle: [2112, 1957, 2113] +Triangle: [920, 2113, 921] +Triangle: [2232, 2319, 2233] +Triangle: [2161, 2250, 2114] +Triangle: [2170, 2120, 2115] +Triangle: [2206, 2190, 2173] +Triangle: [2122, 2252, 2120] +Triangle: [2124, 2253, 2122] +Triangle: [2126, 2255, 2214] +Triangle: [2178, 2330, 2246] +Triangle: [2130, 2258, 2128] +Triangle: [2244, 2142, 2243] +Triangle: [2183, 2140, 2138] +Triangle: [2134, 2260, 2132] +Triangle: [2136, 2261, 2134] +Triangle: [2138, 2262, 2136] +Triangle: [2138, 2264, 2263] +Triangle: [2243, 2266, 2265] +Triangle: [2144, 2267, 2225] +Triangle: [2142, 2269, 2266] +Triangle: [2148, 2268, 2144] +Triangle: [2150, 2270, 2148] +Triangle: [2150, 2272, 2271] +Triangle: [2152, 2273, 2272] +Triangle: [2168, 2156, 2154] +Triangle: [2250, 2156, 2114] +Triangle: [2169, 2166, 2118] +Triangle: [2115, 2249, 2161] +Triangle: [1950, 2388, 2374] +Triangle: [2163, 2142, 2160] +Triangle: [2130, 2260, 2259] +Triangle: [2183, 2136, 2182] +Triangle: [2182, 2134, 2181] +Triangle: [2181, 2132, 2180] +Triangle: [2130, 2180, 2132] +Triangle: [2128, 2178, 2333] +Triangle: [2147, 2226, 2225] +Triangle: [2124, 2216, 2214] +Triangle: [2122, 2176, 2124] +Triangle: [2122, 2174, 2175] +Triangle: [2190, 2172, 2173] +Triangle: [2274, 2154, 2156] +Triangle: [2115, 2171, 2170] +Triangle: [2114, 2171, 2161] +Triangle: [2114, 2172, 2185] +Triangle: [2173, 2168, 2119] +Triangle: [2167, 2119, 2168] +Triangle: [2154, 2167, 2168] +Triangle: [2152, 2166, 2167] +Triangle: [2150, 2165, 2166] +Triangle: [2144, 2165, 2148] +Triangle: [2099, 2186, 2098] +Triangle: [2189, 2159, 2158] +Triangle: [2191, 2197, 2198] +Triangle: [2171, 2190, 2191] +Triangle: [2217, 2193, 2218] +Triangle: [2308, 915, 1006] +Triangle: [2288, 1951, 1950] +Triangle: [2288, 2071, 2279] +Triangle: [2080, 2064, 2071] +Triangle: [2388, 1961, 2196] +Triangle: [2063, 2015, 2064] +Triangle: [2028, 2095, 2096] +Triangle: [2284, 1998, 2275] +Triangle: [2043, 2031, 2018] +Triangle: [2086, 2023, 2082] +Triangle: [2189, 2197, 2188] +Triangle: [2100, 2187, 2099] +Triangle: [2219, 2194, 2217] +Triangle: [2158, 2200, 2189] +Triangle: [2199, 2189, 2200] +Triangle: [2197, 2205, 2188] +Triangle: [2159, 2204, 2193] +Triangle: [2218, 2295, 2309] +Triangle: [2097, 2186, 2203] +Triangle: [2192, 2198, 2199] +Triangle: [2207, 2199, 2200] +Triangle: [2212, 2200, 2210] +Triangle: [2221, 2201, 2219] +Triangle: [2170, 2191, 2192] +Triangle: [2251, 2120, 2252] +Triangle: [2206, 2119, 2205] +Triangle: [2208, 2210, 2201] +Triangle: [2188, 2211, 2159] +Triangle: [2201, 2158, 2194] +Triangle: [2194, 2159, 2193] +Triangle: [2205, 2169, 2211] +Triangle: [2118, 2211, 2169] +Triangle: [2174, 2192, 2207] +Triangle: [2174, 2212, 2175] +Triangle: [2175, 2208, 2176] +Triangle: [2176, 2221, 2216] +Triangle: [2310, 2209, 2177] +Triangle: [2209, 2311, 2202] +Triangle: [2193, 2220, 2218] +Triangle: [2202, 2312, 2187] +Triangle: [2187, 2309, 2186] +Triangle: [2314, 2177, 2126] +Triangle: [2214, 2254, 2124] +Triangle: [2213, 2204, 2118] +Triangle: [2165, 2118, 2166] +Triangle: [2222, 2220, 2213] +Triangle: [2164, 2213, 2165] +Triangle: [2241, 2294, 2290] +Triangle: [2225, 2164, 2144] +Triangle: [2225, 2269, 2147] +Triangle: [2226, 2222, 2164] +Triangle: [2223, 2163, 2106] +Triangle: [2290, 2237, 2241] +Triangle: [2104, 2180, 2105] +Triangle: [2180, 2103, 2105] +Triangle: [2101, 2202, 2100] +Triangle: [2128, 2257, 2330] +Triangle: [2179, 2334, 2103] +Triangle: [2096, 1988, 1989] +Triangle: [2248, 2101, 2305] +Triangle: [2106, 2160, 2107] +Triangle: [2182, 2104, 2111] +Triangle: [2183, 2111, 2110] +Triangle: [2140, 2265, 2264] +Triangle: [2184, 2243, 2140] +Triangle: [2108, 2160, 2244] +Triangle: [2109, 2244, 2184] +Triangle: [2184, 2110, 2109] +Triangle: [2330, 2256, 2126] +Triangle: [2246, 2126, 2177] +Triangle: [2135, 2139, 2133] +Triangle: [2116, 2249, 2162] +Triangle: [2251, 2121, 2117] +Triangle: [2252, 2123, 2121] +Triangle: [2253, 2125, 2123] +Triangle: [2255, 2127, 2215] +Triangle: [2257, 2129, 2245] +Triangle: [2258, 2131, 2129] +Triangle: [2259, 2133, 2131] +Triangle: [2260, 2135, 2133] +Triangle: [2135, 2262, 2137] +Triangle: [2137, 2263, 2139] +Triangle: [2263, 2141, 2139] +Triangle: [2265, 2143, 2242] +Triangle: [2224, 2268, 2145] +Triangle: [2266, 2146, 2143] +Triangle: [2145, 2270, 2149] +Triangle: [2149, 2271, 2151] +Triangle: [2151, 2272, 2153] +Triangle: [2153, 2273, 2155] +Triangle: [2274, 2116, 2157] +Triangle: [2273, 2157, 2155] +Triangle: [2249, 2117, 2162] +Triangle: [2254, 2215, 2125] +Triangle: [2146, 2267, 2224] +Triangle: [2264, 2242, 2141] +Triangle: [2256, 2245, 2127] +Triangle: [2131, 2139, 2141] +Triangle: [2129, 2141, 2242] +Triangle: [2245, 2242, 2143] +Triangle: [2146, 2245, 2143] +Triangle: [2127, 2224, 2215] +Triangle: [2145, 2215, 2224] +Triangle: [2125, 2149, 2123] +Triangle: [2123, 2151, 2121] +Triangle: [2121, 2153, 2117] +Triangle: [2155, 2117, 2153] +Triangle: [2162, 2157, 2116] +Triangle: [2076, 2275, 2067] +Triangle: [2290, 2097, 2106] +Triangle: [2080, 2278, 2070] +Triangle: [2075, 2277, 2069] +Triangle: [2287, 2068, 2079] +Triangle: [2277, 2077, 2069] +Triangle: [2081, 2280, 2072] +Triangle: [2282, 2081, 2074] +Triangle: [2072, 2279, 2071] +Triangle: [2286, 2074, 2078] +Triangle: [2067, 2283, 2075] +Triangle: [2315, 1969, 2319] +Triangle: [2278, 2073, 2070] +Triangle: [2285, 2079, 2077] +Triangle: [2073, 2284, 2076] +Triangle: [2329, 2237, 2322] +Triangle: [2302, 2334, 2332] +Triangle: [2105, 2302, 2301] +Triangle: [2104, 2301, 2300] +Triangle: [2299, 2104, 2300] +Triangle: [2298, 2111, 2299] +Triangle: [2297, 2110, 2298] +Triangle: [2296, 2109, 2297] +Triangle: [2296, 2107, 2108] +Triangle: [2291, 2106, 2107] +Triangle: [2203, 2222, 2223] +Triangle: [2098, 2294, 2303] +Triangle: [2099, 2303, 2292] +Triangle: [2293, 2099, 2292] +Triangle: [2305, 2100, 2293] +Triangle: [2304, 2247, 2248] +Triangle: [1007, 2307, 2195] +Triangle: [2306, 1124, 1125] +Triangle: [2331, 2177, 2209] +Triangle: [2247, 2209, 2101] +Triangle: [1996, 2386, 2381] +Triangle: [2214, 2314, 2126] +Triangle: [2311, 2217, 2312] +Triangle: [2312, 2218, 2309] +Triangle: [2310, 2221, 2313] +Triangle: [2295, 2186, 2309] +Triangle: [2216, 2314, 2214] +Triangle: [2313, 2219, 2311] +Triangle: [1973, 2322, 1974] +Triangle: [2233, 2336, 2232] +Triangle: [1975, 2325, 1976] +Triangle: [1971, 2320, 1972] +Triangle: [1966, 2318, 2316] +Triangle: [1965, 2316, 2324] +Triangle: [1978, 2328, 1971] +Triangle: [2326, 1969, 1970] +Triangle: [1976, 2323, 1977] +Triangle: [1974, 2317, 1975] +Triangle: [1978, 2323, 2327] +Triangle: [1964, 2324, 2321] +Triangle: [1972, 2326, 1970] +Triangle: [2329, 2236, 2241] +Triangle: [2231, 2315, 2232] +Triangle: [1989, 1969, 1968] +Triangle: [2302, 2337, 2234] +Triangle: [2102, 2332, 2334] +Triangle: [2335, 2248, 2336] +Triangle: [2304, 2337, 2332] +Triangle: [2178, 2334, 2333] +Triangle: [2305, 2336, 2248] +Triangle: [2102, 2331, 2247] +Triangle: [2178, 2246, 2331] +Triangle: [2348, 2346, 2349] +Triangle: [2348, 1009, 922] +Triangle: [2345, 2371, 2346] +Triangle: [2351, 2345, 2344] +Triangle: [2352, 921, 2113] +Triangle: [1170, 2348, 922] +Triangle: [2347, 2352, 2353] +Triangle: [2353, 2113, 1957] +Triangle: [2354, 2347, 2353] +Triangle: [1994, 2353, 1957] +Triangle: [2346, 2355, 2345] +Triangle: [2356, 2345, 2355] +Triangle: [1995, 2354, 1994] +Triangle: [1963, 2355, 1995] +Triangle: [2344, 2357, 2343] +Triangle: [2342, 2357, 2358] +Triangle: [2341, 2358, 2359] +Triangle: [2340, 2359, 2360] +Triangle: [2339, 2360, 2361] +Triangle: [2357, 1963, 1962] +Triangle: [2358, 1962, 2196] +Triangle: [2359, 2196, 1961] +Triangle: [2360, 1961, 1960] +Triangle: [2361, 1960, 1959] +Triangle: [2363, 2339, 2361] +Triangle: [2363, 1959, 1958] +Triangle: [2362, 2363, 2306] +Triangle: [2364, 2363, 1958] +Triangle: [1996, 2364, 1958] +Triangle: [2307, 2364, 2365] +Triangle: [2195, 2365, 2366] +Triangle: [2366, 1996, 1997] +Triangle: [2195, 2366, 2308] +Triangle: [1997, 2308, 2366] +Triangle: [2362, 1125, 973] +Triangle: [1186, 2362, 973] +Triangle: [1934, 1186, 745] +Triangle: [1935, 2338, 1934] +Triangle: [1936, 2339, 1935] +Triangle: [2341, 1936, 1937] +Triangle: [1938, 2341, 1937] +Triangle: [1939, 2342, 1938] +Triangle: [2367, 1939, 1942] +Triangle: [2367, 2344, 2343] +Triangle: [2368, 1942, 1941] +Triangle: [2369, 2367, 2368] +Triangle: [2350, 2369, 2370] +Triangle: [2349, 2371, 2372] +Triangle: [1009, 2372, 1010] +Triangle: [2350, 2372, 2371] +Triangle: [2368, 1940, 2373] +Triangle: [742, 2373, 1940] +Triangle: [2369, 2373, 2370] +Triangle: [923, 2370, 2373] +Triangle: [2372, 1105, 1010] +Triangle: [2381, 1955, 1946] +Triangle: [1951, 2387, 2388] +Triangle: [2374, 2196, 1962] +Triangle: [1998, 2375, 1999] +Triangle: [1947, 2377, 1948] +Triangle: [2379, 2001, 2000] +Triangle: [2384, 1952, 1953] +Triangle: [2386, 1954, 1955] +Triangle: [1949, 2378, 1947] +Triangle: [2376, 1945, 2001] +Triangle: [1950, 2385, 1949] +Triangle: [2382, 1946, 1945] +Triangle: [2380, 1953, 1954] +Triangle: [1948, 2383, 1998] +Triangle: [1999, 2379, 2000] +Triangle: [1338, 2390, 1329] +Triangle: [1336, 2394, 1334] +Triangle: [1331, 2396, 2397] +Triangle: [1332, 2395, 2396] +Triangle: [1339, 2400, 2401] +Triangle: [1333, 2394, 2395] +Triangle: [1338, 2401, 2389] +Triangle: [1330, 2397, 2398] +Triangle: [1335, 2392, 1337] +Triangle: [1330, 2399, 1327] +Triangle: [1337, 2393, 1336] +Triangle: [1328, 2399, 2400] +Triangle: [1329, 2391, 1335] +Triangle: [2407, 1364, 1358] +Triangle: [2406, 1358, 1357] +Triangle: [2458, 1365, 2455] +Triangle: [1353, 2459, 2457] +Triangle: [2414, 1360, 1365] +Triangle: [2460, 1363, 1364] +Triangle: [1355, 2411, 1362] +Triangle: [1363, 2463, 1361] +Triangle: [1362, 2408, 1359] +Triangle: [1361, 2405, 1356] +Triangle: [1354, 2404, 1355] +Triangle: [2409, 1354, 1360] +Triangle: [2408, 1353, 1359] +Triangle: [2427, 2449, 2453] +Triangle: [2425, 2444, 2451] +Triangle: [2419, 2452, 2444] +Triangle: [2426, 2453, 2452] +Triangle: [2449, 2423, 2446] +Triangle: [2446, 2422, 2445] +Triangle: [2422, 2441, 2445] +Triangle: [2450, 2425, 2451] +Triangle: [2448, 2418, 2443] +Triangle: [2415, 2448, 2447] +Triangle: [2443, 2417, 2442] +Triangle: [2442, 2424, 2450] +Triangle: [2416, 2447, 2441] +Triangle: [2428, 1340, 1341] +Triangle: [1343, 2436, 1342] +Triangle: [1342, 2437, 1344] +Triangle: [2464, 1345, 1346] +Triangle: [1347, 2428, 1341] +Triangle: [2465, 1346, 1348] +Triangle: [1344, 2431, 1347] +Triangle: [2466, 1348, 1349] +Triangle: [2434, 1343, 1350] +Triangle: [2435, 1351, 1340] +Triangle: [2454, 1350, 1345] +Triangle: [1351, 2440, 1352] +Triangle: [1352, 2466, 1349] +Triangle: [1308, 2447, 1310] +Triangle: [1303, 2450, 1312] +Triangle: [1309, 2442, 1303] +Triangle: [2447, 1311, 1310] +Triangle: [2448, 1309, 1311] +Triangle: [1312, 2451, 1313] +Triangle: [2445, 1308, 1307] +Triangle: [2446, 1307, 1306] +Triangle: [2449, 1306, 1305] +Triangle: [1301, 2453, 1304] +Triangle: [1302, 2452, 1301] +Triangle: [1313, 2444, 1302] +Triangle: [2453, 1305, 1304] +Triangle: [2455, 2438, 1356] +Triangle: [2439, 2457, 1357] +Triangle: [2405, 2455, 1356] +Triangle: [2457, 2406, 1357] +Triangle: [2461, 2460, 2407] +Triangle: [2459, 2407, 2406] +Triangle: [2460, 2412, 2462] +Triangle: [2462, 2410, 2463] +Triangle: [2463, 2458, 2405] +Triangle: [2454, 2430, 2438] +Triangle: [2464, 2432, 2430] +Triangle: [2465, 2433, 2432] +Triangle: [2440, 2439, 2467] +Triangle: [2433, 2440, 2467] +Triangle: [2515, 2514, 2513] +Triangle: [2511, 2809, 2496] +Triangle: [2559, 2538, 2564] +Triangle: [2560, 2536, 2565] +Triangle: [2566, 2541, 2561] +Triangle: [2559, 2540, 2539] +Triangle: [2566, 2536, 2535] +Triangle: [2560, 2538, 2537] +Triangle: [2563, 2540, 2562] +Triangle: [2561, 2542, 2563] +Triangle: [2543, 2538, 2539] +Triangle: [2533, 2551, 2534] +Triangle: [2534, 2550, 2532] +Triangle: [2536, 2543, 2535] +Triangle: [2542, 2539, 2540] +Triangle: [2541, 2543, 2542] +Triangle: [2530, 2546, 2529] +Triangle: [2470, 2547, 2549] +Triangle: [2532, 2544, 2531] +Triangle: [2549, 2533, 2470] +Triangle: [2528, 2546, 2547] +Triangle: [2531, 2545, 2530] +Triangle: [2521, 2529, 2528] +Triangle: [2523, 2529, 2522] +Triangle: [2524, 2530, 2523] +Triangle: [2525, 2531, 2524] +Triangle: [2525, 2534, 2532] +Triangle: [2526, 2534, 2527] +Triangle: [2526, 2470, 2533] +Triangle: [2521, 2470, 2519] +Triangle: [2522, 2552, 2553] +Triangle: [2524, 2556, 2525] +Triangle: [2522, 2554, 2523] +Triangle: [2527, 2556, 2558] +Triangle: [2527, 2557, 2526] +Triangle: [2524, 2554, 2555] +Triangle: [2519, 2557, 2517] +Triangle: [2552, 2519, 2517] +Triangle: [2548, 2563, 2551] +Triangle: [2551, 2562, 2550] +Triangle: [2546, 2564, 2560] +Triangle: [2549, 2565, 2566] +Triangle: [2544, 2562, 2559] +Triangle: [2549, 2561, 2548] +Triangle: [2547, 2560, 2565] +Triangle: [2545, 2559, 2564] +Triangle: [2567, 2517, 2557] +Triangle: [2569, 2517, 2520] +Triangle: [2552, 2571, 2553] +Triangle: [2553, 2572, 2554] +Triangle: [2554, 2574, 2555] +Triangle: [2555, 2575, 2556] +Triangle: [2558, 2575, 2576] +Triangle: [2567, 2558, 2576] +Triangle: [2520, 2585, 2569] +Triangle: [2494, 2520, 2567] +Triangle: [2567, 2590, 2494] +Triangle: [2576, 2589, 2590] +Triangle: [2574, 2589, 2575] +Triangle: [2572, 2588, 2574] +Triangle: [2586, 2572, 2571] +Triangle: [2569, 2586, 2571] +Triangle: [2568, 2586, 2585] +Triangle: [2480, 2570, 2568] +Triangle: [2586, 2573, 2587] +Triangle: [2516, 2570, 2514] +Triangle: [2581, 2598, 2582] +Triangle: [2597, 2600, 2598] +Triangle: [2646, 2625, 2651] +Triangle: [2647, 2623, 2652] +Triangle: [2653, 2628, 2648] +Triangle: [2646, 2627, 2626] +Triangle: [2653, 2623, 2622] +Triangle: [2647, 2625, 2624] +Triangle: [2650, 2627, 2649] +Triangle: [2648, 2629, 2650] +Triangle: [2630, 2625, 2626] +Triangle: [2620, 2638, 2621] +Triangle: [2621, 2637, 2619] +Triangle: [2623, 2630, 2622] +Triangle: [2629, 2626, 2627] +Triangle: [2628, 2630, 2629] +Triangle: [2617, 2633, 2616] +Triangle: [2604, 2634, 2636] +Triangle: [2618, 2637, 2631] +Triangle: [2604, 2635, 2620] +Triangle: [2615, 2633, 2634] +Triangle: [2618, 2632, 2617] +Triangle: [2609, 2615, 2608] +Triangle: [2610, 2616, 2609] +Triangle: [2611, 2617, 2610] +Triangle: [2612, 2618, 2611] +Triangle: [2612, 2621, 2619] +Triangle: [2614, 2620, 2621] +Triangle: [2613, 2604, 2620] +Triangle: [2608, 2604, 2606] +Triangle: [2608, 2640, 2609] +Triangle: [2612, 2642, 2643] +Triangle: [2609, 2641, 2610] +Triangle: [2614, 2643, 2645] +Triangle: [2613, 2645, 2644] +Triangle: [2611, 2641, 2642] +Triangle: [2606, 2644, 2605] +Triangle: [2639, 2606, 2605] +Triangle: [2635, 2650, 2638] +Triangle: [2638, 2649, 2637] +Triangle: [2633, 2651, 2647] +Triangle: [2636, 2652, 2653] +Triangle: [2631, 2649, 2646] +Triangle: [2636, 2648, 2635] +Triangle: [2634, 2647, 2652] +Triangle: [2632, 2646, 2651] +Triangle: [2708, 2806, 2714] +Triangle: [2793, 2605, 2791] +Triangle: [2655, 2791, 2607] +Triangle: [2798, 2655, 2583] +Triangle: [2794, 2583, 2657] +Triangle: [2794, 2658, 2795] +Triangle: [2796, 2658, 2659] +Triangle: [2792, 2645, 2797] +Triangle: [2700, 2679, 2705] +Triangle: [2701, 2677, 2706] +Triangle: [2707, 2682, 2702] +Triangle: [2700, 2681, 2680] +Triangle: [2707, 2677, 2676] +Triangle: [2701, 2679, 2678] +Triangle: [2704, 2681, 2703] +Triangle: [2702, 2683, 2704] +Triangle: [2684, 2679, 2680] +Triangle: [2675, 2689, 2692] +Triangle: [2675, 2691, 2673] +Triangle: [2676, 2678, 2684] +Triangle: [2683, 2680, 2681] +Triangle: [2682, 2684, 2683] +Triangle: [2671, 2687, 2670] +Triangle: [2473, 2688, 2690] +Triangle: [2673, 2685, 2672] +Triangle: [2690, 2674, 2473] +Triangle: [2670, 2688, 2669] +Triangle: [2672, 2686, 2671] +Triangle: [2663, 2669, 2662] +Triangle: [2664, 2670, 2663] +Triangle: [2665, 2671, 2664] +Triangle: [2665, 2673, 2672] +Triangle: [2666, 2675, 2673] +Triangle: [2668, 2674, 2675] +Triangle: [2667, 2473, 2674] +Triangle: [2662, 2473, 2468] +Triangle: [2662, 2694, 2663] +Triangle: [2666, 2696, 2697] +Triangle: [2663, 2695, 2664] +Triangle: [2668, 2697, 2699] +Triangle: [2667, 2699, 2698] +Triangle: [2665, 2695, 2696] +Triangle: [2468, 2698, 2471] +Triangle: [2693, 2468, 2471] +Triangle: [2689, 2704, 2692] +Triangle: [2692, 2703, 2691] +Triangle: [2686, 2701, 2687] +Triangle: [2690, 2706, 2707] +Triangle: [2685, 2703, 2700] +Triangle: [2690, 2702, 2689] +Triangle: [2688, 2701, 2706] +Triangle: [2685, 2705, 2686] +Triangle: [2768, 2602, 2603] +Triangle: [2801, 2471, 2799] +Triangle: [2709, 2799, 2661] +Triangle: [2801, 2710, 2802] +Triangle: [2802, 2711, 2803] +Triangle: [2803, 2712, 2804] +Triangle: [2805, 2712, 2713] +Triangle: [2800, 2699, 2806] +Triangle: [2756, 2735, 2761] +Triangle: [2757, 2733, 2762] +Triangle: [2763, 2738, 2758] +Triangle: [2756, 2737, 2736] +Triangle: [2763, 2733, 2732] +Triangle: [2757, 2735, 2734] +Triangle: [2760, 2737, 2759] +Triangle: [2758, 2739, 2760] +Triangle: [2734, 2736, 2740] +Triangle: [2730, 2748, 2731] +Triangle: [2729, 2748, 2747] +Triangle: [2733, 2740, 2732] +Triangle: [2739, 2736, 2737] +Triangle: [2739, 2732, 2740] +Triangle: [2727, 2743, 2726] +Triangle: [2725, 2746, 2717] +Triangle: [2729, 2741, 2728] +Triangle: [2717, 2745, 2730] +Triangle: [2726, 2744, 2725] +Triangle: [2728, 2742, 2727] +Triangle: [2719, 2725, 2718] +Triangle: [2720, 2726, 2719] +Triangle: [2721, 2727, 2720] +Triangle: [2721, 2729, 2728] +Triangle: [2722, 2731, 2729] +Triangle: [2724, 2730, 2731] +Triangle: [2723, 2717, 2730] +Triangle: [2718, 2717, 2715] +Triangle: [2718, 2750, 2719] +Triangle: [2722, 2752, 2753] +Triangle: [2719, 2751, 2720] +Triangle: [2724, 2753, 2755] +Triangle: [2723, 2755, 2754] +Triangle: [2720, 2752, 2721] +Triangle: [2715, 2754, 2716] +Triangle: [2749, 2715, 2716] +Triangle: [2745, 2760, 2748] +Triangle: [2747, 2760, 2759] +Triangle: [2743, 2761, 2757] +Triangle: [2746, 2762, 2763] +Triangle: [2741, 2759, 2756] +Triangle: [2746, 2758, 2745] +Triangle: [2743, 2762, 2744] +Triangle: [2742, 2756, 2761] +Triangle: [2809, 2716, 2807] +Triangle: [2495, 2807, 2808] +Triangle: [2496, 2807, 2497] +Triangle: [2810, 2511, 2782] +Triangle: [2812, 2817, 2813] +Triangle: [2817, 2814, 2813] +Triangle: [2754, 2814, 2808] +Triangle: [2582, 2580, 2579] +Triangle: [2582, 2583, 2655] +Triangle: [2657, 2598, 2600] +Triangle: [2494, 2597, 2581] +Triangle: [2578, 2582, 2579] +Triangle: [2581, 2577, 2494] +Triangle: [2577, 2518, 2494] +Triangle: [2518, 2568, 2585] +Triangle: [2580, 2607, 2764] +Triangle: [2656, 2607, 2654] +Triangle: [2481, 2568, 2584] +Triangle: [2584, 2479, 2481] +Triangle: [2472, 2483, 2484] +Triangle: [2480, 2477, 2478] +Triangle: [2504, 2578, 2579] +Triangle: [2475, 2505, 2506] +Triangle: [2502, 2577, 2578] +Triangle: [2503, 2483, 2469] +Triangle: [2504, 2580, 2483] +Triangle: [2503, 2502, 2504] +Triangle: [2483, 2764, 2484] +Triangle: [2488, 2486, 2490] +Triangle: [2477, 2479, 2476] +Triangle: [2484, 2656, 2482] +Triangle: [2601, 2597, 2590] +Triangle: [2589, 2601, 2590] +Triangle: [2588, 2594, 2589] +Triangle: [2591, 2587, 2573] +Triangle: [2599, 2772, 2600] +Triangle: [2772, 2657, 2600] +Triangle: [2601, 2771, 2599] +Triangle: [2771, 2767, 2772] +Triangle: [2776, 2777, 2775] +Triangle: [2773, 2780, 2774] +Triangle: [2774, 2777, 2711] +Triangle: [2659, 2779, 2773] +Triangle: [2779, 2777, 2780] +Triangle: [2784, 2785, 2783] +Triangle: [2785, 2782, 2781] +Triangle: [2815, 2785, 2781] +Triangle: [2496, 2512, 2511] +Triangle: [2485, 2507, 2489] +Triangle: [2482, 2765, 2505] +Triangle: [2505, 2766, 2507] +Triangle: [2796, 2660, 2797] +Triangle: [2792, 2607, 2791] +Triangle: [2806, 2713, 2714] +Triangle: [2708, 2799, 2800] +Triangle: [2816, 2808, 2814] +Triangle: [2811, 2820, 2812] +Triangle: [2513, 2480, 2478] +Triangle: [2509, 2487, 2488] +Triangle: [2479, 2501, 2476] +Triangle: [2485, 2490, 2486] +Triangle: [2511, 2510, 2509] +Triangle: [2506, 2507, 2508] +Triangle: [2497, 2491, 2496] +Triangle: [2492, 2495, 2493] +Triangle: [2816, 2493, 2495] +Triangle: [2788, 2490, 2489] +Triangle: [2507, 2788, 2489] +Triangle: [2661, 2788, 2709] +Triangle: [2766, 2709, 2788] +Triangle: [2789, 2490, 2787] +Triangle: [2708, 2787, 2661] +Triangle: [2488, 2790, 2509] +Triangle: [2714, 2789, 2708] +Triangle: [2644, 2791, 2605] +Triangle: [2640, 2793, 2798] +Triangle: [2641, 2798, 2794] +Triangle: [2641, 2795, 2642] +Triangle: [2643, 2795, 2796] +Triangle: [2645, 2796, 2797] +Triangle: [2698, 2799, 2471] +Triangle: [2694, 2801, 2802] +Triangle: [2694, 2803, 2695] +Triangle: [2696, 2803, 2804] +Triangle: [2697, 2804, 2805] +Triangle: [2697, 2806, 2699] +Triangle: [2808, 2716, 2754] +Triangle: [2749, 2810, 2750] +Triangle: [2750, 2811, 2751] +Triangle: [2751, 2812, 2752] +Triangle: [2753, 2812, 2813] +Triangle: [2755, 2813, 2814] +Triangle: [2781, 2790, 2815] +Triangle: [2815, 2714, 2713] +Triangle: [2781, 2511, 2509] +Triangle: [2817, 2818, 2816] +Triangle: [2819, 2820, 2821] +Triangle: [2770, 2775, 2769] +Triangle: [2654, 2797, 2660] +Triangle: [2769, 2659, 2658] +Triangle: [2657, 2769, 2658] +Triangle: [2770, 2767, 2768] +Triangle: [2826, 2778, 2827] +Triangle: [2822, 2766, 2765] +Triangle: [2825, 2822, 2824] +Triangle: [2656, 2822, 2765] +Triangle: [2774, 2824, 2773] +Triangle: [2654, 2824, 2822] +Triangle: [2773, 2660, 2659] +Triangle: [2710, 2774, 2711] +Triangle: [2823, 2710, 2709] +Triangle: [2712, 2777, 2826] +Triangle: [2783, 2826, 2827] +Triangle: [2713, 2826, 2785] +Triangle: [2593, 2516, 2515] +Triangle: [2810, 2786, 2811] +Triangle: [2836, 2472, 2498] +Triangle: [2830, 2476, 2501] +Triangle: [2831, 2469, 2836] +Triangle: [2498, 2475, 2837] +Triangle: [2831, 2501, 2503] +Triangle: [2477, 2829, 2474] +Triangle: [2508, 2832, 2506] +Triangle: [2838, 2486, 2499] +Triangle: [2485, 2833, 2508] +Triangle: [2832, 2475, 2506] +Triangle: [2512, 2834, 2510] +Triangle: [2840, 2492, 2500] +Triangle: [2491, 2835, 2512] +Triangle: [2834, 2487, 2510] +Triangle: [2499, 2487, 2839] +Triangle: [2500, 2493, 2844] +Triangle: [2818, 2844, 2493] +Triangle: [2828, 2513, 2478] +Triangle: [2835, 2839, 2834] +Triangle: [2838, 2832, 2833] +Triangle: [2836, 2830, 2831] +Triangle: [2513, 2842, 2515] +Triangle: [2819, 2845, 2818] +Triangle: [2592, 2573, 2516] +Triangle: [2596, 2592, 2593] +Triangle: [2595, 2591, 2592] +Triangle: [2603, 2595, 2596] +Triangle: [2602, 2594, 2595] +Triangle: [2811, 2784, 2843] +Triangle: [2482, 2472, 2484] +Triangle: [2821, 2846, 2819] +Triangle: [2868, 2596, 2593] +Triangle: [2852, 2853, 2854] +Triangle: [2, 2850, 2849] +Triangle: [10, 2850, 8] +Triangle: [9, 2851, 10] +Triangle: [2829, 2856, 2855] +Triangle: [2853, 7, 2857] +Triangle: [2858, 2853, 2857] +Triangle: [2859, 2857, 2860] +Triangle: [2862, 2860, 2861] +Triangle: [2863, 2861, 2864] +Triangle: [2863, 3018, 3019] +Triangle: [2865, 2868, 2867] +Triangle: [2868, 2515, 2842] +Triangle: [2867, 2842, 2869] +Triangle: [2870, 2842, 2841] +Triangle: [2841, 2874, 2875] +Triangle: [2875, 2870, 2841] +Triangle: [2891, 2872, 2890] +Triangle: [2872, 2877, 2873] +Triangle: [2854, 2878, 2852] +Triangle: [2894, 2879, 2895] +Triangle: [2474, 2874, 2828] +Triangle: [2829, 2881, 2474] +Triangle: [2882, 2836, 2498] +Triangle: [2837, 2882, 2498] +Triangle: [2838, 2883, 2837] +Triangle: [2499, 2886, 2885] +Triangle: [2885, 2838, 2499] +Triangle: [2840, 2886, 2839] +Triangle: [2500, 2887, 2840] +Triangle: [2478, 2474, 2828] +Triangle: [2871, 2891, 2890] +Triangle: [2875, 2848, 2891] +Triangle: [2889, 2891, 2848] +Triangle: [2877, 2894, 2895] +Triangle: [2889, 2894, 2876] +Triangle: [2881, 2848, 2874] +Triangle: [2889, 2892, 2893] +Triangle: [2855, 2892, 2881] +Triangle: [2892, 2898, 2893] +Triangle: [2878, 2893, 2898] +Triangle: [2852, 2898, 2899] +Triangle: [2899, 2851, 2852] +Triangle: [2897, 2898, 2896] +Triangle: [2899, 2849, 2850] +Triangle: [2856, 2883, 2884] +Triangle: [2884, 2900, 2856] +Triangle: [2900, 2855, 2856] +Triangle: [2849, 2903, 2902] +Triangle: [2902, 2905, 2904] +Triangle: [2897, 2900, 2903] +Triangle: [2901, 2903, 2900] +Triangle: [2902, 2, 2849] +Triangle: [11, 2904, 12] +Triangle: [2885, 2887, 2888] +Triangle: [2885, 2901, 2884] +Triangle: [2905, 2908, 2909] +Triangle: [2910, 2905, 2909] +Triangle: [2888, 2908, 2885] +Triangle: [2909, 2906, 2907] +Triangle: [2909, 2911, 2910] +Triangle: [12, 2910, 1] +Triangle: [0, 2910, 2911] +Triangle: [2844, 2888, 2500] +Triangle: [2888, 2917, 2906] +Triangle: [2906, 2918, 2907] +Triangle: [2907, 2919, 2911] +Triangle: [2911, 2920, 0] +Triangle: [3, 2920, 2921] +Triangle: [2922, 3, 2921] +Triangle: [2845, 2916, 2844] +Triangle: [2917, 2915, 2914] +Triangle: [2918, 2914, 2913] +Triangle: [2919, 2913, 2912] +Triangle: [2920, 2912, 2921] +Triangle: [2912, 2922, 2921] +Triangle: [2924, 2912, 2913] +Triangle: [2925, 2913, 2914] +Triangle: [2915, 2925, 2914] +Triangle: [2846, 2915, 2845] +Triangle: [2929, 2922, 2923] +Triangle: [2924, 2929, 2923] +Triangle: [2925, 2928, 2924] +Triangle: [2926, 2927, 2925] +Triangle: [2930, 2846, 2847] +Triangle: [4, 2931, 5] +Triangle: [5, 2932, 6] +Triangle: [6, 2857, 7] +Triangle: [2931, 2934, 2932] +Triangle: [2935, 2934, 2933] +Triangle: [2932, 2860, 2857] +Triangle: [2860, 2936, 2861] +Triangle: [2928, 2931, 2929] +Triangle: [2927, 2933, 2928] +Triangle: [2877, 2937, 2873] +Triangle: [2939, 2877, 2895] +Triangle: [2880, 2895, 2879] +Triangle: [2858, 2879, 2854] +Triangle: [2940, 2858, 2859] +Triangle: [2941, 2859, 2862] +Triangle: [2939, 2940, 2942] +Triangle: [2941, 2942, 2940] +Triangle: [2938, 2942, 2943] +Triangle: [2944, 2938, 2943] +Triangle: [2978, 2964, 2983] +Triangle: [2984, 2963, 2962] +Triangle: [2985, 2967, 2980] +Triangle: [2978, 2966, 2965] +Triangle: [2985, 2962, 2961] +Triangle: [2979, 2964, 2963] +Triangle: [2982, 2966, 2981] +Triangle: [2980, 2968, 2982] +Triangle: [2969, 2964, 2965] +Triangle: [2959, 2977, 2960] +Triangle: [2960, 2976, 2958] +Triangle: [2962, 2969, 2961] +Triangle: [2966, 2969, 2965] +Triangle: [2967, 2969, 2968] +Triangle: [2956, 2972, 2955] +Triangle: [2954, 2975, 2952] +Triangle: [2958, 2970, 2957] +Triangle: [2952, 2974, 2959] +Triangle: [2954, 2972, 2973] +Triangle: [2957, 2971, 2956] +Triangle: [2986, 2955, 2954] +Triangle: [2988, 2955, 2987] +Triangle: [2989, 2956, 2988] +Triangle: [2990, 2957, 2989] +Triangle: [2990, 2960, 2958] +Triangle: [2992, 2960, 2991] +Triangle: [2992, 2952, 2959] +Triangle: [2986, 2952, 2993] +Triangle: [2974, 2982, 2977] +Triangle: [2977, 2981, 2976] +Triangle: [2972, 2983, 2979] +Triangle: [2975, 2984, 2985] +Triangle: [2970, 2981, 2978] +Triangle: [2975, 2980, 2974] +Triangle: [2973, 2979, 2984] +Triangle: [2971, 2978, 2983] +Triangle: [2950, 2993, 2951] +Triangle: [2945, 2993, 2992] +Triangle: [2945, 2991, 2953] +Triangle: [2946, 2991, 2990] +Triangle: [2946, 2989, 2947] +Triangle: [2947, 2988, 2948] +Triangle: [2948, 2987, 2949] +Triangle: [2950, 2987, 2986] +Triangle: [2946, 3001, 2953] +Triangle: [2951, 2994, 3000] +Triangle: [2948, 2998, 2997] +Triangle: [2947, 2995, 2946] +Triangle: [2953, 2994, 2945] +Triangle: [2951, 2999, 2950] +Triangle: [2949, 2999, 2998] +Triangle: [2947, 2997, 2996] +Triangle: [2869, 3003, 2867] +Triangle: [3010, 2869, 2870] +Triangle: [2871, 3010, 2870] +Triangle: [3002, 3010, 3011] +Triangle: [2890, 3011, 2871] +Triangle: [3008, 3011, 3012] +Triangle: [2872, 3012, 2890] +Triangle: [3013, 3008, 3012] +Triangle: [3013, 2873, 2937] +Triangle: [2867, 3017, 2865] +Triangle: [3019, 2866, 2865] +Triangle: [3004, 3017, 3003] +Triangle: [3004, 3015, 3016] +Triangle: [3005, 3014, 3015] +Triangle: [3006, 3013, 3014] +Triangle: [3014, 2937, 2944] +Triangle: [3015, 2944, 3020] +Triangle: [3020, 2943, 2941] +Triangle: [3009, 2995, 3003] +Triangle: [3002, 3001, 3009] +Triangle: [3008, 2994, 3002] +Triangle: [3007, 3000, 3008] +Triangle: [3007, 2998, 2999] +Triangle: [3006, 2997, 2998] +Triangle: [3004, 2997, 3005] +Triangle: [3003, 2996, 3004] +Triangle: [3017, 3019, 2865] +Triangle: [3016, 3020, 3021] +Triangle: [3020, 2941, 3021] +Triangle: [3021, 2862, 2863] +Triangle: [3019, 3021, 2863] +Triangle: [2936, 2864, 2861] +Triangle: [2596, 3023, 2603] +Triangle: [3024, 2866, 3018] +Triangle: [3018, 3022, 3024] +Triangle: [3026, 3027, 3028] +Triangle: [3025, 3024, 3022] +Triangle: [2768, 3027, 2770] +Triangle: [3023, 3026, 3028] +Triangle: [2603, 3028, 2768] +Triangle: [2776, 3027, 3029] +Triangle: [2776, 3031, 2778] +Triangle: [3031, 2827, 2778] +Triangle: [3025, 3029, 3027] +Triangle: [3034, 3025, 3022] +Triangle: [3034, 3035, 3033] +Triangle: [3035, 2936, 2935] +Triangle: [2930, 2935, 2927] +Triangle: [3036, 3035, 2930] +Triangle: [3036, 2847, 3037] +Triangle: [2784, 3040, 2843] +Triangle: [2783, 3030, 3038] +Triangle: [2783, 3039, 2784] +Triangle: [2843, 2821, 2820] +Triangle: [2821, 3037, 2847] +Triangle: [3029, 3030, 3031] +Triangle: [3041, 3034, 3033] +Triangle: [3033, 3037, 3041] +Triangle: [3032, 3038, 3029] +Triangle: [3038, 3042, 3039] +Triangle: [3042, 3040, 3039] +Triangle: [3041, 3037, 3042] +Triangle: [3089, 3090, 3088] +Triangle: [3383, 3086, 3071] +Triangle: [3113, 3134, 3139] +Triangle: [3111, 3135, 3140] +Triangle: [3141, 3116, 3110] +Triangle: [3134, 3115, 3137] +Triangle: [3141, 3111, 3140] +Triangle: [3135, 3113, 3139] +Triangle: [3115, 3138, 3137] +Triangle: [3117, 3136, 3138] +Triangle: [3118, 3113, 3112] +Triangle: [3126, 3108, 3109] +Triangle: [3125, 3109, 3107] +Triangle: [3118, 3111, 3110] +Triangle: [3114, 3117, 3115] +Triangle: [3118, 3116, 3117] +Triangle: [3121, 3105, 3104] +Triangle: [3045, 3122, 3103] +Triangle: [3119, 3107, 3106] +Triangle: [3108, 3124, 3045] +Triangle: [3103, 3121, 3104] +Triangle: [3120, 3106, 3105] +Triangle: [3096, 3104, 3097] +Triangle: [3104, 3098, 3097] +Triangle: [3105, 3099, 3098] +Triangle: [3106, 3100, 3099] +Triangle: [3100, 3109, 3102] +Triangle: [3109, 3101, 3102] +Triangle: [3101, 3045, 3094] +Triangle: [3045, 3096, 3094] +Triangle: [3097, 3127, 3096] +Triangle: [3131, 3099, 3100] +Triangle: [3129, 3097, 3098] +Triangle: [3102, 3131, 3100] +Triangle: [3132, 3102, 3101] +Triangle: [3099, 3129, 3098] +Triangle: [3094, 3132, 3101] +Triangle: [3094, 3127, 3092] +Triangle: [3138, 3123, 3126] +Triangle: [3137, 3126, 3125] +Triangle: [3121, 3139, 3120] +Triangle: [3124, 3140, 3122] +Triangle: [3119, 3137, 3125] +Triangle: [3124, 3136, 3141] +Triangle: [3122, 3135, 3121] +Triangle: [3120, 3134, 3119] +Triangle: [3092, 3142, 3132] +Triangle: [3092, 3144, 3095] +Triangle: [3146, 3127, 3128] +Triangle: [3147, 3128, 3129] +Triangle: [3149, 3129, 3130] +Triangle: [3150, 3130, 3131] +Triangle: [3133, 3150, 3131] +Triangle: [3142, 3133, 3132] +Triangle: [3095, 3160, 3093] +Triangle: [3095, 3069, 3142] +Triangle: [3165, 3142, 3069] +Triangle: [3151, 3164, 3150] +Triangle: [3164, 3149, 3150] +Triangle: [3163, 3147, 3149] +Triangle: [3161, 3147, 3162] +Triangle: [3144, 3161, 3160] +Triangle: [3161, 3143, 3160] +Triangle: [3145, 3055, 3143] +Triangle: [3148, 3161, 3162] +Triangle: [3145, 3091, 3089] +Triangle: [3156, 3173, 3172] +Triangle: [3172, 3175, 3174] +Triangle: [3200, 3221, 3226] +Triangle: [3198, 3222, 3227] +Triangle: [3228, 3203, 3197] +Triangle: [3221, 3202, 3224] +Triangle: [3228, 3198, 3227] +Triangle: [3222, 3200, 3226] +Triangle: [3202, 3225, 3224] +Triangle: [3204, 3223, 3225] +Triangle: [3205, 3200, 3199] +Triangle: [3213, 3195, 3196] +Triangle: [3212, 3196, 3194] +Triangle: [3205, 3198, 3197] +Triangle: [3201, 3204, 3202] +Triangle: [3205, 3203, 3204] +Triangle: [3208, 3192, 3191] +Triangle: [3179, 3209, 3190] +Triangle: [3193, 3212, 3194] +Triangle: [3179, 3210, 3211] +Triangle: [3190, 3208, 3191] +Triangle: [3207, 3193, 3192] +Triangle: [3190, 3184, 3183] +Triangle: [3191, 3185, 3184] +Triangle: [3192, 3186, 3185] +Triangle: [3193, 3187, 3186] +Triangle: [3187, 3196, 3189] +Triangle: [3189, 3195, 3188] +Triangle: [3188, 3179, 3181] +Triangle: [3179, 3183, 3181] +Triangle: [3215, 3183, 3184] +Triangle: [3187, 3217, 3186] +Triangle: [3216, 3184, 3185] +Triangle: [3189, 3218, 3187] +Triangle: [3188, 3220, 3189] +Triangle: [3186, 3216, 3185] +Triangle: [3181, 3219, 3188] +Triangle: [3181, 3214, 3180] +Triangle: [3225, 3210, 3213] +Triangle: [3224, 3213, 3212] +Triangle: [3208, 3226, 3207] +Triangle: [3211, 3227, 3209] +Triangle: [3206, 3224, 3212] +Triangle: [3211, 3223, 3228] +Triangle: [3209, 3222, 3208] +Triangle: [3207, 3221, 3206] +Triangle: [3283, 3380, 3374] +Triangle: [3180, 3367, 3365] +Triangle: [3230, 3365, 3367] +Triangle: [3372, 3230, 3367] +Triangle: [3368, 3158, 3372] +Triangle: [3233, 3368, 3369] +Triangle: [3370, 3233, 3369] +Triangle: [3366, 3220, 3219] +Triangle: [3254, 3275, 3280] +Triangle: [3252, 3276, 3281] +Triangle: [3282, 3257, 3251] +Triangle: [3275, 3256, 3278] +Triangle: [3282, 3252, 3281] +Triangle: [3276, 3254, 3280] +Triangle: [3256, 3279, 3278] +Triangle: [3258, 3277, 3279] +Triangle: [3259, 3254, 3253] +Triangle: [3250, 3264, 3249] +Triangle: [3266, 3250, 3248] +Triangle: [3251, 3253, 3252] +Triangle: [3255, 3258, 3256] +Triangle: [3259, 3257, 3258] +Triangle: [3262, 3246, 3245] +Triangle: [3048, 3263, 3244] +Triangle: [3260, 3248, 3247] +Triangle: [3249, 3265, 3048] +Triangle: [3263, 3245, 3244] +Triangle: [3261, 3247, 3246] +Triangle: [3244, 3238, 3237] +Triangle: [3245, 3239, 3238] +Triangle: [3246, 3240, 3239] +Triangle: [3240, 3248, 3241] +Triangle: [3241, 3250, 3243] +Triangle: [3243, 3249, 3242] +Triangle: [3242, 3048, 3043] +Triangle: [3048, 3237, 3043] +Triangle: [3269, 3237, 3238] +Triangle: [3241, 3271, 3240] +Triangle: [3270, 3238, 3239] +Triangle: [3243, 3272, 3241] +Triangle: [3242, 3274, 3243] +Triangle: [3240, 3270, 3239] +Triangle: [3043, 3273, 3242] +Triangle: [3043, 3268, 3046] +Triangle: [3279, 3264, 3267] +Triangle: [3278, 3267, 3266] +Triangle: [3276, 3261, 3262] +Triangle: [3265, 3281, 3263] +Triangle: [3260, 3278, 3266] +Triangle: [3265, 3277, 3282] +Triangle: [3263, 3276, 3262] +Triangle: [3280, 3260, 3261] +Triangle: [3177, 3343, 3178] +Triangle: [3046, 3375, 3373] +Triangle: [3284, 3373, 3375] +Triangle: [3285, 3375, 3376] +Triangle: [3286, 3376, 3377] +Triangle: [3287, 3377, 3378] +Triangle: [3379, 3287, 3378] +Triangle: [3374, 3274, 3273] +Triangle: [3310, 3331, 3336] +Triangle: [3308, 3332, 3337] +Triangle: [3338, 3313, 3307] +Triangle: [3331, 3312, 3334] +Triangle: [3338, 3308, 3337] +Triangle: [3332, 3310, 3336] +Triangle: [3312, 3335, 3334] +Triangle: [3314, 3333, 3335] +Triangle: [3311, 3309, 3315] +Triangle: [3323, 3305, 3306] +Triangle: [3304, 3323, 3306] +Triangle: [3315, 3308, 3307] +Triangle: [3311, 3314, 3312] +Triangle: [3314, 3307, 3313] +Triangle: [3318, 3302, 3301] +Triangle: [3321, 3300, 3292] +Triangle: [3316, 3304, 3303] +Triangle: [3292, 3320, 3321] +Triangle: [3319, 3301, 3300] +Triangle: [3317, 3303, 3302] +Triangle: [3300, 3294, 3293] +Triangle: [3301, 3295, 3294] +Triangle: [3302, 3296, 3295] +Triangle: [3296, 3304, 3297] +Triangle: [3297, 3306, 3299] +Triangle: [3299, 3305, 3298] +Triangle: [3298, 3292, 3290] +Triangle: [3292, 3293, 3290] +Triangle: [3325, 3293, 3294] +Triangle: [3297, 3327, 3296] +Triangle: [3326, 3294, 3295] +Triangle: [3299, 3328, 3297] +Triangle: [3298, 3330, 3299] +Triangle: [3327, 3295, 3296] +Triangle: [3290, 3329, 3298] +Triangle: [3290, 3324, 3291] +Triangle: [3335, 3320, 3323] +Triangle: [3322, 3335, 3323] +Triangle: [3318, 3336, 3317] +Triangle: [3321, 3337, 3319] +Triangle: [3316, 3334, 3322] +Triangle: [3321, 3333, 3338] +Triangle: [3337, 3318, 3319] +Triangle: [3317, 3331, 3316] +Triangle: [3291, 3383, 3381] +Triangle: [3070, 3381, 3072] +Triangle: [3381, 3071, 3072] +Triangle: [3384, 3356, 3086] +Triangle: [3386, 3391, 3394] +Triangle: [3388, 3391, 3387] +Triangle: [3388, 3329, 3382] +Triangle: [3155, 3157, 3154] +Triangle: [3157, 3158, 3173] +Triangle: [3173, 3232, 3175] +Triangle: [3172, 3069, 3156] +Triangle: [3157, 3153, 3154] +Triangle: [3152, 3156, 3069] +Triangle: [3093, 3152, 3069] +Triangle: [3093, 3143, 3159] +Triangle: [3155, 3182, 3230] +Triangle: [3182, 3231, 3229] +Triangle: [3056, 3143, 3055] +Triangle: [3054, 3159, 3056] +Triangle: [3047, 3058, 3044] +Triangle: [3055, 3052, 3056] +Triangle: [3079, 3153, 3077] +Triangle: [3050, 3080, 3057] +Triangle: [3077, 3152, 3054] +Triangle: [3058, 3078, 3044] +Triangle: [3155, 3079, 3058] +Triangle: [3078, 3077, 3076] +Triangle: [3339, 3058, 3059] +Triangle: [3063, 3061, 3062] +Triangle: [3052, 3054, 3056] +Triangle: [3231, 3059, 3057] +Triangle: [3172, 3176, 3165] +Triangle: [3176, 3164, 3165] +Triangle: [3169, 3163, 3164] +Triangle: [3162, 3166, 3148] +Triangle: [3174, 3346, 3345] +Triangle: [3232, 3346, 3175] +Triangle: [3176, 3345, 3177] +Triangle: [3345, 3342, 3177] +Triangle: [3350, 3351, 3352] +Triangle: [3347, 3354, 3353] +Triangle: [3348, 3351, 3354] +Triangle: [3234, 3353, 3349] +Triangle: [3353, 3351, 3349] +Triangle: [3359, 3358, 3357] +Triangle: [3356, 3359, 3355] +Triangle: [3359, 3389, 3355] +Triangle: [3087, 3071, 3086] +Triangle: [3082, 3060, 3064] +Triangle: [3340, 3057, 3080] +Triangle: [3080, 3341, 3340] +Triangle: [3235, 3370, 3371] +Triangle: [3366, 3182, 3229] +Triangle: [3380, 3288, 3379] +Triangle: [3373, 3283, 3374] +Triangle: [3382, 3390, 3388] +Triangle: [3385, 3394, 3416] +Triangle: [3055, 3088, 3053] +Triangle: [3062, 3084, 3063] +Triangle: [3076, 3054, 3051] +Triangle: [3065, 3060, 3061] +Triangle: [3085, 3086, 3084] +Triangle: [3081, 3082, 3080] +Triangle: [3072, 3066, 3067] +Triangle: [3070, 3067, 3068] +Triangle: [3068, 3390, 3070] +Triangle: [3362, 3065, 3361] +Triangle: [3362, 3082, 3064] +Triangle: [3362, 3236, 3284] +Triangle: [3341, 3284, 3397] +Triangle: [3363, 3065, 3063] +Triangle: [3283, 3361, 3363] +Triangle: [3364, 3063, 3084] +Triangle: [3289, 3363, 3364] +Triangle: [3219, 3365, 3366] +Triangle: [3215, 3367, 3214] +Triangle: [3216, 3372, 3215] +Triangle: [3369, 3216, 3217] +Triangle: [3218, 3369, 3217] +Triangle: [3220, 3370, 3218] +Triangle: [3273, 3373, 3374] +Triangle: [3269, 3375, 3268] +Triangle: [3377, 3269, 3270] +Triangle: [3271, 3377, 3270] +Triangle: [3272, 3378, 3271] +Triangle: [3380, 3272, 3274] +Triangle: [3291, 3382, 3329] +Triangle: [3384, 3324, 3325] +Triangle: [3385, 3325, 3326] +Triangle: [3386, 3326, 3327] +Triangle: [3328, 3386, 3327] +Triangle: [3330, 3387, 3328] +Triangle: [3364, 3355, 3389] +Triangle: [3289, 3389, 3288] +Triangle: [3086, 3355, 3084] +Triangle: [3391, 3392, 3393] +Triangle: [3393, 3394, 3391] +Triangle: [3229, 3371, 3366] +Triangle: [3344, 3234, 3349] +Triangle: [3344, 3232, 3233] +Triangle: [3396, 3341, 3397] +Triangle: [3396, 3399, 3398] +Triangle: [3231, 3396, 3229] +Triangle: [3398, 3348, 3347] +Triangle: [3229, 3398, 3235] +Triangle: [3347, 3235, 3398] +Triangle: [3285, 3348, 3399] +Triangle: [3285, 3397, 3284] +Triangle: [3287, 3351, 3286] +Triangle: [3400, 3288, 3359] +Triangle: [3091, 3168, 3090] +Triangle: [3384, 3360, 3356] +Triangle: [3047, 3409, 3073] +Triangle: [3051, 3403, 3076] +Triangle: [3404, 3044, 3078] +Triangle: [3073, 3050, 3047] +Triangle: [3076, 3404, 3078] +Triangle: [3402, 3052, 3049] +Triangle: [3083, 3405, 3406] +Triangle: [3061, 3411, 3074] +Triangle: [3060, 3406, 3411] +Triangle: [3050, 3405, 3081] +Triangle: [3087, 3407, 3408] +Triangle: [3067, 3413, 3075] +Triangle: [3066, 3408, 3413] +Triangle: [3062, 3407, 3085] +Triangle: [3074, 3062, 3061] +Triangle: [3075, 3068, 3067] +Triangle: [3392, 3417, 3418] +Triangle: [3401, 3088, 3414] +Triangle: [3408, 3412, 3413] +Triangle: [3405, 3411, 3406] +Triangle: [3403, 3409, 3404] +Triangle: [3088, 3415, 3414] +Triangle: [3393, 3418, 3419] +Triangle: [3148, 3167, 3091] +Triangle: [3167, 3171, 3168] +Triangle: [3166, 3170, 3167] +Triangle: [3170, 3178, 3171] +Triangle: [3169, 3177, 3170] +Triangle: [3358, 3385, 3416] +Triangle: [3057, 3047, 3050] +Triangle: [3395, 3419, 3420] +Triangle: [3171, 3441, 3168] +Triangle: [3425, 3426, 3424] +Triangle: [3423, 1290, 3422] +Triangle: [1298, 3423, 3424] +Triangle: [1297, 3424, 3426] +Triangle: [3402, 3429, 3409] +Triangle: [1295, 3426, 3430] +Triangle: [3431, 3426, 3427] +Triangle: [3432, 3430, 3431] +Triangle: [3435, 3433, 3432] +Triangle: [3436, 3434, 3435] +Triangle: [3591, 3436, 3592] +Triangle: [3441, 3438, 3440] +Triangle: [3090, 3441, 3415] +Triangle: [3440, 3415, 3441] +Triangle: [3443, 3415, 3442] +Triangle: [3414, 3447, 3401] +Triangle: [3443, 3448, 3414] +Triangle: [3445, 3464, 3463] +Triangle: [3450, 3445, 3446] +Triangle: [3427, 3451, 3452] +Triangle: [3452, 3467, 3468] +Triangle: [3049, 3447, 3454] +Triangle: [3454, 3402, 3049] +Triangle: [3409, 3455, 3073] +Triangle: [3410, 3455, 3456] +Triangle: [3411, 3456, 3457] +Triangle: [3074, 3459, 3412] +Triangle: [3411, 3458, 3074] +Triangle: [3413, 3459, 3460] +Triangle: [3075, 3460, 3461] +Triangle: [3049, 3053, 3401] +Triangle: [3444, 3464, 3448] +Triangle: [3448, 3421, 3447] +Triangle: [3464, 3462, 3421] +Triangle: [3450, 3467, 3449] +Triangle: [3467, 3462, 3449] +Triangle: [3454, 3421, 3465] +Triangle: [3462, 3465, 3421] +Triangle: [3428, 3465, 3469] +Triangle: [3471, 3465, 3466] +Triangle: [3451, 3466, 3467] +Triangle: [3425, 3471, 3451] +Triangle: [3424, 3472, 3425] +Triangle: [3470, 3471, 3472] +Triangle: [3422, 3472, 3423] +Triangle: [3429, 3456, 3455] +Triangle: [3473, 3457, 3429] +Triangle: [3428, 3473, 3429] +Triangle: [3422, 3476, 3470] +Triangle: [3475, 3478, 3476] +Triangle: [3470, 3473, 3469] +Triangle: [3474, 3476, 3478] +Triangle: [1290, 3475, 3422] +Triangle: [1299, 3477, 3475] +Triangle: [3458, 3460, 3459] +Triangle: [3458, 3474, 3481] +Triangle: [3478, 3481, 3474] +Triangle: [3483, 3478, 3477] +Triangle: [3481, 3461, 3458] +Triangle: [3479, 3482, 3480] +Triangle: [3484, 3482, 3483] +Triangle: [3483, 1300, 1289] +Triangle: [3483, 1288, 3484] +Triangle: [3417, 3461, 3489] +Triangle: [3490, 3461, 3479] +Triangle: [3491, 3479, 3480] +Triangle: [3492, 3480, 3484] +Triangle: [3493, 3484, 1288] +Triangle: [3493, 1291, 3494] +Triangle: [3495, 1291, 1292] +Triangle: [3489, 3418, 3417] +Triangle: [3488, 3490, 3487] +Triangle: [3487, 3491, 3486] +Triangle: [3486, 3492, 3485] +Triangle: [3493, 3485, 3492] +Triangle: [3485, 3495, 3496] +Triangle: [3485, 3497, 3486] +Triangle: [3486, 3498, 3487] +Triangle: [3488, 3498, 3499] +Triangle: [3419, 3488, 3499] +Triangle: [3502, 3495, 1292] +Triangle: [3502, 3497, 3496] +Triangle: [3501, 3498, 3497] +Triangle: [3500, 3499, 3498] +Triangle: [3419, 3503, 3420] +Triangle: [1292, 3504, 3502] +Triangle: [1293, 3505, 3504] +Triangle: [1294, 3430, 3505] +Triangle: [3504, 3507, 3506] +Triangle: [3507, 3508, 3506] +Triangle: [3433, 3505, 3430] +Triangle: [3433, 3509, 3507] +Triangle: [3504, 3501, 3502] +Triangle: [3506, 3500, 3501] +Triangle: [3510, 3450, 3446] +Triangle: [3450, 3512, 3468] +Triangle: [3468, 3453, 3452] +Triangle: [3431, 3452, 3453] +Triangle: [3431, 3513, 3432] +Triangle: [3432, 3514, 3435] +Triangle: [3512, 3513, 3453] +Triangle: [3514, 3515, 3516] +Triangle: [3511, 3515, 3512] +Triangle: [3517, 3511, 3510] +Triangle: [3537, 3551, 3556] +Triangle: [3557, 3536, 3552] +Triangle: [3558, 3540, 3534] +Triangle: [3551, 3539, 3554] +Triangle: [3558, 3535, 3557] +Triangle: [3552, 3537, 3556] +Triangle: [3539, 3555, 3554] +Triangle: [3541, 3553, 3555] +Triangle: [3542, 3537, 3536] +Triangle: [3550, 3532, 3533] +Triangle: [3549, 3533, 3531] +Triangle: [3542, 3535, 3534] +Triangle: [3539, 3542, 3541] +Triangle: [3542, 3540, 3541] +Triangle: [3545, 3529, 3528] +Triangle: [3548, 3527, 3525] +Triangle: [3543, 3531, 3530] +Triangle: [3525, 3547, 3548] +Triangle: [3527, 3545, 3528] +Triangle: [3544, 3530, 3529] +Triangle: [3559, 3528, 3560] +Triangle: [3528, 3561, 3560] +Triangle: [3529, 3562, 3561] +Triangle: [3530, 3563, 3562] +Triangle: [3563, 3533, 3564] +Triangle: [3533, 3565, 3564] +Triangle: [3565, 3525, 3566] +Triangle: [3525, 3559, 3566] +Triangle: [3555, 3547, 3550] +Triangle: [3554, 3550, 3549] +Triangle: [3545, 3556, 3544] +Triangle: [3548, 3557, 3546] +Triangle: [3543, 3554, 3549] +Triangle: [3548, 3553, 3558] +Triangle: [3546, 3552, 3545] +Triangle: [3544, 3551, 3543] +Triangle: [3566, 3523, 3524] +Triangle: [3518, 3566, 3524] +Triangle: [3564, 3518, 3526] +Triangle: [3519, 3564, 3526] +Triangle: [3562, 3519, 3520] +Triangle: [3561, 3520, 3521] +Triangle: [3560, 3521, 3522] +Triangle: [3523, 3560, 3522] +Triangle: [3574, 3519, 3526] +Triangle: [3524, 3567, 3518] +Triangle: [3521, 3571, 3522] +Triangle: [3568, 3520, 3519] +Triangle: [3567, 3526, 3518] +Triangle: [3572, 3524, 3523] +Triangle: [3522, 3572, 3523] +Triangle: [3520, 3570, 3521] +Triangle: [3576, 3442, 3440] +Triangle: [3442, 3583, 3443] +Triangle: [3444, 3583, 3584] +Triangle: [3575, 3583, 3582] +Triangle: [3463, 3584, 3585] +Triangle: [3581, 3584, 3575] +Triangle: [3585, 3445, 3463] +Triangle: [3586, 3581, 3580] +Triangle: [3446, 3586, 3510] +Triangle: [3440, 3590, 3576] +Triangle: [3439, 3592, 3438] +Triangle: [3590, 3577, 3576] +Triangle: [3577, 3588, 3578] +Triangle: [3578, 3587, 3579] +Triangle: [3579, 3586, 3580] +Triangle: [3510, 3587, 3517] +Triangle: [3588, 3517, 3587] +Triangle: [3516, 3593, 3514] +Triangle: [3568, 3582, 3576] +Triangle: [3574, 3575, 3582] +Triangle: [3567, 3581, 3575] +Triangle: [3573, 3580, 3581] +Triangle: [3580, 3571, 3579] +Triangle: [3579, 3570, 3578] +Triangle: [3570, 3577, 3578] +Triangle: [3569, 3576, 3577] +Triangle: [3592, 3590, 3438] +Triangle: [3589, 3593, 3588] +Triangle: [3593, 3594, 3514] +Triangle: [3435, 3594, 3436] +Triangle: [3594, 3592, 3436] +Triangle: [3437, 3509, 3434] +Triangle: [3596, 3171, 3178] +Triangle: [3439, 3597, 3591] +Triangle: [3591, 3595, 3437] +Triangle: [3600, 3599, 3601] +Triangle: [3598, 3597, 3599] +Triangle: [3596, 3599, 3597] +Triangle: [3601, 3178, 3343] +Triangle: [3604, 3350, 3352] +Triangle: [3598, 3602, 3605] +Triangle: [3598, 3607, 3595] +Triangle: [3608, 3607, 3606] +Triangle: [3509, 3608, 3508] +Triangle: [3508, 3503, 3500] +Triangle: [3609, 3608, 3606] +Triangle: [3420, 3609, 3610] +Triangle: [3613, 3358, 3416] +Triangle: [3612, 3357, 3358] +Triangle: [3395, 3416, 3394] +Triangle: [3395, 3610, 3613] +Triangle: [3602, 3603, 3611] +Triangle: [3607, 3614, 3606] +Triangle: [3606, 3610, 3609] +Triangle: [3605, 3611, 3614] +Triangle: [3615, 3611, 3612] +Triangle: [3613, 3615, 3612] +Triangle: [3614, 3615, 3610] +Triangle: [3648, 3618, 3649] +Triangle: [3644, 3624, 3623] +Triangle: [3640, 3625, 3622] +Triangle: [3639, 3621, 3636] +Triangle: [5333, 3627, 3620] +Triangle: [5334, 3628, 3631] +Triangle: [3651, 3629, 3630] +Triangle: [3626, 3633, 3621] +Triangle: [5355, 3632, 5354] +Triangle: [3622, 3638, 3637] +Triangle: [3637, 3639, 3636] +Triangle: [3623, 3642, 3641] +Triangle: [3641, 3643, 3640] +Triangle: [3616, 3646, 3645] +Triangle: [3645, 3647, 3644] +Triangle: [3629, 3649, 3630] +Triangle: [3631, 3650, 3651] +Triangle: [3679, 3691, 3693] +Triangle: [3687, 3660, 3671] +Triangle: [3681, 3677, 3690] +Triangle: [3689, 3662, 3675] +Triangle: [3683, 3673, 3688] +Triangle: [3684, 5380, 5381] +Triangle: [3685, 3697, 3699] +Triangle: [3686, 3653, 3678] +Triangle: [3687, 3670, 3686] +Triangle: [3688, 3662, 3682] +Triangle: [5364, 3675, 5363] +Triangle: [3680, 3677, 3660] +Triangle: [3676, 3680, 3659] +Triangle: [5362, 3689, 5364] +Triangle: [3672, 3682, 3657] +Triangle: [3668, 3686, 3669] +Triangle: [3652, 3686, 3678] +Triangle: [3666, 3699, 3698] +Triangle: [5382, 3684, 5381] +Triangle: [3656, 3688, 3672] +Triangle: [3674, 3682, 3689] +Triangle: [3676, 3681, 3690] +Triangle: [3659, 3687, 3668] +Triangle: [3654, 3693, 3692] +Triangle: [3692, 3696, 3694] +Triangle: [3693, 3695, 3696] +Triangle: [3696, 3665, 3685] +Triangle: [3694, 3685, 3666] +Triangle: [3667, 3699, 3684] +Triangle: [3699, 3664, 3684] +Triangle: [3700, 5373, 5371] +Triangle: [3702, 5372, 5373] +Triangle: [3744, 3706, 3742] +Triangle: [3731, 3722, 3738] +Triangle: [3732, 3728, 3741] +Triangle: [5385, 3713, 5383] +Triangle: [5341, 3714, 5337] +Triangle: [3753, 3715, 3752] +Triangle: [3750, 3716, 3748] +Triangle: [3737, 3704, 3729] +Triangle: [3738, 3721, 3737] +Triangle: [5347, 3724, 5345] +Triangle: [3740, 5396, 5397] +Triangle: [3741, 3711, 3731] +Triangle: [3710, 3741, 3731] +Triangle: [3725, 5397, 5395] +Triangle: [3723, 5347, 5342] +Triangle: [3719, 3737, 3720] +Triangle: [3703, 3737, 3729] +Triangle: [3749, 3736, 3750] +Triangle: [3751, 3735, 3753] +Triangle: [5338, 3734, 5341] +Triangle: [3708, 5385, 5384] +Triangle: [3709, 3741, 3727] +Triangle: [3710, 3738, 3719] +Triangle: [3705, 3744, 3743] +Triangle: [3743, 3747, 3745] +Triangle: [3747, 3742, 3746] +Triangle: [3736, 3746, 3716] +Triangle: [3717, 3747, 3736] +Triangle: [3718, 3750, 3735] +Triangle: [3735, 3748, 3715] +Triangle: [3707, 3753, 3734] +Triangle: [3734, 3752, 3714] +Triangle: [3795, 3757, 3793] +Triangle: [3782, 3773, 3789] +Triangle: [3783, 3779, 3792] +Triangle: [3791, 3764, 3777] +Triangle: [3790, 3765, 3775] +Triangle: [3786, 3803, 3804] +Triangle: [3801, 3767, 3799] +Triangle: [3788, 3755, 3780] +Triangle: [3789, 3772, 3788] +Triangle: [3784, 3775, 3764] +Triangle: [3783, 3777, 3763] +Triangle: [3792, 3762, 3782] +Triangle: [3778, 3782, 3761] +Triangle: [3776, 3783, 3760] +Triangle: [3759, 3790, 3784] +Triangle: [3770, 3788, 3771] +Triangle: [3754, 3788, 3780] +Triangle: [3800, 3787, 3801] +Triangle: [3769, 3804, 3802] +Triangle: [3774, 3785, 3790] +Triangle: [3776, 3784, 3791] +Triangle: [3760, 3792, 3778] +Triangle: [3761, 3789, 3770] +Triangle: [3794, 3781, 3795] +Triangle: [3796, 3795, 3798] +Triangle: [3798, 3793, 3797] +Triangle: [3787, 3797, 3767] +Triangle: [3768, 3798, 3787] +Triangle: [3769, 3801, 3786] +Triangle: [3786, 3799, 3766] +Triangle: [3802, 3785, 3758] +Triangle: [3804, 3765, 3785] +Triangle: [3846, 3808, 3844] +Triangle: [3840, 3813, 3824] +Triangle: [3834, 3830, 3843] +Triangle: [3842, 3815, 3828] +Triangle: [3841, 3816, 3826] +Triangle: [3855, 3817, 3854] +Triangle: [3838, 3850, 3852] +Triangle: [3839, 3806, 3831] +Triangle: [3840, 3823, 3839] +Triangle: [3835, 3826, 3815] +Triangle: [3834, 3828, 3814] +Triangle: [3833, 3830, 3813] +Triangle: [3812, 3843, 3833] +Triangle: [3811, 3842, 3834] +Triangle: [3810, 3841, 3835] +Triangle: [3822, 3840, 3839] +Triangle: [3805, 3839, 3831] +Triangle: [3851, 3838, 3852] +Triangle: [3853, 3837, 3855] +Triangle: [3809, 3841, 3825] +Triangle: [3827, 3835, 3842] +Triangle: [3829, 3834, 3843] +Triangle: [3821, 3833, 3840] +Triangle: [3845, 3832, 3846] +Triangle: [3847, 3846, 3849] +Triangle: [3849, 3844, 3848] +Triangle: [3849, 3818, 3838] +Triangle: [3819, 3849, 3838] +Triangle: [3820, 3852, 3837] +Triangle: [3837, 3850, 3817] +Triangle: [3853, 3836, 3809] +Triangle: [3836, 3854, 3816] +Triangle: [3897, 3859, 3895] +Triangle: [3891, 3864, 3875] +Triangle: [3885, 3916, 3918] +Triangle: [3930, 3866, 3928] +Triangle: [3924, 3867, 3922] +Triangle: [3888, 3905, 3906] +Triangle: [3903, 3869, 3901] +Triangle: [3890, 3911, 3912] +Triangle: [3891, 3908, 3909] +Triangle: [3927, 3877, 3926] +Triangle: [3893, 3920, 3921] +Triangle: [3915, 3881, 3914] +Triangle: [3913, 3894, 3915] +Triangle: [3919, 3893, 3921] +Triangle: [3925, 3892, 3927] +Triangle: [3907, 3891, 3909] +Triangle: [3910, 3890, 3912] +Triangle: [3902, 3889, 3903] +Triangle: [3871, 3906, 3904] +Triangle: [3860, 3924, 3923] +Triangle: [3929, 3886, 3930] +Triangle: [3917, 3885, 3918] +Triangle: [3872, 3884, 3891] +Triangle: [3896, 3883, 3897] +Triangle: [3898, 3897, 3900] +Triangle: [3900, 3895, 3899] +Triangle: [3889, 3899, 3869] +Triangle: [3870, 3900, 3889] +Triangle: [3902, 3888, 3871] +Triangle: [3903, 3868, 3888] +Triangle: [3904, 3887, 3860] +Triangle: [3887, 3905, 3867] +Triangle: [3873, 3909, 3890] +Triangle: [3909, 3874, 3890] +Triangle: [3856, 3912, 3882] +Triangle: [3912, 3857, 3882] +Triangle: [3863, 3915, 3884] +Triangle: [3884, 3914, 3864] +Triangle: [3880, 3918, 3894] +Triangle: [3894, 3916, 3881] +Triangle: [3862, 3921, 3885] +Triangle: [3921, 3865, 3885] +Triangle: [3923, 3892, 3876] +Triangle: [3892, 3922, 3877] +Triangle: [3861, 3927, 3886] +Triangle: [3886, 3926, 3866] +Triangle: [3878, 3930, 3893] +Triangle: [3893, 3928, 3879] +Triangle: [3958, 3970, 3972] +Triangle: [3959, 3950, 3966] +Triangle: [3960, 3991, 3993] +Triangle: [4005, 3941, 4003] +Triangle: [3999, 3942, 3997] +Triangle: [3963, 3980, 3981] +Triangle: [3964, 3976, 3978] +Triangle: [3965, 3986, 3987] +Triangle: [3966, 3983, 3984] +Triangle: [4002, 3952, 4001] +Triangle: [3968, 3995, 3996] +Triangle: [3969, 3989, 3990] +Triangle: [3988, 3969, 3990] +Triangle: [3953, 3996, 3994] +Triangle: [4000, 3967, 4002] +Triangle: [3982, 3966, 3984] +Triangle: [3985, 3965, 3987] +Triangle: [3945, 3978, 3977] +Triangle: [3946, 3981, 3979] +Triangle: [3998, 3962, 3999] +Triangle: [4004, 3961, 4005] +Triangle: [3937, 3993, 3992] +Triangle: [3947, 3959, 3966] +Triangle: [3971, 3958, 3972] +Triangle: [3973, 3972, 3975] +Triangle: [3975, 3970, 3974] +Triangle: [3964, 3974, 3944] +Triangle: [3945, 3975, 3964] +Triangle: [3977, 3963, 3946] +Triangle: [3978, 3943, 3963] +Triangle: [3979, 3962, 3935] +Triangle: [3962, 3980, 3942] +Triangle: [3948, 3984, 3965] +Triangle: [3984, 3949, 3965] +Triangle: [3931, 3987, 3957] +Triangle: [3987, 3932, 3957] +Triangle: [3938, 3990, 3959] +Triangle: [3990, 3939, 3959] +Triangle: [3955, 3993, 3969] +Triangle: [3993, 3956, 3969] +Triangle: [3994, 3960, 3937] +Triangle: [3996, 3940, 3960] +Triangle: [3951, 3999, 3967] +Triangle: [3967, 3997, 3952] +Triangle: [3936, 4002, 3961] +Triangle: [3961, 4001, 3941] +Triangle: [4004, 3968, 3953] +Triangle: [4005, 3954, 3968] +Triangle: [4047, 4009, 4045] +Triangle: [4034, 4025, 4041] +Triangle: [4044, 4015, 4031] +Triangle: [4036, 5392, 5394] +Triangle: [5353, 4017, 5349] +Triangle: [4056, 4018, 4055] +Triangle: [4039, 4051, 4053] +Triangle: [4040, 4007, 4032] +Triangle: [4041, 4024, 4040] +Triangle: [5388, 4027, 5387] +Triangle: [4035, 4029, 4015] +Triangle: [4034, 4031, 4014] +Triangle: [4013, 4044, 4034] +Triangle: [4028, 4035, 4012] +Triangle: [4026, 5388, 5386] +Triangle: [4023, 4041, 4040] +Triangle: [4006, 4040, 4032] +Triangle: [4052, 4039, 4053] +Triangle: [4021, 4056, 4054] +Triangle: [4010, 5353, 5350] +Triangle: [4011, 5394, 5393] +Triangle: [4030, 4035, 4044] +Triangle: [4022, 4034, 4041] +Triangle: [4046, 4033, 4047] +Triangle: [4048, 4047, 4050] +Triangle: [4050, 4045, 4049] +Triangle: [4050, 4019, 4039] +Triangle: [4020, 4050, 4039] +Triangle: [4052, 4038, 4021] +Triangle: [4038, 4051, 4018] +Triangle: [4054, 4037, 4010] +Triangle: [4037, 4055, 4017] +Triangle: [4084, 4096, 4098] +Triangle: [4092, 4065, 4076] +Triangle: [4095, 4066, 4082] +Triangle: [4094, 4067, 4080] +Triangle: [5367, 4068, 5365] +Triangle: [4089, 4106, 4107] +Triangle: [4090, 4102, 4104] +Triangle: [4091, 4058, 4083] +Triangle: [4092, 4075, 4091] +Triangle: [4087, 4078, 4067] +Triangle: [4086, 4080, 4066] +Triangle: [4085, 4082, 4065] +Triangle: [4064, 4095, 4085] +Triangle: [4063, 4094, 4086] +Triangle: [4077, 4087, 4062] +Triangle: [4073, 4091, 4074] +Triangle: [4057, 4091, 4083] +Triangle: [4071, 4104, 4103] +Triangle: [4105, 4089, 4107] +Triangle: [4061, 5367, 5366] +Triangle: [4079, 4087, 4094] +Triangle: [4081, 4086, 4095] +Triangle: [4064, 4092, 4073] +Triangle: [4059, 4098, 4097] +Triangle: [4097, 4101, 4099] +Triangle: [4098, 4100, 4101] +Triangle: [4101, 4070, 4090] +Triangle: [4099, 4090, 4071] +Triangle: [4072, 4104, 4089] +Triangle: [4104, 4069, 4089] +Triangle: [4105, 5370, 5368] +Triangle: [5370, 4106, 5369] +Triangle: [4135, 4147, 4149] +Triangle: [4136, 4127, 4143] +Triangle: [4137, 4133, 4146] +Triangle: [4138, 4131, 4145] +Triangle: [4144, 4119, 4129] +Triangle: [4158, 4120, 4157] +Triangle: [4141, 4153, 4155] +Triangle: [4142, 4109, 4134] +Triangle: [4143, 4126, 4142] +Triangle: [4138, 4129, 4118] +Triangle: [4145, 4117, 4137] +Triangle: [4146, 4116, 4136] +Triangle: [4115, 4146, 4136] +Triangle: [4114, 4145, 4137] +Triangle: [4128, 4138, 4113] +Triangle: [4124, 4142, 4125] +Triangle: [4108, 4142, 4134] +Triangle: [4154, 4141, 4155] +Triangle: [4123, 4158, 4156] +Triangle: [4128, 4139, 4144] +Triangle: [4130, 4138, 4145] +Triangle: [4132, 4137, 4146] +Triangle: [4124, 4136, 4143] +Triangle: [4110, 4149, 4148] +Triangle: [4150, 4149, 4152] +Triangle: [4152, 4147, 4151] +Triangle: [4141, 4151, 4121] +Triangle: [4122, 4152, 4141] +Triangle: [4154, 4140, 4123] +Triangle: [4140, 4153, 4120] +Triangle: [4112, 4158, 4139] +Triangle: [4139, 4157, 4119] +Triangle: [4186, 4198, 4200] +Triangle: [4187, 4178, 4194] +Triangle: [4188, 4184, 4197] +Triangle: [4189, 5356, 5358] +Triangle: [4195, 4170, 4180] +Triangle: [4209, 4171, 4208] +Triangle: [5378, 4172, 5377] +Triangle: [4193, 4160, 4185] +Triangle: [4194, 4177, 4193] +Triangle: [5391, 4180, 5390] +Triangle: [4196, 5360, 5361] +Triangle: [4197, 4167, 4187] +Triangle: [4183, 4187, 4166] +Triangle: [4181, 5361, 5359] +Triangle: [4179, 5391, 5389] +Triangle: [4175, 4193, 4176] +Triangle: [4159, 4193, 4185] +Triangle: [4173, 5378, 5379] +Triangle: [4174, 4209, 4207] +Triangle: [4179, 4190, 4195] +Triangle: [4164, 5358, 5357] +Triangle: [4165, 4197, 4183] +Triangle: [4175, 4187, 4194] +Triangle: [4161, 4200, 4199] +Triangle: [4201, 4200, 4203] +Triangle: [4200, 4202, 4203] +Triangle: [4203, 4172, 4192] +Triangle: [4173, 4203, 4192] +Triangle: [4205, 5376, 5374] +Triangle: [4206, 5375, 5376] +Triangle: [4163, 4209, 4190] +Triangle: [4190, 4208, 4170] +Triangle: [4242, 4212, 4243] +Triangle: [4241, 4217, 4238] +Triangle: [4234, 4219, 4216] +Triangle: [4230, 4220, 4215] +Triangle: [4226, 4221, 4214] +Triangle: [4214, 4222, 4225] +Triangle: [4245, 4223, 4224] +Triangle: [4215, 4228, 4227] +Triangle: [4227, 4229, 4226] +Triangle: [4216, 4232, 4231] +Triangle: [4231, 4233, 4230] +Triangle: [4218, 4235, 4217] +Triangle: [4236, 4234, 4235] +Triangle: [4210, 4240, 4239] +Triangle: [4240, 4238, 4239] +Triangle: [4223, 4243, 4224] +Triangle: [4225, 4244, 4245] +Triangle: [4259, 4273, 4279] +Triangle: [4281, 4254, 4274] +Triangle: [4284, 4255, 4275] +Triangle: [4269, 4276, 4283] +Triangle: [4282, 4257, 4277] +Triangle: [4277, 4258, 4278] +Triangle: [4278, 4259, 4279] +Triangle: [4272, 4264, 4280] +Triangle: [4264, 4281, 4280] +Triangle: [4256, 4282, 4276] +Triangle: [4255, 4283, 4275] +Triangle: [4274, 4271, 4284] +Triangle: [4253, 4284, 4270] +Triangle: [4275, 4268, 4252] +Triangle: [4276, 4266, 4251] +Triangle: [4263, 4281, 4262] +Triangle: [4272, 4263, 4246] +Triangle: [4261, 4279, 4260] +Triangle: [4250, 4278, 4261] +Triangle: [4266, 4277, 4250] +Triangle: [4283, 4251, 4268] +Triangle: [4270, 4275, 4252] +Triangle: [4262, 4274, 4253] +Triangle: [4260, 4273, 4248] +Triangle: [4326, 4288, 4312] +Triangle: [4304, 4313, 4320] +Triangle: [4350, 4294, 4314] +Triangle: [4342, 4315, 4344] +Triangle: [4336, 4316, 4338] +Triangle: [4335, 4297, 4317] +Triangle: [4330, 4318, 4332] +Triangle: [4286, 4319, 4311] +Triangle: [4354, 4320, 4355] +Triangle: [4341, 4306, 4321] +Triangle: [4346, 4322, 4347] +Triangle: [4359, 4310, 4323] +Triangle: [4359, 4309, 4357] +Triangle: [4347, 4307, 4345] +Triangle: [4339, 4321, 4305] +Triangle: [4356, 4320, 4301] +Triangle: [4285, 4319, 4302] +Triangle: [4331, 4318, 4299] +Triangle: [4333, 4317, 4300] +Triangle: [4338, 4289, 4337] +Triangle: [4343, 4315, 4290] +Triangle: [4349, 4314, 4291] +Triangle: [4320, 4292, 4301] +Triangle: [4326, 4287, 4325] +Triangle: [4327, 4326, 4325] +Triangle: [4329, 4324, 4326] +Triangle: [4318, 4328, 4329] +Triangle: [4299, 4329, 4327] +Triangle: [4317, 4331, 4300] +Triangle: [4297, 4332, 4317] +Triangle: [4289, 4335, 4333] +Triangle: [4316, 4334, 4335] +Triangle: [4321, 4337, 4305] +Triangle: [4321, 4336, 4338] +Triangle: [4290, 4341, 4339] +Triangle: [4315, 4340, 4341] +Triangle: [4322, 4343, 4307] +Triangle: [4308, 4344, 4322] +Triangle: [4314, 4345, 4291] +Triangle: [4314, 4346, 4347] +Triangle: [4309, 4350, 4349] +Triangle: [4323, 4348, 4350] +Triangle: [4319, 4351, 4302] +Triangle: [4303, 4353, 4319] +Triangle: [4351, 4355, 4356] +Triangle: [4353, 4354, 4355] +Triangle: [4313, 4357, 4292] +Triangle: [4293, 4359, 4313] +Triangle: [4399, 4387, 4401] +Triangle: [4395, 4368, 4388] +Triangle: [4425, 4369, 4389] +Triangle: [4419, 4370, 4390] +Triangle: [4413, 4371, 4391] +Triangle: [4410, 4372, 4392] +Triangle: [4407, 4373, 4393] +Triangle: [4361, 4394, 4386] +Triangle: [4430, 4379, 4395] +Triangle: [4415, 4396, 4416] +Triangle: [4422, 4383, 4397] +Triangle: [4434, 4385, 4398] +Triangle: [4432, 4398, 4384] +Triangle: [4420, 4397, 4382] +Triangle: [4416, 4380, 4414] +Triangle: [4431, 4395, 4376] +Triangle: [4360, 4394, 4377] +Triangle: [4406, 4393, 4374] +Triangle: [4408, 4392, 4375] +Triangle: [4412, 4391, 4364] +Triangle: [4418, 4390, 4365] +Triangle: [4424, 4389, 4366] +Triangle: [4376, 4388, 4367] +Triangle: [4400, 4387, 4362] +Triangle: [4404, 4400, 4402] +Triangle: [4404, 4399, 4401] +Triangle: [4393, 4403, 4404] +Triangle: [4374, 4404, 4402] +Triangle: [4375, 4407, 4406] +Triangle: [4392, 4405, 4407] +Triangle: [4364, 4410, 4408] +Triangle: [4391, 4409, 4410] +Triangle: [4396, 4412, 4380] +Triangle: [4381, 4413, 4396] +Triangle: [4365, 4416, 4414] +Triangle: [4370, 4416, 4390] +Triangle: [4382, 4419, 4418] +Triangle: [4397, 4417, 4419] +Triangle: [4366, 4422, 4420] +Triangle: [4389, 4421, 4422] +Triangle: [4384, 4425, 4424] +Triangle: [4398, 4423, 4425] +Triangle: [4394, 4426, 4377] +Triangle: [4378, 4428, 4394] +Triangle: [4428, 4431, 4426] +Triangle: [4428, 4429, 4430] +Triangle: [4367, 4434, 4432] +Triangle: [4368, 4434, 4388] +Triangle: [4468, 4438, 4437] +Triangle: [4463, 4443, 4442] +Triangle: [4462, 4441, 4459] +Triangle: [4455, 4445, 4440] +Triangle: [4451, 4446, 4439] +Triangle: [4439, 4447, 4450] +Triangle: [4470, 4448, 4449] +Triangle: [4440, 4453, 4452] +Triangle: [4452, 4454, 4451] +Triangle: [4444, 4456, 4441] +Triangle: [4456, 4458, 4455] +Triangle: [4442, 4461, 4460] +Triangle: [4461, 4459, 4460] +Triangle: [5331, 4464, 5330] +Triangle: [5328, 4466, 4463] +Triangle: [4449, 4467, 4468] +Triangle: [4450, 4469, 4470] +Triangle: [4504, 4474, 4503] +Triangle: [4499, 4479, 4502] +Triangle: [4495, 4480, 4498] +Triangle: [4476, 4494, 4491] +Triangle: [4475, 4490, 4487] +Triangle: [4486, 4482, 4475] +Triangle: [4506, 4484, 4505] +Triangle: [4488, 4481, 4476] +Triangle: [4487, 4489, 4488] +Triangle: [4492, 4480, 4477] +Triangle: [4491, 4493, 4492] +Triangle: [4478, 4497, 4479] +Triangle: [4496, 4498, 4497] +Triangle: [4471, 4501, 4472] +Triangle: [4500, 4502, 4501] +Triangle: [4485, 4503, 4484] +Triangle: [4506, 4483, 4486] +Triangle: [4539, 4760, 4775] +Triangle: [4538, 4761, 4774] +Triangle: [4772, 4516, 4762] +Triangle: [4770, 4517, 4763] +Triangle: [4526, 4764, 4768] +Triangle: [4518, 4765, 4764] +Triangle: [4541, 4766, 4776] +Triangle: [4763, 4525, 4767] +Triangle: [4767, 4526, 4768] +Triangle: [4762, 4529, 4769] +Triangle: [4769, 4530, 4770] +Triangle: [4761, 4533, 4771] +Triangle: [4771, 4534, 4772] +Triangle: [4759, 4537, 4773] +Triangle: [4773, 4538, 4774] +Triangle: [4520, 4775, 4766] +Triangle: [4519, 4776, 4765] +Triangle: [4575, 4545, 4576] +Triangle: [4574, 4550, 4571] +Triangle: [4570, 4549, 4567] +Triangle: [4563, 4553, 4548] +Triangle: [4562, 4547, 4559] +Triangle: [4554, 4558, 4547] +Triangle: [4577, 4557, 4578] +Triangle: [4548, 4561, 4560] +Triangle: [4561, 4559, 4560] +Triangle: [4552, 4564, 4549] +Triangle: [4564, 4566, 4563] +Triangle: [4551, 4568, 4550] +Triangle: [4569, 4567, 4568] +Triangle: [4543, 4573, 4572] +Triangle: [4573, 4571, 4572] +Triangle: [4556, 4576, 4557] +Triangle: [4555, 4578, 4558] +Triangle: [4611, 4581, 4612] +Triangle: [4610, 4586, 4607] +Triangle: [4603, 4588, 4585] +Triangle: [4599, 4589, 4584] +Triangle: [4598, 4583, 4595] +Triangle: [4583, 4591, 4594] +Triangle: [4614, 4592, 4593] +Triangle: [4584, 4597, 4596] +Triangle: [4596, 4598, 4595] +Triangle: [4585, 4601, 4600] +Triangle: [4600, 4602, 4599] +Triangle: [4586, 4605, 4604] +Triangle: [4604, 4606, 4603] +Triangle: [4579, 4609, 4608] +Triangle: [4609, 4607, 4608] +Triangle: [4592, 4612, 4593] +Triangle: [4594, 4613, 4614] +Triangle: [4617, 4647, 4648] +Triangle: [4622, 4646, 4643] +Triangle: [4621, 4642, 4639] +Triangle: [4620, 4638, 4635] +Triangle: [4631, 4626, 4634] +Triangle: [4630, 4626, 4619] +Triangle: [4650, 4628, 4649] +Triangle: [4632, 4625, 4620] +Triangle: [4632, 4634, 4633] +Triangle: [4636, 4624, 4621] +Triangle: [4635, 4637, 4636] +Triangle: [4640, 4623, 4622] +Triangle: [4639, 4641, 4640] +Triangle: [4615, 4645, 4616] +Triangle: [4644, 4646, 4645] +Triangle: [4648, 4628, 4629] +Triangle: [4650, 4627, 4630] +Triangle: [4684, 4654, 4683] +Triangle: [4658, 4682, 4679] +Triangle: [4657, 4678, 4675] +Triangle: [4671, 4661, 4674] +Triangle: [4655, 4670, 4667] +Triangle: [4655, 4663, 4662] +Triangle: [4686, 4664, 4685] +Triangle: [4656, 4669, 4661] +Triangle: [4667, 4669, 4668] +Triangle: [4672, 4660, 4657] +Triangle: [4672, 4674, 4673] +Triangle: [4676, 4659, 4658] +Triangle: [4675, 4677, 4676] +Triangle: [4651, 4681, 4652] +Triangle: [4680, 4682, 4681] +Triangle: [4665, 4683, 4664] +Triangle: [4686, 4663, 4666] +Triangle: [4720, 4690, 4719] +Triangle: [4694, 4718, 4715] +Triangle: [4693, 4714, 4711] +Triangle: [4707, 4697, 4710] +Triangle: [4691, 4706, 4703] +Triangle: [4702, 4698, 4691] +Triangle: [4701, 4721, 4722] +Triangle: [4692, 4705, 4697] +Triangle: [4704, 4706, 4705] +Triangle: [4708, 4696, 4693] +Triangle: [4707, 4709, 4708] +Triangle: [4712, 4695, 4694] +Triangle: [4711, 4713, 4712] +Triangle: [4687, 4717, 4688] +Triangle: [4716, 4718, 4717] +Triangle: [4720, 4700, 4701] +Triangle: [4722, 4699, 4702] +Triangle: [4756, 4726, 4755] +Triangle: [4751, 4731, 4754] +Triangle: [4747, 4732, 4750] +Triangle: [4728, 4746, 4743] +Triangle: [4739, 4734, 4742] +Triangle: [4738, 4734, 4727] +Triangle: [4737, 4757, 4758] +Triangle: [4728, 4741, 4733] +Triangle: [4739, 4741, 4740] +Triangle: [4744, 4732, 4729] +Triangle: [4743, 4745, 4744] +Triangle: [4730, 4749, 4731] +Triangle: [4748, 4750, 4749] +Triangle: [4723, 4753, 4724] +Triangle: [4752, 4754, 4753] +Triangle: [4756, 4736, 4737] +Triangle: [4738, 4757, 4735] +Triangle: [4765, 4542, 4522] +Triangle: [4766, 4540, 4521] +Triangle: [4536, 4774, 4535] +Triangle: [4507, 4773, 4536] +Triangle: [4532, 4772, 4531] +Triangle: [4514, 4771, 4532] +Triangle: [4528, 4770, 4527] +Triangle: [4513, 4769, 4528] +Triangle: [4524, 4768, 4523] +Triangle: [4512, 4767, 4524] +Triangle: [4776, 4521, 4542] +Triangle: [4511, 4765, 4522] +Triangle: [4523, 4764, 4511] +Triangle: [4527, 4763, 4512] +Triangle: [4531, 4762, 4513] +Triangle: [4535, 4761, 4514] +Triangle: [4775, 4509, 4540] +Triangle: [4577, 4784, 4556] +Triangle: [4566, 4781, 4553] +Triangle: [4561, 4786, 4562] +Triangle: [4562, 4782, 4554] +Triangle: [4555, 4794, 4577] +Triangle: [4573, 4777, 4791] +Triangle: [4574, 4791, 4792] +Triangle: [4569, 4779, 4789] +Triangle: [4570, 4789, 4790] +Triangle: [4565, 4780, 4787] +Triangle: [4551, 4792, 4779] +Triangle: [4554, 4783, 4555] +Triangle: [4565, 4788, 4566] +Triangle: [4556, 4793, 4575] +Triangle: [4552, 4790, 4780] +Triangle: [4553, 4785, 4561] +Triangle: [4546, 4793, 4778] +Triangle: [4834, 4822, 4836] +Triangle: [4814, 4823, 4830] +Triangle: [4820, 4824, 4833] +Triangle: [4818, 4825, 4832] +Triangle: [4831, 4806, 4826] +Triangle: [4845, 4807, 4827] +Triangle: [4842, 4808, 4828] +Triangle: [4796, 4829, 4821] +Triangle: [4813, 4830, 4829] +Triangle: [4805, 4831, 4825] +Triangle: [4804, 4832, 4824] +Triangle: [4803, 4833, 4823] +Triangle: [4823, 4819, 4802] +Triangle: [4801, 4832, 4817] +Triangle: [4825, 4815, 4800] +Triangle: [4829, 4811, 4812] +Triangle: [4795, 4829, 4812] +Triangle: [4841, 4828, 4809] +Triangle: [4845, 4810, 4843] +Triangle: [4815, 4826, 4799] +Triangle: [4832, 4800, 4817] +Triangle: [4819, 4824, 4801] +Triangle: [4830, 4802, 4811] +Triangle: [4835, 4822, 4797] +Triangle: [4837, 4836, 4835] +Triangle: [4838, 4836, 4839] +Triangle: [4808, 4839, 4828] +Triangle: [4828, 4837, 4809] +Triangle: [4810, 4842, 4841] +Triangle: [4827, 4840, 4842] +Triangle: [4826, 4843, 4799] +Triangle: [4826, 4844, 4845] +Triangle: [4879, 4849, 4873] +Triangle: [4865, 4874, 4881] +Triangle: [4884, 4855, 4875] +Triangle: [5180, 4856, 4876] +Triangle: [4867, 4877, 4882] +Triangle: [4857, 4878, 4877] +Triangle: [4858, 4879, 4878] +Triangle: [4847, 4880, 4872] +Triangle: [4864, 4881, 4880] +Triangle: [4876, 4867, 4882] +Triangle: [5176, 4883, 5177] +Triangle: [4874, 4871, 4884] +Triangle: [4853, 4884, 4870] +Triangle: [5177, 4868, 5175] +Triangle: [4851, 4882, 4866] +Triangle: [4880, 4862, 4863] +Triangle: [4846, 4880, 4863] +Triangle: [4878, 4860, 4861] +Triangle: [4877, 4861, 4850] +Triangle: [4882, 4850, 4866] +Triangle: [5179, 4876, 4851] +Triangle: [4884, 4852, 4870] +Triangle: [4881, 4853, 4862] +Triangle: [4879, 4848, 4860] +Triangle: [4898, 4887, 4899] +Triangle: [4904, 4892, 4901] +Triangle: [4909, 4894, 4891] +Triangle: [4908, 4890, 4907] +Triangle: [4905, 4896, 4889] +Triangle: [4889, 4897, 4900] +Triangle: [4900, 4898, 4899] +Triangle: [4885, 4903, 4902] +Triangle: [4902, 4904, 4901] +Triangle: [4895, 4905, 4890] +Triangle: [4894, 4907, 4891] +Triangle: [4893, 4909, 4892] +Triangle: [4924, 4938, 4944] +Triangle: [4930, 4939, 4946] +Triangle: [4949, 4920, 4940] +Triangle: [4934, 4941, 4948] +Triangle: [4947, 4922, 4942] +Triangle: [4942, 4923, 4943] +Triangle: [4923, 4944, 4943] +Triangle: [4937, 4929, 4945] +Triangle: [4945, 4930, 4946] +Triangle: [4921, 4947, 4941] +Triangle: [4920, 4948, 4940] +Triangle: [4919, 4949, 4939] +Triangle: [4939, 4935, 4918] +Triangle: [4940, 4933, 4917] +Triangle: [4941, 4931, 4916] +Triangle: [4928, 4946, 4927] +Triangle: [4911, 4945, 4928] +Triangle: [4943, 4925, 4926] +Triangle: [4915, 4943, 4926] +Triangle: [4931, 4942, 4915] +Triangle: [4948, 4916, 4933] +Triangle: [4935, 4940, 4917] +Triangle: [4946, 4918, 4927] +Triangle: [4944, 4913, 4925] +Triangle: [4963, 4977, 4983] +Triangle: [4969, 4978, 4985] +Triangle: [4988, 4959, 4979] +Triangle: [4973, 4980, 4987] +Triangle: [4986, 4961, 4981] +Triangle: [4961, 4982, 4981] +Triangle: [4962, 4983, 4982] +Triangle: [4976, 4968, 4984] +Triangle: [4968, 4985, 4984] +Triangle: [4980, 4971, 4986] +Triangle: [4959, 4987, 4979] +Triangle: [4978, 4975, 4988] +Triangle: [4957, 4988, 4974] +Triangle: [4979, 4972, 4956] +Triangle: [4955, 4986, 4970] +Triangle: [4984, 4966, 4967] +Triangle: [4950, 4984, 4967] +Triangle: [4982, 4964, 4965] +Triangle: [4981, 4965, 4954] +Triangle: [4970, 4981, 4954] +Triangle: [4987, 4955, 4972] +Triangle: [4988, 4956, 4974] +Triangle: [4985, 4957, 4966] +Triangle: [4983, 4952, 4964] +Triangle: [5028, 5016, 5030] +Triangle: [5008, 5017, 5024] +Triangle: [5052, 5018, 5054] +Triangle: [5046, 5019, 5048] +Triangle: [5040, 5020, 5042] +Triangle: [5038, 5021, 5039] +Triangle: [5036, 5002, 5022] +Triangle: [4990, 5023, 5015] +Triangle: [5007, 5024, 5023] +Triangle: [5045, 5010, 5025] +Triangle: [5050, 5026, 5051] +Triangle: [5017, 5014, 5027] +Triangle: [5017, 5013, 4996] +Triangle: [5051, 5011, 5049] +Triangle: [5045, 5009, 5043] +Triangle: [5023, 5005, 5006] +Triangle: [4989, 5023, 5006] +Triangle: [5035, 5022, 5003] +Triangle: [5037, 5021, 5004] +Triangle: [5042, 4993, 5041] +Triangle: [5047, 5019, 4994] +Triangle: [5054, 4995, 5053] +Triangle: [5024, 4996, 5005] +Triangle: [5029, 5016, 4991] +Triangle: [5033, 5029, 5031] +Triangle: [5032, 5030, 5033] +Triangle: [5002, 5033, 5022] +Triangle: [5022, 5031, 5003] +Triangle: [5004, 5036, 5035] +Triangle: [5021, 5034, 5036] +Triangle: [4993, 5039, 5037] +Triangle: [5000, 5039, 5020] +Triangle: [5025, 5041, 5009] +Triangle: [5010, 5042, 5025] +Triangle: [4994, 5045, 5043] +Triangle: [5019, 5044, 5045] +Triangle: [5026, 5047, 5011] +Triangle: [5012, 5048, 5026] +Triangle: [5018, 5049, 4995] +Triangle: [4998, 5051, 5018] +Triangle: [5027, 5053, 5013] +Triangle: [5014, 5054, 5027] +Triangle: [5088, 5078, 5090] +Triangle: [5076, 5080, 5087] +Triangle: [5074, 5081, 5086] +Triangle: [5085, 5066, 5082] +Triangle: [5099, 5067, 5083] +Triangle: [5096, 5068, 5084] +Triangle: [5056, 5079, 5077] +Triangle: [5081, 5072, 5085] +Triangle: [5064, 5086, 5080] +Triangle: [5063, 5087, 5079] +Triangle: [5079, 5075, 5062] +Triangle: [5080, 5073, 5061] +Triangle: [5060, 5085, 5071] +Triangle: [5055, 5079, 5062] +Triangle: [5095, 5084, 5069] +Triangle: [5099, 5070, 5097] +Triangle: [5085, 5059, 5071] +Triangle: [5086, 5060, 5073] +Triangle: [5087, 5061, 5075] +Triangle: [5089, 5078, 5057] +Triangle: [5093, 5089, 5091] +Triangle: [5092, 5090, 5093] +Triangle: [5084, 5092, 5093] +Triangle: [5069, 5093, 5091] +Triangle: [5070, 5096, 5095] +Triangle: [5083, 5094, 5096] +Triangle: [5082, 5097, 5059] +Triangle: [5066, 5099, 5082] +Triangle: [5141, 5103, 5127] +Triangle: [5119, 5128, 5135] +Triangle: [5163, 5129, 5165] +Triangle: [5157, 5130, 5159] +Triangle: [5153, 5111, 5131] +Triangle: [5150, 5112, 5132] +Triangle: [5145, 5133, 5147] +Triangle: [5101, 5134, 5126] +Triangle: [5169, 5135, 5170] +Triangle: [5156, 5121, 5136] +Triangle: [5161, 5137, 5162] +Triangle: [5173, 5138, 5174] +Triangle: [5174, 5124, 5172] +Triangle: [5162, 5122, 5160] +Triangle: [5154, 5136, 5120] +Triangle: [5170, 5116, 5171] +Triangle: [5100, 5134, 5117] +Triangle: [5147, 5114, 5146] +Triangle: [5148, 5132, 5115] +Triangle: [5153, 5104, 5152] +Triangle: [5158, 5130, 5105] +Triangle: [5165, 5106, 5164] +Triangle: [5135, 5107, 5116] +Triangle: [5141, 5102, 5140] +Triangle: [5142, 5141, 5140] +Triangle: [5143, 5141, 5144] +Triangle: [5113, 5144, 5133] +Triangle: [5114, 5144, 5142] +Triangle: [5115, 5147, 5146] +Triangle: [5132, 5145, 5147] +Triangle: [5104, 5150, 5148] +Triangle: [5131, 5149, 5150] +Triangle: [5136, 5152, 5120] +Triangle: [5121, 5153, 5136] +Triangle: [5105, 5156, 5154] +Triangle: [5130, 5155, 5156] +Triangle: [5137, 5158, 5122] +Triangle: [5123, 5159, 5137] +Triangle: [5129, 5160, 5106] +Triangle: [5109, 5162, 5129] +Triangle: [5138, 5164, 5124] +Triangle: [5125, 5165, 5138] +Triangle: [5134, 5166, 5117] +Triangle: [5118, 5168, 5134] +Triangle: [5168, 5171, 5166] +Triangle: [5167, 5170, 5168] +Triangle: [5128, 5172, 5107] +Triangle: [5108, 5174, 5128] +Triangle: [4875, 5175, 4852] +Triangle: [4855, 5177, 4875] +Triangle: [4868, 5180, 5179] +Triangle: [4869, 5180, 4883] +Triangle: [5189, 5186, 5187] +Triangle: [5184, 5189, 5183] +Triangle: [5189, 5188, 5181] +Triangle: [5182, 5189, 5181] +Triangle: [5200, 1934, 745] +Triangle: [1935, 5201, 5202] +Triangle: [1936, 5202, 5203] +Triangle: [1936, 5204, 1937] +Triangle: [1937, 5205, 1938] +Triangle: [1938, 5206, 1939] +Triangle: [1942, 5206, 5209] +Triangle: [1942, 5208, 1941] +Triangle: [5227, 5208, 5228] +Triangle: [1940, 5197, 742] +Triangle: [735, 5200, 745] +Triangle: [736, 5190, 735] +Triangle: [737, 5191, 736] +Triangle: [5193, 737, 738] +Triangle: [5194, 738, 739] +Triangle: [5195, 739, 740] +Triangle: [744, 5195, 740] +Triangle: [744, 5198, 5199] +Triangle: [5198, 5216, 5218] +Triangle: [5197, 741, 742] +Triangle: [5218, 733, 734] +Triangle: [1932, 5228, 1933] +Triangle: [5220, 5201, 5200] +Triangle: [5202, 5221, 5222] +Triangle: [5203, 5222, 5223] +Triangle: [5204, 5223, 5224] +Triangle: [5205, 5224, 5225] +Triangle: [5205, 5226, 5206] +Triangle: [5206, 5229, 5209] +Triangle: [5209, 5228, 5208] +Triangle: [5207, 5217, 5197] +Triangle: [5190, 5220, 5200] +Triangle: [5191, 5210, 5190] +Triangle: [5192, 5211, 5191] +Triangle: [5193, 5212, 5192] +Triangle: [5194, 5213, 5193] +Triangle: [5215, 5194, 5195] +Triangle: [5219, 5195, 5199] +Triangle: [5199, 5218, 5219] +Triangle: [5217, 5196, 5197] +Triangle: [5265, 5267, 5263] +Triangle: [5234, 5237, 5235] +Triangle: [5230, 5236, 5234] +Triangle: [5238, 5237, 5236] +Triangle: [5230, 5238, 5236] +Triangle: [5240, 5239, 5238] +Triangle: [5230, 5240, 5238] +Triangle: [5240, 5243, 5241] +Triangle: [5230, 5242, 5240] +Triangle: [5244, 5243, 5242] +Triangle: [5230, 5244, 5242] +Triangle: [5244, 5247, 5245] +Triangle: [5230, 5246, 5244] +Triangle: [5246, 5249, 5247] +Triangle: [5230, 5248, 5246] +Triangle: [5230, 5250, 5248] +Triangle: [5248, 5251, 5249] +Triangle: [5230, 5252, 5250] +Triangle: [5252, 5251, 5250] +Triangle: [5230, 5254, 5252] +Triangle: [5254, 5253, 5252] +Triangle: [5230, 5256, 5254] +Triangle: [5256, 5255, 5254] +Triangle: [5258, 5257, 5256] +Triangle: [5230, 5258, 5256] +Triangle: [5260, 5259, 5258] +Triangle: [5230, 5260, 5258] +Triangle: [5231, 5261, 5260] +Triangle: [5230, 5231, 5260] +Triangle: [5231, 5230, 5232] +Triangle: [5268, 5265, 5266] +Triangle: [5230, 5234, 5232] +Triangle: [5231, 5233, 5262] +Triangle: [5267, 5270, 5269] +Triangle: [5267, 5269, 5263] +Triangle: [5263, 5269, 5271] +Triangle: [5272, 5269, 5270] +Triangle: [5274, 5271, 5272] +Triangle: [5271, 5273, 5263] +Triangle: [5273, 5275, 5263] +Triangle: [5276, 5273, 5274] +Triangle: [5276, 5277, 5275] +Triangle: [5275, 5277, 5263] +Triangle: [5277, 5279, 5263] +Triangle: [5278, 5279, 5277] +Triangle: [5280, 5281, 5279] +Triangle: [5279, 5281, 5263] +Triangle: [5281, 5283, 5263] +Triangle: [5282, 5283, 5281] +Triangle: [5283, 5285, 5263] +Triangle: [5284, 5285, 5283] +Triangle: [5285, 5287, 5263] +Triangle: [5288, 5285, 5286] +Triangle: [5287, 5289, 5263] +Triangle: [5288, 5289, 5287] +Triangle: [5290, 5291, 5289] +Triangle: [5289, 5291, 5263] +Triangle: [5263, 5291, 5293] +Triangle: [5292, 5293, 5291] +Triangle: [5296, 5293, 5294] +Triangle: [5293, 5295, 5263] +Triangle: [5263, 5295, 5297] +Triangle: [5296, 5297, 5295] +Triangle: [5300, 5297, 5298] +Triangle: [5297, 5299, 5263] +Triangle: [5299, 5301, 5263] +Triangle: [5300, 5301, 5299] +Triangle: [5304, 5301, 5302] +Triangle: [5301, 5303, 5263] +Triangle: [5303, 5305, 5263] +Triangle: [5304, 5305, 5303] +Triangle: [5306, 5307, 5305] +Triangle: [5305, 5307, 5263] +Triangle: [5307, 5309, 5263] +Triangle: [5308, 5309, 5307] +Triangle: [5309, 5311, 5263] +Triangle: [5310, 5311, 5309] +Triangle: [5312, 5313, 5311] +Triangle: [5311, 5313, 5263] +Triangle: [5313, 5315, 5263] +Triangle: [5314, 5315, 5313] +Triangle: [5316, 5317, 5315] +Triangle: [5315, 5317, 5263] +Triangle: [5263, 5317, 5319] +Triangle: [5318, 5319, 5317] +Triangle: [5320, 5321, 5319] +Triangle: [5319, 5321, 5263] +Triangle: [5263, 5321, 5323] +Triangle: [5322, 5323, 5321] +Triangle: [5324, 5325, 5323] +Triangle: [5323, 5325, 5263] +Triangle: [5325, 5264, 5263] +Triangle: [5326, 5264, 5325] +Triangle: [5266, 5264, 5327] +Triangle: [5232, 5235, 5233] +Triangle: [5264, 5265, 5263] +Triangle: [4465, 5328, 4464] +Triangle: [4436, 5330, 4435] +Triangle: [2014, 2028, 2027] +Triangle: [3632, 5332, 5333] +Triangle: [3620, 5335, 5334] +Triangle: [3723, 5340, 3739] +Triangle: [5339, 5341, 5340] +Triangle: [3739, 5336, 3724] +Triangle: [5340, 5337, 5336] +Triangle: [3708, 5346, 3733] +Triangle: [5343, 5347, 5346] +Triangle: [3733, 5344, 3713] +Triangle: [5346, 5345, 5344] +Triangle: [5351, 4042, 4026] +Triangle: [5350, 5352, 5351] +Triangle: [5352, 4027, 4042] +Triangle: [5352, 5349, 5348] +Triangle: [3634, 5354, 3633] +Triangle: [5357, 4196, 4181] +Triangle: [5358, 4182, 4196] +Triangle: [5359, 4188, 4165] +Triangle: [5361, 4168, 4188] +Triangle: [3658, 5364, 3681] +Triangle: [5364, 3661, 3681] +Triangle: [5366, 4093, 4077] +Triangle: [4093, 5365, 4078] +Triangle: [4088, 5369, 4068] +Triangle: [4061, 5370, 4088] +Triangle: [5373, 3663, 3683] +Triangle: [3656, 5373, 3683] +Triangle: [4191, 5375, 4171] +Triangle: [5374, 4191, 4174] +Triangle: [4205, 5378, 4206] +Triangle: [5378, 4204, 4206] +Triangle: [3700, 5381, 3702] +Triangle: [3702, 5380, 3701] +Triangle: [3725, 5385, 3740] +Triangle: [3740, 5383, 3726] +Triangle: [4011, 5388, 4036] +Triangle: [4036, 5387, 4016] +Triangle: [5389, 4189, 4164] +Triangle: [5391, 4169, 4189] +Triangle: [5393, 4043, 4028] +Triangle: [4043, 5392, 4029] +Triangle: [3709, 5397, 3732] +Triangle: [5397, 3712, 3732] +Triangle: [3602, 5398, 3350] +Triangle: [5398, 3601, 3343] +Triangle: [5398, 3349, 3350] +Triangle: [3342, 5398, 3343] +Triangle: [3603, 3357, 3611] +Triangle: [3352, 3603, 3604] +Triangle: [3351, 5399, 3352] +Triangle: [3357, 3400, 3359] +Triangle: [1235, 35, 33] +Triangle: [1237, 1244, 706] +Triangle: [1238, 1237, 705] +Triangle: [702, 26, 27] +Triangle: [1240, 36, 35] +Triangle: [703, 29, 26] +Triangle: [1240, 1238, 704] +Triangle: [1244, 1245, 707] +Triangle: [1236, 33, 32] +Triangle: [701, 27, 38] +Triangle: [1243, 1242, 32] +Triangle: [1241, 1243, 31] +Triangle: [1222, 46, 48] +Triangle: [1229, 1223, 41] +Triangle: [1223, 1224, 47] +Triangle: [1230, 1278, 40] +Triangle: [1231, 1228, 48] +Triangle: [1230, 39, 42] +Triangle: [1224, 1231, 49] +Triangle: [1232, 42, 43] +Triangle: [1234, 1229, 50] +Triangle: [1279, 45, 46] +Triangle: [1278, 1234, 51] +Triangle: [1281, 44, 45] +Triangle: [1233, 43, 44] +Triangle: [18, 17, 61] +Triangle: [18, 64, 63] +Triangle: [25, 62, 57] +Triangle: [19, 63, 52] +Triangle: [25, 24, 55] +Triangle: [16, 60, 61] +Triangle: [23, 59, 56] +Triangle: [16, 13, 58] +Triangle: [22, 53, 59] +Triangle: [14, 57, 58] +Triangle: [15, 21, 56] +Triangle: [24, 15, 54] +Triangle: [22, 20, 52] +Triangle: [10, 8, 1210] +Triangle: [1220, 12, 1] +Triangle: [7, 9, 1212] +Triangle: [1, 0, 1218] +Triangle: [9, 10, 1211] +Triangle: [1218, 0, 3] +Triangle: [1209, 2, 11] +Triangle: [5, 6, 1214] +Triangle: [1221, 11, 12] +Triangle: [4, 5, 1215] +Triangle: [3, 4, 1216] +Triangle: [6, 7, 1213] +Triangle: [1253, 76, 70] +Triangle: [1259, 1287, 70] +Triangle: [1254, 77, 1275] +Triangle: [1255, 1276, 1277] +Triangle: [1249, 72, 77] +Triangle: [1252, 75, 76] +Triangle: [1257, 1251, 74] +Triangle: [1250, 73, 75] +Triangle: [1251, 1248, 71] +Triangle: [1258, 68, 73] +Triangle: [1256, 1257, 67] +Triangle: [1249, 1256, 66] +Triangle: [1255, 65, 71] +Triangle: [82, 81, 712] +Triangle: [712, 81, 80] +Triangle: [80, 78, 711] +Triangle: [715, 33, 35] +Triangle: [82, 85, 86] +Triangle: [88, 92, 94] +Triangle: [130, 137, 162] +Triangle: [83, 91, 92] +Triangle: [106, 105, 104] +Triangle: [160, 173, 92] +Triangle: [86, 94, 95] +Triangle: [80, 81, 95] +Triangle: [78, 80, 96] +Triangle: [79, 78, 97] +Triangle: [99, 82, 713] +Triangle: [82, 99, 100] +Triangle: [95, 171, 170] +Triangle: [94, 172, 171] +Triangle: [85, 100, 104] +Triangle: [107, 99, 716] +Triangle: [99, 107, 106] +Triangle: [173, 172, 94] +Triangle: [83, 88, 109] +Triangle: [109, 88, 87] +Triangle: [103, 84, 109] +Triangle: [111, 109, 110] +Triangle: [112, 110, 87] +Triangle: [108, 110, 112] +Triangle: [115, 112, 104] +Triangle: [112, 115, 114] +Triangle: [98, 97, 116] +Triangle: [139, 118, 119] +Triangle: [118, 120, 121] +Triangle: [174, 122, 123] +Triangle: [174, 120, 124] +Triangle: [89, 126, 177] +Triangle: [177, 126, 128] +Triangle: [126, 162, 137] +Triangle: [124, 165, 166] +Triangle: [124, 120, 163] +Triangle: [164, 163, 120] +Triangle: [116, 139, 140] +Triangle: [139, 167, 164] +Triangle: [116, 168, 167] +Triangle: [169, 168, 116] +Triangle: [169, 97, 96] +Triangle: [86, 85, 87] +Triangle: [131, 130, 161] +Triangle: [132, 131, 159] +Triangle: [160, 91, 132] +Triangle: [89, 166, 162] +Triangle: [176, 124, 89] +Triangle: [101, 156, 155] +Triangle: [152, 149, 144] +Triangle: [134, 138, 151] +Triangle: [135, 133, 151] +Triangle: [157, 154, 153] +Triangle: [152, 145, 146] +Triangle: [150, 149, 152] +Triangle: [151, 150, 153] +Triangle: [141, 143, 149] +Triangle: [149, 143, 142] +Triangle: [136, 148, 157] +Triangle: [93, 157, 156] +Triangle: [138, 141, 150] +Triangle: [148, 135, 154] +Triangle: [153, 152, 155] +Triangle: [155, 146, 147] +Triangle: [102, 158, 159] +Triangle: [147, 160, 158] +Triangle: [136, 93, 161] +Triangle: [93, 101, 159] +Triangle: [134, 133, 163] +Triangle: [133, 135, 165] +Triangle: [136, 162, 166] +Triangle: [134, 164, 167] +Triangle: [138, 167, 168] +Triangle: [142, 143, 169] +Triangle: [143, 141, 168] +Triangle: [142, 170, 171] +Triangle: [145, 144, 171] +Triangle: [146, 145, 172] +Triangle: [147, 146, 173] +Triangle: [148, 166, 165] +Triangle: [125, 176, 179] +Triangle: [127, 177, 178] +Triangle: [90, 179, 177] +Triangle: [122, 174, 176] +Triangle: [120, 174, 175] +Triangle: [107, 181, 180] +Triangle: [180, 181, 183] +Triangle: [183, 184, 186] +Triangle: [181, 107, 717] +Triangle: [183, 181, 718] +Triangle: [720, 184, 183] +Triangle: [192, 184, 720] +Triangle: [722, 191, 192] +Triangle: [723, 190, 191] +Triangle: [715, 79, 190] +Triangle: [184, 187, 193] +Triangle: [198, 186, 193] +Triangle: [192, 188, 187] +Triangle: [191, 195, 188] +Triangle: [195, 191, 190] +Triangle: [79, 98, 189] +Triangle: [204, 197, 196] +Triangle: [201, 182, 186] +Triangle: [202, 204, 201] +Triangle: [182, 201, 200] +Triangle: [202, 198, 199] +Triangle: [180, 200, 105] +Triangle: [115, 105, 200] +Triangle: [210, 209, 207] +Triangle: [185, 202, 203] +Triangle: [197, 204, 202] +Triangle: [201, 204, 205] +Triangle: [114, 115, 208] +Triangle: [696, 205, 196] +Triangle: [696, 208, 200] +Triangle: [189, 211, 217] +Triangle: [218, 217, 211] +Triangle: [219, 218, 212] +Triangle: [220, 219, 213] +Triangle: [221, 220, 214] +Triangle: [222, 221, 215] +Triangle: [117, 211, 189] +Triangle: [140, 212, 211] +Triangle: [119, 213, 212] +Triangle: [214, 213, 119] +Triangle: [215, 214, 121] +Triangle: [216, 215, 175] +Triangle: [223, 187, 188] +Triangle: [187, 223, 227] +Triangle: [193, 227, 226] +Triangle: [203, 199, 226] +Triangle: [228, 223, 195] +Triangle: [223, 228, 229] +Triangle: [226, 227, 229] +Triangle: [250, 251, 249] +Triangle: [229, 228, 233] +Triangle: [234, 232, 230] +Triangle: [233, 228, 217] +Triangle: [233, 235, 236] +Triangle: [235, 237, 238] +Triangle: [238, 237, 239] +Triangle: [240, 239, 241] +Triangle: [231, 232, 244] +Triangle: [243, 244, 246] +Triangle: [242, 261, 262] +Triangle: [234, 236, 244] +Triangle: [238, 246, 244] +Triangle: [247, 263, 264] +Triangle: [235, 233, 218] +Triangle: [237, 235, 219] +Triangle: [221, 239, 237] +Triangle: [222, 241, 239] +Triangle: [194, 203, 224] +Triangle: [226, 230, 250] +Triangle: [225, 251, 250] +Triangle: [225, 230, 232] +Triangle: [129, 257, 256] +Triangle: [122, 265, 267] +Triangle: [90, 252, 255] +Triangle: [216, 266, 268] +Triangle: [241, 260, 261] +Triangle: [125, 255, 265] +Triangle: [90, 127, 256] +Triangle: [264, 246, 238] +Triangle: [264, 263, 245] +Triangle: [123, 267, 266] +Triangle: [242, 248, 247] +Triangle: [259, 268, 266] +Triangle: [265, 253, 254] +Triangle: [267, 254, 258] +Triangle: [241, 222, 268] +Triangle: [8, 2, 1209] +Triangle: [111, 270, 269] +Triangle: [302, 301, 272] +Triangle: [277, 273, 274] +Triangle: [270, 276, 275] +Triangle: [276, 277, 278] +Triangle: [277, 276, 280] +Triangle: [273, 277, 281] +Triangle: [281, 280, 283] +Triangle: [279, 281, 284] +Triangle: [284, 283, 286] +Triangle: [282, 284, 287] +Triangle: [287, 286, 289] +Triangle: [287, 290, 288] +Triangle: [289, 292, 293] +Triangle: [290, 293, 291] +Triangle: [294, 280, 276] +Triangle: [280, 294, 295] +Triangle: [283, 295, 694] +Triangle: [286, 694, 296] +Triangle: [292, 289, 296] +Triangle: [108, 294, 270] +Triangle: [295, 294, 108] +Triangle: [694, 295, 113] +Triangle: [296, 694, 114] +Triangle: [297, 296, 207] +Triangle: [273, 301, 302] +Triangle: [303, 301, 273] +Triangle: [303, 279, 305] +Triangle: [301, 303, 304] +Triangle: [305, 279, 282] +Triangle: [285, 309, 306] +Triangle: [300, 308, 309] +Triangle: [307, 306, 309] +Triangle: [300, 285, 288] +Triangle: [299, 288, 291] +Triangle: [323, 314, 317] +Triangle: [310, 307, 328] +Triangle: [326, 310, 329] +Triangle: [312, 330, 325] +Triangle: [325, 330, 316] +Triangle: [330, 323, 315] +Triangle: [313, 323, 330] +Triangle: [323, 313, 318] +Triangle: [317, 314, 321] +Triangle: [314, 318, 320] +Triangle: [320, 318, 313] +Triangle: [319, 313, 312] +Triangle: [329, 328, 311] +Triangle: [316, 315, 331] +Triangle: [331, 315, 317] +Triangle: [333, 324, 317] +Triangle: [340, 332, 331] +Triangle: [340, 324, 333] +Triangle: [322, 342, 339] +Triangle: [342, 343, 345] +Triangle: [342, 341, 338] +Triangle: [337, 340, 339] +Triangle: [336, 332, 340] +Triangle: [346, 345, 343] +Triangle: [321, 343, 342] +Triangle: [320, 344, 343] +Triangle: [308, 311, 328] +Triangle: [319, 311, 308] +Triangle: [319, 347, 344] +Triangle: [347, 308, 300] +Triangle: [344, 347, 348] +Triangle: [350, 349, 345] +Triangle: [634, 586, 631] +Triangle: [356, 355, 681] +Triangle: [352, 350, 346] +Triangle: [352, 348, 300] +Triangle: [680, 682, 352] +Triangle: [358, 357, 353] +Triangle: [350, 352, 682] +Triangle: [587, 586, 634] +Triangle: [683, 354, 353] +Triangle: [341, 359, 362] +Triangle: [685, 362, 359] +Triangle: [361, 364, 363] +Triangle: [341, 345, 349] +Triangle: [684, 359, 349] +Triangle: [351, 361, 360] +Triangle: [366, 337, 338] +Triangle: [367, 365, 338] +Triangle: [686, 367, 362] +Triangle: [369, 368, 363] +Triangle: [327, 316, 332] +Triangle: [326, 316, 327] +Triangle: [335, 310, 326] +Triangle: [310, 335, 371] +Triangle: [371, 370, 306] +Triangle: [376, 378, 379] +Triangle: [271, 380, 379] +Triangle: [375, 377, 379] +Triangle: [272, 381, 380] +Triangle: [374, 375, 380] +Triangle: [382, 381, 272] +Triangle: [383, 382, 304] +Triangle: [305, 306, 370] +Triangle: [406, 399, 393] +Triangle: [394, 399, 406] +Triangle: [395, 394, 402] +Triangle: [404, 397, 395] +Triangle: [404, 398, 389] +Triangle: [397, 404, 405] +Triangle: [398, 404, 403] +Triangle: [403, 402, 390] +Triangle: [390, 402, 406] +Triangle: [400, 406, 401] +Triangle: [396, 405, 415] +Triangle: [413, 388, 415] +Triangle: [414, 413, 412] +Triangle: [398, 411, 412] +Triangle: [411, 398, 392] +Triangle: [409, 410, 392] +Triangle: [409, 390, 400] +Triangle: [400, 391, 407] +Triangle: [411, 410, 416] +Triangle: [417, 416, 410] +Triangle: [408, 418, 417] +Triangle: [419, 418, 408] +Triangle: [418, 419, 422] +Triangle: [421, 426, 417] +Triangle: [426, 428, 416] +Triangle: [428, 426, 430] +Triangle: [429, 427, 385] +Triangle: [373, 374, 381] +Triangle: [372, 373, 382] +Triangle: [424, 441, 429] +Triangle: [447, 385, 423] +Triangle: [425, 384, 374] +Triangle: [420, 421, 422] +Triangle: [413, 429, 441] +Triangle: [428, 427, 414] +Triangle: [427, 429, 413] +Triangle: [426, 421, 420] +Triangle: [387, 431, 432] +Triangle: [420, 432, 386] +Triangle: [432, 431, 433] +Triangle: [433, 435, 436] +Triangle: [435, 437, 438] +Triangle: [376, 377, 438] +Triangle: [385, 427, 428] +Triangle: [439, 430, 386] +Triangle: [386, 432, 434] +Triangle: [385, 439, 440] +Triangle: [423, 440, 443] +Triangle: [445, 444, 384] +Triangle: [444, 423, 442] +Triangle: [443, 440, 434] +Triangle: [446, 443, 436] +Triangle: [446, 438, 377] +Triangle: [446, 375, 442] +Triangle: [374, 384, 442] +Triangle: [444, 445, 424] +Triangle: [399, 462, 461] +Triangle: [461, 462, 463] +Triangle: [394, 465, 462] +Triangle: [463, 462, 465] +Triangle: [463, 464, 466] +Triangle: [448, 466, 464] +Triangle: [474, 475, 448] +Triangle: [475, 474, 468] +Triangle: [465, 478, 476] +Triangle: [477, 476, 478] +Triangle: [476, 473, 467] +Triangle: [485, 459, 468] +Triangle: [469, 484, 449] +Triangle: [470, 483, 484] +Triangle: [470, 471, 482] +Triangle: [471, 472, 481] +Triangle: [480, 481, 472] +Triangle: [498, 486, 484] +Triangle: [450, 487, 486] +Triangle: [484, 486, 487] +Triangle: [495, 450, 488] +Triangle: [458, 451, 489] +Triangle: [525, 458, 490] +Triangle: [456, 457, 491] +Triangle: [619, 456, 492] +Triangle: [452, 493, 494] +Triangle: [495, 496, 489] +Triangle: [486, 498, 499] +Triangle: [497, 496, 488] +Triangle: [489, 496, 497] +Triangle: [490, 489, 500] +Triangle: [526, 490, 501] +Triangle: [492, 491, 502] +Triangle: [480, 473, 476] +Triangle: [473, 472, 509] +Triangle: [471, 470, 507] +Triangle: [469, 468, 505] +Triangle: [473, 510, 504] +Triangle: [472, 471, 508] +Triangle: [470, 469, 506] +Triangle: [474, 511, 505] +Triangle: [474, 467, 504] +Triangle: [512, 509, 508] +Triangle: [512, 507, 506] +Triangle: [510, 509, 512] +Triangle: [511, 504, 512] +Triangle: [519, 498, 483] +Triangle: [498, 519, 520] +Triangle: [521, 497, 499] +Triangle: [481, 480, 513] +Triangle: [514, 517, 516] +Triangle: [515, 518, 517] +Triangle: [482, 481, 516] +Triangle: [517, 520, 519] +Triangle: [521, 520, 517] +Triangle: [500, 497, 521] +Triangle: [518, 523, 522] +Triangle: [524, 523, 518] +Triangle: [501, 500, 522] +Triangle: [491, 526, 527] +Triangle: [457, 525, 526] +Triangle: [527, 501, 523] +Triangle: [527, 524, 528] +Triangle: [503, 502, 528] +Triangle: [528, 524, 530] +Triangle: [531, 530, 524] +Triangle: [533, 531, 515] +Triangle: [513, 534, 533] +Triangle: [477, 534, 513] +Triangle: [479, 535, 534] +Triangle: [531, 533, 537] +Triangle: [530, 531, 536] +Triangle: [532, 536, 539] +Triangle: [542, 540, 539] +Triangle: [544, 542, 541] +Triangle: [546, 544, 543] +Triangle: [547, 548, 546] +Triangle: [549, 550, 548] +Triangle: [552, 550, 549] +Triangle: [552, 551, 553] +Triangle: [554, 553, 555] +Triangle: [560, 559, 557] +Triangle: [556, 555, 559] +Triangle: [558, 557, 561] +Triangle: [562, 561, 563] +Triangle: [564, 563, 565] +Triangle: [492, 503, 621] +Triangle: [493, 567, 568] +Triangle: [621, 622, 565] +Triangle: [563, 568, 567] +Triangle: [529, 538, 623] +Triangle: [528, 532, 538] +Triangle: [538, 532, 540] +Triangle: [538, 569, 624] +Triangle: [566, 582, 581] +Triangle: [564, 581, 580] +Triangle: [562, 580, 579] +Triangle: [558, 579, 578] +Triangle: [578, 577, 556] +Triangle: [556, 577, 576] +Triangle: [554, 576, 575] +Triangle: [575, 574, 550] +Triangle: [574, 573, 548] +Triangle: [548, 573, 572] +Triangle: [546, 572, 571] +Triangle: [571, 570, 542] +Triangle: [570, 569, 540] +Triangle: [534, 535, 537] +Triangle: [583, 539, 536] +Triangle: [541, 539, 583] +Triangle: [541, 585, 584] +Triangle: [543, 584, 586] +Triangle: [545, 586, 587] +Triangle: [549, 547, 587] +Triangle: [551, 549, 588] +Triangle: [551, 589, 590] +Triangle: [605, 598, 597] +Triangle: [607, 599, 598] +Triangle: [608, 592, 591] +Triangle: [610, 600, 599] +Triangle: [608, 611, 593] +Triangle: [612, 601, 600] +Triangle: [611, 613, 594] +Triangle: [612, 614, 602] +Triangle: [613, 615, 595] +Triangle: [614, 616, 603] +Triangle: [615, 617, 596] +Triangle: [618, 604, 603] +Triangle: [617, 606, 597] +Triangle: [609, 591, 625] +Triangle: [569, 609, 626] +Triangle: [574, 575, 606] +Triangle: [582, 618, 616] +Triangle: [573, 574, 617] +Triangle: [580, 581, 616] +Triangle: [572, 573, 615] +Triangle: [579, 580, 614] +Triangle: [571, 572, 613] +Triangle: [579, 612, 610] +Triangle: [570, 571, 611] +Triangle: [578, 610, 607] +Triangle: [570, 608, 609] +Triangle: [577, 607, 605] +Triangle: [576, 605, 606] +Triangle: [582, 624, 626] +Triangle: [618, 626, 625] +Triangle: [623, 624, 582] +Triangle: [622, 623, 566] +Triangle: [529, 622, 621] +Triangle: [620, 621, 567] +Triangle: [452, 619, 620] +Triangle: [478, 465, 394] +Triangle: [583, 537, 535] +Triangle: [479, 627, 628] +Triangle: [478, 395, 627] +Triangle: [627, 629, 631] +Triangle: [632, 631, 629] +Triangle: [397, 629, 627] +Triangle: [396, 630, 629] +Triangle: [633, 586, 584] +Triangle: [631, 586, 633] +Triangle: [588, 587, 635] +Triangle: [388, 638, 630] +Triangle: [441, 637, 638] +Triangle: [424, 445, 637] +Triangle: [630, 638, 640] +Triangle: [637, 639, 640] +Triangle: [639, 637, 445] +Triangle: [634, 632, 640] +Triangle: [640, 639, 642] +Triangle: [639, 425, 641] +Triangle: [641, 425, 373] +Triangle: [644, 372, 383] +Triangle: [641, 372, 644] +Triangle: [371, 645, 644] +Triangle: [335, 646, 645] +Triangle: [334, 647, 646] +Triangle: [642, 641, 645] +Triangle: [642, 646, 647] +Triangle: [635, 634, 643] +Triangle: [636, 635, 647] +Triangle: [648, 647, 334] +Triangle: [650, 648, 327] +Triangle: [648, 650, 649] +Triangle: [589, 588, 636] +Triangle: [652, 650, 336] +Triangle: [650, 652, 651] +Triangle: [590, 589, 649] +Triangle: [654, 652, 337] +Triangle: [653, 651, 652] +Triangle: [655, 590, 651] +Triangle: [553, 590, 655] +Triangle: [453, 494, 659] +Triangle: [568, 658, 659] +Triangle: [658, 568, 563] +Triangle: [561, 557, 657] +Triangle: [657, 557, 559] +Triangle: [555, 655, 656] +Triangle: [663, 656, 655] +Triangle: [656, 663, 662] +Triangle: [657, 662, 661] +Triangle: [661, 660, 659] +Triangle: [455, 659, 660] +Triangle: [454, 660, 665] +Triangle: [669, 654, 366] +Triangle: [654, 669, 670] +Triangle: [670, 668, 663] +Triangle: [668, 667, 662] +Triangle: [662, 667, 666] +Triangle: [661, 666, 665] +Triangle: [669, 671, 674] +Triangle: [677, 678, 674] +Triangle: [673, 676, 675] +Triangle: [672, 675, 678] +Triangle: [671, 669, 365] +Triangle: [368, 686, 685] +Triangle: [355, 360, 684] +Triangle: [363, 685, 684] +Triangle: [298, 683, 680] +Triangle: [679, 682, 357] +Triangle: [353, 357, 682] +Triangle: [679, 681, 349] +Triangle: [677, 671, 367] +Triangle: [672, 677, 686] +Triangle: [369, 673, 672] +Triangle: [668, 691, 690] +Triangle: [667, 690, 689] +Triangle: [664, 665, 687] +Triangle: [687, 665, 666] +Triangle: [670, 674, 691] +Triangle: [678, 690, 691] +Triangle: [675, 689, 690] +Triangle: [689, 675, 692] +Triangle: [687, 692, 693] +Triangle: [676, 693, 692] +Triangle: [583, 628, 633] +Triangle: [358, 695, 356] +Triangle: [355, 356, 695] +Triangle: [696, 206, 210] +Triangle: [710, 703, 702] +Triangle: [697, 698, 38] +Triangle: [699, 700, 28] +Triangle: [700, 697, 37] +Triangle: [709, 702, 701] +Triangle: [708, 701, 698] +Triangle: [36, 704, 699] +Triangle: [706, 707, 698] +Triangle: [704, 705, 700] +Triangle: [705, 706, 697] +Triangle: [1247, 710, 709] +Triangle: [1246, 709, 708] +Triangle: [1239, 708, 707] +Triangle: [1241, 30, 710] +Triangle: [30, 29, 703] +Triangle: [33, 715, 723] +Triangle: [32, 723, 722] +Triangle: [31, 722, 721] +Triangle: [721, 720, 29] +Triangle: [29, 720, 719] +Triangle: [719, 718, 27] +Triangle: [718, 717, 38] +Triangle: [717, 716, 37] +Triangle: [716, 713, 28] +Triangle: [79, 715, 711] +Triangle: [714, 711, 35] +Triangle: [712, 714, 36] +Triangle: [713, 712, 34] +Triangle: [733, 732, 262] +Triangle: [734, 733, 261] +Triangle: [260, 259, 731] +Triangle: [259, 258, 730] +Triangle: [258, 254, 729] +Triangle: [729, 254, 253] +Triangle: [728, 253, 255] +Triangle: [727, 255, 252] +Triangle: [726, 252, 256] +Triangle: [725, 256, 257] +Triangle: [732, 733, 5216] +Triangle: [743, 741, 5196] +Triangle: [5218, 734, 731] +Triangle: [5219, 731, 730] +Triangle: [730, 729, 5214] +Triangle: [729, 728, 5213] +Triangle: [728, 727, 5212] +Triangle: [727, 726, 5211] +Triangle: [5211, 726, 725] +Triangle: [5210, 725, 724] +Triangle: [1195, 1199, 747] +Triangle: [1197, 1203, 760] +Triangle: [1133, 771, 770] +Triangle: [785, 784, 779] +Triangle: [791, 772, 773] +Triangle: [784, 783, 780] +Triangle: [1096, 1099, 751] +Triangle: [1204, 763, 762] +Triangle: [1201, 799, 800] +Triangle: [1102, 748, 804] +Triangle: [796, 787, 776] +Triangle: [1194, 1205, 766] +Triangle: [1202, 800, 746] +Triangle: [1093, 1096, 750] +Triangle: [1006, 1126, 1008] +Triangle: [891, 887, 786] +Triangle: [786, 785, 778] +Triangle: [805, 836, 837] +Triangle: [893, 890, 783] +Triangle: [888, 790, 788] +Triangle: [887, 892, 785] +Triangle: [1147, 1139, 767] +Triangle: [894, 793, 792] +Triangle: [795, 796, 767] +Triangle: [783, 782, 781] +Triangle: [896, 788, 789] +Triangle: [897, 794, 793] +Triangle: [895, 789, 782] +Triangle: [885, 795, 794] +Triangle: [788, 790, 773] +Triangle: [885, 889, 796] +Triangle: [793, 770, 771] +Triangle: [898, 791, 790] +Triangle: [782, 789, 774] +Triangle: [892, 893, 784] +Triangle: [795, 768, 769] +Triangle: [789, 788, 775] +Triangle: [787, 786, 777] +Triangle: [886, 782, 783] +Triangle: [794, 769, 770] +Triangle: [889, 891, 787] +Triangle: [1090, 1098, 802] +Triangle: [1097, 757, 758] +Triangle: [1094, 754, 755] +Triangle: [1104, 756, 757] +Triangle: [1095, 755, 756] +Triangle: [1205, 1198, 798] +Triangle: [1200, 762, 761] +Triangle: [1207, 764, 763] +Triangle: [1100, 804, 803] +Triangle: [1091, 749, 748] +Triangle: [1098, 1092, 803] +Triangle: [1103, 1093, 752] +Triangle: [1196, 746, 747] +Triangle: [805, 807, 808] +Triangle: [806, 810, 809] +Triangle: [868, 858, 810] +Triangle: [869, 868, 813] +Triangle: [806, 811, 813] +Triangle: [812, 811, 806] +Triangle: [867, 869, 816] +Triangle: [814, 816, 813] +Triangle: [812, 815, 814] +Triangle: [817, 816, 814] +Triangle: [862, 855, 822] +Triangle: [861, 820, 822] +Triangle: [864, 881, 871] +Triangle: [819, 832, 833] +Triangle: [820, 861, 866] +Triangle: [820, 833, 835] +Triangle: [824, 808, 807] +Triangle: [823, 825, 826] +Triangle: [826, 885, 897] +Triangle: [828, 897, 894] +Triangle: [824, 826, 828] +Triangle: [808, 824, 827] +Triangle: [899, 831, 830] +Triangle: [827, 828, 830] +Triangle: [812, 827, 829] +Triangle: [829, 830, 817] +Triangle: [835, 896, 895] +Triangle: [833, 888, 896] +Triangle: [807, 837, 847] +Triangle: [888, 833, 832] +Triangle: [838, 836, 805] +Triangle: [823, 847, 848] +Triangle: [838, 857, 865] +Triangle: [863, 843, 841] +Triangle: [838, 841, 839] +Triangle: [837, 836, 839] +Triangle: [839, 841, 842] +Triangle: [863, 860, 844] +Triangle: [821, 822, 835] +Triangle: [843, 844, 852] +Triangle: [856, 862, 821] +Triangle: [859, 856, 846] +Triangle: [853, 852, 844] +Triangle: [844, 860, 859] +Triangle: [846, 854, 853] +Triangle: [857, 838, 809] +Triangle: [891, 889, 825] +Triangle: [887, 891, 848] +Triangle: [892, 887, 850] +Triangle: [849, 850, 848] +Triangle: [837, 840, 849] +Triangle: [842, 850, 849] +Triangle: [893, 892, 851] +Triangle: [886, 854, 834] +Triangle: [890, 853, 854] +Triangle: [864, 809, 810] +Triangle: [890, 893, 852] +Triangle: [1198, 1197, 797] +Triangle: [1203, 1195, 759] +Triangle: [862, 856, 870] +Triangle: [1101, 758, 749] +Triangle: [866, 861, 873] +Triangle: [859, 860, 872] +Triangle: [857, 871, 882] +Triangle: [860, 863, 880] +Triangle: [868, 869, 875] +Triangle: [858, 868, 884] +Triangle: [869, 867, 874] +Triangle: [858, 877, 881] +Triangle: [856, 859, 878] +Triangle: [855, 876, 873] +Triangle: [865, 882, 880] +Triangle: [855, 862, 879] +Triangle: [909, 1038, 1018] +Triangle: [1049, 1050, 1138] +Triangle: [1139, 1051, 1042] +Triangle: [1145, 1053, 1054] +Triangle: [1045, 1052, 1140] +Triangle: [1141, 1054, 1044] +Triangle: [1144, 1137, 1048] +Triangle: [1146, 1055, 1053] +Triangle: [1042, 1043, 1134] +Triangle: [1043, 1046, 1136] +Triangle: [1050, 1055, 1146] +Triangle: [1143, 1044, 1045] +Triangle: [1042, 1119, 1108] +Triangle: [1044, 1113, 1112] +Triangle: [1046, 1043, 1108] +Triangle: [818, 831, 832] +Triangle: [1050, 1049, 1118] +Triangle: [881, 1101, 1091] +Triangle: [1051, 1110, 1119] +Triangle: [1045, 1112, 1107] +Triangle: [1053, 1115, 1114] +Triangle: [1044, 1054, 1114] +Triangle: [1048, 1153, 1155] +Triangle: [1055, 1116, 1115] +Triangle: [1047, 1046, 1109] +Triangle: [1055, 1050, 1117] +Triangle: [747, 916, 917] +Triangle: [916, 747, 746] +Triangle: [759, 917, 920] +Triangle: [760, 759, 918] +Triangle: [920, 921, 919] +Triangle: [1047, 1048, 1137] +Triangle: [971, 924, 1065] +Triangle: [981, 925, 930] +Triangle: [1001, 1012, 1021] +Triangle: [1067, 1068, 932] +Triangle: [1068, 1069, 934] +Triangle: [1070, 1071, 936] +Triangle: [1148, 938, 989] +Triangle: [1073, 1074, 940] +Triangle: [952, 970, 1059] +Triangle: [994, 948, 950] +Triangle: [1075, 1076, 944] +Triangle: [1076, 1077, 946] +Triangle: [1077, 1078, 948] +Triangle: [948, 1078, 1079] +Triangle: [1058, 1080, 1081] +Triangle: [1082, 1083, 954] +Triangle: [952, 1081, 1084] +Triangle: [1083, 1085, 958] +Triangle: [1085, 1086, 960] +Triangle: [960, 1086, 1087] +Triangle: [962, 1087, 1088] +Triangle: [979, 964, 966] +Triangle: [966, 1089, 1065] +Triangle: [977, 978, 980] +Triangle: [925, 971, 1064] +Triangle: [1208, 754, 753] +Triangle: [974, 970, 952] +Triangle: [1075, 942, 940] +Triangle: [946, 948, 994] +Triangle: [944, 946, 993] +Triangle: [992, 991, 942] +Triangle: [991, 990, 940] +Triangle: [938, 940, 1151] +Triangle: [940, 990, 1151] +Triangle: [1041, 974, 957] +Triangle: [1031, 987, 934] +Triangle: [987, 986, 932] +Triangle: [932, 986, 985] +Triangle: [1001, 984, 983] +Triangle: [964, 1088, 1089] +Triangle: [925, 981, 982] +Triangle: [982, 996, 924] +Triangle: [924, 996, 983] +Triangle: [984, 929, 979] +Triangle: [978, 979, 929] +Triangle: [964, 979, 978] +Triangle: [962, 978, 977] +Triangle: [960, 977, 976] +Triangle: [976, 975, 954] +Triangle: [902, 901, 997] +Triangle: [969, 999, 1000] +Triangle: [1012, 1001, 1002] +Triangle: [982, 1002, 1001] +Triangle: [1032, 1033, 1004] +Triangle: [1126, 1006, 915] +Triangle: [754, 1094, 1103] +Triangle: [1103, 1094, 874] +Triangle: [883, 874, 867] +Triangle: [1208, 1011, 764] +Triangle: [866, 867, 818] +Triangle: [898, 832, 831] +Triangle: [1099, 1090, 801] +Triangle: [834, 854, 846] +Triangle: [889, 885, 826] +Triangle: [1000, 999, 1012] +Triangle: [903, 902, 998] +Triangle: [1005, 1016, 1034] +Triangle: [968, 1000, 1015] +Triangle: [1000, 1013, 1014] +Triangle: [1012, 999, 1020] +Triangle: [969, 1004, 1019] +Triangle: [1033, 1127, 1111] +Triangle: [900, 1018, 997] +Triangle: [1003, 1014, 1013] +Triangle: [1014, 1003, 1022] +Triangle: [1015, 1022, 1027] +Triangle: [1016, 1023, 1036] +Triangle: [981, 1003, 1002] +Triangle: [1066, 1067, 930] +Triangle: [929, 984, 1021] +Triangle: [1025, 1027, 1023] +Triangle: [999, 969, 1026] +Triangle: [968, 1025, 1016] +Triangle: [1005, 1004, 969] +Triangle: [1020, 1026, 980] +Triangle: [1026, 1019, 928] +Triangle: [985, 1022, 1003] +Triangle: [1027, 1022, 985] +Triangle: [1023, 1027, 986] +Triangle: [1036, 1023, 987] +Triangle: [1024, 1131, 1128] +Triangle: [1129, 1131, 1024] +Triangle: [1004, 1033, 1035] +Triangle: [1130, 1129, 1017] +Triangle: [998, 997, 1127] +Triangle: [988, 1128, 1132] +Triangle: [1069, 1070, 1029] +Triangle: [1028, 928, 1019] +Triangle: [976, 977, 928] +Triangle: [1037, 1028, 1035] +Triangle: [975, 976, 1028] +Triangle: [1056, 1106, 1110] +Triangle: [975, 1041, 1040] +Triangle: [1084, 1082, 1040] +Triangle: [1041, 975, 1037] +Triangle: [1038, 909, 974] +Triangle: [1052, 1107, 1106] +Triangle: [907, 908, 991] +Triangle: [906, 990, 991] +Triangle: [904, 903, 1017] +Triangle: [1072, 1073, 938] +Triangle: [1152, 1151, 990] +Triangle: [791, 898, 899] +Triangle: [904, 1062, 1063] +Triangle: [909, 910, 970] +Triangle: [907, 992, 993] +Triangle: [914, 993, 994] +Triangle: [950, 1079, 1080] +Triangle: [1058, 1059, 995] +Triangle: [911, 1059, 970] +Triangle: [912, 995, 1059] +Triangle: [913, 994, 995] +Triangle: [1071, 1072, 1148] +Triangle: [936, 1148, 1061] +Triangle: [949, 947, 945] +Triangle: [926, 972, 1064] +Triangle: [931, 1067, 1066] +Triangle: [933, 1068, 1067] +Triangle: [935, 1069, 1068] +Triangle: [937, 1071, 1070] +Triangle: [939, 1073, 1072] +Triangle: [941, 1074, 1073] +Triangle: [943, 1075, 1074] +Triangle: [945, 1076, 1075] +Triangle: [945, 947, 1077] +Triangle: [947, 949, 1078] +Triangle: [951, 1079, 1078] +Triangle: [953, 1081, 1080] +Triangle: [1039, 955, 1083] +Triangle: [956, 1084, 1081] +Triangle: [955, 959, 1085] +Triangle: [959, 961, 1086] +Triangle: [961, 963, 1087] +Triangle: [963, 965, 1088] +Triangle: [926, 1065, 1089] +Triangle: [967, 1089, 1088] +Triangle: [927, 1066, 1064] +Triangle: [1030, 1070, 1069] +Triangle: [956, 1039, 1082] +Triangle: [1057, 1080, 1079] +Triangle: [1060, 1072, 1071] +Triangle: [941, 951, 949] +Triangle: [939, 1057, 951] +Triangle: [1060, 953, 1057] +Triangle: [1060, 937, 956] +Triangle: [1039, 956, 937] +Triangle: [1030, 935, 955] +Triangle: [959, 955, 935] +Triangle: [961, 959, 933] +Triangle: [963, 961, 931] +Triangle: [965, 963, 927] +Triangle: [972, 926, 967] +Triangle: [879, 870, 1090] +Triangle: [900, 1110, 1106] +Triangle: [883, 873, 1093] +Triangle: [878, 872, 1092] +Triangle: [871, 1091, 1102] +Triangle: [880, 1100, 1092] +Triangle: [884, 875, 1095] +Triangle: [884, 1104, 1097] +Triangle: [875, 874, 1094] +Triangle: [877, 1097, 1101] +Triangle: [870, 878, 1098] +Triangle: [1133, 1137, 772] +Triangle: [876, 1096, 1093] +Triangle: [882, 1102, 1100] +Triangle: [876, 879, 1099] +Triangle: [1052, 1056, 1147] +Triangle: [1118, 1150, 1152] +Triangle: [1118, 906, 908] +Triangle: [1117, 908, 907] +Triangle: [907, 914, 1115] +Triangle: [914, 913, 1114] +Triangle: [913, 912, 1113] +Triangle: [912, 911, 1112] +Triangle: [1112, 911, 910] +Triangle: [1107, 910, 909] +Triangle: [1018, 1038, 1037] +Triangle: [1110, 900, 901] +Triangle: [1119, 901, 902] +Triangle: [1109, 1108, 902] +Triangle: [1121, 1109, 903] +Triangle: [1062, 905, 1120] +Triangle: [1007, 1008, 1123] +Triangle: [1122, 1125, 1124] +Triangle: [988, 1061, 1149] +Triangle: [1062, 904, 1024] +Triangle: [1206, 761, 799] +Triangle: [1129, 1130, 1032] +Triangle: [1130, 1127, 1033] +Triangle: [1128, 1131, 1036] +Triangle: [1111, 1127, 997] +Triangle: [1132, 1128, 1031] +Triangle: [1131, 1129, 1034] +Triangle: [1140, 1147, 776] +Triangle: [1154, 1153, 1048] +Triangle: [1143, 1135, 778] +Triangle: [1138, 1146, 774] +Triangle: [769, 1134, 1136] +Triangle: [768, 1142, 1134] +Triangle: [1146, 1145, 781] +Triangle: [772, 1137, 1144] +Triangle: [1141, 1143, 779] +Triangle: [1135, 1140, 777] +Triangle: [781, 1145, 1141] +Triangle: [767, 1139, 1142] +Triangle: [1144, 1138, 775] +Triangle: [1051, 1139, 1147] +Triangle: [1046, 1047, 1133] +Triangle: [772, 791, 792] +Triangle: [1118, 1049, 1155] +Triangle: [1150, 1120, 905] +Triangle: [1153, 1154, 1063] +Triangle: [1155, 1153, 1120] +Triangle: [1152, 905, 989] +Triangle: [1121, 1063, 1154] +Triangle: [1149, 989, 905] +Triangle: [1166, 1167, 1164] +Triangle: [1009, 1167, 1166] +Triangle: [1191, 1168, 1163] +Triangle: [1169, 1162, 1163] +Triangle: [921, 1170, 1171] +Triangle: [1170, 922, 1166] +Triangle: [1165, 1172, 1171] +Triangle: [919, 1171, 1172] +Triangle: [1173, 1172, 1165] +Triangle: [797, 760, 1172] +Triangle: [1174, 1173, 1164] +Triangle: [1175, 1174, 1163] +Triangle: [798, 797, 1173] +Triangle: [766, 798, 1174] +Triangle: [1176, 1175, 1162] +Triangle: [1160, 1177, 1176] +Triangle: [1159, 1178, 1177] +Triangle: [1158, 1179, 1178] +Triangle: [1179, 1158, 1157] +Triangle: [766, 1175, 1176] +Triangle: [765, 1176, 1177] +Triangle: [1011, 1177, 1178] +Triangle: [764, 1178, 1179] +Triangle: [763, 1179, 1180] +Triangle: [1182, 1180, 1157] +Triangle: [762, 1180, 1182] +Triangle: [1181, 1122, 1182] +Triangle: [1182, 1122, 1183] +Triangle: [799, 761, 1183] +Triangle: [1123, 1184, 1183] +Triangle: [1184, 1123, 1008] +Triangle: [799, 1184, 1185] +Triangle: [800, 1185, 1126] +Triangle: [1125, 1122, 1181] +Triangle: [1186, 973, 1181] +Triangle: [735, 745, 1186] +Triangle: [736, 735, 1156] +Triangle: [737, 736, 1157] +Triangle: [737, 1158, 1159] +Triangle: [739, 738, 1159] +Triangle: [740, 739, 1160] +Triangle: [740, 1161, 1187] +Triangle: [1162, 1169, 1187] +Triangle: [1188, 743, 744] +Triangle: [1189, 1188, 1187] +Triangle: [1189, 1169, 1168] +Triangle: [1191, 1164, 1167] +Triangle: [1192, 1167, 1009] +Triangle: [1192, 1190, 1168] +Triangle: [741, 743, 1188] +Triangle: [1193, 923, 742] +Triangle: [1193, 1188, 1189] +Triangle: [1190, 1105, 923] +Triangle: [1105, 1190, 1192] +Triangle: [758, 1206, 1201] +Triangle: [754, 1208, 1207] +Triangle: [1011, 1208, 1194] +Triangle: [801, 802, 1195] +Triangle: [750, 751, 1197] +Triangle: [804, 1196, 1199] +Triangle: [755, 1207, 1204] +Triangle: [757, 1200, 1206] +Triangle: [752, 750, 1198] +Triangle: [748, 1202, 1196] +Triangle: [753, 752, 1205] +Triangle: [749, 1201, 1202] +Triangle: [756, 1204, 1200] +Triangle: [751, 801, 1203] +Triangle: [802, 803, 1199] +Triangle: [1210, 1209, 50] +Triangle: [1214, 1213, 48] +Triangle: [43, 1217, 1216] +Triangle: [44, 1216, 1215] +Triangle: [51, 1221, 1220] +Triangle: [45, 1215, 1214] +Triangle: [50, 1209, 1221] +Triangle: [42, 1218, 1217] +Triangle: [1212, 1211, 47] +Triangle: [1219, 1218, 42] +Triangle: [1213, 1212, 49] +Triangle: [40, 1220, 1219] +Triangle: [1211, 1210, 41] +Triangle: [76, 1280, 1227] +Triangle: [70, 1227, 1226] +Triangle: [77, 1234, 1278] +Triangle: [65, 1277, 1279] +Triangle: [72, 1229, 1234] +Triangle: [75, 1282, 1280] +Triangle: [67, 74, 1231] +Triangle: [75, 73, 1283] +Triangle: [74, 71, 1228] +Triangle: [73, 68, 1225] +Triangle: [66, 67, 1224] +Triangle: [66, 1223, 1229] +Triangle: [65, 1222, 1228] +Triangle: [1269, 1241, 1247] +Triangle: [1264, 1239, 1245] +Triangle: [1272, 1246, 1239] +Triangle: [1273, 1247, 1246] +Triangle: [1269, 1266, 1243] +Triangle: [1266, 1265, 1242] +Triangle: [1261, 1236, 1242] +Triangle: [1270, 1271, 1245] +Triangle: [1268, 1263, 1238] +Triangle: [1268, 1240, 1235] +Triangle: [1263, 1262, 1237] +Triangle: [1262, 1270, 1244] +Triangle: [1267, 1235, 1236] +Triangle: [52, 1255, 1248] +Triangle: [55, 54, 1256] +Triangle: [54, 56, 1257] +Triangle: [57, 1274, 1284] +Triangle: [59, 53, 1248] +Triangle: [58, 1284, 1285] +Triangle: [56, 59, 1251] +Triangle: [60, 1285, 1286] +Triangle: [55, 1249, 1254] +Triangle: [63, 1276, 1255] +Triangle: [62, 1254, 1274] +Triangle: [63, 64, 1260] +Triangle: [64, 61, 1286] +Triangle: [20, 22, 1267] +Triangle: [15, 24, 1270] +Triangle: [21, 15, 1262] +Triangle: [23, 1268, 1267] +Triangle: [21, 1263, 1268] +Triangle: [24, 25, 1271] +Triangle: [20, 1261, 1265] +Triangle: [19, 1265, 1266] +Triangle: [18, 1266, 1269] +Triangle: [13, 16, 1273] +Triangle: [14, 13, 1272] +Triangle: [25, 14, 1264] +Triangle: [17, 1269, 1273] +Triangle: [1258, 1274, 1275] +Triangle: [1259, 69, 1277] +Triangle: [1225, 68, 1275] +Triangle: [1226, 1279, 1277] +Triangle: [1280, 1233, 1281] +Triangle: [1227, 1281, 1279] +Triangle: [1280, 1282, 1232] +Triangle: [1282, 1283, 1230] +Triangle: [1283, 1225, 1278] +Triangle: [1250, 1284, 1274] +Triangle: [1252, 1285, 1284] +Triangle: [1253, 1286, 1285] +Triangle: [1259, 1276, 1260] +Triangle: [1253, 1287, 1260] +Triangle: [1321, 1323, 2415] +Triangle: [2417, 1906, 1907] +Triangle: [2418, 1905, 1906] +Triangle: [1315, 1314, 1903] +Triangle: [1323, 1324, 2420] +Triangle: [1314, 1317, 1904] +Triangle: [2420, 1324, 1905] +Triangle: [2424, 1907, 1908] +Triangle: [1320, 1321, 2416] +Triangle: [1326, 1315, 1902] +Triangle: [2423, 1319, 1320] +Triangle: [2421, 1318, 1319] +Triangle: [1336, 1334, 2402] +Triangle: [2409, 1338, 1329] +Triangle: [2403, 1329, 1335] +Triangle: [2410, 1327, 1328] +Triangle: [2411, 1337, 1336] +Triangle: [1330, 1327, 2410] +Triangle: [2404, 1335, 1337] +Triangle: [1331, 1330, 2412] +Triangle: [2414, 1339, 1338] +Triangle: [1334, 1333, 2459] +Triangle: [2458, 1328, 1339] +Triangle: [1333, 1332, 2461] +Triangle: [1332, 1331, 2413] +Triangle: [1306, 1352, 1349] +Triangle: [1351, 1352, 1306] +Triangle: [1345, 1350, 1313] +Triangle: [1340, 1351, 1307] +Triangle: [1313, 1350, 1343] +Triangle: [1349, 1348, 1304] +Triangle: [1344, 1347, 1311] +Triangle: [1304, 1348, 1346] +Triangle: [1347, 1341, 1310] +Triangle: [1346, 1345, 1302] +Triangle: [1303, 1342, 1344] +Triangle: [1312, 1343, 1342] +Triangle: [1310, 1341, 1340] +Triangle: [2390, 1296, 1298] +Triangle: [2400, 2399, 1289] +Triangle: [2392, 1297, 1295] +Triangle: [2398, 1288, 1289] +Triangle: [2391, 1298, 1297] +Triangle: [2398, 2397, 1291] +Triangle: [2389, 2401, 1299] +Triangle: [2394, 1294, 1293] +Triangle: [2401, 2400, 1300] +Triangle: [2395, 1293, 1292] +Triangle: [2396, 1292, 1291] +Triangle: [2393, 1295, 1294] +Triangle: [1358, 1364, 2433] +Triangle: [2439, 1357, 1358] +Triangle: [2455, 1365, 2434] +Triangle: [2435, 1353, 2457] +Triangle: [1365, 1360, 2429] +Triangle: [1364, 1363, 2432] +Triangle: [2437, 1355, 1362] +Triangle: [1363, 1361, 2430] +Triangle: [2431, 1362, 1359] +Triangle: [1361, 1356, 2438] +Triangle: [2436, 1354, 1355] +Triangle: [2429, 1360, 1354] +Triangle: [1359, 1353, 2435] +Triangle: [1913, 1369, 1370] +Triangle: [1913, 1915, 1368] +Triangle: [1912, 1366, 1368] +Triangle: [1916, 1912, 1323] +Triangle: [1372, 1371, 1370] +Triangle: [1379, 1377, 1374] +Triangle: [130, 1439, 1440] +Triangle: [1377, 91, 83] +Triangle: [1388, 1389, 1390] +Triangle: [1438, 91, 1377] +Triangle: [1380, 1379, 1372] +Triangle: [1368, 1381, 1380] +Triangle: [1381, 1368, 1366] +Triangle: [1367, 1383, 1382] +Triangle: [1914, 1370, 1384] +Triangle: [1385, 1384, 1370] +Triangle: [1380, 1381, 1448] +Triangle: [1379, 1380, 1449] +Triangle: [1388, 1385, 1371] +Triangle: [1917, 1384, 1391] +Triangle: [1384, 1385, 1390] +Triangle: [1451, 1377, 1379] +Triangle: [1393, 1374, 83] +Triangle: [1373, 1374, 1393] +Triangle: [103, 1395, 1393] +Triangle: [1394, 1393, 1395] +Triangle: [1373, 1394, 1396] +Triangle: [1392, 1397, 1396] +Triangle: [1388, 1396, 1399] +Triangle: [1398, 1399, 1396] +Triangle: [1383, 1401, 1400] +Triangle: [1403, 1402, 1417] +Triangle: [1405, 1404, 1402] +Triangle: [1407, 1406, 1452] +Triangle: [1452, 1454, 1408] +Triangle: [1455, 1410, 1375] +Triangle: [1455, 178, 128] +Triangle: [137, 1440, 1410] +Triangle: [1444, 1443, 1408] +Triangle: [1408, 1443, 1441] +Triangle: [1442, 1402, 1404] +Triangle: [1418, 1417, 1400] +Triangle: [1417, 1402, 1442] +Triangle: [1400, 1417, 1445] +Triangle: [1400, 1446, 1447] +Triangle: [1381, 1382, 1447] +Triangle: [1372, 1374, 1373] +Triangle: [131, 1437, 1439] +Triangle: [1437, 131, 132] +Triangle: [132, 91, 1438] +Triangle: [1440, 1444, 1375] +Triangle: [1454, 1456, 1375] +Triangle: [1386, 1387, 1433] +Triangle: [1430, 1423, 1422] +Triangle: [1429, 1416, 1413] +Triangle: [1414, 1432, 1429] +Triangle: [1435, 1434, 1431] +Triangle: [1424, 1423, 1430] +Triangle: [1430, 1427, 1428] +Triangle: [1431, 1428, 1429] +Triangle: [1427, 1421, 1419] +Triangle: [1427, 1422, 1420] +Triangle: [1415, 1378, 1435] +Triangle: [1378, 1386, 1434] +Triangle: [1428, 1419, 1416] +Triangle: [1426, 1435, 1432] +Triangle: [1433, 1430, 1431] +Triangle: [1425, 1424, 1433] +Triangle: [1437, 1436, 1387] +Triangle: [1436, 1438, 1425] +Triangle: [1415, 1440, 1439] +Triangle: [1378, 1439, 1437] +Triangle: [1413, 1442, 1441] +Triangle: [1412, 1441, 1443] +Triangle: [1444, 1440, 1415] +Triangle: [1445, 1442, 1413] +Triangle: [1446, 1445, 1416] +Triangle: [1420, 1448, 1447] +Triangle: [1421, 1447, 1446] +Triangle: [1449, 1448, 1420] +Triangle: [1423, 1450, 1449] +Triangle: [1424, 1451, 1450] +Triangle: [1425, 1438, 1451] +Triangle: [1443, 1444, 1426] +Triangle: [1409, 1376, 1456] +Triangle: [1411, 129, 178] +Triangle: [1376, 1411, 1455] +Triangle: [1406, 1409, 1454] +Triangle: [1453, 1452, 1404] +Triangle: [1457, 1458, 1391] +Triangle: [1457, 1459, 1460] +Triangle: [1462, 1461, 1460] +Triangle: [1918, 1391, 1458] +Triangle: [1919, 1458, 1460] +Triangle: [1921, 1920, 1460] +Triangle: [1921, 1461, 1468] +Triangle: [1468, 1467, 1923] +Triangle: [1467, 1466, 1924] +Triangle: [1466, 1367, 1916] +Triangle: [1469, 1463, 1461] +Triangle: [1471, 1472, 1469] +Triangle: [1463, 1464, 1468] +Triangle: [1467, 1468, 1464] +Triangle: [1470, 1465, 1466] +Triangle: [1367, 1466, 1465] +Triangle: [196, 197, 1477] +Triangle: [1462, 1459, 1474] +Triangle: [1475, 1471, 1474] +Triangle: [1473, 1474, 1459] +Triangle: [1475, 1476, 1472] +Triangle: [1389, 1473, 1457] +Triangle: [1399, 1480, 1473] +Triangle: [1479, 209, 210] +Triangle: [185, 194, 1476] +Triangle: [1475, 1477, 197] +Triangle: [1478, 1477, 1474] +Triangle: [1398, 1479, 1480] +Triangle: [196, 1478, 1897] +Triangle: [1897, 1478, 1473] +Triangle: [1487, 1481, 1465] +Triangle: [1481, 1487, 1488] +Triangle: [1482, 1488, 1489] +Triangle: [1483, 1489, 1490] +Triangle: [1484, 1490, 1491] +Triangle: [1485, 1491, 1492] +Triangle: [1401, 1383, 1465] +Triangle: [1418, 1401, 1481] +Triangle: [1403, 1418, 1482] +Triangle: [1403, 1483, 1484] +Triangle: [1405, 1484, 1485] +Triangle: [1453, 1485, 1486] +Triangle: [1493, 1470, 1464] +Triangle: [1496, 1493, 1463] +Triangle: [1469, 1472, 1495] +Triangle: [1476, 1494, 1495] +Triangle: [1470, 1493, 1497] +Triangle: [1498, 1497, 1493] +Triangle: [1495, 1499, 1498] +Triangle: [1513, 1494, 249] +Triangle: [1498, 1502, 1501] +Triangle: [1499, 1500, 1502] +Triangle: [1487, 1497, 1501] +Triangle: [1504, 1503, 1501] +Triangle: [1506, 1505, 1503] +Triangle: [1506, 1508, 1507] +Triangle: [1508, 1510, 1509] +Triangle: [231, 243, 1511] +Triangle: [243, 245, 1512] +Triangle: [262, 1522, 1510] +Triangle: [1511, 1504, 1502] +Triangle: [1506, 1504, 1511] +Triangle: [1523, 263, 247] +Triangle: [1488, 1501, 1503] +Triangle: [1489, 1503, 1505] +Triangle: [1491, 1490, 1505] +Triangle: [1492, 1491, 1507] +Triangle: [194, 249, 1494] +Triangle: [1495, 1494, 1513] +Triangle: [225, 1499, 1513] +Triangle: [225, 231, 1500] +Triangle: [1518, 257, 129] +Triangle: [1526, 1524, 1406] +Triangle: [1517, 1514, 1376] +Triangle: [1527, 1525, 1486] +Triangle: [1522, 1521, 1509] +Triangle: [1524, 1517, 1409] +Triangle: [1376, 1514, 1518] +Triangle: [1506, 1512, 1523] +Triangle: [245, 263, 1523] +Triangle: [1525, 1526, 1407] +Triangle: [1510, 1508, 247] +Triangle: [1520, 1519, 1525] +Triangle: [1516, 1515, 1524] +Triangle: [1519, 1516, 1526] +Triangle: [1509, 1521, 1527] +Triangle: [2389, 1290, 1296] +Triangle: [269, 1528, 1395] +Triangle: [302, 271, 1529] +Triangle: [274, 1530, 1532] +Triangle: [275, 1531, 1528] +Triangle: [278, 1532, 1531] +Triangle: [1532, 1535, 1534] +Triangle: [1530, 1533, 1535] +Triangle: [1535, 1538, 1537] +Triangle: [1533, 1536, 1538] +Triangle: [1538, 1541, 1540] +Triangle: [1536, 1539, 1541] +Triangle: [1541, 1544, 1543] +Triangle: [1542, 1544, 1541] +Triangle: [293, 292, 1543] +Triangle: [291, 293, 1544] +Triangle: [1531, 1534, 1545] +Triangle: [1546, 1545, 1534] +Triangle: [1896, 1546, 1537] +Triangle: [1547, 1896, 1540] +Triangle: [292, 297, 1547] +Triangle: [1392, 1395, 1528] +Triangle: [1392, 1545, 1546] +Triangle: [1397, 1546, 1896] +Triangle: [1398, 1896, 1547] +Triangle: [1479, 1547, 297] +Triangle: [302, 1550, 1530] +Triangle: [1530, 1550, 1551] +Triangle: [1551, 1552, 1553] +Triangle: [1552, 1551, 1550] +Triangle: [1536, 1533, 1553] +Triangle: [1539, 1536, 1554] +Triangle: [1549, 1539, 1557] +Triangle: [1555, 1556, 1557] +Triangle: [1549, 1548, 1542] +Triangle: [1548, 298, 291] +Triangle: [1565, 1562, 1571] +Triangle: [1576, 1555, 1558] +Triangle: [1577, 1558, 1574] +Triangle: [1560, 1577, 1573] +Triangle: [1573, 1574, 1564] +Triangle: [1563, 1571, 1578] +Triangle: [1578, 1571, 1561] +Triangle: [1566, 1561, 1571] +Triangle: [1565, 1570, 1569] +Triangle: [1568, 1566, 1562] +Triangle: [1568, 1567, 1561] +Triangle: [1560, 1561, 1567] +Triangle: [1559, 1576, 1577] +Triangle: [1564, 1580, 1579] +Triangle: [1579, 1572, 1565] +Triangle: [1565, 1572, 1581] +Triangle: [1579, 1580, 1588] +Triangle: [1581, 1572, 1588] +Triangle: [1570, 1581, 1587] +Triangle: [1593, 1591, 1590] +Triangle: [1586, 1589, 1590] +Triangle: [1585, 1586, 1587] +Triangle: [1588, 1580, 1584] +Triangle: [1591, 1593, 1594] +Triangle: [1569, 1570, 1590] +Triangle: [1568, 1569, 1591] +Triangle: [1576, 1559, 1556] +Triangle: [1556, 1559, 1567] +Triangle: [1567, 1568, 1592] +Triangle: [1549, 1556, 1595] +Triangle: [1596, 1595, 1592] +Triangle: [1593, 1597, 1598] +Triangle: [1842, 1840, 1839] +Triangle: [1886, 1601, 1602] +Triangle: [1594, 1598, 1599] +Triangle: [1549, 1596, 1599] +Triangle: [1885, 1548, 1599] +Triangle: [1600, 1603, 358] +Triangle: [1887, 1599, 1598] +Triangle: [1842, 1795, 1796] +Triangle: [683, 1885, 1600] +Triangle: [1606, 1604, 1589] +Triangle: [1604, 1606, 1889] +Triangle: [361, 1605, 1607] +Triangle: [1589, 1604, 1597] +Triangle: [1597, 1604, 1888] +Triangle: [351, 1601, 1605] +Triangle: [1609, 1608, 1586] +Triangle: [1586, 1608, 1610] +Triangle: [1606, 1610, 1890] +Triangle: [1607, 1611, 369] +Triangle: [1580, 1564, 1575] +Triangle: [1575, 1564, 1574] +Triangle: [1574, 1558, 1583] +Triangle: [1613, 1583, 1558] +Triangle: [1613, 1555, 1554] +Triangle: [376, 1618, 1619] +Triangle: [271, 378, 1619] +Triangle: [1617, 1620, 1619] +Triangle: [1529, 271, 1620] +Triangle: [1616, 1621, 1620] +Triangle: [1529, 1621, 1622] +Triangle: [1552, 1622, 1623] +Triangle: [1553, 1623, 1612] +Triangle: [1642, 401, 393] +Triangle: [1642, 1636, 1631] +Triangle: [1638, 1631, 1632] +Triangle: [1640, 1639, 1632] +Triangle: [1628, 1635, 1640] +Triangle: [1641, 1640, 1634] +Triangle: [1635, 1630, 1639] +Triangle: [1629, 1638, 1639] +Triangle: [1629, 1637, 1642] +Triangle: [1637, 391, 401] +Triangle: [1650, 1641, 1633] +Triangle: [1650, 1627, 1648] +Triangle: [1647, 1648, 1649] +Triangle: [1635, 1628, 1647] +Triangle: [1630, 1635, 1646] +Triangle: [1644, 1629, 1630] +Triangle: [1637, 1629, 1644] +Triangle: [1637, 1643, 407] +Triangle: [1651, 1645, 1646] +Triangle: [1645, 1651, 1652] +Triangle: [1643, 1644, 1652] +Triangle: [419, 407, 1643] +Triangle: [422, 419, 1653] +Triangle: [1652, 1659, 1655] +Triangle: [1651, 1661, 1659] +Triangle: [1661, 1668, 1663] +Triangle: [1662, 1676, 1625] +Triangle: [1615, 1622, 1621] +Triangle: [1614, 1623, 1622] +Triangle: [1657, 1676, 1662] +Triangle: [1656, 1625, 1676] +Triangle: [1616, 1624, 1658] +Triangle: [422, 1655, 1654] +Triangle: [1670, 1662, 1648] +Triangle: [1661, 1651, 1649] +Triangle: [1660, 1649, 1648] +Triangle: [1659, 1663, 1654] +Triangle: [1664, 431, 387] +Triangle: [1654, 1663, 1626] +Triangle: [1664, 1665, 433] +Triangle: [1666, 435, 433] +Triangle: [1667, 437, 435] +Triangle: [376, 437, 1667] +Triangle: [1661, 1660, 1625] +Triangle: [1668, 1669, 1626] +Triangle: [1626, 1669, 1665] +Triangle: [1625, 1656, 1669] +Triangle: [1656, 1671, 1672] +Triangle: [1624, 1673, 1674] +Triangle: [1673, 1624, 1671] +Triangle: [1665, 1669, 1672] +Triangle: [1675, 1667, 1666] +Triangle: [1618, 1667, 1675] +Triangle: [1671, 1617, 1675] +Triangle: [1616, 1617, 1671] +Triangle: [1657, 1674, 1673] +Triangle: [1636, 393, 461] +Triangle: [1678, 1677, 461] +Triangle: [1631, 1636, 1677] +Triangle: [1680, 1677, 1678] +Triangle: [466, 1679, 1678] +Triangle: [448, 1681, 1679] +Triangle: [1688, 1681, 448] +Triangle: [1682, 1688, 475] +Triangle: [1680, 1679, 1689] +Triangle: [1690, 1692, 1691] +Triangle: [1681, 1687, 1689] +Triangle: [1682, 459, 485] +Triangle: [449, 1697, 1683] +Triangle: [1697, 1696, 1684] +Triangle: [1684, 1696, 1695] +Triangle: [1685, 1695, 1694] +Triangle: [1693, 1687, 1686] +Triangle: [1697, 1698, 1708] +Triangle: [450, 1699, 1698] +Triangle: [487, 1698, 1697] +Triangle: [495, 1706, 1699] +Triangle: [458, 1701, 1700] +Triangle: [525, 1735, 1701] +Triangle: [456, 1703, 1702] +Triangle: [619, 1828, 1703] +Triangle: [1705, 1704, 452] +Triangle: [1700, 1706, 495] +Triangle: [1709, 1708, 1698] +Triangle: [1707, 1709, 1699] +Triangle: [1700, 1710, 1707] +Triangle: [1701, 1711, 1710] +Triangle: [1735, 1736, 1711] +Triangle: [1703, 1713, 1712] +Triangle: [1689, 1687, 1693] +Triangle: [1687, 1720, 1719] +Triangle: [1685, 1718, 1717] +Triangle: [1683, 1716, 1715] +Triangle: [1714, 1720, 1687] +Triangle: [1686, 1719, 1718] +Triangle: [1684, 1717, 1716] +Triangle: [1715, 1721, 1688] +Triangle: [1688, 1721, 1714] +Triangle: [1722, 1717, 1718] +Triangle: [1716, 1717, 1722] +Triangle: [1722, 1719, 1720] +Triangle: [1721, 1715, 1722] +Triangle: [1696, 1708, 1729] +Triangle: [1730, 1729, 1708] +Triangle: [1731, 1730, 1709] +Triangle: [1694, 1726, 1723] +Triangle: [1724, 1723, 1726] +Triangle: [1725, 1724, 1727] +Triangle: [1695, 1729, 1726] +Triangle: [1727, 1726, 1729] +Triangle: [1727, 1730, 1731] +Triangle: [1710, 1732, 1731] +Triangle: [1728, 1731, 1732] +Triangle: [1734, 1725, 1728] +Triangle: [1711, 1733, 1732] +Triangle: [1702, 1712, 1736] +Triangle: [457, 1702, 1735] +Triangle: [1733, 1711, 1736] +Triangle: [1737, 1734, 1736] +Triangle: [1713, 1738, 1737] +Triangle: [1737, 1741, 1739] +Triangle: [1740, 1725, 1734] +Triangle: [1725, 1740, 1742] +Triangle: [1723, 1724, 1742] +Triangle: [1690, 1693, 1723] +Triangle: [1692, 1690, 1743] +Triangle: [1740, 1745, 1746] +Triangle: [1739, 1741, 1745] +Triangle: [1741, 1749, 1748] +Triangle: [1748, 1749, 1751] +Triangle: [1750, 1751, 1753] +Triangle: [1752, 1753, 1755] +Triangle: [1756, 1754, 1755] +Triangle: [1758, 1756, 1757] +Triangle: [1758, 1759, 1761] +Triangle: [1761, 1763, 1762] +Triangle: [1763, 1765, 1764] +Triangle: [1769, 1767, 1766] +Triangle: [1765, 1769, 1768] +Triangle: [1767, 1771, 1770] +Triangle: [1771, 1773, 1772] +Triangle: [1773, 1775, 1774] +Triangle: [1829, 1713, 1703] +Triangle: [1777, 1776, 1704] +Triangle: [1829, 1776, 1774] +Triangle: [1772, 1774, 1776] +Triangle: [1831, 1747, 1738] +Triangle: [1747, 1741, 1737] +Triangle: [1747, 1778, 1749] +Triangle: [1832, 1778, 1747] +Triangle: [1775, 1773, 1790] +Triangle: [1773, 1771, 1789] +Triangle: [1771, 1767, 1788] +Triangle: [1767, 1769, 1787] +Triangle: [1765, 1786, 1787] +Triangle: [1765, 1763, 1785] +Triangle: [1763, 1761, 1784] +Triangle: [1759, 1783, 1784] +Triangle: [1757, 1782, 1783] +Triangle: [1757, 1755, 1781] +Triangle: [1755, 1753, 1780] +Triangle: [1751, 1779, 1780] +Triangle: [1749, 1778, 1779] +Triangle: [1746, 1744, 1743] +Triangle: [1745, 1748, 1792] +Triangle: [1750, 1794, 1792] +Triangle: [1793, 1794, 1750] +Triangle: [1795, 1793, 1752] +Triangle: [1796, 1795, 1754] +Triangle: [1758, 1797, 1796] +Triangle: [1760, 1798, 1797] +Triangle: [1799, 1798, 1760] +Triangle: [1806, 1807, 1814] +Triangle: [1807, 1808, 1816] +Triangle: [1800, 1801, 1817] +Triangle: [1808, 1809, 1819] +Triangle: [1817, 1801, 1802] +Triangle: [1809, 1810, 1821] +Triangle: [1820, 1802, 1803] +Triangle: [1821, 1810, 1811] +Triangle: [1822, 1803, 1804] +Triangle: [1823, 1811, 1812] +Triangle: [1824, 1804, 1805] +Triangle: [1812, 1813, 1827] +Triangle: [1826, 1805, 1806] +Triangle: [1833, 1800, 1818] +Triangle: [1834, 1818, 1778] +Triangle: [1783, 1826, 1815] +Triangle: [1825, 1827, 1791] +Triangle: [1782, 1824, 1826] +Triangle: [1789, 1823, 1825] +Triangle: [1781, 1822, 1824] +Triangle: [1788, 1821, 1823] +Triangle: [1780, 1820, 1822] +Triangle: [1819, 1821, 1788] +Triangle: [1779, 1817, 1820] +Triangle: [1816, 1819, 1787] +Triangle: [1818, 1817, 1779] +Triangle: [1814, 1816, 1786] +Triangle: [1815, 1814, 1785] +Triangle: [1791, 1827, 1834] +Triangle: [1827, 1813, 1833] +Triangle: [1791, 1832, 1831] +Triangle: [1775, 1831, 1830] +Triangle: [1829, 1830, 1738] +Triangle: [1776, 1829, 1828] +Triangle: [452, 1704, 1828] +Triangle: [1631, 1680, 1691] +Triangle: [1792, 1836, 1744] +Triangle: [1836, 1835, 1692] +Triangle: [1835, 1632, 1691] +Triangle: [1839, 1837, 1835] +Triangle: [1837, 1839, 1840] +Triangle: [1634, 1632, 1835] +Triangle: [1633, 1634, 1837] +Triangle: [1793, 1795, 1841] +Triangle: [1841, 1795, 1839] +Triangle: [1797, 1844, 1843] +Triangle: [1627, 1633, 1838] +Triangle: [1846, 1845, 1670] +Triangle: [1845, 1674, 1657] +Triangle: [1848, 1846, 1838] +Triangle: [1848, 1847, 1845] +Triangle: [1674, 1845, 1847] +Triangle: [1842, 1851, 1848] +Triangle: [1848, 1851, 1850] +Triangle: [1849, 1658, 1847] +Triangle: [1615, 1658, 1849] +Triangle: [1623, 1614, 1852] +Triangle: [1849, 1853, 1852] +Triangle: [1613, 1612, 1852] +Triangle: [1583, 1613, 1853] +Triangle: [1582, 1583, 1854] +Triangle: [1850, 1854, 1853] +Triangle: [1855, 1854, 1850] +Triangle: [1843, 1855, 1851] +Triangle: [1844, 1856, 1855] +Triangle: [1582, 1855, 1856] +Triangle: [1575, 1856, 1858] +Triangle: [1856, 1844, 1857] +Triangle: [1798, 1857, 1844] +Triangle: [1584, 1858, 1860] +Triangle: [1858, 1857, 1859] +Triangle: [1799, 1859, 1857] +Triangle: [1585, 1860, 1862] +Triangle: [1860, 1859, 1861] +Triangle: [1863, 1861, 1859] +Triangle: [1863, 1799, 1762] +Triangle: [1867, 1705, 453] +Triangle: [1867, 1866, 1777] +Triangle: [1772, 1777, 1866] +Triangle: [1770, 1866, 1865] +Triangle: [1865, 1864, 1768] +Triangle: [1864, 1863, 1764] +Triangle: [1863, 1864, 1871] +Triangle: [1864, 1865, 1870] +Triangle: [1865, 1866, 1869] +Triangle: [1867, 1868, 1869] +Triangle: [1868, 1867, 455] +Triangle: [454, 664, 1872] +Triangle: [1609, 1862, 1876] +Triangle: [1862, 1861, 1877] +Triangle: [1871, 1875, 1877] +Triangle: [1870, 1874, 1875] +Triangle: [1870, 1869, 1873] +Triangle: [1869, 1868, 1872] +Triangle: [1880, 1878, 1876] +Triangle: [1882, 1878, 1880] +Triangle: [673, 1879, 1881] +Triangle: [1879, 1882, 1883] +Triangle: [1608, 1876, 1878] +Triangle: [1889, 1890, 1611] +Triangle: [1601, 1886, 1888] +Triangle: [1888, 1889, 1607] +Triangle: [298, 1548, 1885] +Triangle: [1603, 1887, 1884] +Triangle: [1600, 1885, 1887] +Triangle: [1597, 1886, 1884] +Triangle: [1882, 1890, 1610] +Triangle: [1890, 1882, 1879] +Triangle: [369, 1611, 1879] +Triangle: [1875, 1874, 1893] +Triangle: [1874, 1873, 1892] +Triangle: [1891, 1872, 664] +Triangle: [1873, 1872, 1891] +Triangle: [1894, 1880, 1877] +Triangle: [1894, 1893, 1883] +Triangle: [1893, 1892, 1881] +Triangle: [1895, 1881, 1892] +Triangle: [693, 1895, 1891] +Triangle: [676, 1881, 1895] +Triangle: [1841, 1836, 1792] +Triangle: [358, 1603, 1602] +Triangle: [695, 1602, 1601] +Triangle: [210, 206, 1897] +Triangle: [1903, 1904, 1911] +Triangle: [1898, 1325, 1326] +Triangle: [1900, 1322, 1316] +Triangle: [1901, 1316, 1325] +Triangle: [1902, 1903, 1910] +Triangle: [1899, 1902, 1909] +Triangle: [1324, 1322, 1900] +Triangle: [1907, 1898, 1899] +Triangle: [1905, 1900, 1901] +Triangle: [1906, 1901, 1898] +Triangle: [1910, 1911, 2427] +Triangle: [1909, 1910, 2426] +Triangle: [1908, 1909, 2419] +Triangle: [1911, 1318, 2421] +Triangle: [1904, 1317, 1318] +Triangle: [1924, 1916, 1321] +Triangle: [1923, 1924, 1320] +Triangle: [1922, 1923, 1319] +Triangle: [1317, 1921, 1922] +Triangle: [1317, 1314, 1920] +Triangle: [1315, 1919, 1920] +Triangle: [1326, 1918, 1919] +Triangle: [1325, 1917, 1918] +Triangle: [1316, 1914, 1917] +Triangle: [1367, 1366, 1912] +Triangle: [1323, 1912, 1915] +Triangle: [1324, 1915, 1913] +Triangle: [1322, 1913, 1914] +Triangle: [1932, 1522, 262] +Triangle: [1933, 1521, 1522] +Triangle: [1931, 1520, 1521] +Triangle: [1930, 1519, 1520] +Triangle: [1929, 1516, 1519] +Triangle: [1929, 1928, 1515] +Triangle: [1928, 1927, 1517] +Triangle: [1927, 1926, 1514] +Triangle: [1926, 1925, 1518] +Triangle: [1925, 724, 257] +Triangle: [5227, 1932, 732] +Triangle: [5207, 1940, 1941] +Triangle: [1931, 1933, 5228] +Triangle: [5229, 5226, 1930] +Triangle: [5225, 1929, 1930] +Triangle: [5224, 1928, 1929] +Triangle: [5223, 1927, 1928] +Triangle: [5222, 1926, 1927] +Triangle: [5222, 5221, 1925] +Triangle: [724, 1925, 5221] +Triangle: [2375, 1956, 1944] +Triangle: [2377, 1994, 1957] +Triangle: [1967, 1968, 2315] +Triangle: [1982, 1975, 1976] +Triangle: [1970, 1969, 1988] +Triangle: [1981, 1976, 1977] +Triangle: [2281, 1947, 1948] +Triangle: [1959, 1960, 2384] +Triangle: [1997, 1996, 2381] +Triangle: [2001, 1945, 2287] +Triangle: [1993, 1964, 1973] +Triangle: [2374, 1962, 1963] +Triangle: [1943, 1997, 2382] +Triangle: [2278, 1949, 1947] +Triangle: [2195, 2308, 1006] +Triangle: [2088, 1984, 1983] +Triangle: [1983, 1974, 1975] +Triangle: [2002, 2004, 2034] +Triangle: [2090, 1981, 1980] +Triangle: [1985, 1987, 2085] +Triangle: [2084, 1983, 1982] +Triangle: [2329, 1973, 1964] +Triangle: [1989, 1990, 2091] +Triangle: [1992, 1965, 1964] +Triangle: [1980, 1977, 1978] +Triangle: [1986, 1985, 2093] +Triangle: [1990, 1991, 2094] +Triangle: [1979, 1986, 2092] +Triangle: [1991, 1992, 2082] +Triangle: [1985, 1972, 1970] +Triangle: [2082, 1992, 1993] +Triangle: [1968, 1967, 1990] +Triangle: [1987, 1988, 2095] +Triangle: [1979, 1978, 1971] +Triangle: [2089, 1982, 1981] +Triangle: [1966, 1965, 1992] +Triangle: [1986, 1971, 1972] +Triangle: [1984, 1973, 1974] +Triangle: [1980, 1979, 2083] +Triangle: [1967, 1966, 1991] +Triangle: [2086, 1993, 1984] +Triangle: [2275, 1998, 1999] +Triangle: [1955, 1954, 2282] +Triangle: [1952, 1951, 2279] +Triangle: [1954, 1953, 2289] +Triangle: [1953, 1952, 2280] +Triangle: [2385, 1963, 1995] +Triangle: [1958, 1959, 2380] +Triangle: [1960, 1961, 2387] +Triangle: [2000, 2001, 2285] +Triangle: [1945, 1946, 2276] +Triangle: [2283, 1999, 2000] +Triangle: [2288, 1950, 1949] +Triangle: [1944, 1943, 2376] +Triangle: [2002, 2003, 2005] +Triangle: [2003, 2002, 2006] +Triangle: [2065, 2010, 2007] +Triangle: [2010, 2065, 2066] +Triangle: [2003, 2007, 2010] +Triangle: [2003, 2008, 2009] +Triangle: [2013, 2066, 2064] +Triangle: [2010, 2013, 2011] +Triangle: [2009, 2008, 2011] +Triangle: [2011, 2013, 2014] +Triangle: [2059, 2018, 2019] +Triangle: [2019, 2017, 2058] +Triangle: [2068, 2078, 2061] +Triangle: [2030, 2029, 2016] +Triangle: [2017, 2016, 2063] +Triangle: [2032, 2030, 2017] +Triangle: [2004, 2005, 2021] +Triangle: [2023, 2022, 2020] +Triangle: [2023, 2025, 2094] +Triangle: [2025, 2027, 2091] +Triangle: [2021, 2024, 2025] +Triangle: [2005, 2009, 2024] +Triangle: [2027, 2028, 2096] +Triangle: [2024, 2026, 2027] +Triangle: [2009, 2012, 2026] +Triangle: [2014, 2027, 2026] +Triangle: [831, 818, 817] +Triangle: [2032, 2031, 2092] +Triangle: [2030, 2032, 2093] +Triangle: [2004, 2020, 2044] +Triangle: [2029, 2030, 2085] +Triangle: [2002, 2033, 2035] +Triangle: [2020, 2022, 2045] +Triangle: [2035, 2038, 2062] +Triangle: [2038, 2040, 2060] +Triangle: [2036, 2038, 2035] +Triangle: [2034, 2037, 2036] +Triangle: [2039, 2038, 2036] +Triangle: [2060, 2040, 2041] +Triangle: [2018, 2031, 2032] +Triangle: [2049, 2041, 2040] +Triangle: [2018, 2059, 2053] +Triangle: [2056, 2042, 2043] +Triangle: [2041, 2049, 2050] +Triangle: [2041, 2042, 2056] +Triangle: [2043, 2042, 2050] +Triangle: [2006, 2035, 2054] +Triangle: [2022, 2086, 2088] +Triangle: [2084, 2047, 2045] +Triangle: [2047, 2084, 2089] +Triangle: [2045, 2047, 2046] +Triangle: [2034, 2044, 2046] +Triangle: [2046, 2047, 2039] +Triangle: [2090, 2049, 2048] +Triangle: [2031, 2051, 2083] +Triangle: [2051, 2050, 2087] +Triangle: [2007, 2006, 2061] +Triangle: [2049, 2090, 2087] +Triangle: [2378, 1995, 1994] +Triangle: [2383, 1957, 1956] +Triangle: [2059, 2076, 2067] +Triangle: [2286, 2276, 1946] +Triangle: [2063, 2080, 2070] +Triangle: [2056, 2075, 2069] +Triangle: [2079, 2068, 2054] +Triangle: [2057, 2069, 2077] +Triangle: [2065, 2081, 2072] +Triangle: [2055, 2074, 2081] +Triangle: [2066, 2072, 2071] +Triangle: [2078, 2074, 2055] +Triangle: [2053, 2067, 2075] +Triangle: [2070, 2073, 2052] +Triangle: [2077, 2079, 2062] +Triangle: [2052, 2073, 2076] +Triangle: [2106, 2097, 2203] +Triangle: [2320, 2235, 2234] +Triangle: [2321, 2324, 2227] +Triangle: [2327, 2323, 2239] +Triangle: [2322, 2237, 2230] +Triangle: [2323, 2325, 2229] +Triangle: [2326, 2234, 2233] +Triangle: [2328, 2327, 2238] +Triangle: [2316, 2228, 2227] +Triangle: [2318, 2231, 2228] +Triangle: [2328, 2240, 2235] +Triangle: [2325, 2317, 2230] +Triangle: [2292, 2303, 2227] +Triangle: [2296, 2297, 2229] +Triangle: [2231, 2293, 2292] +Triangle: [2029, 2028, 2015] +Triangle: [2235, 2301, 2302] +Triangle: [2276, 2286, 2078] +Triangle: [2303, 2294, 2236] +Triangle: [2291, 2296, 2230] +Triangle: [2298, 2299, 2238] +Triangle: [2229, 2297, 2298] +Triangle: [2337, 2335, 2233] +Triangle: [2299, 2300, 2240] +Triangle: [2232, 2305, 2293] +Triangle: [2240, 2300, 2301] +Triangle: [917, 916, 1944] +Triangle: [916, 915, 1943] +Triangle: [920, 917, 1956] +Triangle: [2112, 1956, 1957] +Triangle: [920, 2112, 2113] +Triangle: [2232, 2315, 2319] +Triangle: [2161, 2249, 2250] +Triangle: [2170, 2174, 2120] +Triangle: [2206, 2197, 2190] +Triangle: [2122, 2253, 2252] +Triangle: [2124, 2254, 2253] +Triangle: [2126, 2256, 2255] +Triangle: [2178, 2128, 2330] +Triangle: [2130, 2259, 2258] +Triangle: [2244, 2160, 2142] +Triangle: [2183, 2184, 2140] +Triangle: [2134, 2261, 2260] +Triangle: [2136, 2262, 2261] +Triangle: [2138, 2263, 2262] +Triangle: [2138, 2140, 2264] +Triangle: [2243, 2142, 2266] +Triangle: [2144, 2268, 2267] +Triangle: [2142, 2147, 2269] +Triangle: [2148, 2270, 2268] +Triangle: [2150, 2271, 2270] +Triangle: [2150, 2152, 2272] +Triangle: [2152, 2154, 2273] +Triangle: [2168, 2172, 2156] +Triangle: [2250, 2274, 2156] +Triangle: [2169, 2167, 2166] +Triangle: [2115, 2251, 2249] +Triangle: [1950, 1951, 2388] +Triangle: [2163, 2147, 2142] +Triangle: [2130, 2132, 2260] +Triangle: [2183, 2138, 2136] +Triangle: [2182, 2136, 2134] +Triangle: [2181, 2134, 2132] +Triangle: [2130, 2179, 2180] +Triangle: [2179, 2130, 2333] +Triangle: [2130, 2128, 2333] +Triangle: [2147, 2163, 2226] +Triangle: [2124, 2176, 2216] +Triangle: [2122, 2175, 2176] +Triangle: [2122, 2120, 2174] +Triangle: [2190, 2185, 2172] +Triangle: [2274, 2273, 2154] +Triangle: [2115, 2161, 2171] +Triangle: [2114, 2185, 2171] +Triangle: [2114, 2156, 2172] +Triangle: [2173, 2172, 2168] +Triangle: [2167, 2169, 2119] +Triangle: [2154, 2152, 2167] +Triangle: [2152, 2150, 2166] +Triangle: [2150, 2148, 2165] +Triangle: [2144, 2164, 2165] +Triangle: [2099, 2187, 2186] +Triangle: [2189, 2188, 2159] +Triangle: [2191, 2190, 2197] +Triangle: [2171, 2185, 2190] +Triangle: [2217, 2194, 2193] +Triangle: [2308, 1943, 915] +Triangle: [2288, 2279, 1951] +Triangle: [2288, 2080, 2071] +Triangle: [2080, 2063, 2064] +Triangle: [2388, 2387, 1961] +Triangle: [2063, 2016, 2015] +Triangle: [2028, 2029, 2095] +Triangle: [2284, 1948, 1998] +Triangle: [2043, 2051, 2031] +Triangle: [2086, 2022, 2023] +Triangle: [2189, 2198, 2197] +Triangle: [2100, 2202, 2187] +Triangle: [2219, 2201, 2194] +Triangle: [2158, 2210, 2200] +Triangle: [2199, 2198, 2189] +Triangle: [2197, 2206, 2205] +Triangle: [2159, 2211, 2204] +Triangle: [2218, 2220, 2295] +Triangle: [2097, 2098, 2186] +Triangle: [2192, 2191, 2198] +Triangle: [2207, 2192, 2199] +Triangle: [2212, 2207, 2200] +Triangle: [2221, 2208, 2201] +Triangle: [2170, 2171, 2191] +Triangle: [2251, 2115, 2120] +Triangle: [2206, 2173, 2119] +Triangle: [2208, 2212, 2210] +Triangle: [2188, 2205, 2211] +Triangle: [2201, 2210, 2158] +Triangle: [2194, 2158, 2159] +Triangle: [2205, 2119, 2169] +Triangle: [2118, 2204, 2211] +Triangle: [2174, 2170, 2192] +Triangle: [2174, 2207, 2212] +Triangle: [2175, 2212, 2208] +Triangle: [2176, 2208, 2221] +Triangle: [2310, 2313, 2209] +Triangle: [2209, 2313, 2311] +Triangle: [2193, 2204, 2220] +Triangle: [2202, 2311, 2312] +Triangle: [2187, 2312, 2309] +Triangle: [2314, 2310, 2177] +Triangle: [2214, 2255, 2254] +Triangle: [2213, 2220, 2204] +Triangle: [2165, 2213, 2118] +Triangle: [2222, 2295, 2220] +Triangle: [2164, 2222, 2213] +Triangle: [2241, 2236, 2294] +Triangle: [2225, 2226, 2164] +Triangle: [2225, 2267, 2269] +Triangle: [2226, 2223, 2222] +Triangle: [2223, 2226, 2163] +Triangle: [2290, 2291, 2237] +Triangle: [2104, 2181, 2180] +Triangle: [2180, 2179, 2103] +Triangle: [2101, 2209, 2202] +Triangle: [2128, 2258, 2257] +Triangle: [2179, 2333, 2334] +Triangle: [2096, 2095, 1988] +Triangle: [2248, 2247, 2101] +Triangle: [2106, 2163, 2160] +Triangle: [2182, 2181, 2104] +Triangle: [2183, 2182, 2111] +Triangle: [2140, 2243, 2265] +Triangle: [2184, 2244, 2243] +Triangle: [2108, 2107, 2160] +Triangle: [2109, 2108, 2244] +Triangle: [2184, 2183, 2110] +Triangle: [2330, 2257, 2256] +Triangle: [2246, 2330, 2126] +Triangle: [2135, 2137, 2139] +Triangle: [2116, 2250, 2249] +Triangle: [2251, 2252, 2121] +Triangle: [2252, 2253, 2123] +Triangle: [2253, 2254, 2125] +Triangle: [2255, 2256, 2127] +Triangle: [2257, 2258, 2129] +Triangle: [2258, 2259, 2131] +Triangle: [2259, 2260, 2133] +Triangle: [2260, 2261, 2135] +Triangle: [2135, 2261, 2262] +Triangle: [2137, 2262, 2263] +Triangle: [2263, 2264, 2141] +Triangle: [2265, 2266, 2143] +Triangle: [2224, 2267, 2268] +Triangle: [2266, 2269, 2146] +Triangle: [2145, 2268, 2270] +Triangle: [2149, 2270, 2271] +Triangle: [2151, 2271, 2272] +Triangle: [2153, 2272, 2273] +Triangle: [2274, 2250, 2116] +Triangle: [2273, 2274, 2157] +Triangle: [2249, 2251, 2117] +Triangle: [2254, 2255, 2215] +Triangle: [2146, 2269, 2267] +Triangle: [2264, 2265, 2242] +Triangle: [2256, 2257, 2245] +Triangle: [2131, 2133, 2139] +Triangle: [2129, 2131, 2141] +Triangle: [2245, 2129, 2242] +Triangle: [2146, 2127, 2245] +Triangle: [2127, 2146, 2224] +Triangle: [2145, 2125, 2215] +Triangle: [2125, 2145, 2149] +Triangle: [2123, 2149, 2151] +Triangle: [2121, 2151, 2153] +Triangle: [2155, 2162, 2117] +Triangle: [2162, 2155, 2157] +Triangle: [2076, 2284, 2275] +Triangle: [2290, 2294, 2097] +Triangle: [2080, 2288, 2278] +Triangle: [2075, 2283, 2277] +Triangle: [2287, 2276, 2068] +Triangle: [2277, 2285, 2077] +Triangle: [2081, 2289, 2280] +Triangle: [2282, 2289, 2081] +Triangle: [2072, 2280, 2279] +Triangle: [2286, 2282, 2074] +Triangle: [2067, 2275, 2283] +Triangle: [2315, 1968, 1969] +Triangle: [2278, 2281, 2073] +Triangle: [2285, 2287, 2079] +Triangle: [2073, 2281, 2284] +Triangle: [2329, 2241, 2237] +Triangle: [2302, 2103, 2334] +Triangle: [2105, 2103, 2302] +Triangle: [2104, 2105, 2301] +Triangle: [2299, 2111, 2104] +Triangle: [2298, 2110, 2111] +Triangle: [2297, 2109, 2110] +Triangle: [2296, 2108, 2109] +Triangle: [2296, 2291, 2107] +Triangle: [2291, 2290, 2106] +Triangle: [2203, 2295, 2222] +Triangle: [2098, 2097, 2294] +Triangle: [2099, 2098, 2303] +Triangle: [2293, 2100, 2099] +Triangle: [2305, 2101, 2100] +Triangle: [2304, 2102, 2247] +Triangle: [1007, 1124, 2307] +Triangle: [2306, 2307, 1124] +Triangle: [2331, 2246, 2177] +Triangle: [2247, 2331, 2209] +Triangle: [1996, 1958, 2386] +Triangle: [2311, 2219, 2217] +Triangle: [2312, 2217, 2218] +Triangle: [2310, 2216, 2221] +Triangle: [2295, 2203, 2186] +Triangle: [2216, 2310, 2314] +Triangle: [2313, 2221, 2219] +Triangle: [1973, 2329, 2322] +Triangle: [2233, 2335, 2336] +Triangle: [1975, 2317, 2325] +Triangle: [1971, 2328, 2320] +Triangle: [1966, 1967, 2318] +Triangle: [1965, 1966, 2316] +Triangle: [1978, 2327, 2328] +Triangle: [2326, 2319, 1969] +Triangle: [1976, 2325, 2323] +Triangle: [1974, 2322, 2317] +Triangle: [1978, 1977, 2323] +Triangle: [1964, 1965, 2324] +Triangle: [1972, 2320, 2326] +Triangle: [2329, 2321, 2236] +Triangle: [2231, 2318, 2315] +Triangle: [1989, 1988, 1969] +Triangle: [2302, 2332, 2337] +Triangle: [2102, 2304, 2332] +Triangle: [2335, 2304, 2248] +Triangle: [2304, 2335, 2337] +Triangle: [2178, 2102, 2334] +Triangle: [2305, 2232, 2336] +Triangle: [2102, 2178, 2331] +Triangle: [2348, 2347, 2346] +Triangle: [2348, 2349, 1009] +Triangle: [2345, 2350, 2371] +Triangle: [2351, 2350, 2345] +Triangle: [2352, 1170, 921] +Triangle: [1170, 2352, 2348] +Triangle: [2347, 2348, 2352] +Triangle: [2353, 2352, 2113] +Triangle: [2354, 2346, 2347] +Triangle: [1994, 2354, 2353] +Triangle: [2346, 2354, 2355] +Triangle: [2356, 2344, 2345] +Triangle: [1995, 2355, 2354] +Triangle: [1963, 2356, 2355] +Triangle: [2344, 2356, 2357] +Triangle: [2342, 2343, 2357] +Triangle: [2341, 2342, 2358] +Triangle: [2340, 2341, 2359] +Triangle: [2339, 2340, 2360] +Triangle: [2357, 2356, 1963] +Triangle: [2358, 2357, 1962] +Triangle: [2359, 2358, 2196] +Triangle: [2360, 2359, 1961] +Triangle: [2361, 2360, 1960] +Triangle: [2363, 2338, 2339] +Triangle: [2363, 2361, 1959] +Triangle: [2362, 2338, 2363] +Triangle: [2364, 2306, 2363] +Triangle: [1996, 2365, 2364] +Triangle: [2307, 2306, 2364] +Triangle: [2195, 2307, 2365] +Triangle: [2366, 2365, 1996] +Triangle: [1997, 1943, 2308] +Triangle: [2362, 2306, 1125] +Triangle: [1186, 2338, 2362] +Triangle: [1934, 2338, 1186] +Triangle: [1935, 2339, 2338] +Triangle: [1936, 2340, 2339] +Triangle: [2341, 2340, 1936] +Triangle: [1938, 2342, 2341] +Triangle: [1939, 2343, 2342] +Triangle: [2367, 2343, 1939] +Triangle: [2367, 2351, 2344] +Triangle: [2368, 2367, 1942] +Triangle: [2369, 2351, 2367] +Triangle: [2350, 2351, 2369] +Triangle: [2349, 2346, 2371] +Triangle: [1009, 2349, 2372] +Triangle: [2350, 2370, 2372] +Triangle: [2368, 1941, 1940] +Triangle: [742, 923, 2373] +Triangle: [2369, 2368, 2373] +Triangle: [923, 1105, 2370] +Triangle: [2372, 2370, 1105] +Triangle: [2381, 2386, 1955] +Triangle: [1951, 1952, 2387] +Triangle: [2374, 2388, 2196] +Triangle: [1998, 2383, 2375] +Triangle: [1947, 2378, 2377] +Triangle: [2379, 2376, 2001] +Triangle: [2384, 2387, 1952] +Triangle: [2386, 2380, 1954] +Triangle: [1949, 2385, 2378] +Triangle: [2376, 2382, 1945] +Triangle: [1950, 2374, 2385] +Triangle: [2382, 2381, 1946] +Triangle: [2380, 2384, 1953] +Triangle: [1948, 2377, 2383] +Triangle: [1999, 2375, 2379] +Triangle: [1338, 2389, 2390] +Triangle: [1336, 2393, 2394] +Triangle: [1331, 1332, 2396] +Triangle: [1332, 1333, 2395] +Triangle: [1339, 1328, 2400] +Triangle: [1333, 1334, 2394] +Triangle: [1338, 1339, 2401] +Triangle: [1330, 1331, 2397] +Triangle: [1335, 2391, 2392] +Triangle: [1330, 2398, 2399] +Triangle: [1337, 2392, 2393] +Triangle: [1328, 1327, 2399] +Triangle: [1329, 2390, 2391] +Triangle: [2407, 2460, 1364] +Triangle: [2406, 2407, 1358] +Triangle: [2458, 2414, 1365] +Triangle: [1353, 2402, 2459] +Triangle: [2414, 2409, 1360] +Triangle: [2460, 2462, 1363] +Triangle: [1355, 2404, 2411] +Triangle: [1363, 2462, 2463] +Triangle: [1362, 2411, 2408] +Triangle: [1361, 2463, 2405] +Triangle: [1354, 2403, 2404] +Triangle: [2409, 2403, 1354] +Triangle: [2408, 2402, 1353] +Triangle: [2427, 2421, 2449] +Triangle: [2425, 2419, 2444] +Triangle: [2419, 2426, 2452] +Triangle: [2426, 2427, 2453] +Triangle: [2449, 2421, 2423] +Triangle: [2446, 2423, 2422] +Triangle: [2422, 2416, 2441] +Triangle: [2450, 2424, 2425] +Triangle: [2448, 2420, 2418] +Triangle: [2415, 2420, 2448] +Triangle: [2443, 2418, 2417] +Triangle: [2442, 2417, 2424] +Triangle: [2416, 2415, 2447] +Triangle: [2428, 2435, 1340] +Triangle: [1343, 2429, 2436] +Triangle: [1342, 2436, 2437] +Triangle: [2464, 2454, 1345] +Triangle: [1347, 2431, 2428] +Triangle: [2465, 2464, 1346] +Triangle: [1344, 2437, 2431] +Triangle: [2466, 2465, 1348] +Triangle: [2434, 2429, 1343] +Triangle: [2435, 2456, 1351] +Triangle: [2454, 2434, 1350] +Triangle: [1351, 2456, 2440] +Triangle: [1352, 2440, 2466] +Triangle: [1308, 2441, 2447] +Triangle: [1303, 2442, 2450] +Triangle: [1309, 2443, 2442] +Triangle: [2447, 2448, 1311] +Triangle: [2448, 2443, 1309] +Triangle: [1312, 2450, 2451] +Triangle: [2445, 2441, 1308] +Triangle: [2446, 2445, 1307] +Triangle: [2449, 2446, 1306] +Triangle: [1301, 2452, 2453] +Triangle: [1302, 2444, 2452] +Triangle: [1313, 2451, 2444] +Triangle: [2453, 2449, 1305] +Triangle: [2455, 2454, 2438] +Triangle: [2439, 2456, 2457] +Triangle: [2405, 2458, 2455] +Triangle: [2457, 2459, 2406] +Triangle: [2461, 2413, 2460] +Triangle: [2459, 2461, 2407] +Triangle: [2460, 2413, 2412] +Triangle: [2462, 2412, 2410] +Triangle: [2463, 2410, 2458] +Triangle: [2454, 2464, 2430] +Triangle: [2464, 2465, 2432] +Triangle: [2465, 2466, 2433] +Triangle: [2440, 2456, 2439] +Triangle: [2433, 2466, 2440] +Triangle: [2515, 2516, 2514] +Triangle: [2511, 2810, 2809] +Triangle: [2559, 2539, 2538] +Triangle: [2560, 2537, 2536] +Triangle: [2566, 2535, 2541] +Triangle: [2559, 2562, 2540] +Triangle: [2566, 2565, 2536] +Triangle: [2560, 2564, 2538] +Triangle: [2563, 2542, 2540] +Triangle: [2561, 2541, 2542] +Triangle: [2543, 2537, 2538] +Triangle: [2533, 2548, 2551] +Triangle: [2534, 2551, 2550] +Triangle: [2536, 2537, 2543] +Triangle: [2542, 2543, 2539] +Triangle: [2541, 2535, 2543] +Triangle: [2530, 2545, 2546] +Triangle: [2470, 2528, 2547] +Triangle: [2532, 2550, 2544] +Triangle: [2549, 2548, 2533] +Triangle: [2528, 2529, 2546] +Triangle: [2531, 2544, 2545] +Triangle: [2521, 2522, 2529] +Triangle: [2523, 2530, 2529] +Triangle: [2524, 2531, 2530] +Triangle: [2525, 2532, 2531] +Triangle: [2525, 2527, 2534] +Triangle: [2526, 2533, 2534] +Triangle: [2526, 2519, 2470] +Triangle: [2521, 2528, 2470] +Triangle: [2522, 2521, 2552] +Triangle: [2524, 2555, 2556] +Triangle: [2522, 2553, 2554] +Triangle: [2527, 2525, 2556] +Triangle: [2527, 2558, 2557] +Triangle: [2524, 2523, 2554] +Triangle: [2519, 2526, 2557] +Triangle: [2552, 2521, 2519] +Triangle: [2548, 2561, 2563] +Triangle: [2551, 2563, 2562] +Triangle: [2546, 2545, 2564] +Triangle: [2549, 2547, 2565] +Triangle: [2544, 2550, 2562] +Triangle: [2549, 2566, 2561] +Triangle: [2547, 2546, 2560] +Triangle: [2545, 2544, 2559] +Triangle: [2567, 2520, 2517] +Triangle: [2569, 2552, 2517] +Triangle: [2552, 2569, 2571] +Triangle: [2553, 2571, 2572] +Triangle: [2554, 2572, 2574] +Triangle: [2555, 2574, 2575] +Triangle: [2558, 2556, 2575] +Triangle: [2567, 2557, 2558] +Triangle: [2520, 2518, 2585] +Triangle: [2494, 2518, 2520] +Triangle: [2567, 2576, 2590] +Triangle: [2576, 2575, 2589] +Triangle: [2574, 2588, 2589] +Triangle: [2572, 2587, 2588] +Triangle: [2586, 2587, 2572] +Triangle: [2569, 2585, 2586] +Triangle: [2568, 2570, 2586] +Triangle: [2480, 2514, 2570] +Triangle: [2586, 2570, 2573] +Triangle: [2516, 2573, 2570] +Triangle: [2581, 2597, 2598] +Triangle: [2597, 2599, 2600] +Triangle: [2646, 2626, 2625] +Triangle: [2647, 2624, 2623] +Triangle: [2653, 2622, 2628] +Triangle: [2646, 2649, 2627] +Triangle: [2653, 2652, 2623] +Triangle: [2647, 2651, 2625] +Triangle: [2650, 2629, 2627] +Triangle: [2648, 2628, 2629] +Triangle: [2630, 2624, 2625] +Triangle: [2620, 2635, 2638] +Triangle: [2621, 2638, 2637] +Triangle: [2623, 2624, 2630] +Triangle: [2629, 2630, 2626] +Triangle: [2628, 2622, 2630] +Triangle: [2617, 2632, 2633] +Triangle: [2604, 2615, 2634] +Triangle: [2618, 2619, 2637] +Triangle: [2604, 2636, 2635] +Triangle: [2615, 2616, 2633] +Triangle: [2618, 2631, 2632] +Triangle: [2609, 2616, 2615] +Triangle: [2610, 2617, 2616] +Triangle: [2611, 2618, 2617] +Triangle: [2612, 2619, 2618] +Triangle: [2612, 2614, 2621] +Triangle: [2614, 2613, 2620] +Triangle: [2613, 2606, 2604] +Triangle: [2608, 2615, 2604] +Triangle: [2608, 2639, 2640] +Triangle: [2612, 2611, 2642] +Triangle: [2609, 2640, 2641] +Triangle: [2614, 2612, 2643] +Triangle: [2613, 2614, 2645] +Triangle: [2611, 2610, 2641] +Triangle: [2606, 2613, 2644] +Triangle: [2639, 2608, 2606] +Triangle: [2635, 2648, 2650] +Triangle: [2638, 2650, 2649] +Triangle: [2633, 2632, 2651] +Triangle: [2636, 2634, 2652] +Triangle: [2631, 2637, 2649] +Triangle: [2636, 2653, 2648] +Triangle: [2634, 2633, 2647] +Triangle: [2632, 2631, 2646] +Triangle: [2708, 2800, 2806] +Triangle: [2793, 2639, 2605] +Triangle: [2655, 2793, 2791] +Triangle: [2798, 2793, 2655] +Triangle: [2794, 2798, 2583] +Triangle: [2794, 2657, 2658] +Triangle: [2796, 2795, 2658] +Triangle: [2792, 2644, 2645] +Triangle: [2700, 2680, 2679] +Triangle: [2701, 2678, 2677] +Triangle: [2707, 2676, 2682] +Triangle: [2700, 2703, 2681] +Triangle: [2707, 2706, 2677] +Triangle: [2701, 2705, 2679] +Triangle: [2704, 2683, 2681] +Triangle: [2702, 2682, 2683] +Triangle: [2684, 2678, 2679] +Triangle: [2675, 2674, 2689] +Triangle: [2675, 2692, 2691] +Triangle: [2676, 2677, 2678] +Triangle: [2683, 2684, 2680] +Triangle: [2682, 2676, 2684] +Triangle: [2671, 2686, 2687] +Triangle: [2473, 2669, 2688] +Triangle: [2673, 2691, 2685] +Triangle: [2690, 2689, 2674] +Triangle: [2670, 2687, 2688] +Triangle: [2672, 2685, 2686] +Triangle: [2663, 2670, 2669] +Triangle: [2664, 2671, 2670] +Triangle: [2665, 2672, 2671] +Triangle: [2665, 2666, 2673] +Triangle: [2666, 2668, 2675] +Triangle: [2668, 2667, 2674] +Triangle: [2667, 2468, 2473] +Triangle: [2662, 2669, 2473] +Triangle: [2662, 2693, 2694] +Triangle: [2666, 2665, 2696] +Triangle: [2663, 2694, 2695] +Triangle: [2668, 2666, 2697] +Triangle: [2667, 2668, 2699] +Triangle: [2665, 2664, 2695] +Triangle: [2468, 2667, 2698] +Triangle: [2693, 2662, 2468] +Triangle: [2689, 2702, 2704] +Triangle: [2692, 2704, 2703] +Triangle: [2686, 2705, 2701] +Triangle: [2690, 2688, 2706] +Triangle: [2685, 2691, 2703] +Triangle: [2690, 2707, 2702] +Triangle: [2688, 2687, 2701] +Triangle: [2685, 2700, 2705] +Triangle: [2768, 2767, 2602] +Triangle: [2801, 2693, 2471] +Triangle: [2709, 2801, 2799] +Triangle: [2801, 2709, 2710] +Triangle: [2802, 2710, 2711] +Triangle: [2803, 2711, 2712] +Triangle: [2805, 2804, 2712] +Triangle: [2800, 2698, 2699] +Triangle: [2756, 2736, 2735] +Triangle: [2757, 2734, 2733] +Triangle: [2763, 2732, 2738] +Triangle: [2756, 2759, 2737] +Triangle: [2763, 2762, 2733] +Triangle: [2757, 2761, 2735] +Triangle: [2760, 2739, 2737] +Triangle: [2758, 2738, 2739] +Triangle: [2734, 2735, 2736] +Triangle: [2730, 2745, 2748] +Triangle: [2729, 2731, 2748] +Triangle: [2733, 2734, 2740] +Triangle: [2739, 2740, 2736] +Triangle: [2739, 2738, 2732] +Triangle: [2727, 2742, 2743] +Triangle: [2725, 2744, 2746] +Triangle: [2729, 2747, 2741] +Triangle: [2717, 2746, 2745] +Triangle: [2726, 2743, 2744] +Triangle: [2728, 2741, 2742] +Triangle: [2719, 2726, 2725] +Triangle: [2720, 2727, 2726] +Triangle: [2721, 2728, 2727] +Triangle: [2721, 2722, 2729] +Triangle: [2722, 2724, 2731] +Triangle: [2724, 2723, 2730] +Triangle: [2723, 2715, 2717] +Triangle: [2718, 2725, 2717] +Triangle: [2718, 2749, 2750] +Triangle: [2722, 2721, 2752] +Triangle: [2719, 2750, 2751] +Triangle: [2724, 2722, 2753] +Triangle: [2723, 2724, 2755] +Triangle: [2720, 2751, 2752] +Triangle: [2715, 2723, 2754] +Triangle: [2749, 2718, 2715] +Triangle: [2745, 2758, 2760] +Triangle: [2747, 2748, 2760] +Triangle: [2743, 2742, 2761] +Triangle: [2746, 2744, 2762] +Triangle: [2741, 2747, 2759] +Triangle: [2746, 2763, 2758] +Triangle: [2743, 2757, 2762] +Triangle: [2742, 2741, 2756] +Triangle: [2809, 2749, 2716] +Triangle: [2495, 2497, 2807] +Triangle: [2496, 2809, 2807] +Triangle: [2812, 2820, 2817] +Triangle: [2817, 2816, 2814] +Triangle: [2754, 2755, 2814] +Triangle: [2582, 2655, 2580] +Triangle: [2582, 2598, 2583] +Triangle: [2657, 2583, 2598] +Triangle: [2494, 2590, 2597] +Triangle: [2578, 2581, 2582] +Triangle: [2581, 2578, 2577] +Triangle: [2577, 2584, 2518] +Triangle: [2518, 2584, 2568] +Triangle: [2580, 2655, 2607] +Triangle: [2656, 2764, 2607] +Triangle: [2481, 2480, 2568] +Triangle: [2584, 2577, 2479] +Triangle: [2472, 2469, 2483] +Triangle: [2480, 2481, 2477] +Triangle: [2504, 2502, 2578] +Triangle: [2475, 2482, 2505] +Triangle: [2502, 2479, 2577] +Triangle: [2503, 2504, 2483] +Triangle: [2504, 2579, 2580] +Triangle: [2503, 2501, 2502] +Triangle: [2483, 2580, 2764] +Triangle: [2488, 2487, 2486] +Triangle: [2477, 2481, 2479] +Triangle: [2484, 2764, 2656] +Triangle: [2601, 2599, 2597] +Triangle: [2589, 2594, 2601] +Triangle: [2588, 2591, 2594] +Triangle: [2591, 2588, 2587] +Triangle: [2599, 2771, 2772] +Triangle: [2772, 2767, 2657] +Triangle: [2601, 2602, 2771] +Triangle: [2771, 2602, 2767] +Triangle: [2776, 2778, 2777] +Triangle: [2773, 2779, 2780] +Triangle: [2774, 2780, 2777] +Triangle: [2659, 2775, 2779] +Triangle: [2779, 2775, 2777] +Triangle: [2784, 2786, 2785] +Triangle: [2785, 2786, 2782] +Triangle: [2815, 2713, 2785] +Triangle: [2496, 2491, 2512] +Triangle: [2485, 2508, 2507] +Triangle: [2482, 2656, 2765] +Triangle: [2505, 2765, 2766] +Triangle: [2796, 2659, 2660] +Triangle: [2792, 2654, 2607] +Triangle: [2806, 2805, 2713] +Triangle: [2708, 2661, 2799] +Triangle: [2816, 2495, 2808] +Triangle: [2811, 2843, 2820] +Triangle: [2513, 2514, 2480] +Triangle: [2509, 2510, 2487] +Triangle: [2479, 2502, 2501] +Triangle: [2485, 2489, 2490] +Triangle: [2511, 2512, 2510] +Triangle: [2506, 2505, 2507] +Triangle: [2497, 2492, 2491] +Triangle: [2492, 2497, 2495] +Triangle: [2816, 2818, 2493] +Triangle: [2788, 2787, 2490] +Triangle: [2507, 2766, 2788] +Triangle: [2661, 2787, 2788] +Triangle: [2766, 2823, 2709] +Triangle: [2789, 2488, 2490] +Triangle: [2708, 2789, 2787] +Triangle: [2488, 2789, 2790] +Triangle: [2714, 2790, 2789] +Triangle: [2644, 2792, 2791] +Triangle: [2640, 2639, 2793] +Triangle: [2641, 2640, 2798] +Triangle: [2641, 2794, 2795] +Triangle: [2643, 2642, 2795] +Triangle: [2645, 2643, 2796] +Triangle: [2698, 2800, 2799] +Triangle: [2694, 2693, 2801] +Triangle: [2694, 2802, 2803] +Triangle: [2696, 2695, 2803] +Triangle: [2697, 2696, 2804] +Triangle: [2697, 2805, 2806] +Triangle: [2808, 2807, 2716] +Triangle: [2749, 2809, 2810] +Triangle: [2750, 2810, 2811] +Triangle: [2751, 2811, 2812] +Triangle: [2753, 2752, 2812] +Triangle: [2755, 2753, 2813] +Triangle: [2781, 2509, 2790] +Triangle: [2815, 2790, 2714] +Triangle: [2781, 2782, 2511] +Triangle: [2817, 2819, 2818] +Triangle: [2819, 2817, 2820] +Triangle: [2770, 2776, 2775] +Triangle: [2654, 2792, 2797] +Triangle: [2769, 2775, 2659] +Triangle: [2657, 2767, 2769] +Triangle: [2770, 2769, 2767] +Triangle: [2826, 2777, 2778] +Triangle: [2822, 2823, 2766] +Triangle: [2825, 2823, 2822] +Triangle: [2656, 2654, 2822] +Triangle: [2774, 2825, 2824] +Triangle: [2654, 2660, 2824] +Triangle: [2773, 2824, 2660] +Triangle: [2710, 2825, 2774] +Triangle: [2823, 2825, 2710] +Triangle: [2712, 2711, 2777] +Triangle: [2783, 2785, 2826] +Triangle: [2713, 2712, 2826] +Triangle: [2593, 2592, 2516] +Triangle: [2810, 2782, 2786] +Triangle: [2836, 2469, 2472] +Triangle: [2830, 2829, 2476] +Triangle: [2831, 2503, 2469] +Triangle: [2498, 2472, 2475] +Triangle: [2831, 2830, 2501] +Triangle: [2477, 2476, 2829] +Triangle: [2508, 2833, 2832] +Triangle: [2838, 2485, 2486] +Triangle: [2485, 2838, 2833] +Triangle: [2832, 2837, 2475] +Triangle: [2512, 2835, 2834] +Triangle: [2840, 2491, 2492] +Triangle: [2491, 2840, 2835] +Triangle: [2834, 2839, 2487] +Triangle: [2499, 2486, 2487] +Triangle: [2500, 2492, 2493] +Triangle: [2818, 2845, 2844] +Triangle: [2828, 2841, 2513] +Triangle: [2835, 2840, 2839] +Triangle: [2838, 2837, 2832] +Triangle: [2836, 2829, 2830] +Triangle: [2513, 2841, 2842] +Triangle: [2819, 2846, 2845] +Triangle: [2592, 2591, 2573] +Triangle: [2596, 2595, 2592] +Triangle: [2595, 2594, 2591] +Triangle: [2603, 2602, 2595] +Triangle: [2602, 2601, 2594] +Triangle: [2811, 2786, 2784] +Triangle: [2482, 2475, 2472] +Triangle: [2821, 2847, 2846] +Triangle: [2868, 2866, 2596] +Triangle: [2852, 2851, 2853] +Triangle: [2, 8, 2850] +Triangle: [10, 2851, 2850] +Triangle: [9, 2853, 2851] +Triangle: [2829, 2836, 2856] +Triangle: [2853, 9, 7] +Triangle: [2858, 2854, 2853] +Triangle: [2859, 2858, 2857] +Triangle: [2862, 2859, 2860] +Triangle: [2863, 2862, 2861] +Triangle: [2863, 2864, 3018] +Triangle: [2865, 2866, 2868] +Triangle: [2868, 2593, 2515] +Triangle: [2867, 2868, 2842] +Triangle: [2870, 2869, 2842] +Triangle: [2841, 2828, 2874] +Triangle: [2875, 2871, 2870] +Triangle: [2891, 2876, 2872] +Triangle: [2872, 2876, 2877] +Triangle: [2854, 2879, 2878] +Triangle: [2894, 2878, 2879] +Triangle: [2474, 2881, 2874] +Triangle: [2829, 2855, 2881] +Triangle: [2882, 2856, 2836] +Triangle: [2837, 2883, 2882] +Triangle: [2838, 2884, 2883] +Triangle: [2499, 2839, 2886] +Triangle: [2885, 2884, 2838] +Triangle: [2840, 2887, 2886] +Triangle: [2500, 2888, 2887] +Triangle: [2478, 2477, 2474] +Triangle: [2871, 2875, 2891] +Triangle: [2875, 2874, 2848] +Triangle: [2889, 2876, 2891] +Triangle: [2877, 2876, 2894] +Triangle: [2889, 2893, 2894] +Triangle: [2881, 2892, 2848] +Triangle: [2889, 2848, 2892] +Triangle: [2855, 2896, 2892] +Triangle: [2892, 2896, 2898] +Triangle: [2878, 2894, 2893] +Triangle: [2852, 2878, 2898] +Triangle: [2899, 2850, 2851] +Triangle: [2897, 2899, 2898] +Triangle: [2899, 2897, 2849] +Triangle: [2856, 2882, 2883] +Triangle: [2884, 2901, 2900] +Triangle: [2900, 2896, 2855] +Triangle: [2849, 2897, 2903] +Triangle: [2902, 2903, 2905] +Triangle: [2897, 2896, 2900] +Triangle: [2901, 2905, 2903] +Triangle: [2902, 11, 2] +Triangle: [11, 2902, 2904] +Triangle: [2885, 2886, 2887] +Triangle: [2885, 2908, 2901] +Triangle: [2905, 2901, 2908] +Triangle: [2910, 2904, 2905] +Triangle: [2888, 2906, 2908] +Triangle: [2909, 2908, 2906] +Triangle: [2909, 2907, 2911] +Triangle: [12, 2904, 2910] +Triangle: [0, 1, 2910] +Triangle: [2844, 2916, 2888] +Triangle: [2888, 2916, 2917] +Triangle: [2906, 2917, 2918] +Triangle: [2907, 2918, 2919] +Triangle: [2911, 2919, 2920] +Triangle: [3, 0, 2920] +Triangle: [2922, 4, 3] +Triangle: [2845, 2915, 2916] +Triangle: [2917, 2916, 2915] +Triangle: [2918, 2917, 2914] +Triangle: [2919, 2918, 2913] +Triangle: [2920, 2919, 2912] +Triangle: [2912, 2923, 2922] +Triangle: [2924, 2923, 2912] +Triangle: [2925, 2924, 2913] +Triangle: [2915, 2926, 2925] +Triangle: [2846, 2926, 2915] +Triangle: [2929, 4, 2922] +Triangle: [2924, 2928, 2929] +Triangle: [2925, 2927, 2928] +Triangle: [2926, 2930, 2927] +Triangle: [2930, 2926, 2846] +Triangle: [4, 2929, 2931] +Triangle: [5, 2931, 2932] +Triangle: [6, 2932, 2857] +Triangle: [2931, 2933, 2934] +Triangle: [2935, 2936, 2934] +Triangle: [2932, 2934, 2860] +Triangle: [2860, 2934, 2936] +Triangle: [2928, 2933, 2931] +Triangle: [2927, 2935, 2933] +Triangle: [2877, 2938, 2937] +Triangle: [2939, 2938, 2877] +Triangle: [2880, 2939, 2895] +Triangle: [2858, 2880, 2879] +Triangle: [2940, 2880, 2858] +Triangle: [2941, 2940, 2859] +Triangle: [2939, 2880, 2940] +Triangle: [2941, 2943, 2942] +Triangle: [2938, 2939, 2942] +Triangle: [2944, 2937, 2938] +Triangle: [2978, 2965, 2964] +Triangle: [2984, 2979, 2963] +Triangle: [2985, 2961, 2967] +Triangle: [2978, 2981, 2966] +Triangle: [2985, 2984, 2962] +Triangle: [2979, 2983, 2964] +Triangle: [2982, 2968, 2966] +Triangle: [2980, 2967, 2968] +Triangle: [2969, 2963, 2964] +Triangle: [2959, 2974, 2977] +Triangle: [2960, 2977, 2976] +Triangle: [2962, 2963, 2969] +Triangle: [2966, 2968, 2969] +Triangle: [2967, 2961, 2969] +Triangle: [2956, 2971, 2972] +Triangle: [2954, 2973, 2975] +Triangle: [2958, 2976, 2970] +Triangle: [2952, 2975, 2974] +Triangle: [2954, 2955, 2972] +Triangle: [2957, 2970, 2971] +Triangle: [2986, 2987, 2955] +Triangle: [2988, 2956, 2955] +Triangle: [2989, 2957, 2956] +Triangle: [2990, 2958, 2957] +Triangle: [2990, 2991, 2960] +Triangle: [2992, 2959, 2960] +Triangle: [2992, 2993, 2952] +Triangle: [2986, 2954, 2952] +Triangle: [2974, 2980, 2982] +Triangle: [2977, 2982, 2981] +Triangle: [2972, 2971, 2983] +Triangle: [2975, 2973, 2984] +Triangle: [2970, 2976, 2981] +Triangle: [2975, 2985, 2980] +Triangle: [2973, 2972, 2979] +Triangle: [2971, 2970, 2978] +Triangle: [2950, 2986, 2993] +Triangle: [2945, 2951, 2993] +Triangle: [2945, 2992, 2991] +Triangle: [2946, 2953, 2991] +Triangle: [2946, 2990, 2989] +Triangle: [2947, 2989, 2988] +Triangle: [2948, 2988, 2987] +Triangle: [2950, 2949, 2987] +Triangle: [2946, 2995, 3001] +Triangle: [2951, 2945, 2994] +Triangle: [2948, 2949, 2998] +Triangle: [2947, 2996, 2995] +Triangle: [2953, 3001, 2994] +Triangle: [2951, 3000, 2999] +Triangle: [2949, 2950, 2999] +Triangle: [2947, 2948, 2997] +Triangle: [2869, 3009, 3003] +Triangle: [3010, 3009, 2869] +Triangle: [2871, 3011, 3010] +Triangle: [3002, 3009, 3010] +Triangle: [2890, 3012, 3011] +Triangle: [3008, 3002, 3011] +Triangle: [2872, 2873, 3012] +Triangle: [3013, 3007, 3008] +Triangle: [3013, 3012, 2873] +Triangle: [2867, 3003, 3017] +Triangle: [3019, 3018, 2866] +Triangle: [3004, 3016, 3017] +Triangle: [3004, 3005, 3015] +Triangle: [3005, 3006, 3014] +Triangle: [3006, 3007, 3013] +Triangle: [3014, 3013, 2937] +Triangle: [3015, 3014, 2944] +Triangle: [3020, 2944, 2943] +Triangle: [3009, 3001, 2995] +Triangle: [3002, 2994, 3001] +Triangle: [3008, 3000, 2994] +Triangle: [3007, 2999, 3000] +Triangle: [3007, 3006, 2998] +Triangle: [3006, 3005, 2997] +Triangle: [3004, 2996, 2997] +Triangle: [3003, 2995, 2996] +Triangle: [3017, 3016, 3019] +Triangle: [3016, 3015, 3020] +Triangle: [3021, 2941, 2862] +Triangle: [3019, 3016, 3021] +Triangle: [2936, 3022, 2864] +Triangle: [2596, 2866, 3023] +Triangle: [3024, 3023, 2866] +Triangle: [3018, 2864, 3022] +Triangle: [3026, 3025, 3027] +Triangle: [3025, 3026, 3024] +Triangle: [2768, 3028, 3027] +Triangle: [3023, 3024, 3026] +Triangle: [2603, 3023, 3028] +Triangle: [2776, 2770, 3027] +Triangle: [2776, 3029, 3031] +Triangle: [3031, 3030, 2827] +Triangle: [3025, 3032, 3029] +Triangle: [3034, 3032, 3025] +Triangle: [3034, 3022, 3035] +Triangle: [3035, 3022, 2936] +Triangle: [2930, 3035, 2935] +Triangle: [3036, 3033, 3035] +Triangle: [3036, 2930, 2847] +Triangle: [2784, 3039, 3040] +Triangle: [2783, 2827, 3030] +Triangle: [2783, 3038, 3039] +Triangle: [2843, 3040, 2821] +Triangle: [2821, 3040, 3037] +Triangle: [3029, 3038, 3030] +Triangle: [3041, 3032, 3034] +Triangle: [3033, 3036, 3037] +Triangle: [3032, 3041, 3038] +Triangle: [3038, 3041, 3042] +Triangle: [3042, 3037, 3040] +Triangle: [3089, 3091, 3090] +Triangle: [3383, 3384, 3086] +Triangle: [3113, 3114, 3134] +Triangle: [3111, 3112, 3135] +Triangle: [3141, 3136, 3116] +Triangle: [3134, 3114, 3115] +Triangle: [3141, 3110, 3111] +Triangle: [3135, 3112, 3113] +Triangle: [3115, 3117, 3138] +Triangle: [3117, 3116, 3136] +Triangle: [3118, 3114, 3113] +Triangle: [3126, 3123, 3108] +Triangle: [3125, 3126, 3109] +Triangle: [3118, 3112, 3111] +Triangle: [3114, 3118, 3117] +Triangle: [3118, 3110, 3116] +Triangle: [3121, 3120, 3105] +Triangle: [3045, 3124, 3122] +Triangle: [3119, 3125, 3107] +Triangle: [3108, 3123, 3124] +Triangle: [3103, 3122, 3121] +Triangle: [3120, 3119, 3106] +Triangle: [3096, 3103, 3104] +Triangle: [3104, 3105, 3098] +Triangle: [3105, 3106, 3099] +Triangle: [3106, 3107, 3100] +Triangle: [3100, 3107, 3109] +Triangle: [3109, 3108, 3101] +Triangle: [3101, 3108, 3045] +Triangle: [3045, 3103, 3096] +Triangle: [3097, 3128, 3127] +Triangle: [3131, 3130, 3099] +Triangle: [3129, 3128, 3097] +Triangle: [3102, 3133, 3131] +Triangle: [3132, 3133, 3102] +Triangle: [3099, 3130, 3129] +Triangle: [3094, 3092, 3132] +Triangle: [3094, 3096, 3127] +Triangle: [3138, 3136, 3123] +Triangle: [3137, 3138, 3126] +Triangle: [3121, 3135, 3139] +Triangle: [3124, 3141, 3140] +Triangle: [3119, 3134, 3137] +Triangle: [3124, 3123, 3136] +Triangle: [3122, 3140, 3135] +Triangle: [3120, 3139, 3134] +Triangle: [3092, 3095, 3142] +Triangle: [3092, 3127, 3144] +Triangle: [3146, 3144, 3127] +Triangle: [3147, 3146, 3128] +Triangle: [3149, 3147, 3129] +Triangle: [3150, 3149, 3130] +Triangle: [3133, 3151, 3150] +Triangle: [3142, 3151, 3133] +Triangle: [3095, 3144, 3160] +Triangle: [3095, 3093, 3069] +Triangle: [3165, 3151, 3142] +Triangle: [3151, 3165, 3164] +Triangle: [3164, 3163, 3149] +Triangle: [3163, 3162, 3147] +Triangle: [3161, 3146, 3147] +Triangle: [3144, 3146, 3161] +Triangle: [3161, 3145, 3143] +Triangle: [3145, 3089, 3055] +Triangle: [3148, 3145, 3161] +Triangle: [3145, 3148, 3091] +Triangle: [3156, 3157, 3173] +Triangle: [3172, 3173, 3175] +Triangle: [3200, 3201, 3221] +Triangle: [3198, 3199, 3222] +Triangle: [3228, 3223, 3203] +Triangle: [3221, 3201, 3202] +Triangle: [3228, 3197, 3198] +Triangle: [3222, 3199, 3200] +Triangle: [3202, 3204, 3225] +Triangle: [3204, 3203, 3223] +Triangle: [3205, 3201, 3200] +Triangle: [3213, 3210, 3195] +Triangle: [3212, 3213, 3196] +Triangle: [3205, 3199, 3198] +Triangle: [3201, 3205, 3204] +Triangle: [3205, 3197, 3203] +Triangle: [3208, 3207, 3192] +Triangle: [3179, 3211, 3209] +Triangle: [3193, 3206, 3212] +Triangle: [3179, 3195, 3210] +Triangle: [3190, 3209, 3208] +Triangle: [3207, 3206, 3193] +Triangle: [3190, 3191, 3184] +Triangle: [3191, 3192, 3185] +Triangle: [3192, 3193, 3186] +Triangle: [3193, 3194, 3187] +Triangle: [3187, 3194, 3196] +Triangle: [3189, 3196, 3195] +Triangle: [3188, 3195, 3179] +Triangle: [3179, 3190, 3183] +Triangle: [3215, 3214, 3183] +Triangle: [3187, 3218, 3217] +Triangle: [3216, 3215, 3184] +Triangle: [3189, 3220, 3218] +Triangle: [3188, 3219, 3220] +Triangle: [3186, 3217, 3216] +Triangle: [3181, 3180, 3219] +Triangle: [3181, 3183, 3214] +Triangle: [3225, 3223, 3210] +Triangle: [3224, 3225, 3213] +Triangle: [3208, 3222, 3226] +Triangle: [3211, 3228, 3227] +Triangle: [3206, 3221, 3224] +Triangle: [3211, 3210, 3223] +Triangle: [3209, 3227, 3222] +Triangle: [3207, 3226, 3221] +Triangle: [3283, 3289, 3380] +Triangle: [3180, 3214, 3367] +Triangle: [3230, 3182, 3365] +Triangle: [3372, 3158, 3230] +Triangle: [3368, 3232, 3158] +Triangle: [3233, 3232, 3368] +Triangle: [3370, 3234, 3233] +Triangle: [3366, 3371, 3220] +Triangle: [3254, 3255, 3275] +Triangle: [3252, 3253, 3276] +Triangle: [3282, 3277, 3257] +Triangle: [3275, 3255, 3256] +Triangle: [3282, 3251, 3252] +Triangle: [3276, 3253, 3254] +Triangle: [3256, 3258, 3279] +Triangle: [3258, 3257, 3277] +Triangle: [3259, 3255, 3254] +Triangle: [3250, 3267, 3264] +Triangle: [3266, 3267, 3250] +Triangle: [3251, 3259, 3253] +Triangle: [3255, 3259, 3258] +Triangle: [3259, 3251, 3257] +Triangle: [3262, 3261, 3246] +Triangle: [3048, 3265, 3263] +Triangle: [3260, 3266, 3248] +Triangle: [3249, 3264, 3265] +Triangle: [3263, 3262, 3245] +Triangle: [3261, 3260, 3247] +Triangle: [3244, 3245, 3238] +Triangle: [3245, 3246, 3239] +Triangle: [3246, 3247, 3240] +Triangle: [3240, 3247, 3248] +Triangle: [3241, 3248, 3250] +Triangle: [3243, 3250, 3249] +Triangle: [3242, 3249, 3048] +Triangle: [3048, 3244, 3237] +Triangle: [3269, 3268, 3237] +Triangle: [3241, 3272, 3271] +Triangle: [3270, 3269, 3238] +Triangle: [3243, 3274, 3272] +Triangle: [3242, 3273, 3274] +Triangle: [3240, 3271, 3270] +Triangle: [3043, 3046, 3273] +Triangle: [3043, 3237, 3268] +Triangle: [3279, 3277, 3264] +Triangle: [3278, 3279, 3267] +Triangle: [3276, 3280, 3261] +Triangle: [3265, 3282, 3281] +Triangle: [3260, 3275, 3278] +Triangle: [3265, 3264, 3277] +Triangle: [3263, 3281, 3276] +Triangle: [3280, 3275, 3260] +Triangle: [3177, 3342, 3343] +Triangle: [3046, 3268, 3375] +Triangle: [3284, 3236, 3373] +Triangle: [3285, 3284, 3375] +Triangle: [3286, 3285, 3376] +Triangle: [3287, 3286, 3377] +Triangle: [3379, 3288, 3287] +Triangle: [3374, 3380, 3274] +Triangle: [3310, 3311, 3331] +Triangle: [3308, 3309, 3332] +Triangle: [3338, 3333, 3313] +Triangle: [3331, 3311, 3312] +Triangle: [3338, 3307, 3308] +Triangle: [3332, 3309, 3310] +Triangle: [3312, 3314, 3335] +Triangle: [3314, 3313, 3333] +Triangle: [3311, 3310, 3309] +Triangle: [3323, 3320, 3305] +Triangle: [3304, 3322, 3323] +Triangle: [3315, 3309, 3308] +Triangle: [3311, 3315, 3314] +Triangle: [3314, 3315, 3307] +Triangle: [3318, 3317, 3302] +Triangle: [3321, 3319, 3300] +Triangle: [3316, 3322, 3304] +Triangle: [3292, 3305, 3320] +Triangle: [3319, 3318, 3301] +Triangle: [3317, 3316, 3303] +Triangle: [3300, 3301, 3294] +Triangle: [3301, 3302, 3295] +Triangle: [3302, 3303, 3296] +Triangle: [3296, 3303, 3304] +Triangle: [3297, 3304, 3306] +Triangle: [3299, 3306, 3305] +Triangle: [3298, 3305, 3292] +Triangle: [3292, 3300, 3293] +Triangle: [3325, 3324, 3293] +Triangle: [3297, 3328, 3327] +Triangle: [3326, 3325, 3294] +Triangle: [3299, 3330, 3328] +Triangle: [3298, 3329, 3330] +Triangle: [3327, 3326, 3295] +Triangle: [3290, 3291, 3329] +Triangle: [3290, 3293, 3324] +Triangle: [3335, 3333, 3320] +Triangle: [3322, 3334, 3335] +Triangle: [3318, 3332, 3336] +Triangle: [3321, 3338, 3337] +Triangle: [3316, 3331, 3334] +Triangle: [3321, 3320, 3333] +Triangle: [3337, 3332, 3318] +Triangle: [3317, 3336, 3331] +Triangle: [3291, 3324, 3383] +Triangle: [3070, 3382, 3381] +Triangle: [3381, 3383, 3071] +Triangle: [3386, 3387, 3391] +Triangle: [3388, 3390, 3391] +Triangle: [3388, 3330, 3329] +Triangle: [3155, 3230, 3157] +Triangle: [3157, 3230, 3158] +Triangle: [3173, 3158, 3232] +Triangle: [3172, 3165, 3069] +Triangle: [3157, 3156, 3153] +Triangle: [3152, 3153, 3156] +Triangle: [3093, 3159, 3152] +Triangle: [3093, 3160, 3143] +Triangle: [3155, 3339, 3182] +Triangle: [3182, 3339, 3231] +Triangle: [3056, 3159, 3143] +Triangle: [3054, 3152, 3159] +Triangle: [3047, 3059, 3058] +Triangle: [3055, 3053, 3052] +Triangle: [3079, 3154, 3153] +Triangle: [3050, 3081, 3080] +Triangle: [3077, 3153, 3152] +Triangle: [3058, 3079, 3078] +Triangle: [3155, 3154, 3079] +Triangle: [3078, 3079, 3077] +Triangle: [3339, 3155, 3058] +Triangle: [3063, 3065, 3061] +Triangle: [3052, 3051, 3054] +Triangle: [3231, 3339, 3059] +Triangle: [3172, 3174, 3176] +Triangle: [3176, 3169, 3164] +Triangle: [3169, 3166, 3163] +Triangle: [3162, 3163, 3166] +Triangle: [3174, 3175, 3346] +Triangle: [3232, 3342, 3346] +Triangle: [3176, 3174, 3345] +Triangle: [3345, 3346, 3342] +Triangle: [3350, 3349, 3351] +Triangle: [3347, 3348, 3354] +Triangle: [3348, 3286, 3351] +Triangle: [3234, 3347, 3353] +Triangle: [3353, 3354, 3351] +Triangle: [3359, 3360, 3358] +Triangle: [3356, 3360, 3359] +Triangle: [3359, 3288, 3389] +Triangle: [3087, 3066, 3071] +Triangle: [3082, 3083, 3060] +Triangle: [3340, 3231, 3057] +Triangle: [3080, 3082, 3341] +Triangle: [3235, 3234, 3370] +Triangle: [3366, 3365, 3182] +Triangle: [3380, 3289, 3288] +Triangle: [3373, 3236, 3283] +Triangle: [3382, 3070, 3390] +Triangle: [3385, 3386, 3394] +Triangle: [3055, 3089, 3088] +Triangle: [3062, 3085, 3084] +Triangle: [3076, 3077, 3054] +Triangle: [3065, 3064, 3060] +Triangle: [3085, 3087, 3086] +Triangle: [3081, 3083, 3082] +Triangle: [3072, 3071, 3066] +Triangle: [3070, 3072, 3067] +Triangle: [3068, 3392, 3390] +Triangle: [3362, 3064, 3065] +Triangle: [3362, 3341, 3082] +Triangle: [3362, 3361, 3236] +Triangle: [3341, 3362, 3284] +Triangle: [3363, 3361, 3065] +Triangle: [3283, 3236, 3361] +Triangle: [3364, 3363, 3063] +Triangle: [3289, 3283, 3363] +Triangle: [3219, 3180, 3365] +Triangle: [3215, 3372, 3367] +Triangle: [3216, 3368, 3372] +Triangle: [3369, 3368, 3216] +Triangle: [3218, 3370, 3369] +Triangle: [3220, 3371, 3370] +Triangle: [3273, 3046, 3373] +Triangle: [3269, 3376, 3375] +Triangle: [3377, 3376, 3269] +Triangle: [3271, 3378, 3377] +Triangle: [3272, 3379, 3378] +Triangle: [3380, 3379, 3272] +Triangle: [3291, 3381, 3382] +Triangle: [3384, 3383, 3324] +Triangle: [3385, 3384, 3325] +Triangle: [3386, 3385, 3326] +Triangle: [3328, 3387, 3386] +Triangle: [3330, 3388, 3387] +Triangle: [3364, 3084, 3355] +Triangle: [3289, 3364, 3389] +Triangle: [3086, 3356, 3355] +Triangle: [3391, 3390, 3392] +Triangle: [3393, 3395, 3394] +Triangle: [3229, 3235, 3371] +Triangle: [3344, 3233, 3234] +Triangle: [3344, 3342, 3232] +Triangle: [3396, 3340, 3341] +Triangle: [3396, 3397, 3399] +Triangle: [3231, 3340, 3396] +Triangle: [3398, 3399, 3348] +Triangle: [3229, 3396, 3398] +Triangle: [3347, 3234, 3235] +Triangle: [3285, 3286, 3348] +Triangle: [3285, 3399, 3397] +Triangle: [3287, 3400, 3351] +Triangle: [3400, 3287, 3288] +Triangle: [3091, 3167, 3168] +Triangle: [3384, 3385, 3360] +Triangle: [3047, 3044, 3409] +Triangle: [3051, 3402, 3403] +Triangle: [3404, 3409, 3044] +Triangle: [3073, 3410, 3050] +Triangle: [3076, 3403, 3404] +Triangle: [3402, 3051, 3052] +Triangle: [3083, 3081, 3405] +Triangle: [3061, 3060, 3411] +Triangle: [3060, 3083, 3406] +Triangle: [3050, 3410, 3405] +Triangle: [3087, 3085, 3407] +Triangle: [3067, 3066, 3413] +Triangle: [3066, 3087, 3408] +Triangle: [3062, 3412, 3407] +Triangle: [3074, 3412, 3062] +Triangle: [3075, 3417, 3068] +Triangle: [3392, 3068, 3417] +Triangle: [3401, 3053, 3088] +Triangle: [3408, 3407, 3412] +Triangle: [3405, 3410, 3411] +Triangle: [3403, 3402, 3409] +Triangle: [3088, 3090, 3415] +Triangle: [3393, 3392, 3418] +Triangle: [3148, 3166, 3167] +Triangle: [3167, 3170, 3171] +Triangle: [3166, 3169, 3170] +Triangle: [3170, 3177, 3178] +Triangle: [3169, 3176, 3177] +Triangle: [3358, 3360, 3385] +Triangle: [3057, 3059, 3047] +Triangle: [3395, 3393, 3419] +Triangle: [3171, 3439, 3441] +Triangle: [3425, 3427, 3426] +Triangle: [3423, 1296, 1290] +Triangle: [1298, 1296, 3423] +Triangle: [1297, 1298, 3424] +Triangle: [3402, 3428, 3429] +Triangle: [1295, 1297, 3426] +Triangle: [3431, 3430, 3426] +Triangle: [3432, 3433, 3430] +Triangle: [3435, 3434, 3433] +Triangle: [3436, 3437, 3434] +Triangle: [3591, 3437, 3436] +Triangle: [3441, 3439, 3438] +Triangle: [3090, 3168, 3441] +Triangle: [3440, 3442, 3415] +Triangle: [3443, 3414, 3415] +Triangle: [3414, 3448, 3447] +Triangle: [3443, 3444, 3448] +Triangle: [3445, 3449, 3464] +Triangle: [3450, 3449, 3445] +Triangle: [3427, 3425, 3451] +Triangle: [3452, 3451, 3467] +Triangle: [3049, 3401, 3447] +Triangle: [3454, 3428, 3402] +Triangle: [3409, 3429, 3455] +Triangle: [3410, 3073, 3455] +Triangle: [3411, 3410, 3456] +Triangle: [3074, 3458, 3459] +Triangle: [3411, 3457, 3458] +Triangle: [3413, 3412, 3459] +Triangle: [3075, 3413, 3460] +Triangle: [3049, 3052, 3053] +Triangle: [3444, 3463, 3464] +Triangle: [3448, 3464, 3421] +Triangle: [3464, 3449, 3462] +Triangle: [3450, 3468, 3467] +Triangle: [3467, 3466, 3462] +Triangle: [3454, 3447, 3421] +Triangle: [3462, 3466, 3465] +Triangle: [3428, 3454, 3465] +Triangle: [3471, 3469, 3465] +Triangle: [3451, 3471, 3466] +Triangle: [3425, 3472, 3471] +Triangle: [3424, 3423, 3472] +Triangle: [3470, 3469, 3471] +Triangle: [3422, 3470, 3472] +Triangle: [3429, 3457, 3456] +Triangle: [3473, 3474, 3457] +Triangle: [3428, 3469, 3473] +Triangle: [3422, 3475, 3476] +Triangle: [3475, 3477, 3478] +Triangle: [3470, 3476, 3473] +Triangle: [3474, 3473, 3476] +Triangle: [1290, 1299, 3475] +Triangle: [1299, 1300, 3477] +Triangle: [3458, 3461, 3460] +Triangle: [3458, 3457, 3474] +Triangle: [3478, 3482, 3481] +Triangle: [3483, 3482, 3478] +Triangle: [3481, 3479, 3461] +Triangle: [3479, 3481, 3482] +Triangle: [3484, 3480, 3482] +Triangle: [3483, 3477, 1300] +Triangle: [3483, 1289, 1288] +Triangle: [3417, 3075, 3461] +Triangle: [3490, 3489, 3461] +Triangle: [3491, 3490, 3479] +Triangle: [3492, 3491, 3480] +Triangle: [3493, 3492, 3484] +Triangle: [3493, 1288, 1291] +Triangle: [3495, 3494, 1291] +Triangle: [3489, 3488, 3418] +Triangle: [3488, 3489, 3490] +Triangle: [3487, 3490, 3491] +Triangle: [3486, 3491, 3492] +Triangle: [3493, 3494, 3485] +Triangle: [3485, 3494, 3495] +Triangle: [3485, 3496, 3497] +Triangle: [3486, 3497, 3498] +Triangle: [3488, 3487, 3498] +Triangle: [3419, 3418, 3488] +Triangle: [3502, 3496, 3495] +Triangle: [3502, 3501, 3497] +Triangle: [3501, 3500, 3498] +Triangle: [3500, 3503, 3499] +Triangle: [3419, 3499, 3503] +Triangle: [1292, 1293, 3504] +Triangle: [1293, 1294, 3505] +Triangle: [1294, 1295, 3430] +Triangle: [3504, 3505, 3507] +Triangle: [3507, 3509, 3508] +Triangle: [3433, 3507, 3505] +Triangle: [3433, 3434, 3509] +Triangle: [3504, 3506, 3501] +Triangle: [3506, 3508, 3500] +Triangle: [3510, 3511, 3450] +Triangle: [3450, 3511, 3512] +Triangle: [3468, 3512, 3453] +Triangle: [3431, 3427, 3452] +Triangle: [3431, 3453, 3513] +Triangle: [3432, 3513, 3514] +Triangle: [3512, 3515, 3513] +Triangle: [3514, 3513, 3515] +Triangle: [3511, 3516, 3515] +Triangle: [3517, 3516, 3511] +Triangle: [3537, 3538, 3551] +Triangle: [3557, 3535, 3536] +Triangle: [3558, 3553, 3540] +Triangle: [3551, 3538, 3539] +Triangle: [3558, 3534, 3535] +Triangle: [3552, 3536, 3537] +Triangle: [3539, 3541, 3555] +Triangle: [3541, 3540, 3553] +Triangle: [3542, 3538, 3537] +Triangle: [3550, 3547, 3532] +Triangle: [3549, 3550, 3533] +Triangle: [3542, 3536, 3535] +Triangle: [3539, 3538, 3542] +Triangle: [3542, 3534, 3540] +Triangle: [3545, 3544, 3529] +Triangle: [3548, 3546, 3527] +Triangle: [3543, 3549, 3531] +Triangle: [3525, 3532, 3547] +Triangle: [3527, 3546, 3545] +Triangle: [3544, 3543, 3530] +Triangle: [3559, 3527, 3528] +Triangle: [3528, 3529, 3561] +Triangle: [3529, 3530, 3562] +Triangle: [3530, 3531, 3563] +Triangle: [3563, 3531, 3533] +Triangle: [3533, 3532, 3565] +Triangle: [3565, 3532, 3525] +Triangle: [3525, 3527, 3559] +Triangle: [3555, 3553, 3547] +Triangle: [3554, 3555, 3550] +Triangle: [3545, 3552, 3556] +Triangle: [3548, 3558, 3557] +Triangle: [3543, 3551, 3554] +Triangle: [3548, 3547, 3553] +Triangle: [3546, 3557, 3552] +Triangle: [3544, 3556, 3551] +Triangle: [3566, 3559, 3523] +Triangle: [3518, 3565, 3566] +Triangle: [3564, 3565, 3518] +Triangle: [3519, 3563, 3564] +Triangle: [3562, 3563, 3519] +Triangle: [3561, 3562, 3520] +Triangle: [3560, 3561, 3521] +Triangle: [3523, 3559, 3560] +Triangle: [3574, 3568, 3519] +Triangle: [3524, 3573, 3567] +Triangle: [3521, 3570, 3571] +Triangle: [3568, 3569, 3520] +Triangle: [3567, 3574, 3526] +Triangle: [3572, 3573, 3524] +Triangle: [3522, 3571, 3572] +Triangle: [3520, 3569, 3570] +Triangle: [3576, 3582, 3442] +Triangle: [3442, 3582, 3583] +Triangle: [3444, 3443, 3583] +Triangle: [3575, 3584, 3583] +Triangle: [3463, 3444, 3584] +Triangle: [3581, 3585, 3584] +Triangle: [3585, 3446, 3445] +Triangle: [3586, 3585, 3581] +Triangle: [3446, 3585, 3586] +Triangle: [3440, 3438, 3590] +Triangle: [3439, 3591, 3592] +Triangle: [3590, 3589, 3577] +Triangle: [3577, 3589, 3588] +Triangle: [3578, 3588, 3587] +Triangle: [3579, 3587, 3586] +Triangle: [3510, 3586, 3587] +Triangle: [3588, 3593, 3517] +Triangle: [3516, 3517, 3593] +Triangle: [3568, 3574, 3582] +Triangle: [3574, 3567, 3575] +Triangle: [3567, 3573, 3581] +Triangle: [3573, 3572, 3580] +Triangle: [3580, 3572, 3571] +Triangle: [3579, 3571, 3570] +Triangle: [3570, 3569, 3577] +Triangle: [3569, 3568, 3576] +Triangle: [3592, 3589, 3590] +Triangle: [3589, 3594, 3593] +Triangle: [3435, 3514, 3594] +Triangle: [3594, 3589, 3592] +Triangle: [3437, 3595, 3509] +Triangle: [3596, 3439, 3171] +Triangle: [3439, 3596, 3597] +Triangle: [3591, 3597, 3595] +Triangle: [3600, 3598, 3599] +Triangle: [3598, 3595, 3597] +Triangle: [3596, 3601, 3599] +Triangle: [3601, 3596, 3178] +Triangle: [3604, 3602, 3350] +Triangle: [3598, 3600, 3602] +Triangle: [3598, 3605, 3607] +Triangle: [3608, 3595, 3607] +Triangle: [3509, 3595, 3608] +Triangle: [3508, 3608, 3503] +Triangle: [3609, 3503, 3608] +Triangle: [3420, 3503, 3609] +Triangle: [3613, 3612, 3358] +Triangle: [3612, 3611, 3357] +Triangle: [3395, 3613, 3416] +Triangle: [3395, 3420, 3610] +Triangle: [3602, 3604, 3603] +Triangle: [3607, 3605, 3614] +Triangle: [3606, 3614, 3610] +Triangle: [3605, 3602, 3611] +Triangle: [3615, 3614, 3611] +Triangle: [3613, 3610, 3615] +Triangle: [3648, 3619, 3618] +Triangle: [3644, 3647, 3624] +Triangle: [3640, 3643, 3625] +Triangle: [3639, 3626, 3621] +Triangle: [5333, 5332, 3627] +Triangle: [5334, 5335, 3628] +Triangle: [3651, 3650, 3629] +Triangle: [3626, 3634, 3633] +Triangle: [5355, 3635, 3632] +Triangle: [3622, 3625, 3638] +Triangle: [3637, 3638, 3639] +Triangle: [3623, 3624, 3642] +Triangle: [3641, 3642, 3643] +Triangle: [3616, 3617, 3646] +Triangle: [3645, 3646, 3647] +Triangle: [3629, 3648, 3649] +Triangle: [3631, 3628, 3650] +Triangle: [3679, 3655, 3691] +Triangle: [3687, 3680, 3660] +Triangle: [3681, 3661, 3677] +Triangle: [3689, 3682, 3662] +Triangle: [3683, 3663, 3673] +Triangle: [3684, 3664, 5380] +Triangle: [3685, 3665, 3697] +Triangle: [3686, 3670, 3653] +Triangle: [3687, 3671, 3670] +Triangle: [3688, 3673, 3662] +Triangle: [5364, 3689, 3675] +Triangle: [3680, 3690, 3677] +Triangle: [3676, 3690, 3680] +Triangle: [5362, 3674, 3689] +Triangle: [3672, 3688, 3682] +Triangle: [3668, 3687, 3686] +Triangle: [3652, 3669, 3686] +Triangle: [3666, 3685, 3699] +Triangle: [5382, 3667, 3684] +Triangle: [3656, 3683, 3688] +Triangle: [3674, 3657, 3682] +Triangle: [3676, 3658, 3681] +Triangle: [3659, 3680, 3687] +Triangle: [3654, 3679, 3693] +Triangle: [3692, 3693, 3696] +Triangle: [3693, 3691, 3695] +Triangle: [3696, 3695, 3665] +Triangle: [3694, 3696, 3685] +Triangle: [3667, 3698, 3699] +Triangle: [3699, 3697, 3664] +Triangle: [3700, 3702, 5373] +Triangle: [3702, 3701, 5372] +Triangle: [3744, 3730, 3706] +Triangle: [3731, 3711, 3722] +Triangle: [3732, 3712, 3728] +Triangle: [5385, 3733, 3713] +Triangle: [5341, 3734, 3714] +Triangle: [3753, 3735, 3715] +Triangle: [3750, 3736, 3716] +Triangle: [3737, 3721, 3704] +Triangle: [3738, 3722, 3721] +Triangle: [5347, 3739, 3724] +Triangle: [3740, 3726, 5396] +Triangle: [3741, 3728, 3711] +Triangle: [3710, 3727, 3741] +Triangle: [3725, 3740, 5397] +Triangle: [3723, 3739, 5347] +Triangle: [3719, 3738, 3737] +Triangle: [3703, 3720, 3737] +Triangle: [3749, 3717, 3736] +Triangle: [3751, 3718, 3735] +Triangle: [5338, 3707, 3734] +Triangle: [3708, 3733, 5385] +Triangle: [3709, 3732, 3741] +Triangle: [3710, 3731, 3738] +Triangle: [3705, 3730, 3744] +Triangle: [3743, 3744, 3747] +Triangle: [3747, 3744, 3742] +Triangle: [3736, 3747, 3746] +Triangle: [3717, 3745, 3747] +Triangle: [3718, 3749, 3750] +Triangle: [3735, 3750, 3748] +Triangle: [3707, 3751, 3753] +Triangle: [3734, 3753, 3752] +Triangle: [3795, 3781, 3757] +Triangle: [3782, 3762, 3773] +Triangle: [3783, 3763, 3779] +Triangle: [3791, 3784, 3764] +Triangle: [3790, 3785, 3765] +Triangle: [3786, 3766, 3803] +Triangle: [3801, 3787, 3767] +Triangle: [3788, 3772, 3755] +Triangle: [3789, 3773, 3772] +Triangle: [3784, 3790, 3775] +Triangle: [3783, 3791, 3777] +Triangle: [3792, 3779, 3762] +Triangle: [3778, 3792, 3782] +Triangle: [3776, 3791, 3783] +Triangle: [3759, 3774, 3790] +Triangle: [3770, 3789, 3788] +Triangle: [3754, 3771, 3788] +Triangle: [3800, 3768, 3787] +Triangle: [3769, 3786, 3804] +Triangle: [3774, 3758, 3785] +Triangle: [3776, 3759, 3784] +Triangle: [3760, 3783, 3792] +Triangle: [3761, 3782, 3789] +Triangle: [3794, 3756, 3781] +Triangle: [3796, 3794, 3795] +Triangle: [3798, 3795, 3793] +Triangle: [3787, 3798, 3797] +Triangle: [3768, 3796, 3798] +Triangle: [3769, 3800, 3801] +Triangle: [3786, 3801, 3799] +Triangle: [3802, 3804, 3785] +Triangle: [3804, 3803, 3765] +Triangle: [3846, 3832, 3808] +Triangle: [3840, 3833, 3813] +Triangle: [3834, 3814, 3830] +Triangle: [3842, 3835, 3815] +Triangle: [3841, 3836, 3816] +Triangle: [3855, 3837, 3817] +Triangle: [3838, 3818, 3850] +Triangle: [3839, 3823, 3806] +Triangle: [3840, 3824, 3823] +Triangle: [3835, 3841, 3826] +Triangle: [3834, 3842, 3828] +Triangle: [3833, 3843, 3830] +Triangle: [3812, 3829, 3843] +Triangle: [3811, 3827, 3842] +Triangle: [3810, 3825, 3841] +Triangle: [3822, 3821, 3840] +Triangle: [3805, 3822, 3839] +Triangle: [3851, 3819, 3838] +Triangle: [3853, 3820, 3837] +Triangle: [3809, 3836, 3841] +Triangle: [3827, 3810, 3835] +Triangle: [3829, 3811, 3834] +Triangle: [3821, 3812, 3833] +Triangle: [3845, 3807, 3832] +Triangle: [3847, 3845, 3846] +Triangle: [3849, 3846, 3844] +Triangle: [3849, 3848, 3818] +Triangle: [3819, 3847, 3849] +Triangle: [3820, 3851, 3852] +Triangle: [3837, 3852, 3850] +Triangle: [3853, 3855, 3836] +Triangle: [3836, 3855, 3854] +Triangle: [3897, 3883, 3859] +Triangle: [3891, 3884, 3864] +Triangle: [3885, 3865, 3916] +Triangle: [3930, 3886, 3866] +Triangle: [3924, 3887, 3867] +Triangle: [3888, 3868, 3905] +Triangle: [3903, 3889, 3869] +Triangle: [3890, 3874, 3911] +Triangle: [3891, 3875, 3908] +Triangle: [3927, 3892, 3877] +Triangle: [3893, 3879, 3920] +Triangle: [3915, 3894, 3881] +Triangle: [3913, 3880, 3894] +Triangle: [3919, 3878, 3893] +Triangle: [3925, 3876, 3892] +Triangle: [3907, 3872, 3891] +Triangle: [3910, 3873, 3890] +Triangle: [3902, 3870, 3889] +Triangle: [3871, 3888, 3906] +Triangle: [3860, 3887, 3924] +Triangle: [3929, 3861, 3886] +Triangle: [3917, 3862, 3885] +Triangle: [3872, 3863, 3884] +Triangle: [3896, 3858, 3883] +Triangle: [3898, 3896, 3897] +Triangle: [3900, 3897, 3895] +Triangle: [3889, 3900, 3899] +Triangle: [3870, 3898, 3900] +Triangle: [3902, 3903, 3888] +Triangle: [3903, 3901, 3868] +Triangle: [3904, 3906, 3887] +Triangle: [3887, 3906, 3905] +Triangle: [3873, 3907, 3909] +Triangle: [3909, 3908, 3874] +Triangle: [3856, 3910, 3912] +Triangle: [3912, 3911, 3857] +Triangle: [3863, 3913, 3915] +Triangle: [3884, 3915, 3914] +Triangle: [3880, 3917, 3918] +Triangle: [3894, 3918, 3916] +Triangle: [3862, 3919, 3921] +Triangle: [3921, 3920, 3865] +Triangle: [3923, 3924, 3892] +Triangle: [3892, 3924, 3922] +Triangle: [3861, 3925, 3927] +Triangle: [3886, 3927, 3926] +Triangle: [3878, 3929, 3930] +Triangle: [3893, 3930, 3928] +Triangle: [3958, 3934, 3970] +Triangle: [3959, 3939, 3950] +Triangle: [3960, 3940, 3991] +Triangle: [4005, 3961, 3941] +Triangle: [3999, 3962, 3942] +Triangle: [3963, 3943, 3980] +Triangle: [3964, 3944, 3976] +Triangle: [3965, 3949, 3986] +Triangle: [3966, 3950, 3983] +Triangle: [4002, 3967, 3952] +Triangle: [3968, 3954, 3995] +Triangle: [3969, 3956, 3989] +Triangle: [3988, 3955, 3969] +Triangle: [3953, 3968, 3996] +Triangle: [4000, 3951, 3967] +Triangle: [3982, 3947, 3966] +Triangle: [3985, 3948, 3965] +Triangle: [3945, 3964, 3978] +Triangle: [3946, 3963, 3981] +Triangle: [3998, 3935, 3962] +Triangle: [4004, 3936, 3961] +Triangle: [3937, 3960, 3993] +Triangle: [3947, 3938, 3959] +Triangle: [3971, 3933, 3958] +Triangle: [3973, 3971, 3972] +Triangle: [3975, 3972, 3970] +Triangle: [3964, 3975, 3974] +Triangle: [3945, 3973, 3975] +Triangle: [3977, 3978, 3963] +Triangle: [3978, 3976, 3943] +Triangle: [3979, 3981, 3962] +Triangle: [3962, 3981, 3980] +Triangle: [3948, 3982, 3984] +Triangle: [3984, 3983, 3949] +Triangle: [3931, 3985, 3987] +Triangle: [3987, 3986, 3932] +Triangle: [3938, 3988, 3990] +Triangle: [3990, 3989, 3939] +Triangle: [3955, 3992, 3993] +Triangle: [3993, 3991, 3956] +Triangle: [3994, 3996, 3960] +Triangle: [3996, 3995, 3940] +Triangle: [3951, 3998, 3999] +Triangle: [3967, 3999, 3997] +Triangle: [3936, 4000, 4002] +Triangle: [3961, 4002, 4001] +Triangle: [4004, 4005, 3968] +Triangle: [4005, 4003, 3954] +Triangle: [4047, 4033, 4009] +Triangle: [4034, 4014, 4025] +Triangle: [4044, 4035, 4015] +Triangle: [4036, 4016, 5392] +Triangle: [5353, 4037, 4017] +Triangle: [4056, 4038, 4018] +Triangle: [4039, 4019, 4051] +Triangle: [4040, 4024, 4007] +Triangle: [4041, 4025, 4024] +Triangle: [5388, 4042, 4027] +Triangle: [4035, 4043, 4029] +Triangle: [4034, 4044, 4031] +Triangle: [4013, 4030, 4044] +Triangle: [4028, 4043, 4035] +Triangle: [4026, 4042, 5388] +Triangle: [4023, 4022, 4041] +Triangle: [4006, 4023, 4040] +Triangle: [4052, 4020, 4039] +Triangle: [4021, 4038, 4056] +Triangle: [4010, 4037, 5353] +Triangle: [4011, 4036, 5394] +Triangle: [4030, 4012, 4035] +Triangle: [4022, 4013, 4034] +Triangle: [4046, 4008, 4033] +Triangle: [4048, 4046, 4047] +Triangle: [4050, 4047, 4045] +Triangle: [4050, 4049, 4019] +Triangle: [4020, 4048, 4050] +Triangle: [4052, 4053, 4038] +Triangle: [4038, 4053, 4051] +Triangle: [4054, 4056, 4037] +Triangle: [4037, 4056, 4055] +Triangle: [4084, 4060, 4096] +Triangle: [4092, 4085, 4065] +Triangle: [4095, 4086, 4066] +Triangle: [4094, 4087, 4067] +Triangle: [5367, 4088, 4068] +Triangle: [4089, 4069, 4106] +Triangle: [4090, 4070, 4102] +Triangle: [4091, 4075, 4058] +Triangle: [4092, 4076, 4075] +Triangle: [4087, 4093, 4078] +Triangle: [4086, 4094, 4080] +Triangle: [4085, 4095, 4082] +Triangle: [4064, 4081, 4095] +Triangle: [4063, 4079, 4094] +Triangle: [4077, 4093, 4087] +Triangle: [4073, 4092, 4091] +Triangle: [4057, 4074, 4091] +Triangle: [4071, 4090, 4104] +Triangle: [4105, 4072, 4089] +Triangle: [4061, 4088, 5367] +Triangle: [4079, 4062, 4087] +Triangle: [4081, 4063, 4086] +Triangle: [4064, 4085, 4092] +Triangle: [4059, 4084, 4098] +Triangle: [4097, 4098, 4101] +Triangle: [4098, 4096, 4100] +Triangle: [4101, 4100, 4070] +Triangle: [4099, 4101, 4090] +Triangle: [4072, 4103, 4104] +Triangle: [4104, 4102, 4069] +Triangle: [4105, 4107, 5370] +Triangle: [5370, 4107, 4106] +Triangle: [4135, 4111, 4147] +Triangle: [4136, 4116, 4127] +Triangle: [4137, 4117, 4133] +Triangle: [4138, 4118, 4131] +Triangle: [4144, 4139, 4119] +Triangle: [4158, 4140, 4120] +Triangle: [4141, 4121, 4153] +Triangle: [4142, 4126, 4109] +Triangle: [4143, 4127, 4126] +Triangle: [4138, 4144, 4129] +Triangle: [4145, 4131, 4117] +Triangle: [4146, 4133, 4116] +Triangle: [4115, 4132, 4146] +Triangle: [4114, 4130, 4145] +Triangle: [4128, 4144, 4138] +Triangle: [4124, 4143, 4142] +Triangle: [4108, 4125, 4142] +Triangle: [4154, 4122, 4141] +Triangle: [4123, 4140, 4158] +Triangle: [4128, 4112, 4139] +Triangle: [4130, 4113, 4138] +Triangle: [4132, 4114, 4137] +Triangle: [4124, 4115, 4136] +Triangle: [4110, 4135, 4149] +Triangle: [4150, 4148, 4149] +Triangle: [4152, 4149, 4147] +Triangle: [4141, 4152, 4151] +Triangle: [4122, 4150, 4152] +Triangle: [4154, 4155, 4140] +Triangle: [4140, 4155, 4153] +Triangle: [4112, 4156, 4158] +Triangle: [4139, 4158, 4157] +Triangle: [4186, 4162, 4198] +Triangle: [4187, 4167, 4178] +Triangle: [4188, 4168, 4184] +Triangle: [4189, 4169, 5356] +Triangle: [4195, 4190, 4170] +Triangle: [4209, 4191, 4171] +Triangle: [5378, 4192, 4172] +Triangle: [4193, 4177, 4160] +Triangle: [4194, 4178, 4177] +Triangle: [5391, 4195, 4180] +Triangle: [4196, 4182, 5360] +Triangle: [4197, 4184, 4167] +Triangle: [4183, 4197, 4187] +Triangle: [4181, 4196, 5361] +Triangle: [4179, 4195, 5391] +Triangle: [4175, 4194, 4193] +Triangle: [4159, 4176, 4193] +Triangle: [4173, 4192, 5378] +Triangle: [4174, 4191, 4209] +Triangle: [4179, 4163, 4190] +Triangle: [4164, 4189, 5358] +Triangle: [4165, 4188, 4197] +Triangle: [4175, 4166, 4187] +Triangle: [4161, 4186, 4200] +Triangle: [4201, 4199, 4200] +Triangle: [4200, 4198, 4202] +Triangle: [4203, 4202, 4172] +Triangle: [4173, 4201, 4203] +Triangle: [4205, 4206, 5376] +Triangle: [4206, 4204, 5375] +Triangle: [4163, 4207, 4209] +Triangle: [4190, 4209, 4208] +Triangle: [4242, 4213, 4212] +Triangle: [4241, 4218, 4217] +Triangle: [4234, 4237, 4219] +Triangle: [4230, 4233, 4220] +Triangle: [4226, 4229, 4221] +Triangle: [4214, 4221, 4222] +Triangle: [4245, 4244, 4223] +Triangle: [4215, 4220, 4228] +Triangle: [4227, 4228, 4229] +Triangle: [4216, 4219, 4232] +Triangle: [4231, 4232, 4233] +Triangle: [4218, 4236, 4235] +Triangle: [4236, 4237, 4234] +Triangle: [4210, 4211, 4240] +Triangle: [4240, 4241, 4238] +Triangle: [4223, 4242, 4243] +Triangle: [4225, 4222, 4244] +Triangle: [4259, 4249, 4273] +Triangle: [4281, 4265, 4254] +Triangle: [4284, 4271, 4255] +Triangle: [4269, 4256, 4276] +Triangle: [4282, 4267, 4257] +Triangle: [4277, 4257, 4258] +Triangle: [4278, 4258, 4259] +Triangle: [4272, 4247, 4264] +Triangle: [4264, 4265, 4281] +Triangle: [4256, 4267, 4282] +Triangle: [4255, 4269, 4283] +Triangle: [4274, 4254, 4271] +Triangle: [4253, 4274, 4284] +Triangle: [4275, 4283, 4268] +Triangle: [4276, 4282, 4266] +Triangle: [4263, 4280, 4281] +Triangle: [4272, 4280, 4263] +Triangle: [4261, 4278, 4279] +Triangle: [4250, 4277, 4278] +Triangle: [4266, 4282, 4277] +Triangle: [4283, 4276, 4251] +Triangle: [4270, 4284, 4275] +Triangle: [4262, 4281, 4274] +Triangle: [4260, 4279, 4273] +Triangle: [4326, 4324, 4288] +Triangle: [4304, 4293, 4313] +Triangle: [4350, 4348, 4294] +Triangle: [4342, 4295, 4315] +Triangle: [4336, 4296, 4316] +Triangle: [4335, 4334, 4297] +Triangle: [4330, 4298, 4318] +Triangle: [4286, 4303, 4319] +Triangle: [4354, 4304, 4320] +Triangle: [4341, 4340, 4306] +Triangle: [4346, 4308, 4322] +Triangle: [4359, 4358, 4310] +Triangle: [4359, 4323, 4309] +Triangle: [4347, 4322, 4307] +Triangle: [4339, 4341, 4321] +Triangle: [4356, 4355, 4320] +Triangle: [4285, 4311, 4319] +Triangle: [4331, 4332, 4318] +Triangle: [4333, 4335, 4317] +Triangle: [4338, 4316, 4289] +Triangle: [4343, 4344, 4315] +Triangle: [4349, 4350, 4314] +Triangle: [4320, 4313, 4292] +Triangle: [4326, 4312, 4287] +Triangle: [4327, 4329, 4326] +Triangle: [4329, 4328, 4324] +Triangle: [4318, 4298, 4328] +Triangle: [4299, 4318, 4329] +Triangle: [4317, 4332, 4331] +Triangle: [4297, 4330, 4332] +Triangle: [4289, 4316, 4335] +Triangle: [4316, 4296, 4334] +Triangle: [4321, 4338, 4337] +Triangle: [4321, 4306, 4336] +Triangle: [4290, 4315, 4341] +Triangle: [4315, 4295, 4340] +Triangle: [4322, 4344, 4343] +Triangle: [4308, 4342, 4344] +Triangle: [4314, 4347, 4345] +Triangle: [4314, 4294, 4346] +Triangle: [4309, 4323, 4350] +Triangle: [4323, 4310, 4348] +Triangle: [4319, 4353, 4351] +Triangle: [4303, 4352, 4353] +Triangle: [4351, 4353, 4355] +Triangle: [4353, 4352, 4354] +Triangle: [4313, 4359, 4357] +Triangle: [4293, 4358, 4359] +Triangle: [4399, 4363, 4387] +Triangle: [4395, 4379, 4368] +Triangle: [4425, 4423, 4369] +Triangle: [4419, 4417, 4370] +Triangle: [4413, 4411, 4371] +Triangle: [4410, 4409, 4372] +Triangle: [4407, 4405, 4373] +Triangle: [4361, 4378, 4394] +Triangle: [4430, 4429, 4379] +Triangle: [4415, 4381, 4396] +Triangle: [4422, 4421, 4383] +Triangle: [4434, 4433, 4385] +Triangle: [4432, 4434, 4398] +Triangle: [4420, 4422, 4397] +Triangle: [4416, 4396, 4380] +Triangle: [4431, 4430, 4395] +Triangle: [4360, 4386, 4394] +Triangle: [4406, 4407, 4393] +Triangle: [4408, 4410, 4392] +Triangle: [4412, 4413, 4391] +Triangle: [4418, 4419, 4390] +Triangle: [4424, 4425, 4389] +Triangle: [4376, 4395, 4388] +Triangle: [4400, 4401, 4387] +Triangle: [4404, 4401, 4400] +Triangle: [4404, 4403, 4399] +Triangle: [4393, 4373, 4403] +Triangle: [4374, 4393, 4404] +Triangle: [4375, 4392, 4407] +Triangle: [4392, 4372, 4405] +Triangle: [4364, 4391, 4410] +Triangle: [4391, 4371, 4409] +Triangle: [4396, 4413, 4412] +Triangle: [4381, 4411, 4413] +Triangle: [4365, 4390, 4416] +Triangle: [4370, 4415, 4416] +Triangle: [4382, 4397, 4419] +Triangle: [4397, 4383, 4417] +Triangle: [4366, 4389, 4422] +Triangle: [4389, 4369, 4421] +Triangle: [4384, 4398, 4425] +Triangle: [4398, 4385, 4423] +Triangle: [4394, 4428, 4426] +Triangle: [4378, 4427, 4428] +Triangle: [4428, 4430, 4431] +Triangle: [4428, 4427, 4429] +Triangle: [4367, 4388, 4434] +Triangle: [4368, 4433, 4434] +Triangle: [4468, 4467, 4438] +Triangle: [4463, 4466, 4443] +Triangle: [4462, 4444, 4441] +Triangle: [4455, 4458, 4445] +Triangle: [4451, 4454, 4446] +Triangle: [4439, 4446, 4447] +Triangle: [4470, 4469, 4448] +Triangle: [4440, 4445, 4453] +Triangle: [4452, 4453, 4454] +Triangle: [4444, 4457, 4456] +Triangle: [4456, 4457, 4458] +Triangle: [4442, 4443, 4461] +Triangle: [4461, 4462, 4459] +Triangle: [5331, 4465, 4464] +Triangle: [5328, 5329, 4466] +Triangle: [4449, 4448, 4467] +Triangle: [4450, 4447, 4469] +Triangle: [4504, 4473, 4474] +Triangle: [4499, 4478, 4479] +Triangle: [4495, 4477, 4480] +Triangle: [4476, 4481, 4494] +Triangle: [4475, 4482, 4490] +Triangle: [4486, 4483, 4482] +Triangle: [4506, 4485, 4484] +Triangle: [4488, 4489, 4481] +Triangle: [4487, 4490, 4489] +Triangle: [4492, 4493, 4480] +Triangle: [4491, 4494, 4493] +Triangle: [4478, 4496, 4497] +Triangle: [4496, 4495, 4498] +Triangle: [4471, 4500, 4501] +Triangle: [4500, 4499, 4502] +Triangle: [4485, 4504, 4503] +Triangle: [4506, 4505, 4483] +Triangle: [4539, 4510, 4760] +Triangle: [4538, 4515, 4761] +Triangle: [4772, 4534, 4516] +Triangle: [4770, 4530, 4517] +Triangle: [4526, 4518, 4764] +Triangle: [4518, 4519, 4765] +Triangle: [4541, 4520, 4766] +Triangle: [4763, 4517, 4525] +Triangle: [4767, 4525, 4526] +Triangle: [4762, 4516, 4529] +Triangle: [4769, 4529, 4530] +Triangle: [4761, 4515, 4533] +Triangle: [4771, 4533, 4534] +Triangle: [4759, 4508, 4537] +Triangle: [4773, 4537, 4538] +Triangle: [4520, 4539, 4775] +Triangle: [4519, 4541, 4776] +Triangle: [4575, 4546, 4545] +Triangle: [4574, 4551, 4550] +Triangle: [4570, 4552, 4549] +Triangle: [4563, 4566, 4553] +Triangle: [4562, 4554, 4547] +Triangle: [4554, 4555, 4558] +Triangle: [4577, 4556, 4557] +Triangle: [4548, 4553, 4561] +Triangle: [4561, 4562, 4559] +Triangle: [4552, 4565, 4564] +Triangle: [4564, 4565, 4566] +Triangle: [4551, 4569, 4568] +Triangle: [4569, 4570, 4567] +Triangle: [4543, 4544, 4573] +Triangle: [4573, 4574, 4571] +Triangle: [4556, 4575, 4576] +Triangle: [4555, 4577, 4578] +Triangle: [4611, 4582, 4581] +Triangle: [4610, 4587, 4586] +Triangle: [4603, 4606, 4588] +Triangle: [4599, 4602, 4589] +Triangle: [4598, 4590, 4583] +Triangle: [4583, 4590, 4591] +Triangle: [4614, 4613, 4592] +Triangle: [4584, 4589, 4597] +Triangle: [4596, 4597, 4598] +Triangle: [4585, 4588, 4601] +Triangle: [4600, 4601, 4602] +Triangle: [4586, 4587, 4605] +Triangle: [4604, 4605, 4606] +Triangle: [4579, 4580, 4609] +Triangle: [4609, 4610, 4607] +Triangle: [4592, 4611, 4612] +Triangle: [4594, 4591, 4613] +Triangle: [4617, 4618, 4647] +Triangle: [4622, 4623, 4646] +Triangle: [4621, 4624, 4642] +Triangle: [4620, 4625, 4638] +Triangle: [4631, 4619, 4626] +Triangle: [4630, 4627, 4626] +Triangle: [4650, 4629, 4628] +Triangle: [4632, 4633, 4625] +Triangle: [4632, 4631, 4634] +Triangle: [4636, 4637, 4624] +Triangle: [4635, 4638, 4637] +Triangle: [4640, 4641, 4623] +Triangle: [4639, 4642, 4641] +Triangle: [4615, 4644, 4645] +Triangle: [4644, 4643, 4646] +Triangle: [4648, 4647, 4628] +Triangle: [4650, 4649, 4627] +Triangle: [4684, 4653, 4654] +Triangle: [4658, 4659, 4682] +Triangle: [4657, 4660, 4678] +Triangle: [4671, 4656, 4661] +Triangle: [4655, 4662, 4670] +Triangle: [4655, 4666, 4663] +Triangle: [4686, 4665, 4664] +Triangle: [4656, 4668, 4669] +Triangle: [4667, 4670, 4669] +Triangle: [4672, 4673, 4660] +Triangle: [4672, 4671, 4674] +Triangle: [4676, 4677, 4659] +Triangle: [4675, 4678, 4677] +Triangle: [4651, 4680, 4681] +Triangle: [4680, 4679, 4682] +Triangle: [4665, 4684, 4683] +Triangle: [4686, 4685, 4663] +Triangle: [4720, 4689, 4690] +Triangle: [4694, 4695, 4718] +Triangle: [4693, 4696, 4714] +Triangle: [4707, 4692, 4697] +Triangle: [4691, 4698, 4706] +Triangle: [4702, 4699, 4698] +Triangle: [4701, 4700, 4721] +Triangle: [4692, 4704, 4705] +Triangle: [4704, 4703, 4706] +Triangle: [4708, 4709, 4696] +Triangle: [4707, 4710, 4709] +Triangle: [4712, 4713, 4695] +Triangle: [4711, 4714, 4713] +Triangle: [4687, 4716, 4717] +Triangle: [4716, 4715, 4718] +Triangle: [4720, 4719, 4700] +Triangle: [4722, 4721, 4699] +Triangle: [4756, 4725, 4726] +Triangle: [4751, 4730, 4731] +Triangle: [4747, 4729, 4732] +Triangle: [4728, 4733, 4746] +Triangle: [4739, 4727, 4734] +Triangle: [4738, 4735, 4734] +Triangle: [4737, 4736, 4757] +Triangle: [4728, 4740, 4741] +Triangle: [4739, 4742, 4741] +Triangle: [4744, 4745, 4732] +Triangle: [4743, 4746, 4745] +Triangle: [4730, 4748, 4749] +Triangle: [4748, 4747, 4750] +Triangle: [4723, 4752, 4753] +Triangle: [4752, 4751, 4754] +Triangle: [4756, 4755, 4736] +Triangle: [4738, 4758, 4757] +Triangle: [4765, 4776, 4542] +Triangle: [4766, 4775, 4540] +Triangle: [4536, 4773, 4774] +Triangle: [4507, 4759, 4773] +Triangle: [4532, 4771, 4772] +Triangle: [4514, 4761, 4771] +Triangle: [4528, 4769, 4770] +Triangle: [4513, 4762, 4769] +Triangle: [4524, 4767, 4768] +Triangle: [4512, 4763, 4767] +Triangle: [4776, 4766, 4521] +Triangle: [4511, 4764, 4765] +Triangle: [4523, 4768, 4764] +Triangle: [4527, 4770, 4763] +Triangle: [4531, 4772, 4762] +Triangle: [4535, 4774, 4761] +Triangle: [4775, 4760, 4509] +Triangle: [4577, 4794, 4784] +Triangle: [4566, 4788, 4781] +Triangle: [4561, 4785, 4786] +Triangle: [4562, 4786, 4782] +Triangle: [4555, 4783, 4794] +Triangle: [4573, 4544, 4777] +Triangle: [4574, 4573, 4791] +Triangle: [4569, 4551, 4779] +Triangle: [4570, 4569, 4789] +Triangle: [4565, 4552, 4780] +Triangle: [4551, 4574, 4792] +Triangle: [4554, 4782, 4783] +Triangle: [4565, 4787, 4788] +Triangle: [4556, 4784, 4793] +Triangle: [4552, 4570, 4790] +Triangle: [4553, 4781, 4785] +Triangle: [4546, 4575, 4793] +Triangle: [4834, 4798, 4822] +Triangle: [4814, 4803, 4823] +Triangle: [4820, 4804, 4824] +Triangle: [4818, 4805, 4825] +Triangle: [4831, 4816, 4806] +Triangle: [4845, 4844, 4807] +Triangle: [4842, 4840, 4808] +Triangle: [4796, 4813, 4829] +Triangle: [4813, 4814, 4830] +Triangle: [4805, 4816, 4831] +Triangle: [4804, 4818, 4832] +Triangle: [4803, 4820, 4833] +Triangle: [4823, 4833, 4819] +Triangle: [4801, 4824, 4832] +Triangle: [4825, 4831, 4815] +Triangle: [4829, 4830, 4811] +Triangle: [4795, 4821, 4829] +Triangle: [4841, 4842, 4828] +Triangle: [4845, 4827, 4810] +Triangle: [4815, 4831, 4826] +Triangle: [4832, 4825, 4800] +Triangle: [4819, 4833, 4824] +Triangle: [4830, 4823, 4802] +Triangle: [4835, 4836, 4822] +Triangle: [4837, 4839, 4836] +Triangle: [4838, 4834, 4836] +Triangle: [4808, 4838, 4839] +Triangle: [4828, 4839, 4837] +Triangle: [4810, 4827, 4842] +Triangle: [4827, 4807, 4840] +Triangle: [4826, 4845, 4843] +Triangle: [4826, 4806, 4844] +Triangle: [4879, 4859, 4849] +Triangle: [4865, 4854, 4874] +Triangle: [4884, 4871, 4855] +Triangle: [5180, 5178, 4856] +Triangle: [4867, 4857, 4877] +Triangle: [4857, 4858, 4878] +Triangle: [4858, 4859, 4879] +Triangle: [4847, 4864, 4880] +Triangle: [4864, 4865, 4881] +Triangle: [4876, 4856, 4867] +Triangle: [5176, 4869, 4883] +Triangle: [4874, 4854, 4871] +Triangle: [4853, 4874, 4884] +Triangle: [5177, 4883, 4868] +Triangle: [4851, 4876, 4882] +Triangle: [4880, 4881, 4862] +Triangle: [4846, 4872, 4880] +Triangle: [4878, 4879, 4860] +Triangle: [4877, 4878, 4861] +Triangle: [4882, 4877, 4850] +Triangle: [5179, 5180, 4876] +Triangle: [4884, 4875, 4852] +Triangle: [4881, 4874, 4853] +Triangle: [4879, 4873, 4848] +Triangle: [4898, 4888, 4887] +Triangle: [4904, 4893, 4892] +Triangle: [4909, 4910, 4894] +Triangle: [4908, 4895, 4890] +Triangle: [4905, 4906, 4896] +Triangle: [4889, 4896, 4897] +Triangle: [4900, 4897, 4898] +Triangle: [4885, 4886, 4903] +Triangle: [4902, 4903, 4904] +Triangle: [4895, 4906, 4905] +Triangle: [4894, 4908, 4907] +Triangle: [4893, 4910, 4909] +Triangle: [4924, 4914, 4938] +Triangle: [4930, 4919, 4939] +Triangle: [4949, 4936, 4920] +Triangle: [4934, 4921, 4941] +Triangle: [4947, 4932, 4922] +Triangle: [4942, 4922, 4923] +Triangle: [4923, 4924, 4944] +Triangle: [4937, 4912, 4929] +Triangle: [4945, 4929, 4930] +Triangle: [4921, 4932, 4947] +Triangle: [4920, 4934, 4948] +Triangle: [4919, 4936, 4949] +Triangle: [4939, 4949, 4935] +Triangle: [4940, 4948, 4933] +Triangle: [4941, 4947, 4931] +Triangle: [4928, 4945, 4946] +Triangle: [4911, 4937, 4945] +Triangle: [4943, 4944, 4925] +Triangle: [4915, 4942, 4943] +Triangle: [4931, 4947, 4942] +Triangle: [4948, 4941, 4916] +Triangle: [4935, 4949, 4940] +Triangle: [4946, 4939, 4918] +Triangle: [4944, 4938, 4913] +Triangle: [4963, 4953, 4977] +Triangle: [4969, 4958, 4978] +Triangle: [4988, 4975, 4959] +Triangle: [4973, 4960, 4980] +Triangle: [4986, 4971, 4961] +Triangle: [4961, 4962, 4982] +Triangle: [4962, 4963, 4983] +Triangle: [4976, 4951, 4968] +Triangle: [4968, 4969, 4985] +Triangle: [4980, 4960, 4971] +Triangle: [4959, 4973, 4987] +Triangle: [4978, 4958, 4975] +Triangle: [4957, 4978, 4988] +Triangle: [4979, 4987, 4972] +Triangle: [4955, 4980, 4986] +Triangle: [4984, 4985, 4966] +Triangle: [4950, 4976, 4984] +Triangle: [4982, 4983, 4964] +Triangle: [4981, 4982, 4965] +Triangle: [4970, 4986, 4981] +Triangle: [4987, 4980, 4955] +Triangle: [4988, 4979, 4956] +Triangle: [4985, 4978, 4957] +Triangle: [4983, 4977, 4952] +Triangle: [5028, 4992, 5016] +Triangle: [5008, 4997, 5017] +Triangle: [5052, 4998, 5018] +Triangle: [5046, 4999, 5019] +Triangle: [5040, 5000, 5020] +Triangle: [5038, 5001, 5021] +Triangle: [5036, 5034, 5002] +Triangle: [4990, 5007, 5023] +Triangle: [5007, 5008, 5024] +Triangle: [5045, 5044, 5010] +Triangle: [5050, 5012, 5026] +Triangle: [5017, 4997, 5014] +Triangle: [5017, 5027, 5013] +Triangle: [5051, 5026, 5011] +Triangle: [5045, 5025, 5009] +Triangle: [5023, 5024, 5005] +Triangle: [4989, 5015, 5023] +Triangle: [5035, 5036, 5022] +Triangle: [5037, 5039, 5021] +Triangle: [5042, 5020, 4993] +Triangle: [5047, 5048, 5019] +Triangle: [5054, 5018, 4995] +Triangle: [5024, 5017, 4996] +Triangle: [5029, 5030, 5016] +Triangle: [5033, 5030, 5029] +Triangle: [5032, 5028, 5030] +Triangle: [5002, 5032, 5033] +Triangle: [5022, 5033, 5031] +Triangle: [5004, 5021, 5036] +Triangle: [5021, 5001, 5034] +Triangle: [4993, 5020, 5039] +Triangle: [5000, 5038, 5039] +Triangle: [5025, 5042, 5041] +Triangle: [5010, 5040, 5042] +Triangle: [4994, 5019, 5045] +Triangle: [5019, 4999, 5044] +Triangle: [5026, 5048, 5047] +Triangle: [5012, 5046, 5048] +Triangle: [5018, 5051, 5049] +Triangle: [4998, 5050, 5051] +Triangle: [5027, 5054, 5053] +Triangle: [5014, 5052, 5054] +Triangle: [5088, 5058, 5078] +Triangle: [5076, 5064, 5080] +Triangle: [5074, 5065, 5081] +Triangle: [5085, 5072, 5066] +Triangle: [5099, 5098, 5067] +Triangle: [5096, 5094, 5068] +Triangle: [5056, 5063, 5079] +Triangle: [5081, 5065, 5072] +Triangle: [5064, 5074, 5086] +Triangle: [5063, 5076, 5087] +Triangle: [5079, 5087, 5075] +Triangle: [5080, 5086, 5073] +Triangle: [5060, 5081, 5085] +Triangle: [5055, 5077, 5079] +Triangle: [5095, 5096, 5084] +Triangle: [5099, 5083, 5070] +Triangle: [5085, 5082, 5059] +Triangle: [5086, 5081, 5060] +Triangle: [5087, 5080, 5061] +Triangle: [5089, 5090, 5078] +Triangle: [5093, 5090, 5089] +Triangle: [5092, 5088, 5090] +Triangle: [5084, 5068, 5092] +Triangle: [5069, 5084, 5093] +Triangle: [5070, 5083, 5096] +Triangle: [5083, 5067, 5094] +Triangle: [5082, 5099, 5097] +Triangle: [5066, 5098, 5099] +Triangle: [5141, 5139, 5103] +Triangle: [5119, 5108, 5128] +Triangle: [5163, 5109, 5129] +Triangle: [5157, 5110, 5130] +Triangle: [5153, 5151, 5111] +Triangle: [5150, 5149, 5112] +Triangle: [5145, 5113, 5133] +Triangle: [5101, 5118, 5134] +Triangle: [5169, 5119, 5135] +Triangle: [5156, 5155, 5121] +Triangle: [5161, 5123, 5137] +Triangle: [5173, 5125, 5138] +Triangle: [5174, 5138, 5124] +Triangle: [5162, 5137, 5122] +Triangle: [5154, 5156, 5136] +Triangle: [5170, 5135, 5116] +Triangle: [5100, 5126, 5134] +Triangle: [5147, 5133, 5114] +Triangle: [5148, 5150, 5132] +Triangle: [5153, 5131, 5104] +Triangle: [5158, 5159, 5130] +Triangle: [5165, 5129, 5106] +Triangle: [5135, 5128, 5107] +Triangle: [5141, 5127, 5102] +Triangle: [5142, 5144, 5141] +Triangle: [5143, 5139, 5141] +Triangle: [5113, 5143, 5144] +Triangle: [5114, 5133, 5144] +Triangle: [5115, 5132, 5147] +Triangle: [5132, 5112, 5145] +Triangle: [5104, 5131, 5150] +Triangle: [5131, 5111, 5149] +Triangle: [5136, 5153, 5152] +Triangle: [5121, 5151, 5153] +Triangle: [5105, 5130, 5156] +Triangle: [5130, 5110, 5155] +Triangle: [5137, 5159, 5158] +Triangle: [5123, 5157, 5159] +Triangle: [5129, 5162, 5160] +Triangle: [5109, 5161, 5162] +Triangle: [5138, 5165, 5164] +Triangle: [5125, 5163, 5165] +Triangle: [5134, 5168, 5166] +Triangle: [5118, 5167, 5168] +Triangle: [5168, 5170, 5171] +Triangle: [5167, 5169, 5170] +Triangle: [5128, 5174, 5172] +Triangle: [5108, 5173, 5174] +Triangle: [4875, 5177, 5175] +Triangle: [4855, 5176, 5177] +Triangle: [4868, 4883, 5180] +Triangle: [4869, 5178, 5180] +Triangle: [5189, 5185, 5186] +Triangle: [5184, 5185, 5189] +Triangle: [5189, 5187, 5188] +Triangle: [5182, 5183, 5189] +Triangle: [5200, 5201, 1934] +Triangle: [1935, 1934, 5201] +Triangle: [1936, 1935, 5202] +Triangle: [1936, 5203, 5204] +Triangle: [1937, 5204, 5205] +Triangle: [1938, 5205, 5206] +Triangle: [1942, 1939, 5206] +Triangle: [1942, 5209, 5208] +Triangle: [5227, 5207, 5208] +Triangle: [1940, 5207, 5197] +Triangle: [735, 5190, 5200] +Triangle: [736, 5191, 5190] +Triangle: [737, 5192, 5191] +Triangle: [5193, 5192, 737] +Triangle: [5194, 5193, 738] +Triangle: [5195, 5194, 739] +Triangle: [744, 5199, 5195] +Triangle: [744, 743, 5198] +Triangle: [5198, 5196, 5216] +Triangle: [5197, 5196, 741] +Triangle: [5218, 5216, 733] +Triangle: [1932, 5227, 5228] +Triangle: [5220, 5221, 5201] +Triangle: [5202, 5201, 5221] +Triangle: [5203, 5202, 5222] +Triangle: [5204, 5203, 5223] +Triangle: [5205, 5204, 5224] +Triangle: [5205, 5225, 5226] +Triangle: [5206, 5226, 5229] +Triangle: [5209, 5229, 5228] +Triangle: [5207, 5227, 5217] +Triangle: [5190, 5210, 5220] +Triangle: [5191, 5211, 5210] +Triangle: [5192, 5212, 5211] +Triangle: [5193, 5213, 5212] +Triangle: [5194, 5214, 5213] +Triangle: [5215, 5214, 5194] +Triangle: [5219, 5215, 5195] +Triangle: [5199, 5198, 5218] +Triangle: [5217, 5216, 5196] +Triangle: [5234, 5236, 5237] +Triangle: [5238, 5239, 5237] +Triangle: [5240, 5241, 5239] +Triangle: [5240, 5242, 5243] +Triangle: [5244, 5245, 5243] +Triangle: [5244, 5246, 5247] +Triangle: [5246, 5248, 5249] +Triangle: [5248, 5250, 5251] +Triangle: [5252, 5253, 5251] +Triangle: [5254, 5255, 5253] +Triangle: [5256, 5257, 5255] +Triangle: [5258, 5259, 5257] +Triangle: [5260, 5261, 5259] +Triangle: [5231, 5262, 5261] +Triangle: [5268, 5267, 5265] +Triangle: [5231, 5232, 5233] +Triangle: [5267, 5268, 5270] +Triangle: [5272, 5271, 5269] +Triangle: [5274, 5273, 5271] +Triangle: [5276, 5275, 5273] +Triangle: [5276, 5278, 5277] +Triangle: [5278, 5280, 5279] +Triangle: [5280, 5282, 5281] +Triangle: [5282, 5284, 5283] +Triangle: [5284, 5286, 5285] +Triangle: [5288, 5287, 5285] +Triangle: [5288, 5290, 5289] +Triangle: [5290, 5292, 5291] +Triangle: [5292, 5294, 5293] +Triangle: [5296, 5295, 5293] +Triangle: [5296, 5298, 5297] +Triangle: [5300, 5299, 5297] +Triangle: [5300, 5302, 5301] +Triangle: [5304, 5303, 5301] +Triangle: [5304, 5306, 5305] +Triangle: [5306, 5308, 5307] +Triangle: [5308, 5310, 5309] +Triangle: [5310, 5312, 5311] +Triangle: [5312, 5314, 5313] +Triangle: [5314, 5316, 5315] +Triangle: [5316, 5318, 5317] +Triangle: [5318, 5320, 5319] +Triangle: [5320, 5322, 5321] +Triangle: [5322, 5324, 5323] +Triangle: [5324, 5326, 5325] +Triangle: [5326, 5327, 5264] +Triangle: [5266, 5265, 5264] +Triangle: [5232, 5234, 5235] +Triangle: [4465, 5329, 5328] +Triangle: [4436, 5331, 5330] +Triangle: [2014, 2015, 2028] +Triangle: [3632, 3635, 5332] +Triangle: [3620, 3627, 5335] +Triangle: [3723, 5339, 5340] +Triangle: [5339, 5338, 5341] +Triangle: [3739, 5340, 5336] +Triangle: [5340, 5341, 5337] +Triangle: [3708, 5343, 5346] +Triangle: [5343, 5342, 5347] +Triangle: [3733, 5346, 5344] +Triangle: [5346, 5347, 5345] +Triangle: [5351, 5352, 4042] +Triangle: [5350, 5353, 5352] +Triangle: [5352, 5348, 4027] +Triangle: [5352, 5353, 5349] +Triangle: [3634, 5355, 5354] +Triangle: [5357, 5358, 4196] +Triangle: [5358, 5356, 4182] +Triangle: [5359, 5361, 4188] +Triangle: [5361, 5360, 4168] +Triangle: [3658, 5362, 5364] +Triangle: [5364, 5363, 3661] +Triangle: [5366, 5367, 4093] +Triangle: [4093, 5367, 5365] +Triangle: [4088, 5370, 5369] +Triangle: [4061, 5368, 5370] +Triangle: [5373, 5372, 3663] +Triangle: [3656, 5371, 5373] +Triangle: [4191, 5376, 5375] +Triangle: [5374, 5376, 4191] +Triangle: [4205, 5379, 5378] +Triangle: [5378, 5377, 4204] +Triangle: [3700, 5382, 5381] +Triangle: [3702, 5381, 5380] +Triangle: [3725, 5384, 5385] +Triangle: [3740, 5385, 5383] +Triangle: [4011, 5386, 5388] +Triangle: [4036, 5388, 5387] +Triangle: [5389, 5391, 4189] +Triangle: [5391, 5390, 4169] +Triangle: [5393, 5394, 4043] +Triangle: [4043, 5394, 5392] +Triangle: [3709, 5395, 5397] +Triangle: [5397, 5396, 3712] +Triangle: [3602, 3600, 5398] +Triangle: [5398, 3600, 3601] +Triangle: [5398, 3344, 3349] +Triangle: [3342, 3344, 5398] +Triangle: [3603, 5399, 3357] +Triangle: [3352, 5399, 3603] +Triangle: [3351, 3400, 5399] +Triangle: [3357, 5399, 3400] +=== Vertex Weights (Max 5 bones per vertex) === +Vertex 0: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.202792 + Group: 'LeftHand', Weight: 0.765915 + Group: 'LeftHandPinky1', Weight: 0.004525 +Vertex 1: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.418454 + Group: 'LeftHand', Weight: 0.567966 +Vertex 2: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.054532 + Group: 'LeftHand', Weight: 0.933015 +Vertex 3: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.115960 + Group: 'LeftHand', Weight: 0.842882 + Group: 'LeftHandPinky1', Weight: 0.016523 +Vertex 4: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.078842 + Group: 'LeftHand', Weight: 0.874936 + Group: 'LeftHandPinky1', Weight: 0.009242 +Vertex 5: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.066944 + Group: 'LeftHand', Weight: 0.889032 +Vertex 6: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.068703 + Group: 'LeftHand', Weight: 0.884850 + Group: 'LeftHandThumb1', Weight: 0.019632 +Vertex 7: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.117496 + Group: 'LeftHand', Weight: 0.829195 + Group: 'LeftHandThumb1', Weight: 0.045681 +Vertex 8: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.155097 + Group: 'LeftHand', Weight: 0.814304 + Group: 'LeftHandThumb1', Weight: 0.008183 +Vertex 9: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.336059 + Group: 'LeftHand', Weight: 0.618435 + Group: 'LeftHandThumb1', Weight: 0.037020 +Vertex 10: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.310578 + Group: 'LeftHand', Weight: 0.653322 + Group: 'LeftHandThumb1', Weight: 0.019197 +Vertex 11: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.048256 + Group: 'LeftHand', Weight: 0.945828 +Vertex 12: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.127772 + Group: 'LeftHand', Weight: 0.866699 +Vertex 13: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.998642 +Vertex 14: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.997987 +Vertex 15: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991908 +Vertex 16: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.998240 +Vertex 17: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.992845 +Vertex 18: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.987412 +Vertex 19: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.983232 +Vertex 20: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.980031 +Vertex 21: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.988615 +Vertex 22: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.981729 +Vertex 23: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.985488 +Vertex 24: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.994747 +Vertex 25: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.996758 +Vertex 26: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.771133 + Group: 'LeftArm', Weight: 0.182643 +Vertex 27: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.779945 + Group: 'LeftArm', Weight: 0.195177 +Vertex 28: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.731322 + Group: 'LeftArm', Weight: 0.099000 +Vertex 29: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.011717 + Group: 'LeftShoulder', Weight: 0.726521 + Group: 'LeftArm', Weight: 0.161566 +Vertex 30: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.030205 + Group: 'LeftShoulder', Weight: 0.623576 + Group: 'LeftArm', Weight: 0.285593 +Vertex 31: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.045909 + Group: 'Spine2', Weight: 0.068744 + Group: 'LeftShoulder', Weight: 0.574601 + Group: 'LeftArm', Weight: 0.284963 +Vertex 32: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068289 + Group: 'Spine2', Weight: 0.083489 + Group: 'LeftShoulder', Weight: 0.524588 + Group: 'LeftArm', Weight: 0.294693 +Vertex 33: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.074456 + Group: 'Spine2', Weight: 0.086167 + Group: 'LeftShoulder', Weight: 0.568376 + Group: 'LeftArm', Weight: 0.239917 +Vertex 34: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.019875 + Group: 'Spine2', Weight: 0.031098 + Group: 'LeftShoulder', Weight: 0.651137 + Group: 'LeftArm', Weight: 0.026662 +Vertex 35: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.076099 + Group: 'Spine2', Weight: 0.083393 + Group: 'LeftShoulder', Weight: 0.572075 + Group: 'LeftArm', Weight: 0.216431 +Vertex 36: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.059015 + Group: 'Spine2', Weight: 0.060769 + Group: 'LeftShoulder', Weight: 0.602595 + Group: 'LeftArm', Weight: 0.162414 +Vertex 37: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.746739 + Group: 'LeftArm', Weight: 0.197573 +Vertex 38: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.751346 + Group: 'LeftArm', Weight: 0.235135 +Vertex 39: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.994002 +Vertex 40: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.993985 +Vertex 41: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.992396 +Vertex 42: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.993189 +Vertex 43: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.990005 +Vertex 44: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.987139 +Vertex 45: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.983448 +Vertex 46: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.982430 +Vertex 47: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.992042 +Vertex 48: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.986438 +Vertex 49: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.990405 +Vertex 50: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.992617 +Vertex 51: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.993303 +Vertex 52: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.960669 + Group: 'LeftForeArm', Weight: 0.025525 +Vertex 53: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.957409 + Group: 'LeftForeArm', Weight: 0.032190 +Vertex 54: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.967218 + Group: 'LeftForeArm', Weight: 0.014639 +Vertex 55: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.972243 + Group: 'LeftForeArm', Weight: 0.004970 +Vertex 56: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.962396 + Group: 'LeftForeArm', Weight: 0.023627 +Vertex 57: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.983442 +Vertex 58: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991748 +Vertex 59: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.959309 + Group: 'LeftForeArm', Weight: 0.028983 +Vertex 60: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.989557 +Vertex 61: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.984846 +Vertex 62: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.977674 +Vertex 63: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.967715 + Group: 'LeftForeArm', Weight: 0.012073 +Vertex 64: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.977861 +Vertex 65: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.285431 + Group: 'LeftForeArm', Weight: 0.714397 +Vertex 66: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.187467 + Group: 'LeftForeArm', Weight: 0.812436 +Vertex 67: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.190656 + Group: 'LeftForeArm', Weight: 0.809238 +Vertex 68: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.272071 + Group: 'LeftForeArm', Weight: 0.727882 +Vertex 69: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.485166 + Group: 'LeftForeArm', Weight: 0.514751 +Vertex 70: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.486143 + Group: 'LeftForeArm', Weight: 0.513791 +Vertex 71: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.236631 + Group: 'LeftForeArm', Weight: 0.763198 +Vertex 72: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.197145 + Group: 'LeftForeArm', Weight: 0.802765 +Vertex 73: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.234382 + Group: 'LeftForeArm', Weight: 0.765579 +Vertex 74: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.209094 + Group: 'LeftForeArm', Weight: 0.790771 +Vertex 75: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.211175 + Group: 'LeftForeArm', Weight: 0.788791 +Vertex 76: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.442099 + Group: 'LeftForeArm', Weight: 0.557859 +Vertex 77: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.205957 + Group: 'LeftForeArm', Weight: 0.793966 +Vertex 78: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.133188 + Group: 'Spine2', Weight: 0.144669 + Group: 'LeftShoulder', Weight: 0.525703 + Group: 'LeftArm', Weight: 0.017614 +Vertex 79: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.147550 + Group: 'Spine2', Weight: 0.170265 + Group: 'LeftShoulder', Weight: 0.490883 + Group: 'LeftArm', Weight: 0.024216 +Vertex 80: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.092280 + Group: 'Spine2', Weight: 0.090564 + Group: 'LeftShoulder', Weight: 0.609080 + Group: 'LeftArm', Weight: 0.007915 +Vertex 81: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.063398 + Group: 'Spine2', Weight: 0.073366 + Group: 'LeftShoulder', Weight: 0.707444 + Group: 'LeftArm', Weight: 0.000000 +Vertex 82: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.025833 + Group: 'LeftShoulder', Weight: 0.813176 + Group: 'LeftArm', Weight: 0.000000 +Vertex 83: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.579640 + Group: 'Spine1', Weight: 0.125843 + Group: 'RightShoulder', Weight: 0.108308 + Group: 'LeftShoulder', Weight: 0.106698 + Group: 'Neck', Weight: 0.079511 +Vertex 84: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.522653 + Group: 'Neck', Weight: 0.177375 + Group: 'RightShoulder', Weight: 0.121701 + Group: 'LeftShoulder', Weight: 0.119835 + Group: 'Spine1', Weight: 0.058436 +Vertex 85: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.026758 + Group: 'Spine2', Weight: 0.104692 + Group: 'Neck', Weight: 0.062956 + Group: 'LeftShoulder', Weight: 0.746458 + Group: 'LeftArm', Weight: 0.000000 +Vertex 86: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.100280 + Group: 'Spine2', Weight: 0.191701 + Group: 'Neck', Weight: 0.028541 + Group: 'LeftShoulder', Weight: 0.606688 + Group: 'LeftArm', Weight: 0.000000 +Vertex 87: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.563113 + Group: 'Spine2', Weight: 0.248131 + Group: 'Neck', Weight: 0.151443 + Group: 'Spine1', Weight: 0.035348 + Group: 'RightShoulder', Weight: 0.001966 +Vertex 88: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.513051 + Group: 'LeftShoulder', Weight: 0.252338 + Group: 'Spine1', Weight: 0.117438 + Group: 'Neck', Weight: 0.077278 + Group: 'RightShoulder', Weight: 0.039895 +Vertex 89: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.780558 + Group: 'Spine', Weight: 0.150756 + Group: 'Spine2', Weight: 0.068686 + Group: 'LeftArm', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 90: +Vertex groups: 5 + Group: 'Hips', Weight: 0.074091 + Group: 'Spine', Weight: 0.585896 + Group: 'Spine1', Weight: 0.252114 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 91: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.501168 + Group: 'Spine1', Weight: 0.352348 + Group: 'RightShoulder', Weight: 0.071353 + Group: 'LeftShoulder', Weight: 0.070420 + Group: 'Neck', Weight: 0.004710 +Vertex 92: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.501209 + Group: 'Spine1', Weight: 0.266699 + Group: 'LeftShoulder', Weight: 0.175022 + Group: 'Neck', Weight: 0.029451 + Group: 'RightShoulder', Weight: 0.027618 +Vertex 93: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.772834 + Group: 'Spine2', Weight: 0.127146 + Group: 'Spine', Weight: 0.056215 + Group: 'LeftShoulder', Weight: 0.043805 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 94: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.210596 + Group: 'Spine2', Weight: 0.296121 + Group: 'Neck', Weight: 0.001830 + Group: 'LeftShoulder', Weight: 0.399608 + Group: 'LeftArm', Weight: 0.000000 +Vertex 95: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.184600 + Group: 'Spine2', Weight: 0.177684 + Group: 'LeftShoulder', Weight: 0.515912 + Group: 'LeftArm', Weight: 0.000000 +Vertex 96: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.201170 + Group: 'Spine2', Weight: 0.181222 + Group: 'LeftShoulder', Weight: 0.472825 + Group: 'LeftArm', Weight: 0.000000 +Vertex 97: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.205067 + Group: 'Spine2', Weight: 0.227837 + Group: 'LeftShoulder', Weight: 0.412349 + Group: 'LeftArm', Weight: 0.000000 +Vertex 98: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.206995 + Group: 'Spine2', Weight: 0.240536 + Group: 'LeftShoulder', Weight: 0.391877 + Group: 'LeftArm', Weight: 0.000000 +Vertex 99: +Vertex groups: 3 + Group: 'Neck', Weight: 0.007656 + Group: 'LeftShoulder', Weight: 0.860126 + Group: 'LeftArm', Weight: 0.000000 +Vertex 100: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.053043 + Group: 'Neck', Weight: 0.107408 + Group: 'LeftShoulder', Weight: 0.777013 + Group: 'LeftArm', Weight: 0.000000 +Vertex 101: +Vertex groups: 5 + Group: 'Spine', Weight: 0.029326 + Group: 'Spine1', Weight: 0.726597 + Group: 'Spine2', Weight: 0.133793 + Group: 'LeftShoulder', Weight: 0.056535 + Group: 'LeftArm', Weight: 0.000000 +Vertex 102: +Vertex groups: 5 + Group: 'Spine', Weight: 0.001508 + Group: 'Spine1', Weight: 0.670205 + Group: 'Spine2', Weight: 0.173923 + Group: 'LeftShoulder', Weight: 0.077755 + Group: 'LeftArm', Weight: 0.000000 +Vertex 103: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.467911 + Group: 'Neck', Weight: 0.260901 + Group: 'RightShoulder', Weight: 0.120710 + Group: 'LeftShoulder', Weight: 0.118753 + Group: 'Spine1', Weight: 0.031725 +Vertex 104: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.061785 + Group: 'Neck', Weight: 0.196185 + Group: 'LeftShoulder', Weight: 0.699769 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 105: +Vertex groups: 4 + Group: 'Neck', Weight: 0.242439 + Group: 'LeftShoulder', Weight: 0.713273 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 106: +Vertex groups: 3 + Group: 'Neck', Weight: 0.094291 + Group: 'LeftShoulder', Weight: 0.854799 + Group: 'LeftArm', Weight: 0.000000 +Vertex 107: +Vertex groups: 3 + Group: 'Neck', Weight: 0.008254 + Group: 'LeftShoulder', Weight: 0.879407 + Group: 'LeftArm', Weight: 0.000000 +Vertex 108: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.338849 + Group: 'Neck', Weight: 0.325656 + Group: 'Spine2', Weight: 0.315811 + Group: 'RightShoulder', Weight: 0.019683 + Group: 'LeftArm', Weight: 0.000000 +Vertex 109: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.480953 + Group: 'LeftShoulder', Weight: 0.205850 + Group: 'Neck', Weight: 0.181795 + Group: 'RightShoulder', Weight: 0.075540 + Group: 'Spine1', Weight: 0.055863 +Vertex 110: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.450780 + Group: 'Spine2', Weight: 0.291892 + Group: 'Neck', Weight: 0.218497 + Group: 'Spine1', Weight: 0.019689 + Group: 'RightShoulder', Weight: 0.019142 +Vertex 111: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.430062 + Group: 'Neck', Weight: 0.273929 + Group: 'LeftShoulder', Weight: 0.198499 + Group: 'RightShoulder', Weight: 0.071829 + Group: 'Spine1', Weight: 0.025681 +Vertex 112: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.073392 + Group: 'Neck', Weight: 0.329482 + Group: 'LeftShoulder', Weight: 0.557257 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 113: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.071254 + Group: 'Neck', Weight: 0.433498 + Group: 'LeftShoulder', Weight: 0.456295 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 114: +Vertex groups: 4 + Group: 'Neck', Weight: 0.587592 + Group: 'LeftShoulder', Weight: 0.370014 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 115: +Vertex groups: 4 + Group: 'Neck', Weight: 0.406267 + Group: 'LeftShoulder', Weight: 0.549756 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 116: +Vertex groups: 5 + Group: 'Spine', Weight: 0.012294 + Group: 'Spine1', Weight: 0.381942 + Group: 'Spine2', Weight: 0.291088 + Group: 'LeftShoulder', Weight: 0.215001 + Group: 'LeftArm', Weight: 0.000000 +Vertex 117: +Vertex groups: 5 + Group: 'Spine', Weight: 0.011242 + Group: 'Spine1', Weight: 0.341155 + Group: 'Spine2', Weight: 0.292428 + Group: 'LeftShoulder', Weight: 0.242790 + Group: 'LeftArm', Weight: 0.000000 +Vertex 118: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.683564 + Group: 'Spine2', Weight: 0.141601 + Group: 'LeftShoulder', Weight: 0.087634 + Group: 'Spine', Weight: 0.087201 + Group: 'LeftArm', Weight: 0.000000 +Vertex 119: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.672332 + Group: 'Spine2', Weight: 0.140827 + Group: 'LeftShoulder', Weight: 0.096781 + Group: 'Spine', Weight: 0.090060 + Group: 'LeftArm', Weight: 0.000000 +Vertex 120: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.726443 + Group: 'Spine', Weight: 0.132192 + Group: 'Spine2', Weight: 0.096252 + Group: 'LeftShoulder', Weight: 0.045113 + Group: 'LeftArm', Weight: 0.000000 +Vertex 121: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.706109 + Group: 'Spine', Weight: 0.153005 + Group: 'Spine2', Weight: 0.086904 + Group: 'LeftShoulder', Weight: 0.053982 + Group: 'LeftArm', Weight: 0.000000 +Vertex 122: +Vertex groups: 5 + Group: 'Hips', Weight: 0.017702 + Group: 'Spine', Weight: 0.565722 + Group: 'Spine1', Weight: 0.270833 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 123: +Vertex groups: 4 + Group: 'Spine', Weight: 0.544430 + Group: 'Spine1', Weight: 0.302601 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 124: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.752878 + Group: 'Spine', Weight: 0.159708 + Group: 'Spine2', Weight: 0.076879 + Group: 'LeftShoulder', Weight: 0.010535 + Group: 'LeftArm', Weight: 0.000000 +Vertex 125: +Vertex groups: 5 + Group: 'Hips', Weight: 0.054929 + Group: 'Spine', Weight: 0.577374 + Group: 'Spine1', Weight: 0.255750 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 126: +Vertex groups: 5 + Group: 'Spine', Weight: 0.132879 + Group: 'Spine1', Weight: 0.752506 + Group: 'Spine2', Weight: 0.052775 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 127: +Vertex groups: 5 + Group: 'Hips', Weight: 0.086133 + Group: 'Spine', Weight: 0.590240 + Group: 'Spine1', Weight: 0.249914 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 128: +Vertex groups: 5 + Group: 'Spine', Weight: 0.140581 + Group: 'Spine1', Weight: 0.751893 + Group: 'Spine2', Weight: 0.043681 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 129: +Vertex groups: 5 + Group: 'Hips', Weight: 0.094538 + Group: 'Spine', Weight: 0.592894 + Group: 'Spine1', Weight: 0.242459 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 130: +Vertex groups: 5 + Group: 'Spine', Weight: 0.066914 + Group: 'Spine1', Weight: 0.780199 + Group: 'Spine2', Weight: 0.085812 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 131: +Vertex groups: 5 + Group: 'Spine', Weight: 0.030658 + Group: 'Spine1', Weight: 0.754833 + Group: 'Spine2', Weight: 0.121084 + Group: 'LeftShoulder', Weight: 0.008748 + Group: 'RightShoulder', Weight: 0.009388 +Vertex 132: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.656335 + Group: 'Spine2', Weight: 0.203678 + Group: 'LeftShoulder', Weight: 0.039652 + Group: 'RightShoulder', Weight: 0.040715 +Vertex 133: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.662303 + Group: 'Spine2', Weight: 0.191512 + Group: 'LeftShoulder', Weight: 0.076517 + Group: 'Spine', Weight: 0.069668 + Group: 'LeftArm', Weight: 0.000000 +Vertex 134: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.640519 + Group: 'Spine2', Weight: 0.200284 + Group: 'LeftShoulder', Weight: 0.091934 + Group: 'Spine', Weight: 0.067262 + Group: 'LeftArm', Weight: 0.000000 +Vertex 135: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.683129 + Group: 'Spine2', Weight: 0.181417 + Group: 'Spine', Weight: 0.070829 + Group: 'LeftShoulder', Weight: 0.064624 + Group: 'LeftArm', Weight: 0.000000 +Vertex 136: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.770658 + Group: 'Spine2', Weight: 0.125732 + Group: 'Spine', Weight: 0.073208 + Group: 'LeftShoulder', Weight: 0.030401 + Group: 'LeftArm', Weight: 0.000000 +Vertex 137: +Vertex groups: 5 + Group: 'Spine', Weight: 0.094733 + Group: 'Spine1', Weight: 0.777253 + Group: 'Spine2', Weight: 0.066576 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 138: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.584935 + Group: 'Spine2', Weight: 0.244002 + Group: 'LeftShoulder', Weight: 0.132257 + Group: 'Spine', Weight: 0.038806 + Group: 'LeftArm', Weight: 0.000000 +Vertex 139: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.596852 + Group: 'Spine2', Weight: 0.207035 + Group: 'LeftShoulder', Weight: 0.141457 + Group: 'Spine', Weight: 0.054657 + Group: 'LeftArm', Weight: 0.000000 +Vertex 140: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.578926 + Group: 'Spine2', Weight: 0.207305 + Group: 'LeftShoulder', Weight: 0.156791 + Group: 'Spine', Weight: 0.056978 + Group: 'LeftArm', Weight: 0.000000 +Vertex 141: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.550427 + Group: 'Spine2', Weight: 0.263765 + Group: 'LeftShoulder', Weight: 0.170872 + Group: 'Spine', Weight: 0.014936 + Group: 'LeftArm', Weight: 0.000000 +Vertex 142: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.424149 + Group: 'Spine2', Weight: 0.238748 + Group: 'LeftShoulder', Weight: 0.241709 + Group: 'LeftArm', Weight: 0.000000 +Vertex 143: +Vertex groups: 5 + Group: 'Spine', Weight: 0.000538 + Group: 'Spine1', Weight: 0.465227 + Group: 'Spine2', Weight: 0.238972 + Group: 'LeftShoulder', Weight: 0.202609 + Group: 'LeftArm', Weight: 0.000000 +Vertex 144: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.490813 + Group: 'Spine2', Weight: 0.210346 + Group: 'LeftShoulder', Weight: 0.212741 + Group: 'LeftArm', Weight: 0.000000 +Vertex 145: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.530264 + Group: 'Spine2', Weight: 0.208008 + Group: 'LeftShoulder', Weight: 0.181824 + Group: 'LeftArm', Weight: 0.000000 +Vertex 146: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.573750 + Group: 'Spine2', Weight: 0.216816 + Group: 'LeftShoulder', Weight: 0.131245 + Group: 'LeftArm', Weight: 0.000000 +Vertex 147: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.607197 + Group: 'Spine2', Weight: 0.214402 + Group: 'LeftShoulder', Weight: 0.098796 + Group: 'LeftArm', Weight: 0.000000 +Vertex 148: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.727459 + Group: 'Spine2', Weight: 0.155152 + Group: 'Spine', Weight: 0.072338 + Group: 'LeftShoulder', Weight: 0.045052 + Group: 'LeftArm', Weight: 0.000000 +Vertex 149: +Vertex groups: 5 + Group: 'Spine', Weight: 0.001007 + Group: 'Spine1', Weight: 0.543034 + Group: 'Spine2', Weight: 0.202122 + Group: 'LeftShoulder', Weight: 0.170741 + Group: 'LeftArm', Weight: 0.000000 +Vertex 150: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.630723 + Group: 'Spine2', Weight: 0.209566 + Group: 'LeftShoulder', Weight: 0.138168 + Group: 'Spine', Weight: 0.021543 + Group: 'LeftArm', Weight: 0.000000 +Vertex 151: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.654377 + Group: 'Spine2', Weight: 0.195026 + Group: 'LeftShoulder', Weight: 0.100714 + Group: 'Spine', Weight: 0.049883 + Group: 'LeftArm', Weight: 0.000000 +Vertex 152: +Vertex groups: 5 + Group: 'Spine', Weight: 0.002227 + Group: 'Spine1', Weight: 0.608238 + Group: 'Spine2', Weight: 0.180504 + Group: 'LeftShoulder', Weight: 0.133246 + Group: 'LeftArm', Weight: 0.000000 +Vertex 153: +Vertex groups: 5 + Group: 'Spine', Weight: 0.024798 + Group: 'Spine1', Weight: 0.656269 + Group: 'Spine2', Weight: 0.164440 + Group: 'LeftShoulder', Weight: 0.097509 + Group: 'LeftArm', Weight: 0.000000 +Vertex 154: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.699769 + Group: 'Spine2', Weight: 0.168264 + Group: 'LeftShoulder', Weight: 0.080093 + Group: 'Spine', Weight: 0.051873 + Group: 'LeftArm', Weight: 0.000000 +Vertex 155: +Vertex groups: 5 + Group: 'Spine', Weight: 0.003018 + Group: 'Spine1', Weight: 0.657191 + Group: 'Spine2', Weight: 0.171980 + Group: 'LeftShoulder', Weight: 0.094398 + Group: 'LeftArm', Weight: 0.000000 +Vertex 156: +Vertex groups: 5 + Group: 'Spine', Weight: 0.026494 + Group: 'Spine1', Weight: 0.705260 + Group: 'Spine2', Weight: 0.144119 + Group: 'LeftShoulder', Weight: 0.069677 + Group: 'LeftArm', Weight: 0.000000 +Vertex 157: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.743343 + Group: 'Spine2', Weight: 0.143598 + Group: 'LeftShoulder', Weight: 0.058408 + Group: 'Spine', Weight: 0.054650 + Group: 'LeftArm', Weight: 0.000000 +Vertex 158: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.661954 + Group: 'Spine2', Weight: 0.192775 + Group: 'LeftShoulder', Weight: 0.062232 + Group: 'RightShoulder', Weight: 0.014119 + Group: 'LeftArm', Weight: 0.000000 +Vertex 159: +Vertex groups: 5 + Group: 'Spine', Weight: 0.029170 + Group: 'Spine1', Weight: 0.746994 + Group: 'Spine2', Weight: 0.125500 + Group: 'LeftShoulder', Weight: 0.028903 + Group: 'LeftArm', Weight: 0.000000 +Vertex 160: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.550205 + Group: 'Spine2', Weight: 0.278099 + Group: 'LeftShoulder', Weight: 0.083045 + Group: 'RightShoulder', Weight: 0.024169 + Group: 'LeftArm', Weight: 0.000000 +Vertex 161: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.820143 + Group: 'Spine2', Weight: 0.103675 + Group: 'Spine', Weight: 0.064991 + Group: 'LeftShoulder', Weight: 0.011191 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 162: +Vertex groups: 5 + Group: 'Spine', Weight: 0.089515 + Group: 'Spine1', Weight: 0.769196 + Group: 'Spine2', Weight: 0.076288 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 163: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.702212 + Group: 'Spine2', Weight: 0.143505 + Group: 'Spine', Weight: 0.089989 + Group: 'LeftShoulder', Weight: 0.064295 + Group: 'LeftArm', Weight: 0.000000 +Vertex 164: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.677522 + Group: 'Spine2', Weight: 0.159452 + Group: 'LeftShoulder', Weight: 0.084362 + Group: 'Spine', Weight: 0.078665 + Group: 'LeftArm', Weight: 0.000000 +Vertex 165: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.721668 + Group: 'Spine2', Weight: 0.134182 + Group: 'Spine', Weight: 0.093194 + Group: 'LeftShoulder', Weight: 0.050956 + Group: 'LeftArm', Weight: 0.000000 +Vertex 166: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.768882 + Group: 'Spine2', Weight: 0.110354 + Group: 'Spine', Weight: 0.099679 + Group: 'LeftShoulder', Weight: 0.021084 + Group: 'LeftArm', Weight: 0.000000 +Vertex 167: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.594238 + Group: 'Spine2', Weight: 0.220663 + Group: 'LeftShoulder', Weight: 0.137830 + Group: 'Spine', Weight: 0.047270 + Group: 'LeftArm', Weight: 0.000000 +Vertex 168: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.494417 + Group: 'Spine2', Weight: 0.294159 + Group: 'LeftShoulder', Weight: 0.199433 + Group: 'Spine', Weight: 0.011991 + Group: 'LeftArm', Weight: 0.000000 +Vertex 169: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.373386 + Group: 'Spine2', Weight: 0.263512 + Group: 'LeftShoulder', Weight: 0.256473 + Group: 'LeftArm', Weight: 0.000000 +Vertex 170: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.338564 + Group: 'Spine2', Weight: 0.241025 + Group: 'LeftShoulder', Weight: 0.312605 + Group: 'LeftArm', Weight: 0.000000 +Vertex 171: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.420161 + Group: 'Spine2', Weight: 0.215203 + Group: 'LeftShoulder', Weight: 0.271937 + Group: 'LeftArm', Weight: 0.000000 +Vertex 172: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.462613 + Group: 'Spine2', Weight: 0.231598 + Group: 'LeftShoulder', Weight: 0.223250 + Group: 'LeftArm', Weight: 0.000000 +Vertex 173: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.508316 + Group: 'Spine2', Weight: 0.275746 + Group: 'LeftShoulder', Weight: 0.132837 + Group: 'RightShoulder', Weight: 0.002244 + Group: 'LeftArm', Weight: 0.000000 +Vertex 174: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.681046 + Group: 'Spine', Weight: 0.278517 + Group: 'Spine2', Weight: 0.040437 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 175: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.662730 + Group: 'Spine', Weight: 0.284071 + Group: 'Spine2', Weight: 0.048593 + Group: 'LeftShoulder', Weight: 0.004606 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 176: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.686099 + Group: 'Spine', Weight: 0.286823 + Group: 'Spine2', Weight: 0.027078 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 177: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.695430 + Group: 'Spine', Weight: 0.278766 + Group: 'Hips', Weight: 0.018870 + Group: 'Spine2', Weight: 0.006933 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 178: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.689659 + Group: 'Spine', Weight: 0.283659 + Group: 'Hips', Weight: 0.024682 + Group: 'Spine2', Weight: 0.002000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 179: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.682091 + Group: 'Spine', Weight: 0.291651 + Group: 'Spine2', Weight: 0.013868 + Group: 'Hips', Weight: 0.012390 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 180: +Vertex groups: 3 + Group: 'Neck', Weight: 0.066991 + Group: 'LeftShoulder', Weight: 0.878929 + Group: 'LeftArm', Weight: 0.000000 +Vertex 181: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.884314 + Group: 'LeftArm', Weight: 0.000000 +Vertex 182: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.037928 + Group: 'Neck', Weight: 0.010626 + Group: 'LeftShoulder', Weight: 0.878751 + Group: 'LeftArm', Weight: 0.000000 +Vertex 183: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.877258 + Group: 'LeftArm', Weight: 0.000000 +Vertex 184: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.063271 + Group: 'LeftShoulder', Weight: 0.805068 + Group: 'LeftArm', Weight: 0.000000 +Vertex 185: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.527827 + Group: 'RightShoulder', Weight: 0.210946 + Group: 'LeftShoulder', Weight: 0.210841 + Group: 'Neck', Weight: 0.050386 + Group: 'LeftArm', Weight: 0.000000 +Vertex 186: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.089305 + Group: 'LeftShoulder', Weight: 0.819182 + Group: 'LeftArm', Weight: 0.000000 +Vertex 187: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050842 + Group: 'Spine2', Weight: 0.136909 + Group: 'LeftShoulder', Weight: 0.705995 + Group: 'LeftArm', Weight: 0.000000 +Vertex 188: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068620 + Group: 'Spine2', Weight: 0.135430 + Group: 'LeftShoulder', Weight: 0.638632 + Group: 'LeftArm', Weight: 0.000000 +Vertex 189: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.196085 + Group: 'Spine2', Weight: 0.225920 + Group: 'LeftShoulder', Weight: 0.398802 + Group: 'LeftArm', Weight: 0.000000 +Vertex 190: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.130497 + Group: 'Spine2', Weight: 0.154531 + Group: 'LeftShoulder', Weight: 0.488687 + Group: 'LeftArm', Weight: 0.100805 +Vertex 191: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.072017 + Group: 'Spine2', Weight: 0.107833 + Group: 'LeftShoulder', Weight: 0.591157 + Group: 'LeftArm', Weight: 0.115078 +Vertex 192: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.033653 + Group: 'Spine2', Weight: 0.078038 + Group: 'LeftShoulder', Weight: 0.663235 + Group: 'LeftArm', Weight: 0.105577 +Vertex 193: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.024770 + Group: 'Spine2', Weight: 0.163811 + Group: 'LeftShoulder', Weight: 0.719545 + Group: 'LeftArm', Weight: 0.000000 +Vertex 194: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.594449 + Group: 'RightShoulder', Weight: 0.197794 + Group: 'LeftShoulder', Weight: 0.197685 + Group: 'Spine1', Weight: 0.010072 + Group: 'LeftArm', Weight: 0.000000 +Vertex 195: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.123333 + Group: 'Spine2', Weight: 0.187240 + Group: 'LeftShoulder', Weight: 0.532087 + Group: 'LeftArm', Weight: 0.000000 +Vertex 196: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.398645 + Group: 'Neck', Weight: 0.272618 + Group: 'RightShoulder', Weight: 0.164481 + Group: 'LeftShoulder', Weight: 0.164256 + Group: 'LeftArm', Weight: 0.000000 +Vertex 197: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.487105 + Group: 'RightShoulder', Weight: 0.197076 + Group: 'LeftShoulder', Weight: 0.196933 + Group: 'Neck', Weight: 0.118887 + Group: 'LeftArm', Weight: 0.000000 +Vertex 198: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.805452 + Group: 'Spine2', Weight: 0.158625 + Group: 'RightShoulder', Weight: 0.022627 + Group: 'Neck', Weight: 0.013296 + Group: 'LeftArm', Weight: 0.000000 +Vertex 199: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.686147 + Group: 'Spine2', Weight: 0.259509 + Group: 'RightShoulder', Weight: 0.040136 + Group: 'Spine1', Weight: 0.014209 + Group: 'LeftArm', Weight: 0.000000 +Vertex 200: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.031725 + Group: 'Neck', Weight: 0.173254 + Group: 'LeftShoulder', Weight: 0.755989 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 201: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.842200 + Group: 'Spine2', Weight: 0.087169 + Group: 'Neck', Weight: 0.066978 + Group: 'RightShoulder', Weight: 0.003653 + Group: 'LeftArm', Weight: 0.000000 +Vertex 202: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.623960 + Group: 'Spine2', Weight: 0.245344 + Group: 'RightShoulder', Weight: 0.079333 + Group: 'Neck', Weight: 0.051363 + Group: 'LeftArm', Weight: 0.000000 +Vertex 203: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.537580 + Group: 'Spine2', Weight: 0.364086 + Group: 'RightShoulder', Weight: 0.088628 + Group: 'Spine1', Weight: 0.008830 + Group: 'Neck', Weight: 0.000875 +Vertex 204: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.646338 + Group: 'Spine2', Weight: 0.174816 + Group: 'Neck', Weight: 0.113079 + Group: 'RightShoulder', Weight: 0.065767 + Group: 'LeftArm', Weight: 0.000000 +Vertex 205: +Vertex groups: 5 + Group: 'LeftShoulder', Weight: 0.554215 + Group: 'Neck', Weight: 0.255197 + Group: 'Spine2', Weight: 0.133594 + Group: 'RightShoulder', Weight: 0.056994 + Group: 'LeftArm', Weight: 0.000000 +Vertex 206: +Vertex groups: 5 + Group: 'Neck', Weight: 0.629395 + Group: 'Spine2', Weight: 0.142831 + Group: 'RightShoulder', Weight: 0.114054 + Group: 'LeftShoulder', Weight: 0.113721 + Group: 'LeftArm', Weight: 0.000000 +Vertex 207: +Vertex groups: 4 + Group: 'Neck', Weight: 0.785876 + Group: 'LeftShoulder', Weight: 0.158832 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 208: +Vertex groups: 5 + Group: 'Neck', Weight: 0.728923 + Group: 'LeftShoulder', Weight: 0.247854 + Group: 'Spine2', Weight: 0.023062 + Group: 'RightShoulder', Weight: 0.000162 + Group: 'LeftArm', Weight: 0.000000 +Vertex 209: +Vertex groups: 5 + Group: 'Neck', Weight: 0.875958 + Group: 'RightShoulder', Weight: 0.054812 + Group: 'LeftShoulder', Weight: 0.054406 + Group: 'Spine2', Weight: 0.014824 + Group: 'LeftArm', Weight: 0.000000 +Vertex 210: +Vertex groups: 5 + Group: 'Neck', Weight: 0.771899 + Group: 'RightShoulder', Weight: 0.080006 + Group: 'LeftShoulder', Weight: 0.079617 + Group: 'Spine2', Weight: 0.068478 + Group: 'LeftArm', Weight: 0.000000 +Vertex 211: +Vertex groups: 5 + Group: 'Spine', Weight: 0.013914 + Group: 'Spine1', Weight: 0.328828 + Group: 'Spine2', Weight: 0.286579 + Group: 'LeftShoulder', Weight: 0.253227 + Group: 'LeftArm', Weight: 0.000000 +Vertex 212: +Vertex groups: 5 + Group: 'Spine', Weight: 0.053777 + Group: 'Spine1', Weight: 0.524101 + Group: 'Spine2', Weight: 0.204176 + Group: 'LeftShoulder', Weight: 0.154516 + Group: 'LeftArm', Weight: 0.000000 +Vertex 213: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.661747 + Group: 'Spine2', Weight: 0.147039 + Group: 'LeftShoulder', Weight: 0.100828 + Group: 'Spine', Weight: 0.090386 + Group: 'LeftArm', Weight: 0.000000 +Vertex 214: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.697547 + Group: 'Spine', Weight: 0.153674 + Group: 'Spine2', Weight: 0.091168 + Group: 'LeftShoulder', Weight: 0.057611 + Group: 'LeftArm', Weight: 0.000000 +Vertex 215: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.650317 + Group: 'Spine', Weight: 0.286651 + Group: 'Spine2', Weight: 0.053687 + Group: 'LeftShoulder', Weight: 0.009345 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 216: +Vertex groups: 4 + Group: 'Spine', Weight: 0.550707 + Group: 'Spine1', Weight: 0.309911 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 217: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.261346 + Group: 'Spine2', Weight: 0.311761 + Group: 'LeftShoulder', Weight: 0.309357 + Group: 'LeftArm', Weight: 0.000000 +Vertex 218: +Vertex groups: 5 + Group: 'Spine', Weight: 0.041151 + Group: 'Spine1', Weight: 0.479480 + Group: 'Spine2', Weight: 0.249391 + Group: 'LeftShoulder', Weight: 0.167702 + Group: 'LeftArm', Weight: 0.000000 +Vertex 219: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.651101 + Group: 'Spine2', Weight: 0.168588 + Group: 'LeftShoulder', Weight: 0.100781 + Group: 'Spine', Weight: 0.079531 + Group: 'LeftArm', Weight: 0.000000 +Vertex 220: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.704467 + Group: 'Spine', Weight: 0.142951 + Group: 'Spine2', Weight: 0.097978 + Group: 'LeftShoulder', Weight: 0.054604 + Group: 'LeftArm', Weight: 0.000000 +Vertex 221: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.664530 + Group: 'Spine', Weight: 0.273516 + Group: 'Spine2', Weight: 0.055810 + Group: 'LeftShoulder', Weight: 0.006145 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 222: +Vertex groups: 4 + Group: 'Spine', Weight: 0.573576 + Group: 'Spine1', Weight: 0.311100 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 223: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.103494 + Group: 'Spine2', Weight: 0.239355 + Group: 'LeftShoulder', Weight: 0.550459 + Group: 'LeftArm', Weight: 0.000000 +Vertex 224: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.593245 + Group: 'LeftShoulder', Weight: 0.260439 + Group: 'RightShoulder', Weight: 0.084397 + Group: 'Spine1', Weight: 0.061919 + Group: 'LeftArm', Weight: 0.000000 +Vertex 225: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.683984 + Group: 'Spine1', Weight: 0.168230 + Group: 'RightShoulder', Weight: 0.073951 + Group: 'LeftShoulder', Weight: 0.073835 + Group: 'LeftArm', Weight: 0.000000 +Vertex 226: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.520282 + Group: 'LeftShoulder', Weight: 0.355718 + Group: 'Spine1', Weight: 0.078613 + Group: 'RightShoulder', Weight: 0.045387 + Group: 'LeftArm', Weight: 0.000000 +Vertex 227: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.099048 + Group: 'Spine2', Weight: 0.336235 + Group: 'LeftShoulder', Weight: 0.482913 + Group: 'LeftArm', Weight: 0.000000 +Vertex 228: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.207042 + Group: 'Spine2', Weight: 0.376662 + Group: 'LeftShoulder', Weight: 0.322948 + Group: 'LeftArm', Weight: 0.000000 +Vertex 229: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.172634 + Group: 'Spine2', Weight: 0.476893 + Group: 'LeftShoulder', Weight: 0.275900 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 230: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.622049 + Group: 'LeftShoulder', Weight: 0.188832 + Group: 'Spine1', Weight: 0.158570 + Group: 'RightShoulder', Weight: 0.030549 + Group: 'LeftArm', Weight: 0.000000 +Vertex 231: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.620794 + Group: 'Spine1', Weight: 0.272870 + Group: 'RightShoulder', Weight: 0.053221 + Group: 'LeftShoulder', Weight: 0.053115 + Group: 'LeftArm', Weight: 0.000000 +Vertex 232: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.603068 + Group: 'Spine1', Weight: 0.280775 + Group: 'LeftShoulder', Weight: 0.103141 + Group: 'RightShoulder', Weight: 0.013016 + Group: 'LeftArm', Weight: 0.000000 +Vertex 233: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.401854 + Group: 'Spine1', Weight: 0.394793 + Group: 'LeftShoulder', Weight: 0.184058 + Group: 'Spine', Weight: 0.019296 + Group: 'LeftArm', Weight: 0.000000 +Vertex 234: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.319299 + Group: 'Spine2', Weight: 0.473086 + Group: 'LeftShoulder', Weight: 0.138944 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 235: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.658585 + Group: 'Spine2', Weight: 0.191102 + Group: 'LeftShoulder', Weight: 0.082003 + Group: 'Spine', Weight: 0.068310 + Group: 'LeftArm', Weight: 0.000000 +Vertex 236: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.669645 + Group: 'Spine2', Weight: 0.219838 + Group: 'LeftShoulder', Weight: 0.064360 + Group: 'Spine', Weight: 0.046157 + Group: 'LeftArm', Weight: 0.000000 +Vertex 237: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.737599 + Group: 'Spine', Weight: 0.127820 + Group: 'Spine2', Weight: 0.099665 + Group: 'LeftShoulder', Weight: 0.034917 + Group: 'LeftArm', Weight: 0.000000 +Vertex 238: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.798700 + Group: 'Spine', Weight: 0.102091 + Group: 'Spine2', Weight: 0.093665 + Group: 'LeftShoulder', Weight: 0.005543 + Group: 'LeftArm', Weight: 0.000000 +Vertex 239: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.683568 + Group: 'Spine', Weight: 0.275145 + Group: 'Spine2', Weight: 0.041287 + Group: 'LeftArm', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 240: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.726827 + Group: 'Spine', Weight: 0.257567 + Group: 'Spine2', Weight: 0.015606 + Group: 'LeftArm', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 241: +Vertex groups: 4 + Group: 'Spine', Weight: 0.617841 + Group: 'Spine1', Weight: 0.295505 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 242: +Vertex groups: 4 + Group: 'Spine', Weight: 0.686912 + Group: 'Spine1', Weight: 0.257368 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 243: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.757518 + Group: 'Spine2', Weight: 0.224785 + Group: 'Spine', Weight: 0.017232 + Group: 'RightShoulder', Weight: 0.000312 + Group: 'LeftShoulder', Weight: 0.000153 +Vertex 244: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.713635 + Group: 'Spine2', Weight: 0.234991 + Group: 'LeftShoulder', Weight: 0.031445 + Group: 'Spine', Weight: 0.019929 + Group: 'LeftArm', Weight: 0.000000 +Vertex 245: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.845667 + Group: 'Spine2', Weight: 0.079529 + Group: 'Spine', Weight: 0.074804 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 246: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.838884 + Group: 'Spine2', Weight: 0.081615 + Group: 'Spine', Weight: 0.079501 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 247: +Vertex groups: 4 + Group: 'Spine', Weight: 0.254843 + Group: 'Spine1', Weight: 0.704659 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 248: +Vertex groups: 4 + Group: 'Spine', Weight: 0.757036 + Group: 'Spine1', Weight: 0.200463 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 249: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.649421 + Group: 'RightShoulder', Weight: 0.147009 + Group: 'LeftShoulder', Weight: 0.146880 + Group: 'Spine1', Weight: 0.056689 + Group: 'LeftArm', Weight: 0.000000 +Vertex 250: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.661834 + Group: 'LeftShoulder', Weight: 0.167824 + Group: 'Spine1', Weight: 0.086173 + Group: 'RightShoulder', Weight: 0.084169 + Group: 'LeftArm', Weight: 0.000000 +Vertex 251: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.680391 + Group: 'RightShoulder', Weight: 0.114904 + Group: 'LeftShoulder', Weight: 0.114770 + Group: 'Spine1', Weight: 0.089935 + Group: 'LeftArm', Weight: 0.000000 +Vertex 252: +Vertex groups: 5 + Group: 'Hips', Weight: 0.229668 + Group: 'Spine', Weight: 0.499370 + Group: 'Spine1', Weight: 0.086683 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 253: +Vertex groups: 5 + Group: 'Hips', Weight: 0.077877 + Group: 'Spine', Weight: 0.543980 + Group: 'Spine1', Weight: 0.123107 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 254: +Vertex groups: 5 + Group: 'Hips', Weight: 0.035722 + Group: 'Spine', Weight: 0.570495 + Group: 'Spine1', Weight: 0.143781 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 255: +Vertex groups: 5 + Group: 'Hips', Weight: 0.142934 + Group: 'Spine', Weight: 0.521164 + Group: 'Spine1', Weight: 0.096712 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 256: +Vertex groups: 5 + Group: 'Hips', Weight: 0.301137 + Group: 'Spine', Weight: 0.476768 + Group: 'Spine1', Weight: 0.083105 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 257: +Vertex groups: 5 + Group: 'Hips', Weight: 0.319589 + Group: 'Spine', Weight: 0.476024 + Group: 'Spine1', Weight: 0.082861 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 258: +Vertex groups: 4 + Group: 'Spine', Weight: 0.607298 + Group: 'Spine1', Weight: 0.150686 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 259: +Vertex groups: 4 + Group: 'Spine', Weight: 0.658347 + Group: 'Spine1', Weight: 0.157031 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 260: +Vertex groups: 4 + Group: 'Spine', Weight: 0.711534 + Group: 'Spine1', Weight: 0.163613 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 261: +Vertex groups: 4 + Group: 'Spine', Weight: 0.771615 + Group: 'Spine1', Weight: 0.134438 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 262: +Vertex groups: 4 + Group: 'Spine', Weight: 0.822413 + Group: 'Spine1', Weight: 0.111497 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 263: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.835975 + Group: 'Spine', Weight: 0.122128 + Group: 'Spine2', Weight: 0.041897 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 264: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.810668 + Group: 'Spine', Weight: 0.135467 + Group: 'Spine2', Weight: 0.053865 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 265: +Vertex groups: 5 + Group: 'Hips', Weight: 0.066217 + Group: 'Spine', Weight: 0.567276 + Group: 'Spine1', Weight: 0.164985 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 266: +Vertex groups: 4 + Group: 'Spine', Weight: 0.607824 + Group: 'Spine1', Weight: 0.207398 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 267: +Vertex groups: 5 + Group: 'Hips', Weight: 0.021653 + Group: 'Spine', Weight: 0.583482 + Group: 'Spine1', Weight: 0.193351 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 268: +Vertex groups: 4 + Group: 'Spine', Weight: 0.653637 + Group: 'Spine1', Weight: 0.197559 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 269: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.436403 + Group: 'Neck', Weight: 0.311637 + Group: 'RightShoulder', Weight: 0.118157 + Group: 'LeftShoulder', Weight: 0.116184 + Group: 'Spine1', Weight: 0.017619 +Vertex 270: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.397041 + Group: 'Neck', Weight: 0.328087 + Group: 'LeftShoulder', Weight: 0.196902 + Group: 'RightShoulder', Weight: 0.067238 + Group: 'Spine1', Weight: 0.010733 +Vertex 271: +Vertex groups: 4 + Group: 'Neck', Weight: 0.251663 + Group: 'Head', Weight: 0.998587 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 272: +Vertex groups: 4 + Group: 'Neck', Weight: 0.201154 + Group: 'Head', Weight: 0.999899 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 273: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.001219 + Group: 'Neck', Weight: 0.660075 + Group: 'Head', Weight: 0.404696 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 274: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.010653 + Group: 'Neck', Weight: 0.640986 + Group: 'Head', Weight: 0.441773 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 275: +Vertex groups: 5 + Group: 'Neck', Weight: 0.626389 + Group: 'Spine2', Weight: 0.187101 + Group: 'RightShoulder', Weight: 0.069327 + Group: 'LeftShoulder', Weight: 0.068014 + Group: 'Head', Weight: 0.049169 +Vertex 276: +Vertex groups: 5 + Group: 'Neck', Weight: 0.659349 + Group: 'Spine2', Weight: 0.163815 + Group: 'LeftShoulder', Weight: 0.113123 + Group: 'Head', Weight: 0.043997 + Group: 'RightShoulder', Weight: 0.019715 +Vertex 277: +Vertex groups: 5 + Group: 'Neck', Weight: 0.767370 + Group: 'Head', Weight: 0.124304 + Group: 'Spine2', Weight: 0.065486 + Group: 'LeftShoulder', Weight: 0.042839 + Group: 'LeftArm', Weight: 0.000000 +Vertex 278: +Vertex groups: 5 + Group: 'Neck', Weight: 0.762370 + Group: 'Head', Weight: 0.133442 + Group: 'Spine2', Weight: 0.073547 + Group: 'RightShoulder', Weight: 0.016035 + Group: 'LeftShoulder', Weight: 0.014606 +Vertex 279: +Vertex groups: 4 + Group: 'Neck', Weight: 0.678262 + Group: 'Head', Weight: 0.448695 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 280: +Vertex groups: 5 + Group: 'Neck', Weight: 0.708550 + Group: 'LeftShoulder', Weight: 0.137052 + Group: 'Spine2', Weight: 0.118874 + Group: 'Head', Weight: 0.035524 + Group: 'LeftArm', Weight: 0.000000 +Vertex 281: +Vertex groups: 5 + Group: 'Neck', Weight: 0.841453 + Group: 'Head', Weight: 0.097604 + Group: 'LeftShoulder', Weight: 0.044965 + Group: 'Spine2', Weight: 0.015978 + Group: 'LeftArm', Weight: 0.000000 +Vertex 282: +Vertex groups: 4 + Group: 'Neck', Weight: 0.754556 + Group: 'Head', Weight: 0.237992 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 283: +Vertex groups: 5 + Group: 'Neck', Weight: 0.799436 + Group: 'Head', Weight: 0.005409 + Group: 'LeftShoulder', Weight: 0.140139 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 284: +Vertex groups: 5 + Group: 'Neck', Weight: 0.875913 + Group: 'Head', Weight: 0.067402 + Group: 'LeftShoulder', Weight: 0.030586 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 285: +Vertex groups: 4 + Group: 'Neck', Weight: 0.632395 + Group: 'Head', Weight: 0.387618 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 286: +Vertex groups: 4 + Group: 'Neck', Weight: 0.855409 + Group: 'LeftShoulder', Weight: 0.106347 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 287: +Vertex groups: 5 + Group: 'Neck', Weight: 0.898152 + Group: 'Head', Weight: 0.069536 + Group: 'LeftShoulder', Weight: 0.000971 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 288: +Vertex groups: 4 + Group: 'Neck', Weight: 0.714445 + Group: 'Head', Weight: 0.319694 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 289: +Vertex groups: 5 + Group: 'Neck', Weight: 0.909267 + Group: 'Head', Weight: 0.012266 + Group: 'LeftShoulder', Weight: 0.037660 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 290: +Vertex groups: 4 + Group: 'Neck', Weight: 0.880389 + Group: 'Head', Weight: 0.097783 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 291: +Vertex groups: 4 + Group: 'Neck', Weight: 0.678835 + Group: 'Head', Weight: 0.290679 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 292: +Vertex groups: 4 + Group: 'Neck', Weight: 0.920987 + Group: 'Head', Weight: 0.012358 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 293: +Vertex groups: 4 + Group: 'Neck', Weight: 0.877811 + Group: 'Head', Weight: 0.103055 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 294: +Vertex groups: 5 + Group: 'Neck', Weight: 0.387603 + Group: 'Spine2', Weight: 0.306339 + Group: 'LeftShoulder', Weight: 0.287260 + Group: 'RightShoulder', Weight: 0.018798 + Group: 'LeftArm', Weight: 0.000000 +Vertex 295: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.075772 + Group: 'Neck', Weight: 0.535078 + Group: 'LeftShoulder', Weight: 0.348491 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 296: +Vertex groups: 4 + Group: 'Neck', Weight: 0.831220 + Group: 'LeftShoulder', Weight: 0.120737 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 297: +Vertex groups: 5 + Group: 'Neck', Weight: 0.876454 + Group: 'LeftShoulder', Weight: 0.037669 + Group: 'RightShoulder', Weight: 0.038431 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 298: +Vertex groups: 4 + Group: 'Neck', Weight: 0.318938 + Group: 'Head', Weight: 0.947844 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 299: +Vertex groups: 4 + Group: 'Neck', Weight: 0.236711 + Group: 'Head', Weight: 0.998376 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 300: +Vertex groups: 3 + Group: 'Neck', Weight: 0.030044 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 301: +Vertex groups: 4 + Group: 'Neck', Weight: 0.429526 + Group: 'Head', Weight: 0.907851 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 302: +Vertex groups: 4 + Group: 'Neck', Weight: 0.442041 + Group: 'Head', Weight: 0.872402 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 303: +Vertex groups: 4 + Group: 'Neck', Weight: 0.421811 + Group: 'Head', Weight: 0.919690 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 304: +Vertex groups: 4 + Group: 'Neck', Weight: 0.209107 + Group: 'Head', Weight: 0.999630 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 305: +Vertex groups: 4 + Group: 'Neck', Weight: 0.088200 + Group: 'Head', Weight: 0.997429 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 306: +Vertex groups: 3 + Group: 'Neck', Weight: 0.145251 + Group: 'Head', Weight: 0.977774 + Group: 'LeftArm', Weight: 0.000000 +Vertex 307: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999967 + Group: 'LeftArm', Weight: 0.000000 +Vertex 308: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 309: +Vertex groups: 3 + Group: 'Neck', Weight: 0.020501 + Group: 'Head', Weight: 0.977027 + Group: 'LeftArm', Weight: 0.000000 +Vertex 310: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'LeftArm', Weight: 0.000000 +Vertex 311: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 + Group: 'LeftArm', Weight: 0.000000 +Vertex 312: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 313: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999963 + Group: 'LeftArm', Weight: 0.000000 +Vertex 314: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 315: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 316: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 317: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 318: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 319: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998127 + Group: 'LeftArm', Weight: 0.000000 +Vertex 320: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999704 +Vertex 321: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 322: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999128 +Vertex 323: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 324: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 325: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'LeftArm', Weight: 0.000000 +Vertex 326: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 327: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998175 +Vertex 328: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'LeftArm', Weight: 0.000000 +Vertex 329: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 330: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 331: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 332: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 333: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999785 +Vertex 334: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997819 +Vertex 335: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999956 + Group: 'LeftArm', Weight: 0.000000 +Vertex 336: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999983 +Vertex 337: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999957 +Vertex 338: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999670 +Vertex 339: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999686 +Vertex 340: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999980 +Vertex 341: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000134 + Group: 'Head', Weight: 0.999331 +Vertex 342: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999879 +Vertex 343: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 344: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999978 +Vertex 345: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999614 +Vertex 346: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 347: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 + Group: 'LeftArm', Weight: 0.000000 +Vertex 348: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000631 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 349: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998962 +Vertex 350: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999861 +Vertex 351: +Vertex groups: 2 + Group: 'Neck', Weight: 0.060148 + Group: 'Head', Weight: 0.999551 +Vertex 352: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 353: +Vertex groups: 4 + Group: 'Neck', Weight: 0.015457 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 354: +Vertex groups: 4 + Group: 'Neck', Weight: 0.085074 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 355: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000217 + Group: 'Head', Weight: 0.999967 +Vertex 356: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000985 + Group: 'Head', Weight: 1.000000 +Vertex 357: +Vertex groups: 2 + Group: 'Neck', Weight: 0.002043 + Group: 'Head', Weight: 1.000000 +Vertex 358: +Vertex groups: 2 + Group: 'Neck', Weight: 0.031534 + Group: 'Head', Weight: 1.000000 +Vertex 359: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 360: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999980 +Vertex 361: +Vertex groups: 2 + Group: 'Neck', Weight: 0.008306 + Group: 'Head', Weight: 0.997655 +Vertex 362: +Vertex groups: 2 + Group: 'Head', Weight: 0.999915 + Group: 'Neck', Weight: 0.000000 +Vertex 363: +Vertex groups: 2 + Group: 'Head', Weight: 0.999998 + Group: 'Neck', Weight: 0.000000 +Vertex 364: +Vertex groups: 2 + Group: 'Head', Weight: 0.999957 + Group: 'Neck', Weight: 0.000000 +Vertex 365: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999809 +Vertex 366: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 367: +Vertex groups: 2 + Group: 'Head', Weight: 0.999975 + Group: 'Neck', Weight: 0.000000 +Vertex 368: +Vertex groups: 2 + Group: 'Head', Weight: 0.999948 + Group: 'Neck', Weight: 0.000000 +Vertex 369: +Vertex groups: 2 + Group: 'Head', Weight: 0.999889 + Group: 'Neck', Weight: 0.000000 +Vertex 370: +Vertex groups: 3 + Group: 'Neck', Weight: 0.007561 + Group: 'Head', Weight: 0.999352 + Group: 'LeftArm', Weight: 0.000000 +Vertex 371: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 372: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999987 + Group: 'LeftArm', Weight: 0.000000 +Vertex 373: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000126 + Group: 'Head', Weight: 0.996979 + Group: 'LeftArm', Weight: 0.000000 +Vertex 374: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.987343 + Group: 'LeftArm', Weight: 0.000000 +Vertex 375: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.976242 +Vertex 376: +Vertex groups: 2 + Group: 'Neck', Weight: 0.002377 + Group: 'Head', Weight: 0.949446 +Vertex 377: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000519 + Group: 'Head', Weight: 0.968591 +Vertex 378: +Vertex groups: 4 + Group: 'Neck', Weight: 0.191046 + Group: 'Head', Weight: 0.986710 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 379: +Vertex groups: 3 + Group: 'Neck', Weight: 0.038636 + Group: 'Head', Weight: 0.977432 + Group: 'LeftArm', Weight: 0.000000 +Vertex 380: +Vertex groups: 3 + Group: 'Neck', Weight: 0.040751 + Group: 'Head', Weight: 0.980922 + Group: 'LeftArm', Weight: 0.000000 +Vertex 381: +Vertex groups: 3 + Group: 'Neck', Weight: 0.024422 + Group: 'Head', Weight: 0.991833 + Group: 'LeftArm', Weight: 0.000000 +Vertex 382: +Vertex groups: 3 + Group: 'Neck', Weight: 0.040552 + Group: 'Head', Weight: 0.999474 + Group: 'LeftArm', Weight: 0.000000 +Vertex 383: +Vertex groups: 3 + Group: 'Neck', Weight: 0.026708 + Group: 'Head', Weight: 0.999655 + Group: 'LeftArm', Weight: 0.000000 +Vertex 384: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992627 + Group: 'LeftArm', Weight: 0.000000 +Vertex 385: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998411 +Vertex 386: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999744 +Vertex 387: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999837 +Vertex 388: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 389: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999754 +Vertex 390: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999132 +Vertex 391: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998734 +Vertex 392: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998957 +Vertex 393: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999919 +Vertex 394: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999903 +Vertex 395: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999944 +Vertex 396: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999917 +Vertex 397: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999249 +Vertex 398: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 399: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999972 +Vertex 400: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999339 +Vertex 401: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998445 +Vertex 402: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998541 +Vertex 403: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999638 +Vertex 404: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999807 +Vertex 405: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999679 +Vertex 406: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999009 +Vertex 407: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999668 +Vertex 408: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999975 +Vertex 409: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999977 +Vertex 410: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999912 +Vertex 411: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999940 +Vertex 412: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999808 +Vertex 413: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 414: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999837 +Vertex 415: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999772 +Vertex 416: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999909 +Vertex 417: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999867 +Vertex 418: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999940 +Vertex 419: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999632 +Vertex 420: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999377 +Vertex 421: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998941 +Vertex 422: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998453 +Vertex 423: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998998 +Vertex 424: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999480 +Vertex 425: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996443 + Group: 'LeftArm', Weight: 0.000000 +Vertex 426: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999945 +Vertex 427: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998453 +Vertex 428: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999959 +Vertex 429: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999935 +Vertex 430: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999881 +Vertex 431: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 432: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999829 +Vertex 433: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998558 +Vertex 434: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998011 +Vertex 435: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.982413 +Vertex 436: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986508 +Vertex 437: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.965945 +Vertex 438: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.971741 +Vertex 439: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999893 +Vertex 440: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 441: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999566 +Vertex 442: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988788 +Vertex 443: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992100 +Vertex 444: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999531 +Vertex 445: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999691 +Vertex 446: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.980315 +Vertex 447: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999965 +Vertex 448: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991989 +Vertex 449: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.977901 +Vertex 450: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.966699 +Vertex 451: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995336 +Vertex 452: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999790 +Vertex 453: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999928 +Vertex 454: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999069 +Vertex 455: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999822 +Vertex 456: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 457: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 458: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999144 +Vertex 459: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988600 +Vertex 460: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998949 +Vertex 461: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999873 +Vertex 462: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999807 +Vertex 463: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999466 +Vertex 464: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997851 +Vertex 465: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 466: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995810 +Vertex 467: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994675 +Vertex 468: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989603 +Vertex 469: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986421 +Vertex 470: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986595 +Vertex 471: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988430 +Vertex 472: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991375 +Vertex 473: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.993594 +Vertex 474: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992844 +Vertex 475: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991262 +Vertex 476: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995766 +Vertex 477: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994807 +Vertex 478: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998765 +Vertex 479: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998846 +Vertex 480: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992168 +Vertex 481: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988155 +Vertex 482: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.985239 +Vertex 483: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.982514 +Vertex 484: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.980128 +Vertex 485: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.983307 +Vertex 486: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.973470 +Vertex 487: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.970268 +Vertex 488: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.972404 +Vertex 489: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994529 +Vertex 490: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999236 +Vertex 491: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 492: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999987 +Vertex 493: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999984 +Vertex 494: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 495: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.977784 +Vertex 496: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.979666 +Vertex 497: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.982541 +Vertex 498: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.977794 +Vertex 499: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.976286 +Vertex 500: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994396 +Vertex 501: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998861 +Vertex 502: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 503: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 504: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991914 +Vertex 505: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989981 +Vertex 506: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988894 +Vertex 507: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989206 +Vertex 508: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989375 +Vertex 509: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.990466 +Vertex 510: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991619 +Vertex 511: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.990743 +Vertex 512: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988729 +Vertex 513: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992327 +Vertex 514: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991907 +Vertex 515: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995687 +Vertex 516: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.987235 +Vertex 517: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.987154 +Vertex 518: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991132 +Vertex 519: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.983148 +Vertex 520: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.984425 +Vertex 521: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986856 +Vertex 522: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994461 +Vertex 523: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997511 +Vertex 524: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999179 +Vertex 525: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999960 +Vertex 526: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999951 +Vertex 527: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999907 +Vertex 528: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 529: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 530: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999800 +Vertex 531: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998350 +Vertex 532: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 533: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992906 +Vertex 534: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.993229 +Vertex 535: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992583 +Vertex 536: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999495 +Vertex 537: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992424 +Vertex 538: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 539: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999899 +Vertex 540: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 541: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999771 +Vertex 542: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 543: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999881 +Vertex 544: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 545: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999674 +Vertex 546: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999989 +Vertex 547: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999985 +Vertex 548: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 549: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 550: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 551: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 552: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 553: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999982 +Vertex 554: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999995 +Vertex 555: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 556: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 557: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 558: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 559: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999993 +Vertex 560: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 561: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 562: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 563: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 564: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999995 +Vertex 565: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 566: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 567: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999968 +Vertex 568: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999983 +Vertex 569: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 570: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 571: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 572: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 573: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 574: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 575: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 576: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 577: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 578: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999993 +Vertex 579: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999993 +Vertex 580: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999992 +Vertex 581: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 582: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 583: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995421 +Vertex 584: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999000 +Vertex 585: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996968 +Vertex 586: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995744 +Vertex 587: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999640 +Vertex 588: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 589: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 590: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999958 +Vertex 591: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 592: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 593: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 594: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 595: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 596: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 597: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 598: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 599: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 600: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999983 +Vertex 601: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 602: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 603: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 604: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 605: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 606: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 607: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 608: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 609: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 610: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999988 +Vertex 611: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 612: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 613: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 614: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 615: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 616: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 617: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 618: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 619: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999933 +Vertex 620: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 621: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 622: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 623: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 624: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 625: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 626: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 627: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999823 +Vertex 628: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994517 +Vertex 629: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999332 +Vertex 630: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999687 +Vertex 631: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996262 +Vertex 632: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999886 +Vertex 633: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.993685 +Vertex 634: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997056 +Vertex 635: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996367 +Vertex 636: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999876 +Vertex 637: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999638 +Vertex 638: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999499 +Vertex 639: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999944 + Group: 'LeftArm', Weight: 0.000000 +Vertex 640: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998895 +Vertex 641: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999813 + Group: 'LeftArm', Weight: 0.000000 +Vertex 642: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999085 + Group: 'LeftArm', Weight: 0.000000 +Vertex 643: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 644: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 + Group: 'LeftArm', Weight: 0.000000 +Vertex 645: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999992 + Group: 'LeftArm', Weight: 0.000000 +Vertex 646: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998500 + Group: 'LeftArm', Weight: 0.000000 +Vertex 647: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999213 +Vertex 648: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999943 +Vertex 649: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 650: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999965 +Vertex 651: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 652: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999900 +Vertex 653: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 654: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999840 +Vertex 655: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 656: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999989 +Vertex 657: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 658: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 659: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999967 +Vertex 660: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999412 +Vertex 661: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999915 +Vertex 662: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 663: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 664: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999462 +Vertex 665: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999484 +Vertex 666: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999952 +Vertex 667: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 668: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 669: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999644 +Vertex 670: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999976 +Vertex 671: +Vertex groups: 2 + Group: 'Head', Weight: 0.999967 + Group: 'Neck', Weight: 0.000000 +Vertex 672: +Vertex groups: 2 + Group: 'Head', Weight: 0.999747 + Group: 'Neck', Weight: 0.000000 +Vertex 673: +Vertex groups: 2 + Group: 'Head', Weight: 0.997843 + Group: 'Neck', Weight: 0.000000 +Vertex 674: +Vertex groups: 2 + Group: 'Head', Weight: 0.999998 + Group: 'Neck', Weight: 0.000000 +Vertex 675: +Vertex groups: 2 + Group: 'Head', Weight: 0.999980 + Group: 'Neck', Weight: 0.000000 +Vertex 676: +Vertex groups: 2 + Group: 'Head', Weight: 0.999616 + Group: 'Neck', Weight: 0.000000 +Vertex 677: +Vertex groups: 2 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 678: +Vertex groups: 2 + Group: 'Head', Weight: 0.999998 + Group: 'Neck', Weight: 0.000000 +Vertex 679: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999980 +Vertex 680: +Vertex groups: 4 + Group: 'Neck', Weight: 0.089311 + Group: 'Head', Weight: 1.000000 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 681: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 682: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000265 + Group: 'Head', Weight: 1.000000 +Vertex 683: +Vertex groups: 4 + Group: 'Neck', Weight: 0.188486 + Group: 'Head', Weight: 0.999820 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 684: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999973 +Vertex 685: +Vertex groups: 2 + Group: 'Head', Weight: 0.999983 + Group: 'Neck', Weight: 0.000000 +Vertex 686: +Vertex groups: 2 + Group: 'Head', Weight: 0.999985 + Group: 'Neck', Weight: 0.000000 +Vertex 687: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999984 +Vertex 688: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999995 +Vertex 689: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 690: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 691: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 692: +Vertex groups: 2 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 693: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 694: +Vertex groups: 4 + Group: 'Neck', Weight: 0.704295 + Group: 'LeftShoulder', Weight: 0.252211 + Group: 'LeftArm', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 695: +Vertex groups: 2 + Group: 'Neck', Weight: 0.059627 + Group: 'Head', Weight: 0.999999 +Vertex 696: +Vertex groups: 5 + Group: 'Neck', Weight: 0.498065 + Group: 'LeftShoulder', Weight: 0.338647 + Group: 'Spine2', Weight: 0.103414 + Group: 'RightShoulder', Weight: 0.059875 + Group: 'LeftArm', Weight: 0.000000 +Vertex 697: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.209078 + Group: 'LeftArm', Weight: 0.654087 +Vertex 698: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.200224 + Group: 'LeftArm', Weight: 0.685966 +Vertex 699: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.325447 + Group: 'LeftArm', Weight: 0.589709 +Vertex 700: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.230513 + Group: 'LeftArm', Weight: 0.640321 +Vertex 701: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.198141 + Group: 'LeftArm', Weight: 0.790172 +Vertex 702: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.250937 + Group: 'LeftArm', Weight: 0.736414 +Vertex 703: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.353417 + Group: 'LeftArm', Weight: 0.622032 +Vertex 704: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.161923 + Group: 'LeftArm', Weight: 0.803502 +Vertex 705: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.099625 + Group: 'LeftArm', Weight: 0.882436 +Vertex 706: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.073872 + Group: 'LeftArm', Weight: 0.913428 +Vertex 707: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.061462 + Group: 'LeftArm', Weight: 0.932440 +Vertex 708: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.072817 + Group: 'LeftArm', Weight: 0.923277 +Vertex 709: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.118510 + Group: 'LeftArm', Weight: 0.872797 +Vertex 710: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.228204 + Group: 'LeftArm', Weight: 0.750197 +Vertex 711: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.109767 + Group: 'Spine2', Weight: 0.119504 + Group: 'LeftShoulder', Weight: 0.551234 + Group: 'LeftArm', Weight: 0.074552 +Vertex 712: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050706 + Group: 'Spine2', Weight: 0.058659 + Group: 'LeftShoulder', Weight: 0.698293 + Group: 'LeftArm', Weight: 0.000000 +Vertex 713: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.009136 + Group: 'LeftShoulder', Weight: 0.794017 + Group: 'LeftArm', Weight: 0.000403 +Vertex 714: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.078177 + Group: 'Spine2', Weight: 0.078215 + Group: 'LeftShoulder', Weight: 0.611950 + Group: 'LeftArm', Weight: 0.040811 +Vertex 715: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.117262 + Group: 'Spine2', Weight: 0.135327 + Group: 'LeftShoulder', Weight: 0.530833 + Group: 'LeftArm', Weight: 0.107834 +Vertex 716: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.833024 + Group: 'LeftArm', Weight: 0.005830 +Vertex 717: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.849466 + Group: 'LeftArm', Weight: 0.004439 +Vertex 718: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.856443 + Group: 'LeftArm', Weight: 0.019335 +Vertex 719: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.849989 + Group: 'LeftArm', Weight: 0.004225 +Vertex 720: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.048586 + Group: 'LeftShoulder', Weight: 0.787953 + Group: 'LeftArm', Weight: 0.000283 +Vertex 721: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.017831 + Group: 'Spine2', Weight: 0.062432 + Group: 'LeftShoulder', Weight: 0.656618 + Group: 'LeftArm', Weight: 0.189400 +Vertex 722: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.062547 + Group: 'Spine2', Weight: 0.092333 + Group: 'LeftShoulder', Weight: 0.589719 + Group: 'LeftArm', Weight: 0.193651 +Vertex 723: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.105513 + Group: 'Spine2', Weight: 0.126296 + Group: 'LeftShoulder', Weight: 0.511128 + Group: 'LeftArm', Weight: 0.185781 +Vertex 724: +Vertex groups: 5 + Group: 'Hips', Weight: 0.420212 + Group: 'Spine', Weight: 0.379145 + Group: 'Spine1', Weight: 0.065791 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 725: +Vertex groups: 5 + Group: 'Hips', Weight: 0.385205 + Group: 'Spine', Weight: 0.392955 + Group: 'Spine1', Weight: 0.067913 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 726: +Vertex groups: 5 + Group: 'Hips', Weight: 0.286756 + Group: 'Spine', Weight: 0.426134 + Group: 'Spine1', Weight: 0.069536 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 727: +Vertex groups: 5 + Group: 'Hips', Weight: 0.156800 + Group: 'Spine', Weight: 0.484187 + Group: 'Spine1', Weight: 0.084966 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 728: +Vertex groups: 5 + Group: 'Hips', Weight: 0.080279 + Group: 'Spine', Weight: 0.523244 + Group: 'Spine1', Weight: 0.107432 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 729: +Vertex groups: 5 + Group: 'Hips', Weight: 0.040030 + Group: 'Spine', Weight: 0.554675 + Group: 'Spine1', Weight: 0.123644 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 730: +Vertex groups: 5 + Group: 'Hips', Weight: 0.002445 + Group: 'Spine', Weight: 0.596935 + Group: 'Spine1', Weight: 0.126416 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 731: +Vertex groups: 4 + Group: 'Spine', Weight: 0.664472 + Group: 'Spine1', Weight: 0.125372 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 732: +Vertex groups: 4 + Group: 'Spine', Weight: 0.832030 + Group: 'Spine1', Weight: 0.081708 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 733: +Vertex groups: 4 + Group: 'Spine', Weight: 0.784230 + Group: 'Spine1', Weight: 0.109110 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 734: +Vertex groups: 4 + Group: 'Spine', Weight: 0.728522 + Group: 'Spine1', Weight: 0.121700 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 735: +Vertex groups: 5 + Group: 'Hips', Weight: 0.526421 + Group: 'Spine', Weight: 0.236660 + Group: 'Spine1', Weight: 0.030899 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 736: +Vertex groups: 5 + Group: 'Hips', Weight: 0.377137 + Group: 'Spine', Weight: 0.282237 + Group: 'Spine1', Weight: 0.043338 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 737: +Vertex groups: 5 + Group: 'Hips', Weight: 0.180741 + Group: 'Spine', Weight: 0.363536 + Group: 'Spine1', Weight: 0.061053 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 738: +Vertex groups: 5 + Group: 'Hips', Weight: 0.080777 + Group: 'Spine', Weight: 0.450207 + Group: 'Spine1', Weight: 0.078579 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 739: +Vertex groups: 5 + Group: 'Hips', Weight: 0.043846 + Group: 'Spine', Weight: 0.489147 + Group: 'Spine1', Weight: 0.088246 + Group: 'LeftUpLeg', Weight: 0.000126 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 740: +Vertex groups: 5 + Group: 'Hips', Weight: 0.005170 + Group: 'Spine', Weight: 0.539392 + Group: 'Spine1', Weight: 0.085957 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 741: +Vertex groups: 5 + Group: 'Hips', Weight: 0.018977 + Group: 'Spine', Weight: 0.778345 + Group: 'Spine1', Weight: 0.065580 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 742: +Vertex groups: 5 + Group: 'Hips', Weight: 0.020636 + Group: 'Spine', Weight: 0.815579 + Group: 'Spine1', Weight: 0.054206 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 743: +Vertex groups: 5 + Group: 'Hips', Weight: 0.009271 + Group: 'Spine', Weight: 0.703939 + Group: 'Spine1', Weight: 0.076242 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 744: +Vertex groups: 5 + Group: 'Hips', Weight: 0.002074 + Group: 'Spine', Weight: 0.630332 + Group: 'Spine1', Weight: 0.084295 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 745: +Vertex groups: 5 + Group: 'Hips', Weight: 0.563781 + Group: 'Spine', Weight: 0.230651 + Group: 'Spine1', Weight: 0.029435 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 746: +Vertex groups: 5 + Group: 'Bone', Weight: 0.494784 + Group: 'Hips', Weight: 0.208943 + Group: 'Bone2', Weight: 0.178449 + Group: 'LeftUpLeg', Weight: 0.077164 + Group: 'Bone.001', Weight: 0.040661 +Vertex 747: +Vertex groups: 5 + Group: 'Bone', Weight: 0.560833 + Group: 'Bone2', Weight: 0.208283 + Group: 'Hips', Weight: 0.153379 + Group: 'Bone.001', Weight: 0.046101 + Group: 'LeftUpLeg', Weight: 0.031404 +Vertex 748: +Vertex groups: 5 + Group: 'Bone', Weight: 0.489351 + Group: 'LeftUpLeg', Weight: 0.254657 + Group: 'Bone2', Weight: 0.172480 + Group: 'Hips', Weight: 0.043540 + Group: 'Bone.001', Weight: 0.039972 +Vertex 749: +Vertex groups: 5 + Group: 'Bone', Weight: 0.431204 + Group: 'LeftUpLeg', Weight: 0.362023 + Group: 'Bone2', Weight: 0.141367 + Group: 'Bone.001', Weight: 0.033063 + Group: 'Hips', Weight: 0.032343 +Vertex 750: +Vertex groups: 5 + Group: 'Bone', Weight: 0.998914 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone.001', Weight: 0.077910 + Group: 'LeftUpLeg', Weight: 0.959246 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 751: +Vertex groups: 5 + Group: 'Bone', Weight: 0.413190 + Group: 'LeftUpLeg', Weight: 0.385152 + Group: 'Bone2', Weight: 0.157240 + Group: 'Bone.001', Weight: 0.032206 + Group: 'Hips', Weight: 0.012212 +Vertex 752: +Vertex groups: 4 + Group: 'Bone', Weight: 0.999188 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone.001', Weight: 0.079305 + Group: 'LeftUpLeg', Weight: 0.979637 +Vertex 753: +Vertex groups: 4 + Group: 'Bone', Weight: 0.999388 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone.001', Weight: 0.082166 + Group: 'LeftUpLeg', Weight: 0.990267 +Vertex 754: +Vertex groups: 5 + Group: 'Bone', Weight: 0.999485 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone.001', Weight: 0.082155 + Group: 'LeftUpLeg', Weight: 0.990188 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 755: +Vertex groups: 5 + Group: 'Bone', Weight: 0.999546 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone.001', Weight: 0.081629 + Group: 'LeftUpLeg', Weight: 0.986310 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 756: +Vertex groups: 5 + Group: 'Bone', Weight: 0.999603 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone.001', Weight: 0.076639 + Group: 'LeftUpLeg', Weight: 0.973835 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 757: +Vertex groups: 5 + Group: 'Bone', Weight: 0.424780 + Group: 'LeftUpLeg', Weight: 0.408744 + Group: 'Bone2', Weight: 0.132972 + Group: 'Bone.001', Weight: 0.031186 + Group: 'Hips', Weight: 0.002318 +Vertex 758: +Vertex groups: 5 + Group: 'Bone', Weight: 0.423594 + Group: 'LeftUpLeg', Weight: 0.394893 + Group: 'Bone2', Weight: 0.129702 + Group: 'Bone.001', Weight: 0.030459 + Group: 'Hips', Weight: 0.021352 +Vertex 759: +Vertex groups: 5 + Group: 'Bone', Weight: 0.461724 + Group: 'Bone2', Weight: 0.173156 + Group: 'LeftUpLeg', Weight: 0.171900 + Group: 'Hips', Weight: 0.156584 + Group: 'Bone.001', Weight: 0.036636 +Vertex 760: +Vertex groups: 5 + Group: 'Bone', Weight: 0.444237 + Group: 'LeftUpLeg', Weight: 0.250621 + Group: 'Bone2', Weight: 0.167907 + Group: 'Hips', Weight: 0.102610 + Group: 'Bone.001', Weight: 0.034625 +Vertex 761: +Vertex groups: 5 + Group: 'Bone', Weight: 0.429844 + Group: 'LeftUpLeg', Weight: 0.304311 + Group: 'Bone2', Weight: 0.131579 + Group: 'Hips', Weight: 0.103366 + Group: 'Bone.001', Weight: 0.030900 +Vertex 762: +Vertex groups: 5 + Group: 'Bone', Weight: 0.426452 + Group: 'LeftUpLeg', Weight: 0.362467 + Group: 'Bone2', Weight: 0.133456 + Group: 'Hips', Weight: 0.046327 + Group: 'Bone.001', Weight: 0.031299 +Vertex 763: +Vertex groups: 5 + Group: 'Bone', Weight: 0.423605 + Group: 'LeftUpLeg', Weight: 0.380370 + Group: 'Bone2', Weight: 0.138819 + Group: 'Bone.001', Weight: 0.032467 + Group: 'Hips', Weight: 0.024739 +Vertex 764: +Vertex groups: 5 + Group: 'Bone', Weight: 0.420942 + Group: 'LeftUpLeg', Weight: 0.390400 + Group: 'Bone2', Weight: 0.148277 + Group: 'Bone.001', Weight: 0.034363 + Group: 'Hips', Weight: 0.006017 +Vertex 765: +Vertex groups: 5 + Group: 'Bone', Weight: 0.413478 + Group: 'LeftUpLeg', Weight: 0.391477 + Group: 'Bone2', Weight: 0.153506 + Group: 'Bone.001', Weight: 0.033977 + Group: 'Spine', Weight: 0.007562 +Vertex 766: +Vertex groups: 5 + Group: 'Bone', Weight: 0.414502 + Group: 'LeftUpLeg', Weight: 0.381285 + Group: 'Bone2', Weight: 0.155385 + Group: 'Bone.001', Weight: 0.032876 + Group: 'Spine', Weight: 0.015951 +Vertex 767: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'LeftLeg', Weight: 0.987070 +Vertex 768: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftLeg', Weight: 0.987759 +Vertex 769: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.990162 +Vertex 770: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.993221 +Vertex 771: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.995676 +Vertex 772: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.996089 +Vertex 773: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.996513 +Vertex 774: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.087994 + Group: 'LeftLeg', Weight: 0.993907 +Vertex 775: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.994883 +Vertex 776: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999975 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.987831 +Vertex 777: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.989769 +Vertex 778: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.990446 +Vertex 779: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.991466 +Vertex 780: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.992578 +Vertex 781: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.993162 +Vertex 782: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.995845 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.992284 +Vertex 783: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.995752 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.990343 +Vertex 784: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.996496 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.990696 +Vertex 785: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.997502 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.991804 +Vertex 786: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.998383 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.992530 +Vertex 787: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999112 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.994005 +Vertex 788: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.996907 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.994898 +Vertex 789: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.996395 + Group: 'Bone.001', Weight: 0.087994 + Group: 'LeftLeg', Weight: 0.993887 +Vertex 790: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.997675 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.996137 +Vertex 791: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.998713 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.998155 +Vertex 792: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999246 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.998374 +Vertex 793: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999542 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.997985 +Vertex 794: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999791 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.997030 +Vertex 795: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999812 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftLeg', Weight: 0.996162 +Vertex 796: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999692 + Group: 'Bone.001', Weight: 0.130631 + Group: 'LeftLeg', Weight: 0.995290 +Vertex 797: +Vertex groups: 5 + Group: 'Bone', Weight: 0.422982 + Group: 'LeftUpLeg', Weight: 0.335587 + Group: 'Bone2', Weight: 0.160791 + Group: 'Hips', Weight: 0.047706 + Group: 'Bone.001', Weight: 0.032934 +Vertex 798: +Vertex groups: 5 + Group: 'Bone', Weight: 0.420152 + Group: 'LeftUpLeg', Weight: 0.365836 + Group: 'Bone2', Weight: 0.158770 + Group: 'Bone.001', Weight: 0.032741 + Group: 'Hips', Weight: 0.022501 +Vertex 799: +Vertex groups: 5 + Group: 'Bone', Weight: 0.439528 + Group: 'LeftUpLeg', Weight: 0.253417 + Group: 'Bone2', Weight: 0.144049 + Group: 'Hips', Weight: 0.129317 + Group: 'Bone.001', Weight: 0.033690 +Vertex 800: +Vertex groups: 5 + Group: 'Bone', Weight: 0.481611 + Group: 'Hips', Weight: 0.173540 + Group: 'Bone2', Weight: 0.169670 + Group: 'LeftUpLeg', Weight: 0.135858 + Group: 'Bone.001', Weight: 0.039321 +Vertex 801: +Vertex groups: 5 + Group: 'Bone', Weight: 0.414459 + Group: 'LeftUpLeg', Weight: 0.368966 + Group: 'Bone2', Weight: 0.156852 + Group: 'Bone.001', Weight: 0.032345 + Group: 'Hips', Weight: 0.027378 +Vertex 802: +Vertex groups: 5 + Group: 'Bone', Weight: 0.427805 + Group: 'LeftUpLeg', Weight: 0.338291 + Group: 'Bone2', Weight: 0.160648 + Group: 'Hips', Weight: 0.039266 + Group: 'Bone.001', Weight: 0.033990 +Vertex 803: +Vertex groups: 5 + Group: 'Bone', Weight: 0.443642 + Group: 'LeftUpLeg', Weight: 0.319028 + Group: 'Bone2', Weight: 0.164936 + Group: 'Bone.001', Weight: 0.036507 + Group: 'Hips', Weight: 0.035888 +Vertex 804: +Vertex groups: 5 + Group: 'Bone', Weight: 0.507879 + Group: 'LeftUpLeg', Weight: 0.221298 + Group: 'Bone2', Weight: 0.183305 + Group: 'Hips', Weight: 0.045751 + Group: 'Bone.001', Weight: 0.041767 +Vertex 805: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.282869 + Group: 'Bone', Weight: 0.262095 + Group: 'Bone1', Weight: 0.160702 + Group: 'Bone2', Weight: 0.154834 + Group: 'LeftLeg', Weight: 0.139500 +Vertex 806: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.284559 + Group: 'Bone', Weight: 0.254956 + Group: 'Bone1', Weight: 0.167621 + Group: 'Bone2', Weight: 0.155146 + Group: 'LeftLeg', Weight: 0.137719 +Vertex 807: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.324946 + Group: 'LeftLeg', Weight: 0.297416 + Group: 'Bone2', Weight: 0.162703 + Group: 'LeftUpLeg', Weight: 0.121138 + Group: 'Bone', Weight: 0.093797 +Vertex 808: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.308951 + Group: 'LeftLeg', Weight: 0.299678 + Group: 'Bone2', Weight: 0.162501 + Group: 'LeftUpLeg', Weight: 0.119001 + Group: 'Bone', Weight: 0.109868 +Vertex 809: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.336465 + Group: 'Bone', Weight: 0.332527 + Group: 'Bone2', Weight: 0.145298 + Group: 'Bone1', Weight: 0.092989 + Group: 'LeftLeg', Weight: 0.092721 +Vertex 810: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.338503 + Group: 'Bone', Weight: 0.320665 + Group: 'Bone2', Weight: 0.146011 + Group: 'Bone1', Weight: 0.104059 + Group: 'LeftLeg', Weight: 0.090762 +Vertex 811: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.275365 + Group: 'Bone1', Weight: 0.221302 + Group: 'Bone', Weight: 0.200907 + Group: 'Bone2', Weight: 0.155790 + Group: 'LeftLeg', Weight: 0.146636 +Vertex 812: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.304650 + Group: 'LeftLeg', Weight: 0.281383 + Group: 'Bone2', Weight: 0.162698 + Group: 'LeftUpLeg', Weight: 0.137213 + Group: 'Bone', Weight: 0.114056 +Vertex 813: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.317960 + Group: 'Bone', Weight: 0.281449 + Group: 'Bone2', Weight: 0.148779 + Group: 'Bone1', Weight: 0.142937 + Group: 'LeftLeg', Weight: 0.108875 +Vertex 814: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.247025 + Group: 'Bone1', Weight: 0.236982 + Group: 'LeftLeg', Weight: 0.190174 + Group: 'Bone2', Weight: 0.164902 + Group: 'Bone', Weight: 0.160916 +Vertex 815: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.289420 + Group: 'LeftLeg', Weight: 0.263770 + Group: 'Bone2', Weight: 0.169694 + Group: 'LeftUpLeg', Weight: 0.169625 + Group: 'Bone', Weight: 0.107491 +Vertex 816: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.351905 + Group: 'Bone', Weight: 0.191014 + Group: 'Bone2', Weight: 0.185363 + Group: 'LeftLeg', Weight: 0.154408 + Group: 'Bone1', Weight: 0.117310 +Vertex 817: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.283159 + Group: 'LeftLeg', Weight: 0.276932 + Group: 'Bone2', Weight: 0.174392 + Group: 'LeftUpLeg', Weight: 0.167742 + Group: 'Bone', Weight: 0.097776 +Vertex 818: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.317679 + Group: 'Bone1', Weight: 0.245779 + Group: 'Bone2', Weight: 0.173133 + Group: 'LeftLeg', Weight: 0.137082 + Group: 'Bone', Weight: 0.126327 +Vertex 819: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.379070 + Group: 'Bone2', Weight: 0.211759 + Group: 'LeftLeg', Weight: 0.174186 + Group: 'Bone', Weight: 0.161648 + Group: 'Bone1', Weight: 0.073337 +Vertex 820: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.366868 + Group: 'Bone2', Weight: 0.208213 + Group: 'LeftLeg', Weight: 0.166830 + Group: 'Bone', Weight: 0.164308 + Group: 'Bone1', Weight: 0.093782 +Vertex 821: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.354467 + Group: 'Bone2', Weight: 0.212804 + Group: 'LeftLeg', Weight: 0.183017 + Group: 'Bone', Weight: 0.178228 + Group: 'Bone1', Weight: 0.071485 +Vertex 822: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.367725 + Group: 'Bone2', Weight: 0.212610 + Group: 'Bone', Weight: 0.173239 + Group: 'LeftLeg', Weight: 0.172023 + Group: 'Bone1', Weight: 0.074402 +Vertex 823: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.378816 + Group: 'LeftLeg', Weight: 0.347772 + Group: 'Bone2', Weight: 0.170001 + Group: 'LeftUpLeg', Weight: 0.060683 + Group: 'Bone.001', Weight: 0.042728 +Vertex 824: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.373641 + Group: 'LeftLeg', Weight: 0.359451 + Group: 'Bone2', Weight: 0.171229 + Group: 'LeftUpLeg', Weight: 0.052830 + Group: 'Bone.001', Weight: 0.042848 +Vertex 825: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.381499 + Group: 'LeftLeg', Weight: 0.358332 + Group: 'Bone2', Weight: 0.175152 + Group: 'Bone.001', Weight: 0.045645 + Group: 'LeftUpLeg', Weight: 0.039372 +Vertex 826: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.380184 + Group: 'LeftLeg', Weight: 0.364649 + Group: 'Bone2', Weight: 0.175134 + Group: 'Bone.001', Weight: 0.045333 + Group: 'LeftUpLeg', Weight: 0.034700 +Vertex 827: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.362672 + Group: 'LeftLeg', Weight: 0.352735 + Group: 'Bone2', Weight: 0.171294 + Group: 'LeftUpLeg', Weight: 0.061588 + Group: 'Bone', Weight: 0.051712 +Vertex 828: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.376786 + Group: 'LeftLeg', Weight: 0.366968 + Group: 'Bone2', Weight: 0.174247 + Group: 'Bone.001', Weight: 0.044085 + Group: 'LeftUpLeg', Weight: 0.037914 +Vertex 829: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.341399 + Group: 'LeftLeg', Weight: 0.323995 + Group: 'Bone2', Weight: 0.171694 + Group: 'LeftUpLeg', Weight: 0.096291 + Group: 'Bone', Weight: 0.066621 +Vertex 830: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.358851 + Group: 'Bone1', Weight: 0.352085 + Group: 'Bone2', Weight: 0.177562 + Group: 'LeftUpLeg', Weight: 0.062063 + Group: 'Bone', Weight: 0.049440 +Vertex 831: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.374051 + Group: 'Bone1', Weight: 0.295200 + Group: 'Bone2', Weight: 0.187318 + Group: 'LeftUpLeg', Weight: 0.077694 + Group: 'Bone', Weight: 0.065737 +Vertex 832: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.376798 + Group: 'Bone1', Weight: 0.245696 + Group: 'Bone2', Weight: 0.200228 + Group: 'LeftUpLeg', Weight: 0.099325 + Group: 'Bone', Weight: 0.077954 +Vertex 833: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.369622 + Group: 'Bone1', Weight: 0.236144 + Group: 'Bone2', Weight: 0.199617 + Group: 'LeftUpLeg', Weight: 0.102626 + Group: 'Bone', Weight: 0.091992 +Vertex 834: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.323599 + Group: 'Bone1', Weight: 0.233997 + Group: 'Bone2', Weight: 0.198100 + Group: 'LeftUpLeg', Weight: 0.142244 + Group: 'Bone', Weight: 0.102059 +Vertex 835: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.341409 + Group: 'Bone1', Weight: 0.234342 + Group: 'Bone2', Weight: 0.199421 + Group: 'LeftUpLeg', Weight: 0.126854 + Group: 'Bone', Weight: 0.097974 +Vertex 836: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.274447 + Group: 'Bone1', Weight: 0.217309 + Group: 'Bone', Weight: 0.205020 + Group: 'Bone2', Weight: 0.155834 + Group: 'LeftLeg', Weight: 0.147390 +Vertex 837: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.317132 + Group: 'LeftLeg', Weight: 0.277540 + Group: 'Bone2', Weight: 0.162721 + Group: 'LeftUpLeg', Weight: 0.140975 + Group: 'Bone', Weight: 0.101632 +Vertex 838: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.321628 + Group: 'Bone', Weight: 0.306506 + Group: 'Bone2', Weight: 0.148444 + Group: 'Bone1', Weight: 0.119637 + Group: 'LeftLeg', Weight: 0.103786 +Vertex 839: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.248733 + Group: 'Bone1', Weight: 0.223705 + Group: 'Bone', Weight: 0.197177 + Group: 'LeftLeg', Weight: 0.171679 + Group: 'Bone2', Weight: 0.158705 +Vertex 840: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.291867 + Group: 'LeftLeg', Weight: 0.258422 + Group: 'Bone2', Weight: 0.163743 + Group: 'LeftUpLeg', Weight: 0.159557 + Group: 'Bone', Weight: 0.126410 +Vertex 841: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.282481 + Group: 'Bone', Weight: 0.262298 + Group: 'Bone1', Weight: 0.160608 + Group: 'Bone2', Weight: 0.154789 + Group: 'LeftLeg', Weight: 0.139823 +Vertex 842: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.275479 + Group: 'LeftLeg', Weight: 0.253332 + Group: 'LeftUpLeg', Weight: 0.164525 + Group: 'Bone2', Weight: 0.163973 + Group: 'Bone', Weight: 0.142691 +Vertex 843: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.236359 + Group: 'Bone1', Weight: 0.218268 + Group: 'Bone', Weight: 0.201963 + Group: 'LeftLeg', Weight: 0.183439 + Group: 'Bone2', Weight: 0.159971 +Vertex 844: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.306331 + Group: 'Bone', Weight: 0.226953 + Group: 'LeftLeg', Weight: 0.197034 + Group: 'Bone2', Weight: 0.192886 + Group: 'Bone1', Weight: 0.076795 +Vertex 845: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.321752 + Group: 'Bone2', Weight: 0.203272 + Group: 'LeftLeg', Weight: 0.198718 + Group: 'Bone', Weight: 0.192587 + Group: 'Bone1', Weight: 0.083671 +Vertex 846: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.353329 + Group: 'Bone2', Weight: 0.213412 + Group: 'LeftLeg', Weight: 0.188129 + Group: 'Bone', Weight: 0.187261 + Group: 'Bone1', Weight: 0.057869 +Vertex 847: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.369187 + Group: 'LeftLeg', Weight: 0.342587 + Group: 'Bone2', Weight: 0.171308 + Group: 'LeftUpLeg', Weight: 0.071688 + Group: 'Bone', Weight: 0.045230 +Vertex 848: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.377209 + Group: 'LeftLeg', Weight: 0.353197 + Group: 'Bone2', Weight: 0.174149 + Group: 'LeftUpLeg', Weight: 0.051386 + Group: 'Bone.001', Weight: 0.044060 +Vertex 849: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.339685 + Group: 'LeftLeg', Weight: 0.309642 + Group: 'Bone2', Weight: 0.169630 + Group: 'LeftUpLeg', Weight: 0.105441 + Group: 'Bone', Weight: 0.075603 +Vertex 850: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.343194 + Group: 'LeftLeg', Weight: 0.318892 + Group: 'Bone2', Weight: 0.174207 + Group: 'LeftUpLeg', Weight: 0.093909 + Group: 'Bone', Weight: 0.069798 +Vertex 851: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.310927 + Group: 'LeftLeg', Weight: 0.287317 + Group: 'Bone2', Weight: 0.171760 + Group: 'LeftUpLeg', Weight: 0.126683 + Group: 'Bone', Weight: 0.103314 +Vertex 852: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.299683 + Group: 'Bone1', Weight: 0.232098 + Group: 'Bone2', Weight: 0.191879 + Group: 'LeftUpLeg', Weight: 0.156297 + Group: 'Bone', Weight: 0.120043 +Vertex 853: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.290902 + Group: 'Bone1', Weight: 0.235504 + Group: 'Bone2', Weight: 0.193522 + Group: 'LeftUpLeg', Weight: 0.166644 + Group: 'Bone', Weight: 0.113428 +Vertex 854: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.307130 + Group: 'Bone1', Weight: 0.233992 + Group: 'Bone2', Weight: 0.196825 + Group: 'LeftUpLeg', Weight: 0.154892 + Group: 'Bone', Weight: 0.107161 +Vertex 855: +Vertex groups: 5 + Group: 'Bone', Weight: 0.403268 + Group: 'LeftUpLeg', Weight: 0.370627 + Group: 'Bone2', Weight: 0.154940 + Group: 'LeftLeg', Weight: 0.039214 + Group: 'Bone.001', Weight: 0.031951 +Vertex 856: +Vertex groups: 5 + Group: 'Bone', Weight: 0.402793 + Group: 'LeftUpLeg', Weight: 0.348147 + Group: 'Bone2', Weight: 0.155195 + Group: 'LeftLeg', Weight: 0.061862 + Group: 'Bone.001', Weight: 0.032003 +Vertex 857: +Vertex groups: 5 + Group: 'Bone', Weight: 0.414903 + Group: 'LeftUpLeg', Weight: 0.364738 + Group: 'Bone2', Weight: 0.136881 + Group: 'LeftLeg', Weight: 0.051465 + Group: 'Bone.001', Weight: 0.032013 +Vertex 858: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.312920 + Group: 'Bone.001', Weight: 0.073388 + Group: 'Bone', Weight: 0.994168 + Group: 'LeftUpLeg', Weight: 0.919338 + Group: 'LeftLeg', Weight: 0.078621 +Vertex 859: +Vertex groups: 5 + Group: 'Bone', Weight: 0.403063 + Group: 'LeftUpLeg', Weight: 0.332661 + Group: 'Bone2', Weight: 0.154119 + Group: 'LeftLeg', Weight: 0.077548 + Group: 'Bone.001', Weight: 0.032609 +Vertex 860: +Vertex groups: 5 + Group: 'Bone', Weight: 0.404042 + Group: 'LeftUpLeg', Weight: 0.332816 + Group: 'Bone2', Weight: 0.152487 + Group: 'LeftLeg', Weight: 0.076904 + Group: 'Bone.001', Weight: 0.033751 +Vertex 861: +Vertex groups: 5 + Group: 'Bone', Weight: 0.403916 + Group: 'LeftUpLeg', Weight: 0.377617 + Group: 'Bone2', Weight: 0.153678 + Group: 'Bone.001', Weight: 0.032515 + Group: 'LeftLeg', Weight: 0.032274 +Vertex 862: +Vertex groups: 5 + Group: 'Bone', Weight: 0.402709 + Group: 'LeftUpLeg', Weight: 0.361225 + Group: 'Bone2', Weight: 0.155832 + Group: 'LeftLeg', Weight: 0.048317 + Group: 'Bone.001', Weight: 0.031918 +Vertex 863: +Vertex groups: 5 + Group: 'Bone', Weight: 0.406748 + Group: 'LeftUpLeg', Weight: 0.334554 + Group: 'Bone2', Weight: 0.148523 + Group: 'LeftLeg', Weight: 0.076333 + Group: 'Bone.001', Weight: 0.033842 +Vertex 864: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.306079 + Group: 'Bone.001', Weight: 0.071880 + Group: 'Bone', Weight: 0.994634 + Group: 'LeftUpLeg', Weight: 0.903610 + Group: 'LeftLeg', Weight: 0.092910 +Vertex 865: +Vertex groups: 5 + Group: 'Bone', Weight: 0.409076 + Group: 'LeftUpLeg', Weight: 0.345747 + Group: 'Bone2', Weight: 0.145448 + Group: 'LeftLeg', Weight: 0.066021 + Group: 'Bone.001', Weight: 0.033708 +Vertex 866: +Vertex groups: 5 + Group: 'Bone', Weight: 0.404595 + Group: 'LeftUpLeg', Weight: 0.378028 + Group: 'Bone2', Weight: 0.152091 + Group: 'Bone.001', Weight: 0.033664 + Group: 'LeftLeg', Weight: 0.031621 +Vertex 867: +Vertex groups: 5 + Group: 'Bone', Weight: 0.406783 + Group: 'LeftUpLeg', Weight: 0.377111 + Group: 'Bone2', Weight: 0.148281 + Group: 'LeftLeg', Weight: 0.034039 + Group: 'Bone.001', Weight: 0.033787 +Vertex 868: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone', Weight: 0.992900 + Group: 'LeftUpLeg', Weight: 0.920032 + Group: 'LeftLeg', Weight: 0.078772 +Vertex 869: +Vertex groups: 5 + Group: 'Bone', Weight: 0.408701 + Group: 'LeftUpLeg', Weight: 0.375406 + Group: 'Bone2', Weight: 0.145303 + Group: 'LeftLeg', Weight: 0.036915 + Group: 'Bone.001', Weight: 0.033674 +Vertex 870: +Vertex groups: 5 + Group: 'Bone', Weight: 0.408198 + Group: 'LeftUpLeg', Weight: 0.395136 + Group: 'Bone2', Weight: 0.155867 + Group: 'Bone.001', Weight: 0.032142 + Group: 'LeftLeg', Weight: 0.008657 +Vertex 871: +Vertex groups: 5 + Group: 'Bone', Weight: 0.418892 + Group: 'LeftUpLeg', Weight: 0.400320 + Group: 'Bone2', Weight: 0.137762 + Group: 'Bone.001', Weight: 0.032220 + Group: 'LeftLeg', Weight: 0.010806 +Vertex 872: +Vertex groups: 5 + Group: 'Bone', Weight: 0.991063 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'LeftUpLeg', Weight: 0.937774 + Group: 'LeftLeg', Weight: 0.053763 +Vertex 873: +Vertex groups: 4 + Group: 'Bone', Weight: 0.992172 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone2', Weight: 0.374821 + Group: 'LeftUpLeg', Weight: 0.985605 +Vertex 874: +Vertex groups: 4 + Group: 'Bone', Weight: 0.994309 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'LeftUpLeg', Weight: 0.985460 +Vertex 875: +Vertex groups: 4 + Group: 'Bone', Weight: 0.995136 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone2', Weight: 0.352227 + Group: 'LeftUpLeg', Weight: 0.981349 +Vertex 876: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.077910 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone', Weight: 0.991126 + Group: 'LeftUpLeg', Weight: 0.979876 +Vertex 877: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.073388 + Group: 'Bone2', Weight: 0.312920 + Group: 'Bone', Weight: 0.996896 + Group: 'LeftUpLeg', Weight: 0.972213 +Vertex 878: +Vertex groups: 5 + Group: 'Bone', Weight: 0.406521 + Group: 'LeftUpLeg', Weight: 0.387691 + Group: 'Bone2', Weight: 0.154036 + Group: 'Bone.001', Weight: 0.032591 + Group: 'LeftLeg', Weight: 0.019162 +Vertex 879: +Vertex groups: 5 + Group: 'Bone', Weight: 0.409339 + Group: 'LeftUpLeg', Weight: 0.400772 + Group: 'Bone2', Weight: 0.157075 + Group: 'Bone.001', Weight: 0.032172 + Group: 'LeftLeg', Weight: 0.000642 +Vertex 880: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone', Weight: 0.993213 + Group: 'LeftUpLeg', Weight: 0.938841 + Group: 'LeftLeg', Weight: 0.051711 +Vertex 881: +Vertex groups: 5 + Group: 'Bone', Weight: 0.424909 + Group: 'LeftUpLeg', Weight: 0.409959 + Group: 'Bone2', Weight: 0.130430 + Group: 'Bone.001', Weight: 0.030630 + Group: 'LeftLeg', Weight: 0.004072 +Vertex 882: +Vertex groups: 5 + Group: 'Bone', Weight: 0.411725 + Group: 'LeftUpLeg', Weight: 0.390083 + Group: 'Bone2', Weight: 0.145752 + Group: 'Bone.001', Weight: 0.033778 + Group: 'LeftLeg', Weight: 0.018661 +Vertex 883: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone', Weight: 0.993457 + Group: 'LeftUpLeg', Weight: 0.987930 +Vertex 884: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone', Weight: 0.996252 + Group: 'LeftUpLeg', Weight: 0.976297 +Vertex 885: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.993311 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftLeg', Weight: 0.986326 +Vertex 886: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.386471 + Group: 'LeftLeg', Weight: 0.374624 + Group: 'Bone2', Weight: 0.176721 + Group: 'Bone.001', Weight: 0.035599 + Group: 'LeftUpLeg', Weight: 0.026585 +Vertex 887: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.389740 + Group: 'LeftLeg', Weight: 0.384481 + Group: 'Bone2', Weight: 0.174519 + Group: 'Bone.001', Weight: 0.042594 + Group: 'LeftUpLeg', Weight: 0.008666 +Vertex 888: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.394918 + Group: 'Bone1', Weight: 0.378207 + Group: 'Bone2', Weight: 0.179205 + Group: 'Bone.001', Weight: 0.037098 + Group: 'Bone', Weight: 0.010572 +Vertex 889: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.993703 + Group: 'Bone2', Weight: 0.467316 + Group: 'LeftLeg', Weight: 0.979523 +Vertex 890: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.385542 + Group: 'LeftLeg', Weight: 0.370176 + Group: 'Bone2', Weight: 0.176241 + Group: 'Bone.001', Weight: 0.036485 + Group: 'LeftUpLeg', Weight: 0.031557 +Vertex 891: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.987236 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftUpLeg', Weight: 0.008378 + Group: 'LeftLeg', Weight: 0.970491 +Vertex 892: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.386461 + Group: 'LeftLeg', Weight: 0.378279 + Group: 'Bone2', Weight: 0.173596 + Group: 'Bone.001', Weight: 0.040641 + Group: 'LeftUpLeg', Weight: 0.021023 +Vertex 893: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.386441 + Group: 'LeftLeg', Weight: 0.374899 + Group: 'Bone2', Weight: 0.173622 + Group: 'Bone.001', Weight: 0.038487 + Group: 'LeftUpLeg', Weight: 0.026551 +Vertex 894: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.106780 + Group: 'Bone1', Weight: 0.954507 + Group: 'Bone2', Weight: 0.437508 + Group: 'LeftLeg', Weight: 0.991626 +Vertex 895: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.385104 + Group: 'Bone1', Weight: 0.379231 + Group: 'Bone2', Weight: 0.178684 + Group: 'Bone.001', Weight: 0.035758 + Group: 'LeftUpLeg', Weight: 0.021223 +Vertex 896: +Vertex groups: 5 + Group: 'LeftLeg', Weight: 0.389804 + Group: 'Bone1', Weight: 0.379391 + Group: 'Bone2', Weight: 0.179505 + Group: 'Bone.001', Weight: 0.036160 + Group: 'LeftUpLeg', Weight: 0.015140 +Vertex 897: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.991697 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.989355 +Vertex 898: +Vertex groups: 5 + Group: 'Bone', Weight: 0.012908 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.931622 + Group: 'Bone2', Weight: 0.432383 + Group: 'LeftLeg', Weight: 0.983745 +Vertex 899: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone.001', Weight: 0.101754 + Group: 'Bone1', Weight: 0.931907 + Group: 'Bone', Weight: 0.004624 + Group: 'LeftLeg', Weight: 0.989954 +Vertex 900: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.394307 + Group: 'LeftFoot', Weight: 0.340656 + Group: 'Bone2', Weight: 0.184268 + Group: 'Bone.001', Weight: 0.051510 + Group: 'LeftLeg', Weight: 0.029259 +Vertex 901: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392645 + Group: 'LeftFoot', Weight: 0.336766 + Group: 'Bone2', Weight: 0.182604 + Group: 'Bone.001', Weight: 0.050486 + Group: 'LeftLeg', Weight: 0.037500 +Vertex 902: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393886 + Group: 'LeftFoot', Weight: 0.348887 + Group: 'Bone2', Weight: 0.178626 + Group: 'Bone.001', Weight: 0.046949 + Group: 'LeftLeg', Weight: 0.031652 +Vertex 903: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.398074 + Group: 'LeftFoot', Weight: 0.362946 + Group: 'Bone2', Weight: 0.174161 + Group: 'Bone.001', Weight: 0.042506 + Group: 'LeftLeg', Weight: 0.022313 +Vertex 904: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.011725 + Group: 'LeftFoot', Weight: 0.948090 +Vertex 905: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.026075 + Group: 'LeftFoot', Weight: 0.955273 +Vertex 906: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.140353 + Group: 'LeftFoot', Weight: 0.854371 +Vertex 907: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.087994 + Group: 'LeftLeg', Weight: 0.241786 + Group: 'LeftFoot', Weight: 0.752444 +Vertex 908: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.222678 + Group: 'LeftFoot', Weight: 0.772543 +Vertex 909: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396436 + Group: 'LeftFoot', Weight: 0.350805 + Group: 'Bone2', Weight: 0.179786 + Group: 'Bone.001', Weight: 0.047254 + Group: 'LeftLeg', Weight: 0.025718 +Vertex 910: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.398440 + Group: 'LeftFoot', Weight: 0.356735 + Group: 'Bone2', Weight: 0.174326 + Group: 'Bone.001', Weight: 0.042547 + Group: 'LeftLeg', Weight: 0.027953 +Vertex 911: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.078382 + Group: 'LeftFoot', Weight: 0.897005 +Vertex 912: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.098336 + Group: 'LeftFoot', Weight: 0.884241 +Vertex 913: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.126546 + Group: 'LeftFoot', Weight: 0.860873 +Vertex 914: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.184284 + Group: 'LeftFoot', Weight: 0.807639 +Vertex 915: +Vertex groups: 5 + Group: 'Bone', Weight: 0.524655 + Group: 'Hips', Weight: 0.243007 + Group: 'Bone2', Weight: 0.189222 + Group: 'Bone.001', Weight: 0.043115 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 916: +Vertex groups: 5 + Group: 'Bone', Weight: 0.562670 + Group: 'Bone2', Weight: 0.202933 + Group: 'Hips', Weight: 0.188158 + Group: 'Bone.001', Weight: 0.046239 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 917: +Vertex groups: 5 + Group: 'Bone', Weight: 0.544234 + Group: 'Hips', Weight: 0.214759 + Group: 'Bone2', Weight: 0.196283 + Group: 'Bone.001', Weight: 0.044724 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 918: +Vertex groups: 5 + Group: 'Bone', Weight: 0.505200 + Group: 'Bone2', Weight: 0.190949 + Group: 'Hips', Weight: 0.185574 + Group: 'LeftUpLeg', Weight: 0.078899 + Group: 'Bone.001', Weight: 0.039377 +Vertex 919: +Vertex groups: 5 + Group: 'Bone', Weight: 0.540345 + Group: 'Bone2', Weight: 0.204233 + Group: 'Hips', Weight: 0.190995 + Group: 'Bone.001', Weight: 0.042116 + Group: 'LeftUpLeg', Weight: 0.022311 +Vertex 920: +Vertex groups: 5 + Group: 'Bone', Weight: 0.540583 + Group: 'Hips', Weight: 0.219254 + Group: 'Bone2', Weight: 0.194967 + Group: 'Bone.001', Weight: 0.044424 + Group: 'Spine', Weight: 0.000773 +Vertex 921: +Vertex groups: 5 + Group: 'Bone', Weight: 0.524138 + Group: 'Hips', Weight: 0.209434 + Group: 'Bone2', Weight: 0.198107 + Group: 'Bone.001', Weight: 0.040853 + Group: 'Spine', Weight: 0.027469 +Vertex 922: +Vertex groups: 5 + Group: 'Bone', Weight: 0.506919 + Group: 'Hips', Weight: 0.201073 + Group: 'Bone2', Weight: 0.182825 + Group: 'Spine', Weight: 0.067525 + Group: 'Bone.001', Weight: 0.041658 +Vertex 923: +Vertex groups: 5 + Group: 'Bone', Weight: 0.441860 + Group: 'Spine', Weight: 0.332171 + Group: 'Bone2', Weight: 0.159361 + Group: 'Bone.001', Weight: 0.036311 + Group: 'Hips', Weight: 0.030297 +Vertex 924: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftToeBase', Weight: 0.997675 +Vertex 925: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftToeBase', Weight: 0.992369 +Vertex 926: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.123765 + Group: 'Bone1', Weight: 0.999994 + Group: 'Bone2', Weight: 0.459127 + Group: 'LeftToeBase', Weight: 0.997053 +Vertex 927: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.121124 + Group: 'Bone1', Weight: 0.999995 + Group: 'Bone2', Weight: 0.455872 + Group: 'LeftToeBase', Weight: 0.994768 +Vertex 928: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftFoot', Weight: 0.203638 + Group: 'LeftToeBase', Weight: 0.793223 +Vertex 929: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftFoot', Weight: 0.036832 + Group: 'LeftToeBase', Weight: 0.956003 +Vertex 930: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftToeBase', Weight: 0.976395 +Vertex 931: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119938 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.454410 + Group: 'LeftToeBase', Weight: 0.975577 +Vertex 932: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.085424 + Group: 'LeftToeBase', Weight: 0.914327 +Vertex 933: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119561 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453946 + Group: 'LeftFoot', Weight: 0.075967 + Group: 'LeftToeBase', Weight: 0.923817 +Vertex 934: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.237879 + Group: 'LeftToeBase', Weight: 0.761563 +Vertex 935: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119426 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453780 + Group: 'LeftFoot', Weight: 0.214619 + Group: 'LeftToeBase', Weight: 0.784834 +Vertex 936: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.911256 + Group: 'LeftToeBase', Weight: 0.084567 +Vertex 937: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119357 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453695 + Group: 'LeftFoot', Weight: 0.796189 + Group: 'LeftToeBase', Weight: 0.199140 +Vertex 938: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396335 + Group: 'LeftFoot', Weight: 0.373186 + Group: 'Bone2', Weight: 0.179737 + Group: 'Bone.001', Weight: 0.047241 + Group: 'LeftToeBase', Weight: 0.003502 +Vertex 939: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119269 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453586 + Group: 'LeftFoot', Weight: 0.924170 + Group: 'LeftToeBase', Weight: 0.055819 +Vertex 940: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.050345 + Group: 'LeftFoot', Weight: 0.927006 +Vertex 941: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396314 + Group: 'LeftFoot', Weight: 0.370354 + Group: 'Bone2', Weight: 0.179752 + Group: 'Bone.001', Weight: 0.047259 + Group: 'LeftToeBase', Weight: 0.006321 +Vertex 942: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.075257 + Group: 'LeftFoot', Weight: 0.907937 +Vertex 943: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119238 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453548 + Group: 'LeftLeg', Weight: 0.037952 + Group: 'LeftFoot', Weight: 0.931253 +Vertex 944: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.075816 + Group: 'LeftFoot', Weight: 0.906556 +Vertex 945: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119237 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453546 + Group: 'LeftLeg', Weight: 0.044716 + Group: 'LeftFoot', Weight: 0.928226 +Vertex 946: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.065751 + Group: 'LeftFoot', Weight: 0.912721 +Vertex 947: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.394328 + Group: 'LeftFoot', Weight: 0.366340 + Group: 'Bone2', Weight: 0.178847 + Group: 'Bone.001', Weight: 0.047019 + Group: 'LeftLeg', Weight: 0.013467 +Vertex 948: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393167 + Group: 'LeftFoot', Weight: 0.362331 + Group: 'Bone2', Weight: 0.178300 + Group: 'Bone.001', Weight: 0.046864 + Group: 'LeftLeg', Weight: 0.019338 +Vertex 949: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.395772 + Group: 'LeftFoot', Weight: 0.367817 + Group: 'Bone2', Weight: 0.179505 + Group: 'Bone.001', Weight: 0.047194 + Group: 'LeftToeBase', Weight: 0.009712 +Vertex 950: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396275 + Group: 'LeftFoot', Weight: 0.365434 + Group: 'Bone2', Weight: 0.179709 + Group: 'Bone.001', Weight: 0.047234 + Group: 'LeftLeg', Weight: 0.011348 +Vertex 951: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392598 + Group: 'LeftFoot', Weight: 0.362221 + Group: 'Bone2', Weight: 0.178072 + Group: 'Bone.001', Weight: 0.046821 + Group: 'LeftToeBase', Weight: 0.020289 +Vertex 952: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.903772 + Group: 'LeftToeBase', Weight: 0.075498 +Vertex 953: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119304 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453629 + Group: 'LeftFoot', Weight: 0.887535 + Group: 'LeftToeBase', Weight: 0.098234 +Vertex 954: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.644981 + Group: 'LeftToeBase', Weight: 0.350473 +Vertex 955: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119378 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453720 + Group: 'LeftFoot', Weight: 0.495213 + Group: 'LeftToeBase', Weight: 0.503105 +Vertex 956: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119318 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453647 + Group: 'LeftFoot', Weight: 0.843052 + Group: 'LeftToeBase', Weight: 0.148256 +Vertex 957: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.872582 + Group: 'LeftToeBase', Weight: 0.113109 +Vertex 958: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.314618 + Group: 'LeftToeBase', Weight: 0.682784 +Vertex 959: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119449 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453808 + Group: 'LeftFoot', Weight: 0.222212 + Group: 'LeftToeBase', Weight: 0.776822 +Vertex 960: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.148504 + Group: 'LeftToeBase', Weight: 0.850139 +Vertex 961: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119568 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453955 + Group: 'LeftFoot', Weight: 0.129279 + Group: 'LeftToeBase', Weight: 0.870059 +Vertex 962: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.062794 + Group: 'LeftToeBase', Weight: 0.936626 +Vertex 963: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119859 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.454314 + Group: 'LeftFoot', Weight: 0.060320 + Group: 'LeftToeBase', Weight: 0.939306 +Vertex 964: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.003286 + Group: 'LeftToeBase', Weight: 0.973098 +Vertex 965: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.120824 + Group: 'Bone1', Weight: 0.999995 + Group: 'Bone2', Weight: 0.455503 + Group: 'LeftFoot', Weight: 0.003381 + Group: 'LeftToeBase', Weight: 0.973117 +Vertex 966: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'LeftToeBase', Weight: 0.989706 +Vertex 967: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.122873 + Group: 'Bone1', Weight: 0.999994 + Group: 'Bone2', Weight: 0.458028 + Group: 'LeftToeBase', Weight: 0.988336 +Vertex 968: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.144497 + Group: 'LeftToeBase', Weight: 0.853968 +Vertex 969: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftFoot', Weight: 0.141078 + Group: 'LeftToeBase', Weight: 0.856893 +Vertex 970: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.394427 + Group: 'LeftFoot', Weight: 0.359441 + Group: 'Bone2', Weight: 0.178871 + Group: 'Bone.001', Weight: 0.047014 + Group: 'LeftToeBase', Weight: 0.020247 +Vertex 971: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'LeftToeBase', Weight: 0.997922 +Vertex 972: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.122866 + Group: 'Bone1', Weight: 0.999994 + Group: 'Bone2', Weight: 0.458019 + Group: 'LeftToeBase', Weight: 0.997938 +Vertex 973: +Vertex groups: 4 + Group: 'Hips', Weight: 0.676124 + Group: 'Spine', Weight: 0.082159 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 974: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.892739 + Group: 'LeftToeBase', Weight: 0.084078 +Vertex 975: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.699526 + Group: 'LeftToeBase', Weight: 0.290916 +Vertex 976: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.353200 + Group: 'LeftToeBase', Weight: 0.641955 +Vertex 977: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.157718 + Group: 'LeftToeBase', Weight: 0.840236 +Vertex 978: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.059939 + Group: 'LeftToeBase', Weight: 0.939372 +Vertex 979: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.007598 + Group: 'LeftToeBase', Weight: 0.970866 +Vertex 980: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftFoot', Weight: 0.096196 + Group: 'LeftToeBase', Weight: 0.902416 +Vertex 981: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftToeBase', Weight: 0.987656 +Vertex 982: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftToeBase', Weight: 0.996477 +Vertex 983: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftToeBase', Weight: 0.988566 +Vertex 984: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftToeBase', Weight: 0.983268 +Vertex 985: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.020440 + Group: 'LeftToeBase', Weight: 0.964615 +Vertex 986: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.115006 + Group: 'LeftToeBase', Weight: 0.884582 +Vertex 987: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.273572 + Group: 'LeftToeBase', Weight: 0.725697 +Vertex 988: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.939661 + Group: 'LeftToeBase', Weight: 0.055586 +Vertex 989: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.016375 + Group: 'LeftFoot', Weight: 0.955267 +Vertex 990: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.093309 + Group: 'LeftFoot', Weight: 0.895918 +Vertex 991: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.118549 + Group: 'LeftFoot', Weight: 0.870536 +Vertex 992: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.134358 + Group: 'LeftFoot', Weight: 0.854788 +Vertex 993: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.113377 + Group: 'LeftFoot', Weight: 0.873446 +Vertex 994: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.083078 + Group: 'LeftFoot', Weight: 0.898356 +Vertex 995: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392632 + Group: 'LeftFoot', Weight: 0.358083 + Group: 'Bone2', Weight: 0.178057 + Group: 'Bone.001', Weight: 0.046800 + Group: 'LeftLeg', Weight: 0.024427 +Vertex 996: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftToeBase', Weight: 0.996806 +Vertex 997: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.391667 + Group: 'LeftFoot', Weight: 0.340055 + Group: 'Bone2', Weight: 0.182149 + Group: 'Bone.001', Weight: 0.050360 + Group: 'LeftToeBase', Weight: 0.035770 +Vertex 998: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393027 + Group: 'LeftFoot', Weight: 0.353914 + Group: 'Bone2', Weight: 0.178237 + Group: 'Bone.001', Weight: 0.046847 + Group: 'LeftToeBase', Weight: 0.027975 +Vertex 999: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftFoot', Weight: 0.046430 + Group: 'LeftToeBase', Weight: 0.951106 +Vertex 1000: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.050630 + Group: 'LeftToeBase', Weight: 0.948836 +Vertex 1001: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftToeBase', Weight: 0.994411 +Vertex 1002: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftToeBase', Weight: 0.994240 +Vertex 1003: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftToeBase', Weight: 0.979810 +Vertex 1004: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftFoot', Weight: 0.336080 + Group: 'LeftToeBase', Weight: 0.658741 +Vertex 1005: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.332376 + Group: 'LeftToeBase', Weight: 0.663796 +Vertex 1006: +Vertex groups: 5 + Group: 'Bone', Weight: 0.490799 + Group: 'Hips', Weight: 0.291857 + Group: 'Bone2', Weight: 0.177011 + Group: 'Bone.001', Weight: 0.040333 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1007: +Vertex groups: 5 + Group: 'Bone', Weight: 0.474917 + Group: 'Hips', Weight: 0.314771 + Group: 'Bone2', Weight: 0.171284 + Group: 'Bone.001', Weight: 0.039028 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1008: +Vertex groups: 5 + Group: 'Bone', Weight: 0.468108 + Group: 'Hips', Weight: 0.274770 + Group: 'Bone2', Weight: 0.164913 + Group: 'LeftUpLeg', Weight: 0.053991 + Group: 'Bone.001', Weight: 0.038218 +Vertex 1009: +Vertex groups: 5 + Group: 'Bone', Weight: 0.483188 + Group: 'Bone2', Weight: 0.174267 + Group: 'Hips', Weight: 0.166479 + Group: 'Spine', Weight: 0.136359 + Group: 'Bone.001', Weight: 0.039708 +Vertex 1010: +Vertex groups: 5 + Group: 'Bone', Weight: 0.467945 + Group: 'Spine', Weight: 0.214582 + Group: 'Bone2', Weight: 0.168769 + Group: 'Hips', Weight: 0.110249 + Group: 'Bone.001', Weight: 0.038455 +Vertex 1011: +Vertex groups: 5 + Group: 'Bone', Weight: 0.416690 + Group: 'LeftUpLeg', Weight: 0.394370 + Group: 'Bone2', Weight: 0.150319 + Group: 'Bone.001', Weight: 0.034251 + Group: 'Spine', Weight: 0.004370 +Vertex 1012: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftToeBase', Weight: 0.985564 +Vertex 1013: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftToeBase', Weight: 0.987461 +Vertex 1014: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.012845 + Group: 'LeftToeBase', Weight: 0.968312 +Vertex 1015: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.070835 + Group: 'LeftToeBase', Weight: 0.928553 +Vertex 1016: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.290324 + Group: 'LeftToeBase', Weight: 0.707199 +Vertex 1017: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.909171 + Group: 'LeftToeBase', Weight: 0.067936 +Vertex 1018: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.390635 + Group: 'LeftFoot', Weight: 0.330561 + Group: 'Bone2', Weight: 0.182553 + Group: 'Bone.001', Weight: 0.051030 + Group: 'LeftToeBase', Weight: 0.045221 +Vertex 1019: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'LeftFoot', Weight: 0.258642 + Group: 'LeftToeBase', Weight: 0.737226 +Vertex 1020: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'LeftFoot', Weight: 0.045179 + Group: 'LeftToeBase', Weight: 0.951736 +Vertex 1021: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'LeftToeBase', Weight: 0.975359 +Vertex 1022: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.036055 + Group: 'LeftToeBase', Weight: 0.956727 +Vertex 1023: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.246949 + Group: 'LeftToeBase', Weight: 0.752091 +Vertex 1024: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.934068 + Group: 'LeftToeBase', Weight: 0.058577 +Vertex 1025: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.137493 + Group: 'LeftToeBase', Weight: 0.861334 +Vertex 1026: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'LeftFoot', Weight: 0.113777 + Group: 'LeftToeBase', Weight: 0.884511 +Vertex 1027: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.113027 + Group: 'LeftToeBase', Weight: 0.886434 +Vertex 1028: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftFoot', Weight: 0.417374 + Group: 'LeftToeBase', Weight: 0.575482 +Vertex 1029: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.762265 + Group: 'LeftToeBase', Weight: 0.236245 +Vertex 1030: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119393 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453739 + Group: 'LeftFoot', Weight: 0.587199 + Group: 'LeftToeBase', Weight: 0.411189 +Vertex 1031: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.721479 + Group: 'LeftToeBase', Weight: 0.277041 +Vertex 1032: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.718358 + Group: 'LeftToeBase', Weight: 0.273285 +Vertex 1033: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftFoot', Weight: 0.684448 + Group: 'LeftToeBase', Weight: 0.303861 +Vertex 1034: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.684866 + Group: 'LeftToeBase', Weight: 0.309357 +Vertex 1035: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'LeftFoot', Weight: 0.546616 + Group: 'LeftToeBase', Weight: 0.444209 +Vertex 1036: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.712746 + Group: 'LeftToeBase', Weight: 0.284641 +Vertex 1037: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'LeftFoot', Weight: 0.741968 + Group: 'LeftToeBase', Weight: 0.241378 +Vertex 1038: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.389933 + Group: 'LeftFoot', Weight: 0.335313 + Group: 'Bone2', Weight: 0.181345 + Group: 'Bone.001', Weight: 0.050138 + Group: 'LeftToeBase', Weight: 0.043271 +Vertex 1039: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119345 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453680 + Group: 'LeftFoot', Weight: 0.738496 + Group: 'LeftToeBase', Weight: 0.257174 +Vertex 1040: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.794679 + Group: 'LeftToeBase', Weight: 0.197265 +Vertex 1041: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.841532 + Group: 'LeftToeBase', Weight: 0.142140 +Vertex 1042: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftLeg', Weight: 0.219431 + Group: 'LeftFoot', Weight: 0.765531 +Vertex 1043: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.193852 + Group: 'LeftFoot', Weight: 0.793766 +Vertex 1044: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.432383 + Group: 'LeftLeg', Weight: 0.288708 + Group: 'LeftFoot', Weight: 0.706411 +Vertex 1045: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.101754 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone2', Weight: 0.434634 + Group: 'LeftLeg', Weight: 0.228241 + Group: 'LeftFoot', Weight: 0.763575 +Vertex 1046: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.106780 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.437508 + Group: 'LeftLeg', Weight: 0.155985 + Group: 'LeftFoot', Weight: 0.834632 +Vertex 1047: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.101754 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.434634 + Group: 'LeftLeg', Weight: 0.120756 + Group: 'LeftFoot', Weight: 0.874030 +Vertex 1048: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.432383 + Group: 'LeftLeg', Weight: 0.098418 + Group: 'LeftFoot', Weight: 0.900611 +Vertex 1049: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.090799 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone2', Weight: 0.438608 + Group: 'LeftLeg', Weight: 0.436003 + Group: 'LeftFoot', Weight: 0.563590 +Vertex 1050: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.088715 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone2', Weight: 0.440400 + Group: 'LeftLeg', Weight: 0.472041 + Group: 'LeftFoot', Weight: 0.527379 +Vertex 1051: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'LeftLeg', Weight: 0.197603 + Group: 'LeftFoot', Weight: 0.784564 +Vertex 1052: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.106780 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone2', Weight: 0.437508 + Group: 'LeftLeg', Weight: 0.196950 + Group: 'LeftFoot', Weight: 0.791466 +Vertex 1053: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.088715 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone2', Weight: 0.440400 + Group: 'LeftLeg', Weight: 0.432646 + Group: 'LeftFoot', Weight: 0.565311 +Vertex 1054: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.090799 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone2', Weight: 0.438608 + Group: 'LeftLeg', Weight: 0.399369 + Group: 'LeftFoot', Weight: 0.597717 +Vertex 1055: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.087994 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.439706 + Group: 'LeftLeg', Weight: 0.466616 + Group: 'LeftFoot', Weight: 0.532208 +Vertex 1056: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999975 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.178381 + Group: 'LeftFoot', Weight: 0.806170 +Vertex 1057: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119273 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453591 + Group: 'LeftFoot', Weight: 0.911613 + Group: 'LeftToeBase', Weight: 0.067991 +Vertex 1058: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393485 + Group: 'LeftFoot', Weight: 0.361270 + Group: 'Bone2', Weight: 0.178444 + Group: 'Bone.001', Weight: 0.046902 + Group: 'LeftToeBase', Weight: 0.019898 +Vertex 1059: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393851 + Group: 'LeftFoot', Weight: 0.360776 + Group: 'Bone2', Weight: 0.178610 + Group: 'Bone.001', Weight: 0.046945 + Group: 'LeftLeg', Weight: 0.019818 +Vertex 1060: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119301 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453625 + Group: 'LeftFoot', Weight: 0.868311 + Group: 'LeftToeBase', Weight: 0.123315 +Vertex 1061: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.962612 + Group: 'LeftToeBase', Weight: 0.004608 +Vertex 1062: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.098800 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.433508 + Group: 'LeftFoot', Weight: 0.972301 +Vertex 1063: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.098800 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.433508 + Group: 'LeftLeg', Weight: 0.008037 + Group: 'LeftFoot', Weight: 0.963975 +Vertex 1064: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'LeftToeBase', Weight: 0.998577 +Vertex 1065: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftToeBase', Weight: 0.998205 +Vertex 1066: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftToeBase', Weight: 0.991711 +Vertex 1067: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftToeBase', Weight: 0.974952 +Vertex 1068: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.082572 + Group: 'LeftToeBase', Weight: 0.917198 +Vertex 1069: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.222110 + Group: 'LeftToeBase', Weight: 0.777330 +Vertex 1070: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.684777 + Group: 'LeftToeBase', Weight: 0.313451 +Vertex 1071: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.831617 + Group: 'LeftToeBase', Weight: 0.163712 +Vertex 1072: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.890334 + Group: 'LeftToeBase', Weight: 0.099333 +Vertex 1073: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.925533 + Group: 'LeftToeBase', Weight: 0.054146 +Vertex 1074: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.395818 + Group: 'LeftFoot', Weight: 0.369725 + Group: 'Bone2', Weight: 0.179502 + Group: 'Bone.001', Weight: 0.047180 + Group: 'LeftLeg', Weight: 0.007774 +Vertex 1075: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.051066 + Group: 'LeftFoot', Weight: 0.926618 +Vertex 1076: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.054221 + Group: 'LeftFoot', Weight: 0.923650 +Vertex 1077: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393555 + Group: 'LeftFoot', Weight: 0.365007 + Group: 'Bone2', Weight: 0.178476 + Group: 'Bone.001', Weight: 0.046910 + Group: 'LeftLeg', Weight: 0.016052 +Vertex 1078: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396201 + Group: 'LeftFoot', Weight: 0.367923 + Group: 'Bone2', Weight: 0.179676 + Group: 'Bone.001', Weight: 0.047225 + Group: 'LeftToeBase', Weight: 0.008975 +Vertex 1079: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392863 + Group: 'LeftFoot', Weight: 0.362452 + Group: 'Bone2', Weight: 0.178162 + Group: 'Bone.001', Weight: 0.046828 + Group: 'LeftToeBase', Weight: 0.019695 +Vertex 1080: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.910002 + Group: 'LeftToeBase', Weight: 0.068663 +Vertex 1081: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.888715 + Group: 'LeftToeBase', Weight: 0.095876 +Vertex 1082: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.757992 + Group: 'LeftToeBase', Weight: 0.236767 +Vertex 1083: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.533022 + Group: 'LeftToeBase', Weight: 0.464560 +Vertex 1084: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.842784 + Group: 'LeftToeBase', Weight: 0.147779 +Vertex 1085: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.276228 + Group: 'LeftToeBase', Weight: 0.722305 +Vertex 1086: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.137593 + Group: 'LeftToeBase', Weight: 0.861576 +Vertex 1087: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.061538 + Group: 'LeftToeBase', Weight: 0.938034 +Vertex 1088: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.004127 + Group: 'LeftToeBase', Weight: 0.972729 +Vertex 1089: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'LeftToeBase', Weight: 0.989172 +Vertex 1090: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone.001', Weight: 0.077910 + Group: 'Bone', Weight: 0.993871 + Group: 'LeftUpLeg', Weight: 0.963625 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1091: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone', Weight: 0.997959 + Group: 'LeftUpLeg', Weight: 0.951741 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1092: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone', Weight: 0.994784 + Group: 'LeftUpLeg', Weight: 0.949299 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1093: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone', Weight: 0.995680 + Group: 'LeftUpLeg', Weight: 0.992290 +Vertex 1094: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone', Weight: 0.996897 + Group: 'LeftUpLeg', Weight: 0.994739 +Vertex 1095: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone', Weight: 0.997341 + Group: 'LeftUpLeg', Weight: 0.992446 +Vertex 1096: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.077910 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone', Weight: 0.995020 + Group: 'LeftUpLeg', Weight: 0.985679 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1097: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.073388 + Group: 'Bone2', Weight: 0.312920 + Group: 'Bone', Weight: 0.998259 + Group: 'LeftUpLeg', Weight: 0.980345 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1098: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone', Weight: 0.993674 + Group: 'LeftUpLeg', Weight: 0.951251 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1099: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.077837 + Group: 'Bone2', Weight: 0.380022 + Group: 'Bone', Weight: 0.994475 + Group: 'LeftUpLeg', Weight: 0.975550 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1100: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone', Weight: 0.996102 + Group: 'LeftUpLeg', Weight: 0.919710 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1101: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.071880 + Group: 'Bone2', Weight: 0.306079 + Group: 'Bone', Weight: 0.998379 + Group: 'LeftUpLeg', Weight: 0.967308 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1102: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone', Weight: 0.997151 + Group: 'LeftUpLeg', Weight: 0.913222 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1103: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone', Weight: 0.996423 + Group: 'LeftUpLeg', Weight: 0.995383 +Vertex 1104: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone', Weight: 0.997927 + Group: 'LeftUpLeg', Weight: 0.986197 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1105: +Vertex groups: 5 + Group: 'Bone', Weight: 0.451110 + Group: 'Spine', Weight: 0.295066 + Group: 'Bone2', Weight: 0.162697 + Group: 'Hips', Weight: 0.054055 + Group: 'Bone.001', Weight: 0.037071 +Vertex 1106: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393856 + Group: 'LeftFoot', Weight: 0.341908 + Group: 'Bone2', Weight: 0.178616 + Group: 'Bone.001', Weight: 0.046947 + Group: 'LeftLeg', Weight: 0.038673 +Vertex 1107: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.107764 + Group: 'LeftFoot', Weight: 0.868400 +Vertex 1108: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392534 + Group: 'LeftFoot', Weight: 0.339986 + Group: 'Bone2', Weight: 0.178013 + Group: 'Bone.001', Weight: 0.046788 + Group: 'LeftLeg', Weight: 0.042678 +Vertex 1109: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.078747 + Group: 'LeftFoot', Weight: 0.898111 +Vertex 1110: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.391508 + Group: 'LeftFoot', Weight: 0.329443 + Group: 'Bone2', Weight: 0.182961 + Group: 'Bone.001', Weight: 0.051144 + Group: 'LeftLeg', Weight: 0.044944 +Vertex 1111: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'LeftFoot', Weight: 0.762832 + Group: 'LeftToeBase', Weight: 0.216845 +Vertex 1112: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.106985 + Group: 'LeftFoot', Weight: 0.874568 +Vertex 1113: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.128677 + Group: 'LeftFoot', Weight: 0.857663 +Vertex 1114: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.166601 + Group: 'LeftFoot', Weight: 0.823647 +Vertex 1115: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.236024 + Group: 'LeftFoot', Weight: 0.758028 +Vertex 1116: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.087994 + Group: 'LeftLeg', Weight: 0.334895 + Group: 'LeftFoot', Weight: 0.661402 +Vertex 1117: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.336468 + Group: 'LeftFoot', Weight: 0.660751 +Vertex 1118: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.171887 + Group: 'LeftFoot', Weight: 0.824957 +Vertex 1119: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.390535 + Group: 'LeftFoot', Weight: 0.326431 + Group: 'Bone2', Weight: 0.181623 + Group: 'LeftLeg', Weight: 0.051196 + Group: 'Bone.001', Weight: 0.050214 +Vertex 1120: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.038757 + Group: 'LeftFoot', Weight: 0.951204 +Vertex 1121: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.048460 + Group: 'LeftFoot', Weight: 0.936101 +Vertex 1122: +Vertex groups: 4 + Group: 'Hips', Weight: 0.610052 + Group: 'Spine', Weight: 0.030128 + Group: 'LeftUpLeg', Weight: 0.120326 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1123: +Vertex groups: 3 + Group: 'Hips', Weight: 0.632929 + Group: 'LeftUpLeg', Weight: 0.123230 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1124: +Vertex groups: 5 + Group: 'Bone', Weight: 0.468597 + Group: 'Hips', Weight: 0.323890 + Group: 'Bone2', Weight: 0.169004 + Group: 'Bone.001', Weight: 0.038509 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1125: +Vertex groups: 5 + Group: 'Bone', Weight: 0.461313 + Group: 'Hips', Weight: 0.318263 + Group: 'Bone2', Weight: 0.166377 + Group: 'Bone.001', Weight: 0.037910 + Group: 'Spine', Weight: 0.016137 +Vertex 1126: +Vertex groups: 5 + Group: 'Bone', Weight: 0.486589 + Group: 'Hips', Weight: 0.262227 + Group: 'Bone2', Weight: 0.171423 + Group: 'LeftUpLeg', Weight: 0.040033 + Group: 'Bone.001', Weight: 0.039727 +Vertex 1127: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftFoot', Weight: 0.814045 + Group: 'LeftToeBase', Weight: 0.163426 +Vertex 1128: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.888922 + Group: 'LeftToeBase', Weight: 0.108152 +Vertex 1129: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.846087 + Group: 'LeftToeBase', Weight: 0.141861 +Vertex 1130: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.859983 + Group: 'LeftToeBase', Weight: 0.122154 +Vertex 1131: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftFoot', Weight: 0.872463 + Group: 'LeftToeBase', Weight: 0.123106 +Vertex 1132: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.881324 + Group: 'LeftToeBase', Weight: 0.115769 +Vertex 1133: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.941313 + Group: 'LeftFoot', Weight: 0.058149 +Vertex 1134: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'LeftLeg', Weight: 0.903961 + Group: 'LeftFoot', Weight: 0.094464 +Vertex 1135: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'LeftLeg', Weight: 0.909246 + Group: 'LeftFoot', Weight: 0.089508 +Vertex 1136: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.921086 + Group: 'LeftFoot', Weight: 0.077867 +Vertex 1137: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'LeftLeg', Weight: 0.951932 + Group: 'LeftFoot', Weight: 0.045691 +Vertex 1138: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'LeftLeg', Weight: 0.956458 + Group: 'LeftFoot', Weight: 0.036821 +Vertex 1139: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'LeftLeg', Weight: 0.879839 + Group: 'LeftFoot', Weight: 0.117844 +Vertex 1140: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone.001', Weight: 0.106780 + Group: 'LeftLeg', Weight: 0.898473 + Group: 'LeftFoot', Weight: 0.099947 +Vertex 1141: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'LeftLeg', Weight: 0.933492 + Group: 'LeftFoot', Weight: 0.065898 +Vertex 1142: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'LeftLeg', Weight: 0.896055 + Group: 'LeftFoot', Weight: 0.102032 +Vertex 1143: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.432383 + Group: 'LeftLeg', Weight: 0.918864 + Group: 'LeftFoot', Weight: 0.080235 +Vertex 1144: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.090799 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone2', Weight: 0.438608 + Group: 'LeftLeg', Weight: 0.961385 + Group: 'LeftFoot', Weight: 0.027013 +Vertex 1145: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.088715 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone2', Weight: 0.440400 + Group: 'LeftLeg', Weight: 0.938904 + Group: 'LeftFoot', Weight: 0.060690 +Vertex 1146: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.087994 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.439706 + Group: 'LeftLeg', Weight: 0.948229 + Group: 'LeftFoot', Weight: 0.051530 +Vertex 1147: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999975 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.884974 + Group: 'LeftFoot', Weight: 0.112980 +Vertex 1148: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftFoot', Weight: 0.943323 + Group: 'LeftToeBase', Weight: 0.040644 +Vertex 1149: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.107003 + Group: 'Bone1', Weight: 0.999998 + Group: 'Bone2', Weight: 0.441547 + Group: 'LeftFoot', Weight: 0.972829 +Vertex 1150: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.093061 + Group: 'Bone1', Weight: 0.999988 + Group: 'Bone2', Weight: 0.435818 + Group: 'LeftLeg', Weight: 0.106782 + Group: 'LeftFoot', Weight: 0.889704 +Vertex 1151: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'LeftLeg', Weight: 0.063434 + Group: 'LeftFoot', Weight: 0.922210 +Vertex 1152: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.092612 + Group: 'Bone1', Weight: 0.999987 + Group: 'Bone2', Weight: 0.436371 + Group: 'LeftLeg', Weight: 0.095510 + Group: 'LeftFoot', Weight: 0.898799 +Vertex 1153: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.432383 + Group: 'LeftLeg', Weight: 0.062523 + Group: 'LeftFoot', Weight: 0.935838 +Vertex 1154: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.055525 + Group: 'LeftFoot', Weight: 0.940127 +Vertex 1155: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.167904 + Group: 'LeftFoot', Weight: 0.830418 +Vertex 1156: +Vertex groups: 4 + Group: 'Hips', Weight: 0.585128 + Group: 'Spine', Weight: 0.124236 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1157: +Vertex groups: 5 + Group: 'Hips', Weight: 0.352892 + Group: 'Spine', Weight: 0.185222 + Group: 'Spine1', Weight: 0.011585 + Group: 'LeftUpLeg', Weight: 0.000466 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1158: +Vertex groups: 5 + Group: 'Hips', Weight: 0.160468 + Group: 'Spine', Weight: 0.226354 + Group: 'Spine1', Weight: 0.025910 + Group: 'LeftUpLeg', Weight: 0.143719 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1159: +Vertex groups: 5 + Group: 'Hips', Weight: 0.064588 + Group: 'Spine', Weight: 0.277556 + Group: 'Spine1', Weight: 0.044738 + Group: 'LeftUpLeg', Weight: 0.559706 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1160: +Vertex groups: 5 + Group: 'Hips', Weight: 0.029004 + Group: 'Spine', Weight: 0.279812 + Group: 'Spine1', Weight: 0.042028 + Group: 'LeftUpLeg', Weight: 0.617937 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1161: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004751 + Group: 'Spine', Weight: 0.281028 + Group: 'Spine1', Weight: 0.025991 + Group: 'LeftUpLeg', Weight: 0.641908 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1162: +Vertex groups: 4 + Group: 'Hips', Weight: 0.037551 + Group: 'Spine', Weight: 0.214595 + Group: 'LeftUpLeg', Weight: 0.702199 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1163: +Vertex groups: 4 + Group: 'Hips', Weight: 0.095799 + Group: 'Spine', Weight: 0.184327 + Group: 'LeftUpLeg', Weight: 0.666724 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1164: +Vertex groups: 4 + Group: 'Hips', Weight: 0.173945 + Group: 'Spine', Weight: 0.129483 + Group: 'LeftUpLeg', Weight: 0.599044 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1165: +Vertex groups: 4 + Group: 'Hips', Weight: 0.250938 + Group: 'Spine', Weight: 0.111873 + Group: 'LeftUpLeg', Weight: 0.386642 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1166: +Vertex groups: 5 + Group: 'Bone', Weight: 0.417396 + Group: 'Hips', Weight: 0.283142 + Group: 'Bone2', Weight: 0.150538 + Group: 'Spine', Weight: 0.114623 + Group: 'Bone.001', Weight: 0.034301 +Vertex 1167: +Vertex groups: 5 + Group: 'Bone', Weight: 0.388269 + Group: 'Hips', Weight: 0.230230 + Group: 'Spine', Weight: 0.209561 + Group: 'Bone2', Weight: 0.140033 + Group: 'Bone.001', Weight: 0.031907 +Vertex 1168: +Vertex groups: 5 + Group: 'Bone', Weight: 0.380928 + Group: 'Spine', Weight: 0.225945 + Group: 'LeftUpLeg', Weight: 0.165139 + Group: 'Bone2', Weight: 0.137386 + Group: 'Hips', Weight: 0.090602 +Vertex 1169: +Vertex groups: 5 + Group: 'Bone', Weight: 0.351788 + Group: 'Spine', Weight: 0.244785 + Group: 'LeftUpLeg', Weight: 0.240959 + Group: 'Bone2', Weight: 0.126876 + Group: 'Hips', Weight: 0.035593 +Vertex 1170: +Vertex groups: 5 + Group: 'Bone', Weight: 0.515484 + Group: 'Hips', Weight: 0.209488 + Group: 'Bone2', Weight: 0.190375 + Group: 'Spine', Weight: 0.043383 + Group: 'Bone.001', Weight: 0.041270 +Vertex 1171: +Vertex groups: 5 + Group: 'Bone', Weight: 0.438290 + Group: 'Hips', Weight: 0.304824 + Group: 'Bone2', Weight: 0.158074 + Group: 'Spine', Weight: 0.062795 + Group: 'Bone.001', Weight: 0.036018 +Vertex 1172: +Vertex groups: 5 + Group: 'Bone', Weight: 0.351149 + Group: 'LeftUpLeg', Weight: 0.296216 + Group: 'Hips', Weight: 0.181117 + Group: 'Bone2', Weight: 0.126645 + Group: 'Spine', Weight: 0.044872 +Vertex 1173: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.437284 + Group: 'Bone', Weight: 0.311452 + Group: 'Bone2', Weight: 0.112328 + Group: 'Hips', Weight: 0.097005 + Group: 'Spine', Weight: 0.041930 +Vertex 1174: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.492826 + Group: 'Bone', Weight: 0.304182 + Group: 'Bone2', Weight: 0.109706 + Group: 'Spine', Weight: 0.051301 + Group: 'Hips', Weight: 0.041984 +Vertex 1175: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.508760 + Group: 'Bone', Weight: 0.299641 + Group: 'Bone2', Weight: 0.108069 + Group: 'Spine', Weight: 0.058906 + Group: 'Bone.001', Weight: 0.024624 +Vertex 1176: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.513447 + Group: 'Bone', Weight: 0.296899 + Group: 'Bone2', Weight: 0.107079 + Group: 'Spine', Weight: 0.058177 + Group: 'Bone.001', Weight: 0.024399 +Vertex 1177: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.509199 + Group: 'Bone', Weight: 0.298924 + Group: 'Bone2', Weight: 0.107810 + Group: 'Spine', Weight: 0.059502 + Group: 'Bone.001', Weight: 0.024565 +Vertex 1178: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.496472 + Group: 'Bone', Weight: 0.301599 + Group: 'Bone2', Weight: 0.108775 + Group: 'Spine', Weight: 0.061360 + Group: 'Hips', Weight: 0.031794 +Vertex 1179: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.466964 + Group: 'Bone', Weight: 0.302048 + Group: 'Bone2', Weight: 0.108937 + Group: 'Hips', Weight: 0.063373 + Group: 'Spine', Weight: 0.058678 +Vertex 1180: +Vertex groups: 5 + Group: 'LeftUpLeg', Weight: 0.396787 + Group: 'Bone', Weight: 0.308394 + Group: 'Hips', Weight: 0.131026 + Group: 'Bone2', Weight: 0.111225 + Group: 'Spine', Weight: 0.052567 +Vertex 1181: +Vertex groups: 4 + Group: 'Hips', Weight: 0.639066 + Group: 'Spine', Weight: 0.081611 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1182: +Vertex groups: 4 + Group: 'Hips', Weight: 0.327873 + Group: 'Spine', Weight: 0.062093 + Group: 'LeftUpLeg', Weight: 0.421265 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1183: +Vertex groups: 3 + Group: 'Hips', Weight: 0.472663 + Group: 'LeftUpLeg', Weight: 0.417021 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1184: +Vertex groups: 3 + Group: 'Hips', Weight: 0.498448 + Group: 'LeftUpLeg', Weight: 0.320721 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1185: +Vertex groups: 3 + Group: 'Hips', Weight: 0.509918 + Group: 'LeftUpLeg', Weight: 0.212573 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1186: +Vertex groups: 4 + Group: 'Hips', Weight: 0.647420 + Group: 'Spine', Weight: 0.123193 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1187: +Vertex groups: 5 + Group: 'Hips', Weight: 0.011942 + Group: 'Spine', Weight: 0.526742 + Group: 'Spine1', Weight: 0.057335 + Group: 'LeftUpLeg', Weight: 0.000960 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1188: +Vertex groups: 5 + Group: 'Hips', Weight: 0.032058 + Group: 'Spine', Weight: 0.648910 + Group: 'Spine1', Weight: 0.053845 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1189: +Vertex groups: 5 + Group: 'Spine', Weight: 0.410970 + Group: 'Bone', Weight: 0.375657 + Group: 'Bone2', Weight: 0.135484 + Group: 'Hips', Weight: 0.047018 + Group: 'Bone.001', Weight: 0.030871 +Vertex 1190: +Vertex groups: 5 + Group: 'Spine', Weight: 0.415283 + Group: 'Bone', Weight: 0.350207 + Group: 'Bone2', Weight: 0.126306 + Group: 'Hips', Weight: 0.079425 + Group: 'Bone.001', Weight: 0.028779 +Vertex 1191: +Vertex groups: 5 + Group: 'Bone', Weight: 0.326215 + Group: 'LeftUpLeg', Weight: 0.277329 + Group: 'Spine', Weight: 0.170742 + Group: 'Bone2', Weight: 0.117653 + Group: 'Hips', Weight: 0.108060 +Vertex 1192: +Vertex groups: 5 + Group: 'Bone', Weight: 0.366080 + Group: 'Spine', Weight: 0.282338 + Group: 'Hips', Weight: 0.189468 + Group: 'Bone2', Weight: 0.132030 + Group: 'Bone.001', Weight: 0.030084 +Vertex 1193: +Vertex groups: 5 + Group: 'Hips', Weight: 0.062523 + Group: 'Spine', Weight: 0.711883 + Group: 'Spine1', Weight: 0.033170 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1194: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone', Weight: 0.999647 + Group: 'LeftUpLeg', Weight: 0.977577 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1195: +Vertex groups: 5 + Group: 'Bone', Weight: 0.436729 + Group: 'LeftUpLeg', Weight: 0.281881 + Group: 'Bone2', Weight: 0.163891 + Group: 'Hips', Weight: 0.082823 + Group: 'Bone.001', Weight: 0.034676 +Vertex 1196: +Vertex groups: 5 + Group: 'Bone', Weight: 0.497316 + Group: 'Bone2', Weight: 0.179427 + Group: 'LeftUpLeg', Weight: 0.178646 + Group: 'Hips', Weight: 0.103726 + Group: 'Bone.001', Weight: 0.040883 +Vertex 1197: +Vertex groups: 5 + Group: 'Bone', Weight: 0.417018 + Group: 'LeftUpLeg', Weight: 0.358073 + Group: 'Bone2', Weight: 0.158611 + Group: 'Hips', Weight: 0.033811 + Group: 'Bone.001', Weight: 0.032487 +Vertex 1198: +Vertex groups: 5 + Group: 'Bone', Weight: 0.415695 + Group: 'LeftUpLeg', Weight: 0.381609 + Group: 'Bone2', Weight: 0.157155 + Group: 'Bone.001', Weight: 0.032408 + Group: 'Hips', Weight: 0.013133 +Vertex 1199: +Vertex groups: 5 + Group: 'Bone', Weight: 0.462715 + Group: 'LeftUpLeg', Weight: 0.255986 + Group: 'Bone2', Weight: 0.171935 + Group: 'Hips', Weight: 0.071308 + Group: 'Bone.001', Weight: 0.038056 +Vertex 1200: +Vertex groups: 5 + Group: 'Bone', Weight: 0.422570 + Group: 'LeftUpLeg', Weight: 0.388727 + Group: 'Bone2', Weight: 0.132261 + Group: 'Bone.001', Weight: 0.031019 + Group: 'Hips', Weight: 0.025425 +Vertex 1201: +Vertex groups: 5 + Group: 'Bone', Weight: 0.434650 + Group: 'LeftUpLeg', Weight: 0.320004 + Group: 'Bone2', Weight: 0.142473 + Group: 'Hips', Weight: 0.069552 + Group: 'Bone.001', Weight: 0.033321 +Vertex 1202: +Vertex groups: 5 + Group: 'Bone', Weight: 0.481510 + Group: 'LeftUpLeg', Weight: 0.216869 + Group: 'Bone2', Weight: 0.169676 + Group: 'Hips', Weight: 0.092623 + Group: 'Bone.001', Weight: 0.039322 +Vertex 1203: +Vertex groups: 5 + Group: 'Bone', Weight: 0.425034 + Group: 'LeftUpLeg', Weight: 0.311880 + Group: 'Bone2', Weight: 0.160751 + Group: 'Hips', Weight: 0.069185 + Group: 'Bone.001', Weight: 0.033149 +Vertex 1204: +Vertex groups: 5 + Group: 'Bone', Weight: 0.421579 + Group: 'LeftUpLeg', Weight: 0.399265 + Group: 'Bone2', Weight: 0.138178 + Group: 'Bone.001', Weight: 0.032317 + Group: 'Hips', Weight: 0.008661 +Vertex 1205: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone', Weight: 0.999525 + Group: 'LeftUpLeg', Weight: 0.957418 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1206: +Vertex groups: 5 + Group: 'Bone', Weight: 0.425669 + Group: 'LeftUpLeg', Weight: 0.366407 + Group: 'Bone2', Weight: 0.130319 + Group: 'Hips', Weight: 0.047000 + Group: 'Bone.001', Weight: 0.030604 +Vertex 1207: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone', Weight: 0.999740 + Group: 'LeftUpLeg', Weight: 0.968299 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1208: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone', Weight: 0.999485 + Group: 'LeftUpLeg', Weight: 0.977469 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1209: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.978046 +Vertex 1210: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.982243 +Vertex 1211: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.984852 +Vertex 1212: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.985223 +Vertex 1213: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.980779 +Vertex 1214: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.974014 +Vertex 1215: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.962933 + Group: 'LeftHand', Weight: 0.019514 +Vertex 1216: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.966115 + Group: 'LeftHand', Weight: 0.013496 +Vertex 1217: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.965400 + Group: 'LeftHand', Weight: 0.015343 +Vertex 1218: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.966983 + Group: 'LeftHand', Weight: 0.012962 +Vertex 1219: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.976181 +Vertex 1220: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.978164 +Vertex 1221: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.978474 +Vertex 1222: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.084902 + Group: 'LeftForeArm', Weight: 0.914688 +Vertex 1223: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.038219 + Group: 'LeftForeArm', Weight: 0.955645 +Vertex 1224: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.041245 + Group: 'LeftForeArm', Weight: 0.954153 +Vertex 1225: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.114389 + Group: 'LeftForeArm', Weight: 0.885497 +Vertex 1226: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.242825 + Group: 'LeftForeArm', Weight: 0.756971 +Vertex 1227: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.168059 + Group: 'LeftForeArm', Weight: 0.831712 +Vertex 1228: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.072315 + Group: 'LeftForeArm', Weight: 0.927384 +Vertex 1229: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.038998 + Group: 'LeftForeArm', Weight: 0.955235 +Vertex 1230: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.976665 +Vertex 1231: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.055621 + Group: 'LeftForeArm', Weight: 0.944134 +Vertex 1232: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.000746 + Group: 'LeftForeArm', Weight: 0.974139 +Vertex 1233: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.033683 + Group: 'LeftForeArm', Weight: 0.957563 +Vertex 1234: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.037073 + Group: 'LeftForeArm', Weight: 0.956192 +Vertex 1235: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.103550 + Group: 'LeftArm', Weight: 0.866502 +Vertex 1236: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.112017 + Group: 'LeftArm', Weight: 0.850728 +Vertex 1237: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.973971 +Vertex 1238: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.025725 + Group: 'LeftArm', Weight: 0.954143 +Vertex 1239: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991108 +Vertex 1240: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.098006 + Group: 'LeftArm', Weight: 0.878959 +Vertex 1241: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.119315 + Group: 'LeftArm', Weight: 0.861282 +Vertex 1242: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.094688 + Group: 'LeftArm', Weight: 0.876809 +Vertex 1243: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.097804 + Group: 'LeftArm', Weight: 0.879679 +Vertex 1244: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.983960 +Vertex 1245: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.989940 +Vertex 1246: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.989252 +Vertex 1247: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.975304 +Vertex 1248: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.801328 + Group: 'LeftForeArm', Weight: 0.198285 +Vertex 1249: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.815794 + Group: 'LeftForeArm', Weight: 0.184117 +Vertex 1250: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.783526 + Group: 'LeftForeArm', Weight: 0.216444 +Vertex 1251: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.805309 + Group: 'LeftForeArm', Weight: 0.194382 +Vertex 1252: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.839382 + Group: 'LeftForeArm', Weight: 0.160584 +Vertex 1253: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.858919 + Group: 'LeftForeArm', Weight: 0.140999 +Vertex 1254: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.827416 + Group: 'LeftForeArm', Weight: 0.172524 +Vertex 1255: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.811599 + Group: 'LeftForeArm', Weight: 0.188028 +Vertex 1256: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.815530 + Group: 'LeftForeArm', Weight: 0.184338 +Vertex 1257: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.812541 + Group: 'LeftForeArm', Weight: 0.187252 +Vertex 1258: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.607471 + Group: 'LeftForeArm', Weight: 0.392492 +Vertex 1259: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.761657 + Group: 'LeftForeArm', Weight: 0.238205 +Vertex 1260: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.918248 + Group: 'LeftForeArm', Weight: 0.081484 +Vertex 1261: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.977092 +Vertex 1262: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991370 +Vertex 1263: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.987444 +Vertex 1264: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.997854 +Vertex 1265: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.981087 +Vertex 1266: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.985092 +Vertex 1267: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.979809 +Vertex 1268: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.984710 +Vertex 1269: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.990725 +Vertex 1270: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.994445 +Vertex 1271: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.996635 +Vertex 1272: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.998773 +Vertex 1273: +Vertex groups: 1 + Group: 'LeftArm', Weight: 1.000318 +Vertex 1274: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.848196 + Group: 'LeftForeArm', Weight: 0.151765 +Vertex 1275: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.212948 + Group: 'LeftForeArm', Weight: 0.786995 +Vertex 1276: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.856169 + Group: 'LeftForeArm', Weight: 0.143526 +Vertex 1277: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.453469 + Group: 'LeftForeArm', Weight: 0.546424 +Vertex 1278: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.033015 + Group: 'LeftForeArm', Weight: 0.958253 +Vertex 1279: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.091797 + Group: 'LeftForeArm', Weight: 0.907825 +Vertex 1280: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.113141 + Group: 'LeftForeArm', Weight: 0.886644 +Vertex 1281: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.071849 + Group: 'LeftForeArm', Weight: 0.927635 +Vertex 1282: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.064011 + Group: 'LeftForeArm', Weight: 0.935834 +Vertex 1283: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.075030 + Group: 'LeftForeArm', Weight: 0.924842 +Vertex 1284: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.944176 + Group: 'LeftForeArm', Weight: 0.055781 +Vertex 1285: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.954060 + Group: 'LeftForeArm', Weight: 0.041734 +Vertex 1286: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.951262 + Group: 'LeftForeArm', Weight: 0.047041 +Vertex 1287: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.832849 + Group: 'LeftForeArm', Weight: 0.167023 +Vertex 1288: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.202792 + Group: 'RightHand', Weight: 0.765915 + Group: 'RightHandPinky1', Weight: 0.004530 +Vertex 1289: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.418454 + Group: 'RightHand', Weight: 0.567966 +Vertex 1290: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.054532 + Group: 'RightHand', Weight: 0.933015 +Vertex 1291: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.115960 + Group: 'RightHand', Weight: 0.842883 + Group: 'RightHandPinky1', Weight: 0.016530 +Vertex 1292: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.078842 + Group: 'RightHand', Weight: 0.874938 + Group: 'RightHandPinky1', Weight: 0.009250 +Vertex 1293: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.066944 + Group: 'RightHand', Weight: 0.889034 +Vertex 1294: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.068703 + Group: 'RightHand', Weight: 0.884852 + Group: 'RightHandThumb1', Weight: 0.019634 +Vertex 1295: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.117496 + Group: 'RightHand', Weight: 0.829196 + Group: 'RightHandThumb1', Weight: 0.045682 +Vertex 1296: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.155097 + Group: 'RightHand', Weight: 0.814304 + Group: 'RightHandThumb1', Weight: 0.008184 +Vertex 1297: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.336059 + Group: 'RightHand', Weight: 0.618435 + Group: 'RightHandThumb1', Weight: 0.037020 +Vertex 1298: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.310577 + Group: 'RightHand', Weight: 0.653322 + Group: 'RightHandThumb1', Weight: 0.019197 +Vertex 1299: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.048256 + Group: 'RightHand', Weight: 0.945828 +Vertex 1300: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.127772 + Group: 'RightHand', Weight: 0.866699 +Vertex 1301: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.998641 +Vertex 1302: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.997987 +Vertex 1303: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991907 +Vertex 1304: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.998240 +Vertex 1305: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.992845 +Vertex 1306: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.987412 +Vertex 1307: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.983232 +Vertex 1308: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.980031 +Vertex 1309: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.988613 +Vertex 1310: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.981728 +Vertex 1311: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.985487 +Vertex 1312: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.994746 +Vertex 1313: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.996757 +Vertex 1314: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.771545 + Group: 'RightArm', Weight: 0.182643 +Vertex 1315: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.780874 + Group: 'RightArm', Weight: 0.195177 +Vertex 1316: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.735804 + Group: 'RightArm', Weight: 0.099000 +Vertex 1317: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.011566 + Group: 'RightShoulder', Weight: 0.726707 + Group: 'RightArm', Weight: 0.161566 +Vertex 1318: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.030048 + Group: 'RightShoulder', Weight: 0.623695 + Group: 'RightArm', Weight: 0.285593 +Vertex 1319: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.045892 + Group: 'Spine2', Weight: 0.068611 + Group: 'RightShoulder', Weight: 0.574747 + Group: 'RightArm', Weight: 0.284963 +Vertex 1320: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068271 + Group: 'Spine2', Weight: 0.083307 + Group: 'RightShoulder', Weight: 0.524798 + Group: 'RightArm', Weight: 0.294693 +Vertex 1321: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.074432 + Group: 'Spine2', Weight: 0.085937 + Group: 'RightShoulder', Weight: 0.568732 + Group: 'RightArm', Weight: 0.239917 +Vertex 1322: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.019501 + Group: 'Spine2', Weight: 0.029827 + Group: 'RightShoulder', Weight: 0.653645 + Group: 'RightArm', Weight: 0.026662 +Vertex 1323: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.076051 + Group: 'Spine2', Weight: 0.083101 + Group: 'RightShoulder', Weight: 0.572742 + Group: 'RightArm', Weight: 0.216431 +Vertex 1324: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.058932 + Group: 'Spine2', Weight: 0.060431 + Group: 'RightShoulder', Weight: 0.603674 + Group: 'RightArm', Weight: 0.162414 +Vertex 1325: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.751627 + Group: 'RightArm', Weight: 0.197573 +Vertex 1326: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.753502 + Group: 'RightArm', Weight: 0.235135 +Vertex 1327: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.994002 +Vertex 1328: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.993985 +Vertex 1329: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.992396 +Vertex 1330: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.993189 +Vertex 1331: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.990005 +Vertex 1332: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.987139 +Vertex 1333: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.983448 +Vertex 1334: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.982430 +Vertex 1335: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.992042 +Vertex 1336: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.986438 +Vertex 1337: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.990405 +Vertex 1338: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.992617 +Vertex 1339: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.993303 +Vertex 1340: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.960669 + Group: 'RightForeArm', Weight: 0.025525 +Vertex 1341: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.957409 + Group: 'RightForeArm', Weight: 0.032190 +Vertex 1342: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.967217 + Group: 'RightForeArm', Weight: 0.014639 +Vertex 1343: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.972243 + Group: 'RightForeArm', Weight: 0.004970 +Vertex 1344: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.962395 + Group: 'RightForeArm', Weight: 0.023627 +Vertex 1345: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.983442 +Vertex 1346: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991748 +Vertex 1347: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.959309 + Group: 'RightForeArm', Weight: 0.028983 +Vertex 1348: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.989557 +Vertex 1349: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.984846 +Vertex 1350: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.977674 +Vertex 1351: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.967715 + Group: 'RightForeArm', Weight: 0.012073 +Vertex 1352: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.977861 +Vertex 1353: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.285431 + Group: 'RightForeArm', Weight: 0.714397 +Vertex 1354: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.187467 + Group: 'RightForeArm', Weight: 0.812436 +Vertex 1355: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.190656 + Group: 'RightForeArm', Weight: 0.809238 +Vertex 1356: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.272071 + Group: 'RightForeArm', Weight: 0.727882 +Vertex 1357: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.485166 + Group: 'RightForeArm', Weight: 0.514751 +Vertex 1358: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.486143 + Group: 'RightForeArm', Weight: 0.513791 +Vertex 1359: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.236631 + Group: 'RightForeArm', Weight: 0.763198 +Vertex 1360: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.197145 + Group: 'RightForeArm', Weight: 0.802765 +Vertex 1361: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.234382 + Group: 'RightForeArm', Weight: 0.765579 +Vertex 1362: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.209094 + Group: 'RightForeArm', Weight: 0.790771 +Vertex 1363: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.211175 + Group: 'RightForeArm', Weight: 0.788791 +Vertex 1364: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.442099 + Group: 'RightForeArm', Weight: 0.557859 +Vertex 1365: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.205957 + Group: 'RightForeArm', Weight: 0.793966 +Vertex 1366: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.133117 + Group: 'Spine2', Weight: 0.144197 + Group: 'RightShoulder', Weight: 0.526709 + Group: 'RightArm', Weight: 0.017614 +Vertex 1367: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.147516 + Group: 'Spine2', Weight: 0.169825 + Group: 'RightShoulder', Weight: 0.491465 + Group: 'RightArm', Weight: 0.024216 +Vertex 1368: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.092164 + Group: 'Spine2', Weight: 0.090106 + Group: 'RightShoulder', Weight: 0.610520 + Group: 'RightArm', Weight: 0.007915 +Vertex 1369: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.063146 + Group: 'Spine2', Weight: 0.072501 + Group: 'RightShoulder', Weight: 0.710797 + Group: 'RightArm', Weight: 0.000000 +Vertex 1370: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.021671 + Group: 'RightShoulder', Weight: 0.821842 + Group: 'RightArm', Weight: 0.000000 +Vertex 1371: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.023283 + Group: 'Spine2', Weight: 0.099019 + Group: 'Neck', Weight: 0.051597 + Group: 'RightShoulder', Weight: 0.770174 + Group: 'RightArm', Weight: 0.000000 +Vertex 1372: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.099630 + Group: 'Spine2', Weight: 0.189381 + Group: 'Neck', Weight: 0.020010 + Group: 'RightShoulder', Weight: 0.615877 + Group: 'RightArm', Weight: 0.000000 +Vertex 1373: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.571218 + Group: 'Spine2', Weight: 0.246107 + Group: 'Neck', Weight: 0.147655 + Group: 'Spine1', Weight: 0.034250 + Group: 'LeftShoulder', Weight: 0.000770 +Vertex 1374: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.512105 + Group: 'RightShoulder', Weight: 0.256199 + Group: 'Spine1', Weight: 0.117312 + Group: 'Neck', Weight: 0.075923 + Group: 'LeftShoulder', Weight: 0.038460 +Vertex 1375: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.780403 + Group: 'Spine', Weight: 0.150884 + Group: 'Spine2', Weight: 0.068714 + Group: 'RightArm', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1376: +Vertex groups: 5 + Group: 'Hips', Weight: 0.074146 + Group: 'Spine', Weight: 0.585456 + Group: 'Spine1', Weight: 0.252260 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1377: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.501030 + Group: 'Spine1', Weight: 0.266901 + Group: 'RightShoulder', Weight: 0.177621 + Group: 'Neck', Weight: 0.027939 + Group: 'LeftShoulder', Weight: 0.026509 +Vertex 1378: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.772062 + Group: 'Spine2', Weight: 0.127013 + Group: 'Spine', Weight: 0.056239 + Group: 'RightShoulder', Weight: 0.044686 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1379: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.210265 + Group: 'Spine2', Weight: 0.294647 + Group: 'RightShoulder', Weight: 0.404575 + Group: 'RightArm', Weight: 0.000000 +Vertex 1380: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.184364 + Group: 'Spine2', Weight: 0.176830 + Group: 'RightShoulder', Weight: 0.518760 + Group: 'RightArm', Weight: 0.000000 +Vertex 1381: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.201024 + Group: 'Spine2', Weight: 0.180602 + Group: 'RightShoulder', Weight: 0.474447 + Group: 'RightArm', Weight: 0.000000 +Vertex 1382: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.205004 + Group: 'Spine2', Weight: 0.227203 + Group: 'RightShoulder', Weight: 0.413392 + Group: 'RightArm', Weight: 0.000000 +Vertex 1383: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.206961 + Group: 'Spine2', Weight: 0.239928 + Group: 'RightShoulder', Weight: 0.392579 + Group: 'RightArm', Weight: 0.000000 +Vertex 1384: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.876537 + Group: 'RightArm', Weight: 0.000000 +Vertex 1385: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.019635 + Group: 'Neck', Weight: 0.070412 + Group: 'RightShoulder', Weight: 0.853728 + Group: 'RightArm', Weight: 0.000000 +Vertex 1386: +Vertex groups: 5 + Group: 'Spine', Weight: 0.029421 + Group: 'Spine1', Weight: 0.726341 + Group: 'Spine2', Weight: 0.133743 + Group: 'RightShoulder', Weight: 0.057096 + Group: 'RightArm', Weight: 0.000000 +Vertex 1387: +Vertex groups: 5 + Group: 'Spine', Weight: 0.001578 + Group: 'Spine1', Weight: 0.669928 + Group: 'Spine2', Weight: 0.173834 + Group: 'RightShoulder', Weight: 0.078580 + Group: 'RightArm', Weight: 0.000000 +Vertex 1388: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.054595 + Group: 'Neck', Weight: 0.181293 + Group: 'RightShoulder', Weight: 0.730367 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1389: +Vertex groups: 4 + Group: 'Neck', Weight: 0.239335 + Group: 'RightShoulder', Weight: 0.719132 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1390: +Vertex groups: 3 + Group: 'Neck', Weight: 0.087562 + Group: 'RightShoulder', Weight: 0.868571 + Group: 'RightArm', Weight: 0.000000 +Vertex 1391: +Vertex groups: 3 + Group: 'Neck', Weight: 0.002241 + Group: 'RightShoulder', Weight: 0.885596 + Group: 'RightArm', Weight: 0.000000 +Vertex 1392: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.344606 + Group: 'Neck', Weight: 0.322889 + Group: 'Spine2', Weight: 0.314224 + Group: 'LeftShoulder', Weight: 0.018281 + Group: 'RightArm', Weight: 0.000000 +Vertex 1393: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.480218 + Group: 'RightShoulder', Weight: 0.208877 + Group: 'Neck', Weight: 0.180862 + Group: 'LeftShoulder', Weight: 0.074311 + Group: 'Spine1', Weight: 0.055732 +Vertex 1394: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.457038 + Group: 'Spine2', Weight: 0.290462 + Group: 'Neck', Weight: 0.215803 + Group: 'Spine1', Weight: 0.018925 + Group: 'LeftShoulder', Weight: 0.017772 +Vertex 1395: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.429340 + Group: 'Neck', Weight: 0.272857 + Group: 'RightShoulder', Weight: 0.201775 + Group: 'LeftShoulder', Weight: 0.070620 + Group: 'Spine1', Weight: 0.025408 +Vertex 1396: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.069426 + Group: 'Neck', Weight: 0.320791 + Group: 'RightShoulder', Weight: 0.574655 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1397: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.068424 + Group: 'Neck', Weight: 0.426806 + Group: 'RightShoulder', Weight: 0.469229 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1398: +Vertex groups: 4 + Group: 'Neck', Weight: 0.584747 + Group: 'RightShoulder', Weight: 0.374332 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1399: +Vertex groups: 4 + Group: 'Neck', Weight: 0.403401 + Group: 'RightShoulder', Weight: 0.554673 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1400: +Vertex groups: 5 + Group: 'Spine', Weight: 0.012495 + Group: 'Spine1', Weight: 0.381802 + Group: 'Spine2', Weight: 0.290468 + Group: 'RightShoulder', Weight: 0.215734 + Group: 'RightArm', Weight: 0.000000 +Vertex 1401: +Vertex groups: 5 + Group: 'Spine', Weight: 0.011445 + Group: 'Spine1', Weight: 0.341037 + Group: 'Spine2', Weight: 0.291798 + Group: 'RightShoulder', Weight: 0.243442 + Group: 'RightArm', Weight: 0.000000 +Vertex 1402: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.682958 + Group: 'Spine2', Weight: 0.141565 + Group: 'RightShoulder', Weight: 0.088095 + Group: 'Spine', Weight: 0.087383 + Group: 'RightArm', Weight: 0.000000 +Vertex 1403: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.671689 + Group: 'Spine2', Weight: 0.140821 + Group: 'RightShoulder', Weight: 0.097233 + Group: 'Spine', Weight: 0.090258 + Group: 'RightArm', Weight: 0.000000 +Vertex 1404: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.725650 + Group: 'Spine', Weight: 0.132332 + Group: 'Spine2', Weight: 0.096255 + Group: 'RightShoulder', Weight: 0.045763 + Group: 'RightArm', Weight: 0.000000 +Vertex 1405: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.705486 + Group: 'Spine', Weight: 0.153218 + Group: 'Spine2', Weight: 0.086992 + Group: 'RightShoulder', Weight: 0.054303 + Group: 'RightArm', Weight: 0.000000 +Vertex 1406: +Vertex groups: 5 + Group: 'Hips', Weight: 0.017838 + Group: 'Spine', Weight: 0.565022 + Group: 'Spine1', Weight: 0.271008 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1407: +Vertex groups: 4 + Group: 'Spine', Weight: 0.543738 + Group: 'Spine1', Weight: 0.302722 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1408: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.752249 + Group: 'Spine', Weight: 0.159818 + Group: 'Spine2', Weight: 0.076893 + Group: 'RightShoulder', Weight: 0.011040 + Group: 'RightArm', Weight: 0.000000 +Vertex 1409: +Vertex groups: 5 + Group: 'Hips', Weight: 0.054997 + Group: 'Spine', Weight: 0.576753 + Group: 'Spine1', Weight: 0.255938 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1410: +Vertex groups: 5 + Group: 'Spine', Weight: 0.132918 + Group: 'Spine1', Weight: 0.752366 + Group: 'Spine2', Weight: 0.052783 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1411: +Vertex groups: 5 + Group: 'Hips', Weight: 0.086164 + Group: 'Spine', Weight: 0.590008 + Group: 'Spine1', Weight: 0.249997 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1412: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.661882 + Group: 'Spine2', Weight: 0.191296 + Group: 'RightShoulder', Weight: 0.077034 + Group: 'Spine', Weight: 0.069787 + Group: 'RightArm', Weight: 0.000000 +Vertex 1413: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.640072 + Group: 'Spine2', Weight: 0.200045 + Group: 'RightShoulder', Weight: 0.092491 + Group: 'Spine', Weight: 0.067392 + Group: 'RightArm', Weight: 0.000000 +Vertex 1414: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.682736 + Group: 'Spine2', Weight: 0.181224 + Group: 'Spine', Weight: 0.070935 + Group: 'RightShoulder', Weight: 0.065105 + Group: 'RightArm', Weight: 0.000000 +Vertex 1415: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.770015 + Group: 'Spine2', Weight: 0.125606 + Group: 'Spine', Weight: 0.073242 + Group: 'RightShoulder', Weight: 0.031136 + Group: 'RightArm', Weight: 0.000000 +Vertex 1416: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.584431 + Group: 'Spine2', Weight: 0.243572 + Group: 'RightShoulder', Weight: 0.132979 + Group: 'Spine', Weight: 0.039017 + Group: 'RightArm', Weight: 0.000000 +Vertex 1417: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.596321 + Group: 'Spine2', Weight: 0.206798 + Group: 'RightShoulder', Weight: 0.142078 + Group: 'Spine', Weight: 0.054803 + Group: 'RightArm', Weight: 0.000000 +Vertex 1418: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.578396 + Group: 'Spine2', Weight: 0.207098 + Group: 'RightShoulder', Weight: 0.157368 + Group: 'Spine', Weight: 0.057138 + Group: 'RightArm', Weight: 0.000000 +Vertex 1419: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.549901 + Group: 'Spine2', Weight: 0.263216 + Group: 'RightShoulder', Weight: 0.171764 + Group: 'Spine', Weight: 0.015118 + Group: 'RightArm', Weight: 0.000000 +Vertex 1420: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.423885 + Group: 'Spine2', Weight: 0.238220 + Group: 'RightShoulder', Weight: 0.243081 + Group: 'RightArm', Weight: 0.000000 +Vertex 1421: +Vertex groups: 5 + Group: 'Spine', Weight: 0.000682 + Group: 'Spine1', Weight: 0.464945 + Group: 'Spine2', Weight: 0.238510 + Group: 'RightShoulder', Weight: 0.203707 + Group: 'RightArm', Weight: 0.000000 +Vertex 1422: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.490440 + Group: 'Spine2', Weight: 0.209909 + Group: 'RightShoulder', Weight: 0.214278 + Group: 'RightArm', Weight: 0.000000 +Vertex 1423: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.529859 + Group: 'Spine2', Weight: 0.207615 + Group: 'RightShoulder', Weight: 0.183502 + Group: 'RightArm', Weight: 0.000000 +Vertex 1424: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.573393 + Group: 'Spine2', Weight: 0.216561 + Group: 'RightShoulder', Weight: 0.132623 + Group: 'RightArm', Weight: 0.000000 +Vertex 1425: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.606902 + Group: 'Spine2', Weight: 0.214248 + Group: 'RightShoulder', Weight: 0.099882 + Group: 'RightArm', Weight: 0.000000 +Vertex 1426: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.726796 + Group: 'Spine2', Weight: 0.154954 + Group: 'Spine', Weight: 0.072389 + Group: 'RightShoulder', Weight: 0.045862 + Group: 'RightArm', Weight: 0.000000 +Vertex 1427: +Vertex groups: 5 + Group: 'Spine', Weight: 0.001136 + Group: 'Spine1', Weight: 0.542665 + Group: 'Spine2', Weight: 0.201779 + Group: 'RightShoulder', Weight: 0.171918 + Group: 'RightArm', Weight: 0.000000 +Vertex 1428: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.630068 + Group: 'Spine2', Weight: 0.209187 + Group: 'RightShoulder', Weight: 0.139036 + Group: 'Spine', Weight: 0.021709 + Group: 'RightArm', Weight: 0.000000 +Vertex 1429: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.653810 + Group: 'Spine2', Weight: 0.194745 + Group: 'RightShoulder', Weight: 0.101368 + Group: 'Spine', Weight: 0.050078 + Group: 'RightArm', Weight: 0.000000 +Vertex 1430: +Vertex groups: 5 + Group: 'Spine', Weight: 0.002342 + Group: 'Spine1', Weight: 0.607848 + Group: 'Spine2', Weight: 0.180262 + Group: 'RightShoulder', Weight: 0.134373 + Group: 'RightArm', Weight: 0.000000 +Vertex 1431: +Vertex groups: 5 + Group: 'Spine', Weight: 0.024946 + Group: 'Spine1', Weight: 0.655901 + Group: 'Spine2', Weight: 0.164272 + Group: 'RightShoulder', Weight: 0.098293 + Group: 'RightArm', Weight: 0.000000 +Vertex 1432: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.699199 + Group: 'Spine2', Weight: 0.168062 + Group: 'RightShoulder', Weight: 0.080697 + Group: 'Spine', Weight: 0.052042 + Group: 'RightArm', Weight: 0.000000 +Vertex 1433: +Vertex groups: 5 + Group: 'Spine', Weight: 0.003108 + Group: 'Spine1', Weight: 0.656854 + Group: 'Spine2', Weight: 0.171844 + Group: 'RightShoulder', Weight: 0.095331 + Group: 'RightArm', Weight: 0.000000 +Vertex 1434: +Vertex groups: 5 + Group: 'Spine', Weight: 0.026610 + Group: 'Spine1', Weight: 0.704951 + Group: 'Spine2', Weight: 0.144033 + Group: 'RightShoulder', Weight: 0.070329 + Group: 'RightArm', Weight: 0.000000 +Vertex 1435: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.742888 + Group: 'Spine2', Weight: 0.143482 + Group: 'RightShoulder', Weight: 0.058916 + Group: 'Spine', Weight: 0.054714 + Group: 'RightArm', Weight: 0.000000 +Vertex 1436: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.661792 + Group: 'Spine2', Weight: 0.192730 + Group: 'LeftShoulder', Weight: 0.013361 + Group: 'RightShoulder', Weight: 0.062950 + Group: 'RightArm', Weight: 0.000000 +Vertex 1437: +Vertex groups: 5 + Group: 'Spine', Weight: 0.029215 + Group: 'Spine1', Weight: 0.746869 + Group: 'Spine2', Weight: 0.125488 + Group: 'RightShoulder', Weight: 0.029746 + Group: 'RightArm', Weight: 0.000000 +Vertex 1438: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.550013 + Group: 'Spine2', Weight: 0.277998 + Group: 'LeftShoulder', Weight: 0.023235 + Group: 'RightShoulder', Weight: 0.084046 + Group: 'RightArm', Weight: 0.000000 +Vertex 1439: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.819562 + Group: 'Spine2', Weight: 0.103612 + Group: 'Spine', Weight: 0.064995 + Group: 'RightShoulder', Weight: 0.011830 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1440: +Vertex groups: 5 + Group: 'Spine', Weight: 0.089563 + Group: 'Spine1', Weight: 0.769027 + Group: 'Spine2', Weight: 0.076286 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1441: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.701717 + Group: 'Spine2', Weight: 0.143422 + Group: 'Spine', Weight: 0.090135 + Group: 'RightShoulder', Weight: 0.064725 + Group: 'RightArm', Weight: 0.000000 +Vertex 1442: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.676981 + Group: 'Spine2', Weight: 0.159346 + Group: 'RightShoulder', Weight: 0.084851 + Group: 'Spine', Weight: 0.078822 + Group: 'RightArm', Weight: 0.000000 +Vertex 1443: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.720957 + Group: 'Spine2', Weight: 0.134052 + Group: 'Spine', Weight: 0.093281 + Group: 'RightShoulder', Weight: 0.051710 + Group: 'RightArm', Weight: 0.000000 +Vertex 1444: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.768278 + Group: 'Spine2', Weight: 0.110273 + Group: 'Spine', Weight: 0.099740 + Group: 'RightShoulder', Weight: 0.021709 + Group: 'RightArm', Weight: 0.000000 +Vertex 1445: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.593661 + Group: 'Spine2', Weight: 0.220331 + Group: 'RightShoulder', Weight: 0.138488 + Group: 'Spine', Weight: 0.047520 + Group: 'RightArm', Weight: 0.000000 +Vertex 1446: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.493994 + Group: 'Spine2', Weight: 0.293517 + Group: 'RightShoulder', Weight: 0.200297 + Group: 'Spine', Weight: 0.012192 + Group: 'RightArm', Weight: 0.000000 +Vertex 1447: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.373206 + Group: 'Spine2', Weight: 0.262924 + Group: 'RightShoulder', Weight: 0.257592 + Group: 'RightArm', Weight: 0.000000 +Vertex 1448: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.338359 + Group: 'Spine2', Weight: 0.240397 + Group: 'RightShoulder', Weight: 0.314152 + Group: 'RightArm', Weight: 0.000000 +Vertex 1449: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.419805 + Group: 'Spine2', Weight: 0.214647 + Group: 'RightShoulder', Weight: 0.273837 + Group: 'RightArm', Weight: 0.000000 +Vertex 1450: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.462212 + Group: 'Spine2', Weight: 0.231020 + Group: 'RightShoulder', Weight: 0.225551 + Group: 'RightArm', Weight: 0.000000 +Vertex 1451: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.508012 + Group: 'Spine2', Weight: 0.275439 + Group: 'LeftShoulder', Weight: 0.001554 + Group: 'RightShoulder', Weight: 0.134388 + Group: 'RightArm', Weight: 0.000000 +Vertex 1452: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.680713 + Group: 'Spine', Weight: 0.278679 + Group: 'Spine2', Weight: 0.040609 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1453: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.662075 + Group: 'Spine', Weight: 0.284111 + Group: 'Spine2', Weight: 0.048791 + Group: 'RightShoulder', Weight: 0.005023 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1454: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.685852 + Group: 'Spine', Weight: 0.286949 + Group: 'Spine2', Weight: 0.027199 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1455: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.695308 + Group: 'Spine', Weight: 0.278799 + Group: 'Hips', Weight: 0.018922 + Group: 'Spine2', Weight: 0.006971 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1456: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.681863 + Group: 'Spine', Weight: 0.291711 + Group: 'Spine2', Weight: 0.013943 + Group: 'Hips', Weight: 0.012483 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1457: +Vertex groups: 3 + Group: 'Neck', Weight: 0.065276 + Group: 'RightShoulder', Weight: 0.882371 + Group: 'RightArm', Weight: 0.000000 +Vertex 1458: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.886135 + Group: 'RightArm', Weight: 0.000000 +Vertex 1459: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.037523 + Group: 'Neck', Weight: 0.009799 + Group: 'RightShoulder', Weight: 0.879582 + Group: 'RightArm', Weight: 0.000000 +Vertex 1460: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.877874 + Group: 'RightArm', Weight: 0.000000 +Vertex 1461: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.063159 + Group: 'RightShoulder', Weight: 0.805303 + Group: 'RightArm', Weight: 0.000000 +Vertex 1462: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.089170 + Group: 'RightShoulder', Weight: 0.819544 + Group: 'RightArm', Weight: 0.000000 +Vertex 1463: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050853 + Group: 'Spine2', Weight: 0.136711 + Group: 'RightShoulder', Weight: 0.706218 + Group: 'RightArm', Weight: 0.000000 +Vertex 1464: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068626 + Group: 'Spine2', Weight: 0.135213 + Group: 'RightShoulder', Weight: 0.638837 + Group: 'RightArm', Weight: 0.000000 +Vertex 1465: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.196031 + Group: 'Spine2', Weight: 0.225450 + Group: 'RightShoulder', Weight: 0.399242 + Group: 'RightArm', Weight: 0.000000 +Vertex 1466: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.130463 + Group: 'Spine2', Weight: 0.154203 + Group: 'RightShoulder', Weight: 0.489020 + Group: 'RightArm', Weight: 0.100805 +Vertex 1467: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.072008 + Group: 'Spine2', Weight: 0.107636 + Group: 'RightShoulder', Weight: 0.591350 + Group: 'RightArm', Weight: 0.115078 +Vertex 1468: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.033650 + Group: 'Spine2', Weight: 0.077903 + Group: 'RightShoulder', Weight: 0.663393 + Group: 'RightArm', Weight: 0.105577 +Vertex 1469: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.024799 + Group: 'Spine2', Weight: 0.163621 + Group: 'RightShoulder', Weight: 0.719803 + Group: 'RightArm', Weight: 0.000000 +Vertex 1470: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.123322 + Group: 'Spine2', Weight: 0.186914 + Group: 'RightShoulder', Weight: 0.532369 + Group: 'RightArm', Weight: 0.000000 +Vertex 1471: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.805881 + Group: 'Spine2', Weight: 0.158519 + Group: 'LeftShoulder', Weight: 0.022581 + Group: 'Neck', Weight: 0.013020 + Group: 'RightArm', Weight: 0.000000 +Vertex 1472: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.686367 + Group: 'Spine2', Weight: 0.259290 + Group: 'LeftShoulder', Weight: 0.040092 + Group: 'Spine1', Weight: 0.014251 + Group: 'RightArm', Weight: 0.000000 +Vertex 1473: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.031218 + Group: 'Neck', Weight: 0.172441 + Group: 'RightShoulder', Weight: 0.757381 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1474: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.842707 + Group: 'Spine2', Weight: 0.087037 + Group: 'Neck', Weight: 0.066667 + Group: 'LeftShoulder', Weight: 0.003589 + Group: 'RightArm', Weight: 0.000000 +Vertex 1475: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.624193 + Group: 'Spine2', Weight: 0.245277 + Group: 'LeftShoulder', Weight: 0.079287 + Group: 'Neck', Weight: 0.051243 + Group: 'RightArm', Weight: 0.000000 +Vertex 1476: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.537810 + Group: 'Spine2', Weight: 0.363953 + Group: 'LeftShoulder', Weight: 0.088587 + Group: 'Spine1', Weight: 0.008866 + Group: 'Neck', Weight: 0.000784 +Vertex 1477: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.646655 + Group: 'Spine2', Weight: 0.174761 + Group: 'Neck', Weight: 0.112874 + Group: 'LeftShoulder', Weight: 0.065709 + Group: 'RightArm', Weight: 0.000000 +Vertex 1478: +Vertex groups: 5 + Group: 'RightShoulder', Weight: 0.554831 + Group: 'Neck', Weight: 0.254710 + Group: 'Spine2', Weight: 0.133538 + Group: 'LeftShoulder', Weight: 0.056921 + Group: 'RightArm', Weight: 0.000000 +Vertex 1479: +Vertex groups: 4 + Group: 'Neck', Weight: 0.784535 + Group: 'RightShoulder', Weight: 0.160419 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1480: +Vertex groups: 5 + Group: 'Neck', Weight: 0.727450 + Group: 'RightShoulder', Weight: 0.249589 + Group: 'Spine2', Weight: 0.022898 + Group: 'LeftShoulder', Weight: 0.000062 + Group: 'RightArm', Weight: 0.000000 +Vertex 1481: +Vertex groups: 5 + Group: 'Spine', Weight: 0.014122 + Group: 'Spine1', Weight: 0.328670 + Group: 'Spine2', Weight: 0.286045 + Group: 'RightShoulder', Weight: 0.253742 + Group: 'RightArm', Weight: 0.000000 +Vertex 1482: +Vertex groups: 5 + Group: 'Spine', Weight: 0.053926 + Group: 'Spine1', Weight: 0.523571 + Group: 'Spine2', Weight: 0.203984 + Group: 'RightShoulder', Weight: 0.154982 + Group: 'RightArm', Weight: 0.000000 +Vertex 1483: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.661106 + Group: 'Spine2', Weight: 0.147057 + Group: 'RightShoulder', Weight: 0.101245 + Group: 'Spine', Weight: 0.090592 + Group: 'RightArm', Weight: 0.000000 +Vertex 1484: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.696905 + Group: 'Spine', Weight: 0.153899 + Group: 'Spine2', Weight: 0.091277 + Group: 'RightShoulder', Weight: 0.057919 + Group: 'RightArm', Weight: 0.000000 +Vertex 1485: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.649638 + Group: 'Spine', Weight: 0.286691 + Group: 'Spine2', Weight: 0.053916 + Group: 'RightShoulder', Weight: 0.009756 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1486: +Vertex groups: 4 + Group: 'Spine', Weight: 0.549998 + Group: 'Spine1', Weight: 0.310039 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1487: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.261278 + Group: 'Spine2', Weight: 0.311216 + Group: 'RightShoulder', Weight: 0.309805 + Group: 'RightArm', Weight: 0.000000 +Vertex 1488: +Vertex groups: 5 + Group: 'Spine', Weight: 0.041431 + Group: 'Spine1', Weight: 0.479046 + Group: 'Spine2', Weight: 0.249146 + Group: 'RightShoulder', Weight: 0.168130 + Group: 'RightArm', Weight: 0.000000 +Vertex 1489: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.650487 + Group: 'Spine2', Weight: 0.168616 + Group: 'RightShoulder', Weight: 0.101160 + Group: 'Spine', Weight: 0.079738 + Group: 'RightArm', Weight: 0.000000 +Vertex 1490: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.703815 + Group: 'Spine', Weight: 0.143196 + Group: 'Spine2', Weight: 0.098109 + Group: 'RightShoulder', Weight: 0.054880 + Group: 'RightArm', Weight: 0.000000 +Vertex 1491: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.663888 + Group: 'Spine', Weight: 0.273646 + Group: 'Spine2', Weight: 0.055946 + Group: 'RightShoulder', Weight: 0.006520 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1492: +Vertex groups: 4 + Group: 'Spine', Weight: 0.572838 + Group: 'Spine1', Weight: 0.311289 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1493: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.103529 + Group: 'Spine2', Weight: 0.238995 + Group: 'RightShoulder', Weight: 0.550743 + Group: 'RightArm', Weight: 0.000000 +Vertex 1494: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.592908 + Group: 'RightShoulder', Weight: 0.260744 + Group: 'LeftShoulder', Weight: 0.084370 + Group: 'Spine1', Weight: 0.061978 + Group: 'RightArm', Weight: 0.000000 +Vertex 1495: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.519752 + Group: 'RightShoulder', Weight: 0.356144 + Group: 'Spine1', Weight: 0.078709 + Group: 'LeftShoulder', Weight: 0.045396 + Group: 'RightArm', Weight: 0.000000 +Vertex 1496: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.099115 + Group: 'Spine2', Weight: 0.335807 + Group: 'RightShoulder', Weight: 0.483240 + Group: 'RightArm', Weight: 0.000000 +Vertex 1497: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.207093 + Group: 'Spine2', Weight: 0.376035 + Group: 'RightShoulder', Weight: 0.323383 + Group: 'RightArm', Weight: 0.000000 +Vertex 1498: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.172761 + Group: 'Spine2', Weight: 0.476234 + Group: 'RightShoulder', Weight: 0.276322 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1499: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.621507 + Group: 'RightShoulder', Weight: 0.189216 + Group: 'Spine1', Weight: 0.158733 + Group: 'LeftShoulder', Weight: 0.030544 + Group: 'RightArm', Weight: 0.000000 +Vertex 1500: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.602647 + Group: 'Spine1', Weight: 0.280939 + Group: 'RightShoulder', Weight: 0.103432 + Group: 'LeftShoulder', Weight: 0.012982 + Group: 'RightArm', Weight: 0.000000 +Vertex 1501: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.401268 + Group: 'Spine1', Weight: 0.394689 + Group: 'RightShoulder', Weight: 0.184495 + Group: 'Spine', Weight: 0.019548 + Group: 'RightArm', Weight: 0.000000 +Vertex 1502: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.319365 + Group: 'Spine2', Weight: 0.472496 + Group: 'RightShoulder', Weight: 0.139306 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1503: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.658020 + Group: 'Spine2', Weight: 0.191148 + Group: 'RightShoulder', Weight: 0.082323 + Group: 'Spine', Weight: 0.068509 + Group: 'RightArm', Weight: 0.000000 +Vertex 1504: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.669068 + Group: 'Spine2', Weight: 0.219873 + Group: 'RightShoulder', Weight: 0.064608 + Group: 'Spine', Weight: 0.046451 + Group: 'RightArm', Weight: 0.000000 +Vertex 1505: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.736789 + Group: 'Spine', Weight: 0.128055 + Group: 'Spine2', Weight: 0.099797 + Group: 'RightShoulder', Weight: 0.035359 + Group: 'RightArm', Weight: 0.000000 +Vertex 1506: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.798012 + Group: 'Spine', Weight: 0.102314 + Group: 'Spine2', Weight: 0.093811 + Group: 'RightShoulder', Weight: 0.005863 + Group: 'RightArm', Weight: 0.000000 +Vertex 1507: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.683036 + Group: 'Spine', Weight: 0.275392 + Group: 'Spine2', Weight: 0.041572 + Group: 'RightArm', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1508: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.726294 + Group: 'Spine', Weight: 0.257869 + Group: 'Spine2', Weight: 0.015836 + Group: 'RightArm', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1509: +Vertex groups: 4 + Group: 'Spine', Weight: 0.617082 + Group: 'Spine1', Weight: 0.295807 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1510: +Vertex groups: 4 + Group: 'Spine', Weight: 0.686215 + Group: 'Spine1', Weight: 0.257781 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1511: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.713159 + Group: 'Spine2', Weight: 0.235010 + Group: 'RightShoulder', Weight: 0.031757 + Group: 'Spine', Weight: 0.020074 + Group: 'RightArm', Weight: 0.000000 +Vertex 1512: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.838659 + Group: 'Spine2', Weight: 0.081712 + Group: 'Spine', Weight: 0.079629 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1513: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.661576 + Group: 'RightShoulder', Weight: 0.168073 + Group: 'Spine1', Weight: 0.086233 + Group: 'LeftShoulder', Weight: 0.084118 + Group: 'RightArm', Weight: 0.000000 +Vertex 1514: +Vertex groups: 5 + Group: 'Hips', Weight: 0.229614 + Group: 'Spine', Weight: 0.498968 + Group: 'Spine1', Weight: 0.086804 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1515: +Vertex groups: 5 + Group: 'Hips', Weight: 0.077905 + Group: 'Spine', Weight: 0.543262 + Group: 'Spine1', Weight: 0.123302 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1516: +Vertex groups: 5 + Group: 'Hips', Weight: 0.035819 + Group: 'Spine', Weight: 0.569689 + Group: 'Spine1', Weight: 0.143996 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1517: +Vertex groups: 5 + Group: 'Hips', Weight: 0.142916 + Group: 'Spine', Weight: 0.520578 + Group: 'Spine1', Weight: 0.096878 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1518: +Vertex groups: 5 + Group: 'Hips', Weight: 0.301081 + Group: 'Spine', Weight: 0.476578 + Group: 'Spine1', Weight: 0.083171 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1519: +Vertex groups: 4 + Group: 'Spine', Weight: 0.606418 + Group: 'Spine1', Weight: 0.150934 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1520: +Vertex groups: 4 + Group: 'Spine', Weight: 0.657431 + Group: 'Spine1', Weight: 0.157326 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1521: +Vertex groups: 4 + Group: 'Spine', Weight: 0.710665 + Group: 'Spine1', Weight: 0.163954 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1522: +Vertex groups: 4 + Group: 'Spine', Weight: 0.770904 + Group: 'Spine1', Weight: 0.134774 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1523: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.810445 + Group: 'Spine', Weight: 0.135616 + Group: 'Spine2', Weight: 0.053940 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1524: +Vertex groups: 5 + Group: 'Hips', Weight: 0.066260 + Group: 'Spine', Weight: 0.566540 + Group: 'Spine1', Weight: 0.165188 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1525: +Vertex groups: 4 + Group: 'Spine', Weight: 0.606974 + Group: 'Spine1', Weight: 0.207633 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1526: +Vertex groups: 5 + Group: 'Hips', Weight: 0.021765 + Group: 'Spine', Weight: 0.582680 + Group: 'Spine1', Weight: 0.193562 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1527: +Vertex groups: 4 + Group: 'Spine', Weight: 0.652750 + Group: 'Spine1', Weight: 0.197856 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1528: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.396285 + Group: 'Neck', Weight: 0.326898 + Group: 'RightShoulder', Weight: 0.200304 + Group: 'LeftShoulder', Weight: 0.066077 + Group: 'Spine1', Weight: 0.010436 +Vertex 1529: +Vertex groups: 4 + Group: 'Neck', Weight: 0.201154 + Group: 'Head', Weight: 0.999899 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1530: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.001188 + Group: 'Neck', Weight: 0.660075 + Group: 'Head', Weight: 0.404696 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1531: +Vertex groups: 5 + Group: 'Neck', Weight: 0.658506 + Group: 'Spine2', Weight: 0.163548 + Group: 'RightShoulder', Weight: 0.115534 + Group: 'Head', Weight: 0.044009 + Group: 'LeftShoulder', Weight: 0.018404 +Vertex 1532: +Vertex groups: 5 + Group: 'Neck', Weight: 0.765757 + Group: 'Head', Weight: 0.123991 + Group: 'Spine2', Weight: 0.065294 + Group: 'RightShoulder', Weight: 0.044957 + Group: 'RightArm', Weight: 0.000000 +Vertex 1533: +Vertex groups: 4 + Group: 'Neck', Weight: 0.678262 + Group: 'Head', Weight: 0.448695 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1534: +Vertex groups: 5 + Group: 'Neck', Weight: 0.706125 + Group: 'RightShoulder', Weight: 0.140077 + Group: 'Spine2', Weight: 0.118267 + Group: 'Head', Weight: 0.035531 + Group: 'RightArm', Weight: 0.000000 +Vertex 1535: +Vertex groups: 5 + Group: 'Neck', Weight: 0.839239 + Group: 'Head', Weight: 0.097365 + Group: 'RightShoulder', Weight: 0.047643 + Group: 'Spine2', Weight: 0.015753 + Group: 'RightArm', Weight: 0.000000 +Vertex 1536: +Vertex groups: 4 + Group: 'Neck', Weight: 0.754556 + Group: 'Head', Weight: 0.237992 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1537: +Vertex groups: 5 + Group: 'Neck', Weight: 0.796426 + Group: 'Head', Weight: 0.005697 + Group: 'RightShoulder', Weight: 0.144524 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1538: +Vertex groups: 5 + Group: 'Neck', Weight: 0.874622 + Group: 'Head', Weight: 0.067642 + Group: 'RightShoulder', Weight: 0.033285 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1539: +Vertex groups: 4 + Group: 'Neck', Weight: 0.632395 + Group: 'Head', Weight: 0.387618 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1540: +Vertex groups: 4 + Group: 'Neck', Weight: 0.853469 + Group: 'RightShoulder', Weight: 0.108532 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1541: +Vertex groups: 5 + Group: 'Neck', Weight: 0.896982 + Group: 'Head', Weight: 0.070053 + Group: 'RightShoulder', Weight: 0.002479 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1542: +Vertex groups: 4 + Group: 'Neck', Weight: 0.714445 + Group: 'Head', Weight: 0.319694 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1543: +Vertex groups: 5 + Group: 'Neck', Weight: 0.908425 + Group: 'Head', Weight: 0.012650 + Group: 'RightShoulder', Weight: 0.039242 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1544: +Vertex groups: 4 + Group: 'Neck', Weight: 0.879714 + Group: 'Head', Weight: 0.098179 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1545: +Vertex groups: 5 + Group: 'Neck', Weight: 0.385030 + Group: 'Spine2', Weight: 0.304936 + Group: 'RightShoulder', Weight: 0.292607 + Group: 'LeftShoulder', Weight: 0.017428 + Group: 'RightArm', Weight: 0.000000 +Vertex 1546: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.073745 + Group: 'Neck', Weight: 0.529738 + Group: 'RightShoulder', Weight: 0.358337 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1547: +Vertex groups: 4 + Group: 'Neck', Weight: 0.829903 + Group: 'RightShoulder', Weight: 0.122259 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1548: +Vertex groups: 4 + Group: 'Neck', Weight: 0.236711 + Group: 'Head', Weight: 0.998376 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1549: +Vertex groups: 3 + Group: 'Neck', Weight: 0.030044 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1550: +Vertex groups: 4 + Group: 'Neck', Weight: 0.429526 + Group: 'Head', Weight: 0.907851 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1551: +Vertex groups: 4 + Group: 'Neck', Weight: 0.421811 + Group: 'Head', Weight: 0.919690 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1552: +Vertex groups: 4 + Group: 'Neck', Weight: 0.209107 + Group: 'Head', Weight: 0.999630 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1553: +Vertex groups: 4 + Group: 'Neck', Weight: 0.088200 + Group: 'Head', Weight: 0.997429 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1554: +Vertex groups: 3 + Group: 'Neck', Weight: 0.145251 + Group: 'Head', Weight: 0.977774 + Group: 'RightArm', Weight: 0.000000 +Vertex 1555: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999967 + Group: 'RightArm', Weight: 0.000000 +Vertex 1556: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1557: +Vertex groups: 3 + Group: 'Neck', Weight: 0.020501 + Group: 'Head', Weight: 0.977027 + Group: 'RightArm', Weight: 0.000000 +Vertex 1558: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'RightArm', Weight: 0.000000 +Vertex 1559: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 + Group: 'RightArm', Weight: 0.000000 +Vertex 1560: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1561: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999963 + Group: 'RightArm', Weight: 0.000000 +Vertex 1562: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1563: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1564: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1565: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1566: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1567: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998127 + Group: 'RightArm', Weight: 0.000000 +Vertex 1568: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999704 +Vertex 1569: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 1570: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999128 +Vertex 1571: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1572: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 1573: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'RightArm', Weight: 0.000000 +Vertex 1574: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1575: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998175 +Vertex 1576: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'RightArm', Weight: 0.000000 +Vertex 1577: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1578: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1579: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1580: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1581: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999785 +Vertex 1582: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997819 +Vertex 1583: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999956 + Group: 'RightArm', Weight: 0.000000 +Vertex 1584: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999983 +Vertex 1585: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999957 +Vertex 1586: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999670 +Vertex 1587: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999686 +Vertex 1588: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999980 +Vertex 1589: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000134 + Group: 'Head', Weight: 0.999331 +Vertex 1590: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999879 +Vertex 1591: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1592: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999978 +Vertex 1593: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999614 +Vertex 1594: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1595: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 + Group: 'RightArm', Weight: 0.000000 +Vertex 1596: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000631 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1597: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998962 +Vertex 1598: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999861 +Vertex 1599: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1600: +Vertex groups: 4 + Group: 'Neck', Weight: 0.015457 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1601: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000217 + Group: 'Head', Weight: 0.999967 +Vertex 1602: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000985 + Group: 'Head', Weight: 1.000000 +Vertex 1603: +Vertex groups: 2 + Group: 'Neck', Weight: 0.002043 + Group: 'Head', Weight: 1.000000 +Vertex 1604: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 1605: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999980 +Vertex 1606: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999915 +Vertex 1607: +Vertex groups: 2 + Group: 'Head', Weight: 0.999998 + Group: 'Neck', Weight: 0.000000 +Vertex 1608: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999809 +Vertex 1609: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1610: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999975 +Vertex 1611: +Vertex groups: 2 + Group: 'Head', Weight: 0.999948 + Group: 'Neck', Weight: 0.000000 +Vertex 1612: +Vertex groups: 3 + Group: 'Neck', Weight: 0.007561 + Group: 'Head', Weight: 0.999352 + Group: 'RightArm', Weight: 0.000000 +Vertex 1613: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 1614: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999987 + Group: 'RightArm', Weight: 0.000000 +Vertex 1615: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000126 + Group: 'Head', Weight: 0.996979 + Group: 'RightArm', Weight: 0.000000 +Vertex 1616: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.987343 + Group: 'RightArm', Weight: 0.000000 +Vertex 1617: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.976242 +Vertex 1618: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000519 + Group: 'Head', Weight: 0.968591 +Vertex 1619: +Vertex groups: 3 + Group: 'Neck', Weight: 0.038636 + Group: 'Head', Weight: 0.977432 + Group: 'RightArm', Weight: 0.000000 +Vertex 1620: +Vertex groups: 3 + Group: 'Neck', Weight: 0.040751 + Group: 'Head', Weight: 0.980922 + Group: 'RightArm', Weight: 0.000000 +Vertex 1621: +Vertex groups: 3 + Group: 'Neck', Weight: 0.024422 + Group: 'Head', Weight: 0.991833 + Group: 'RightArm', Weight: 0.000000 +Vertex 1622: +Vertex groups: 3 + Group: 'Neck', Weight: 0.040552 + Group: 'Head', Weight: 0.999474 + Group: 'RightArm', Weight: 0.000000 +Vertex 1623: +Vertex groups: 3 + Group: 'Neck', Weight: 0.026708 + Group: 'Head', Weight: 0.999655 + Group: 'RightArm', Weight: 0.000000 +Vertex 1624: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992627 + Group: 'RightArm', Weight: 0.000000 +Vertex 1625: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998411 +Vertex 1626: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999744 +Vertex 1627: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1628: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999754 +Vertex 1629: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999132 +Vertex 1630: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998957 +Vertex 1631: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999903 +Vertex 1632: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999944 +Vertex 1633: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999917 +Vertex 1634: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999249 +Vertex 1635: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1636: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999972 +Vertex 1637: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999339 +Vertex 1638: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998541 +Vertex 1639: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999638 +Vertex 1640: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999807 +Vertex 1641: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999679 +Vertex 1642: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999009 +Vertex 1643: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999975 +Vertex 1644: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999977 +Vertex 1645: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999912 +Vertex 1646: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999940 +Vertex 1647: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999808 +Vertex 1648: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1649: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999837 +Vertex 1650: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999772 +Vertex 1651: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999909 +Vertex 1652: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999867 +Vertex 1653: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999940 +Vertex 1654: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999377 +Vertex 1655: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998941 +Vertex 1656: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998998 +Vertex 1657: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999480 +Vertex 1658: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996443 + Group: 'RightArm', Weight: 0.000000 +Vertex 1659: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999945 +Vertex 1660: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998453 +Vertex 1661: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999959 +Vertex 1662: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999935 +Vertex 1663: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999881 +Vertex 1664: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999829 +Vertex 1665: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998011 +Vertex 1666: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986508 +Vertex 1667: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.971741 +Vertex 1668: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999893 +Vertex 1669: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1670: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999566 +Vertex 1671: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988788 +Vertex 1672: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992100 +Vertex 1673: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999531 +Vertex 1674: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999691 +Vertex 1675: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.980315 +Vertex 1676: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999965 +Vertex 1677: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999807 +Vertex 1678: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999466 +Vertex 1679: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997851 +Vertex 1680: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1681: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994675 +Vertex 1682: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989603 +Vertex 1683: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986421 +Vertex 1684: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986595 +Vertex 1685: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988430 +Vertex 1686: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991375 +Vertex 1687: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.993594 +Vertex 1688: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992844 +Vertex 1689: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995766 +Vertex 1690: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994807 +Vertex 1691: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998765 +Vertex 1692: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998846 +Vertex 1693: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992168 +Vertex 1694: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988155 +Vertex 1695: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.985239 +Vertex 1696: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.982514 +Vertex 1697: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.980128 +Vertex 1698: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.973470 +Vertex 1699: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.972404 +Vertex 1700: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994529 +Vertex 1701: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999236 +Vertex 1702: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1703: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999987 +Vertex 1704: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999984 +Vertex 1705: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 1706: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.979666 +Vertex 1707: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.982541 +Vertex 1708: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.977794 +Vertex 1709: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.976286 +Vertex 1710: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994396 +Vertex 1711: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998861 +Vertex 1712: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1713: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 1714: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991914 +Vertex 1715: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989981 +Vertex 1716: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988894 +Vertex 1717: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989206 +Vertex 1718: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.989375 +Vertex 1719: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.990466 +Vertex 1720: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991619 +Vertex 1721: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.990743 +Vertex 1722: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.988729 +Vertex 1723: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992327 +Vertex 1724: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991907 +Vertex 1725: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995687 +Vertex 1726: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.987235 +Vertex 1727: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.987154 +Vertex 1728: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.991132 +Vertex 1729: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.983148 +Vertex 1730: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.984425 +Vertex 1731: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.986856 +Vertex 1732: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994461 +Vertex 1733: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997511 +Vertex 1734: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999179 +Vertex 1735: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999951 +Vertex 1736: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999907 +Vertex 1737: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1738: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1739: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999800 +Vertex 1740: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998350 +Vertex 1741: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1742: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992906 +Vertex 1743: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.993229 +Vertex 1744: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992583 +Vertex 1745: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999495 +Vertex 1746: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.992424 +Vertex 1747: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1748: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999899 +Vertex 1749: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 1750: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999771 +Vertex 1751: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 1752: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999881 +Vertex 1753: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 1754: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999674 +Vertex 1755: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999989 +Vertex 1756: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999985 +Vertex 1757: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1758: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1759: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1760: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1761: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1762: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999982 +Vertex 1763: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999995 +Vertex 1764: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1765: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1766: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1767: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1768: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999993 +Vertex 1769: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 1770: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1771: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1772: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1773: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999995 +Vertex 1774: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1775: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 1776: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999968 +Vertex 1777: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999983 +Vertex 1778: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1779: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1780: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1781: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1782: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1783: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1784: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1785: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1786: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1787: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999993 +Vertex 1788: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999993 +Vertex 1789: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999992 +Vertex 1790: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1791: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1792: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995421 +Vertex 1793: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999000 +Vertex 1794: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996968 +Vertex 1795: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.995744 +Vertex 1796: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999640 +Vertex 1797: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 1798: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1799: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999958 +Vertex 1800: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1801: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1802: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1803: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 1804: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1805: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1806: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1807: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1808: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 +Vertex 1809: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999983 +Vertex 1810: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 1811: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 1812: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1813: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1814: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1815: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1816: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 1817: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1818: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1819: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999988 +Vertex 1820: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1821: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 1822: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1823: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 1824: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1825: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1826: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1827: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1828: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1829: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999990 +Vertex 1830: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1831: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1832: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1833: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1834: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1835: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999823 +Vertex 1836: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.994517 +Vertex 1837: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999332 +Vertex 1838: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999687 +Vertex 1839: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996262 +Vertex 1840: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999886 +Vertex 1841: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.993685 +Vertex 1842: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.997056 +Vertex 1843: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.996367 +Vertex 1844: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999876 +Vertex 1845: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999638 +Vertex 1846: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999499 +Vertex 1847: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999944 + Group: 'RightArm', Weight: 0.000000 +Vertex 1848: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998895 +Vertex 1849: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999813 + Group: 'RightArm', Weight: 0.000000 +Vertex 1850: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999085 + Group: 'RightArm', Weight: 0.000000 +Vertex 1851: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1852: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999996 + Group: 'RightArm', Weight: 0.000000 +Vertex 1853: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999992 + Group: 'RightArm', Weight: 0.000000 +Vertex 1854: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.998500 + Group: 'RightArm', Weight: 0.000000 +Vertex 1855: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999213 +Vertex 1856: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999943 +Vertex 1857: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1858: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999965 +Vertex 1859: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 1860: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999900 +Vertex 1861: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1862: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999840 +Vertex 1863: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1864: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999989 +Vertex 1865: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999991 +Vertex 1866: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1867: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999967 +Vertex 1868: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999412 +Vertex 1869: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999915 +Vertex 1870: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 +Vertex 1871: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 +Vertex 1872: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999484 +Vertex 1873: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999952 +Vertex 1874: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1875: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1876: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999644 +Vertex 1877: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999976 +Vertex 1878: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999967 +Vertex 1879: +Vertex groups: 2 + Group: 'Head', Weight: 0.999747 + Group: 'Neck', Weight: 0.000000 +Vertex 1880: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1881: +Vertex groups: 2 + Group: 'Head', Weight: 0.999980 + Group: 'Neck', Weight: 0.000000 +Vertex 1882: +Vertex groups: 2 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 1883: +Vertex groups: 2 + Group: 'Head', Weight: 0.999998 + Group: 'Neck', Weight: 0.000000 +Vertex 1884: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999980 +Vertex 1885: +Vertex groups: 4 + Group: 'Neck', Weight: 0.089311 + Group: 'Head', Weight: 1.000000 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1886: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 1887: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000265 + Group: 'Head', Weight: 1.000000 +Vertex 1888: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999973 +Vertex 1889: +Vertex groups: 2 + Group: 'Head', Weight: 0.999983 + Group: 'Neck', Weight: 0.000000 +Vertex 1890: +Vertex groups: 2 + Group: 'Head', Weight: 0.999985 + Group: 'Neck', Weight: 0.000000 +Vertex 1891: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999984 +Vertex 1892: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1893: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999998 +Vertex 1894: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 +Vertex 1895: +Vertex groups: 2 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 +Vertex 1896: +Vertex groups: 4 + Group: 'Neck', Weight: 0.701504 + Group: 'RightShoulder', Weight: 0.256144 + Group: 'RightArm', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 1897: +Vertex groups: 5 + Group: 'Neck', Weight: 0.497321 + Group: 'RightShoulder', Weight: 0.339498 + Group: 'Spine2', Weight: 0.103411 + Group: 'LeftShoulder', Weight: 0.059770 + Group: 'RightArm', Weight: 0.000000 +Vertex 1898: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.210164 + Group: 'RightArm', Weight: 0.654087 +Vertex 1899: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.200821 + Group: 'RightArm', Weight: 0.685966 +Vertex 1900: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.326824 + Group: 'RightArm', Weight: 0.589709 +Vertex 1901: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.231657 + Group: 'RightArm', Weight: 0.640321 +Vertex 1902: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.198419 + Group: 'RightArm', Weight: 0.790172 +Vertex 1903: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.251101 + Group: 'RightArm', Weight: 0.736390 +Vertex 1904: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.353553 + Group: 'RightArm', Weight: 0.622032 +Vertex 1905: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.162440 + Group: 'RightArm', Weight: 0.803502 +Vertex 1906: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.100045 + Group: 'RightArm', Weight: 0.882436 +Vertex 1907: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.074193 + Group: 'RightArm', Weight: 0.913428 +Vertex 1908: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.061641 + Group: 'RightArm', Weight: 0.932440 +Vertex 1909: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.072922 + Group: 'RightArm', Weight: 0.923277 +Vertex 1910: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.118587 + Group: 'RightArm', Weight: 0.872786 +Vertex 1911: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.228280 + Group: 'RightArm', Weight: 0.750190 +Vertex 1912: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.109705 + Group: 'Spine2', Weight: 0.119104 + Group: 'RightShoulder', Weight: 0.552108 + Group: 'RightArm', Weight: 0.074552 +Vertex 1913: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050477 + Group: 'Spine2', Weight: 0.057876 + Group: 'RightShoulder', Weight: 0.701352 + Group: 'RightArm', Weight: 0.000000 +Vertex 1914: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.005851 + Group: 'RightShoulder', Weight: 0.800854 + Group: 'RightArm', Weight: 0.000403 +Vertex 1915: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.078074 + Group: 'Spine2', Weight: 0.077803 + Group: 'RightShoulder', Weight: 0.613255 + Group: 'RightArm', Weight: 0.040811 +Vertex 1916: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.117231 + Group: 'Spine2', Weight: 0.134974 + Group: 'RightShoulder', Weight: 0.531327 + Group: 'RightArm', Weight: 0.107834 +Vertex 1917: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.843135 + Group: 'RightArm', Weight: 0.005830 +Vertex 1918: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.853739 + Group: 'RightArm', Weight: 0.004439 +Vertex 1919: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.857872 + Group: 'RightArm', Weight: 0.019335 +Vertex 1920: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.850524 + Group: 'RightArm', Weight: 0.004225 +Vertex 1921: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.048390 + Group: 'RightShoulder', Weight: 0.788174 + Group: 'RightArm', Weight: 0.000283 +Vertex 1922: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.017825 + Group: 'Spine2', Weight: 0.062319 + Group: 'RightShoulder', Weight: 0.656761 + Group: 'RightArm', Weight: 0.189400 +Vertex 1923: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.062538 + Group: 'Spine2', Weight: 0.092161 + Group: 'RightShoulder', Weight: 0.589894 + Group: 'RightArm', Weight: 0.193651 +Vertex 1924: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.105485 + Group: 'Spine2', Weight: 0.126026 + Group: 'RightShoulder', Weight: 0.511414 + Group: 'RightArm', Weight: 0.185781 +Vertex 1925: +Vertex groups: 5 + Group: 'Hips', Weight: 0.385064 + Group: 'Spine', Weight: 0.392847 + Group: 'Spine1', Weight: 0.067974 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1926: +Vertex groups: 5 + Group: 'Hips', Weight: 0.286594 + Group: 'Spine', Weight: 0.425834 + Group: 'Spine1', Weight: 0.069645 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1927: +Vertex groups: 5 + Group: 'Hips', Weight: 0.156744 + Group: 'Spine', Weight: 0.483652 + Group: 'Spine1', Weight: 0.085120 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1928: +Vertex groups: 5 + Group: 'Hips', Weight: 0.080297 + Group: 'Spine', Weight: 0.522543 + Group: 'Spine1', Weight: 0.107618 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1929: +Vertex groups: 5 + Group: 'Hips', Weight: 0.040117 + Group: 'Spine', Weight: 0.553880 + Group: 'Spine1', Weight: 0.123854 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1930: +Vertex groups: 5 + Group: 'Hips', Weight: 0.002550 + Group: 'Spine', Weight: 0.596060 + Group: 'Spine1', Weight: 0.126659 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1931: +Vertex groups: 4 + Group: 'Spine', Weight: 0.663557 + Group: 'Spine1', Weight: 0.125660 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1932: +Vertex groups: 4 + Group: 'Spine', Weight: 0.783563 + Group: 'Spine1', Weight: 0.109403 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1933: +Vertex groups: 4 + Group: 'Spine', Weight: 0.727662 + Group: 'Spine1', Weight: 0.122021 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1934: +Vertex groups: 5 + Group: 'Hips', Weight: 0.526163 + Group: 'Spine', Weight: 0.236665 + Group: 'Spine1', Weight: 0.030988 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1935: +Vertex groups: 5 + Group: 'Hips', Weight: 0.376757 + Group: 'Spine', Weight: 0.282149 + Group: 'Spine1', Weight: 0.043512 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1936: +Vertex groups: 5 + Group: 'Hips', Weight: 0.180563 + Group: 'Spine', Weight: 0.363173 + Group: 'Spine1', Weight: 0.061178 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1937: +Vertex groups: 5 + Group: 'Hips', Weight: 0.080770 + Group: 'Spine', Weight: 0.449589 + Group: 'Spine1', Weight: 0.078737 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1938: +Vertex groups: 5 + Group: 'Hips', Weight: 0.043905 + Group: 'Spine', Weight: 0.488430 + Group: 'Spine1', Weight: 0.088428 + Group: 'RightUpLeg', Weight: 0.000126 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1939: +Vertex groups: 5 + Group: 'Hips', Weight: 0.005260 + Group: 'Spine', Weight: 0.538587 + Group: 'Spine1', Weight: 0.086167 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1940: +Vertex groups: 5 + Group: 'Hips', Weight: 0.019078 + Group: 'Spine', Weight: 0.777809 + Group: 'Spine1', Weight: 0.065765 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 1941: +Vertex groups: 5 + Group: 'Hips', Weight: 0.009394 + Group: 'Spine', Weight: 0.703148 + Group: 'Spine1', Weight: 0.076485 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1942: +Vertex groups: 5 + Group: 'Hips', Weight: 0.002187 + Group: 'Spine', Weight: 0.629458 + Group: 'Spine1', Weight: 0.084536 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1943: +Vertex groups: 5 + Group: 'Bone', Weight: 0.494846 + Group: 'Hips', Weight: 0.208843 + Group: 'Bone2', Weight: 0.178471 + Group: 'RightUpLeg', Weight: 0.077174 + Group: 'Bone.001', Weight: 0.040666 +Vertex 1944: +Vertex groups: 5 + Group: 'Bone', Weight: 0.560847 + Group: 'Bone2', Weight: 0.208288 + Group: 'Hips', Weight: 0.153358 + Group: 'Bone.001', Weight: 0.046102 + Group: 'RightUpLeg', Weight: 0.031405 +Vertex 1945: +Vertex groups: 5 + Group: 'Bone', Weight: 0.489364 + Group: 'RightUpLeg', Weight: 0.254664 + Group: 'Bone2', Weight: 0.172485 + Group: 'Hips', Weight: 0.043513 + Group: 'Bone.001', Weight: 0.039973 +Vertex 1946: +Vertex groups: 5 + Group: 'Bone', Weight: 0.431215 + Group: 'RightUpLeg', Weight: 0.362033 + Group: 'Bone2', Weight: 0.141370 + Group: 'Bone.001', Weight: 0.033063 + Group: 'Hips', Weight: 0.032319 +Vertex 1947: +Vertex groups: 5 + Group: 'Bone', Weight: 0.998914 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone.001', Weight: 0.077910 + Group: 'RightUpLeg', Weight: 0.959257 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1948: +Vertex groups: 5 + Group: 'Bone', Weight: 0.413192 + Group: 'RightUpLeg', Weight: 0.385162 + Group: 'Bone2', Weight: 0.157241 + Group: 'Bone.001', Weight: 0.032206 + Group: 'Hips', Weight: 0.012198 +Vertex 1949: +Vertex groups: 4 + Group: 'Bone', Weight: 0.999188 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone.001', Weight: 0.079305 + Group: 'RightUpLeg', Weight: 0.979643 +Vertex 1950: +Vertex groups: 4 + Group: 'Bone', Weight: 0.999388 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone.001', Weight: 0.082166 + Group: 'RightUpLeg', Weight: 0.990272 +Vertex 1951: +Vertex groups: 5 + Group: 'Bone', Weight: 0.999485 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone.001', Weight: 0.082155 + Group: 'RightUpLeg', Weight: 0.990193 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1952: +Vertex groups: 5 + Group: 'Bone', Weight: 0.999546 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone.001', Weight: 0.081629 + Group: 'RightUpLeg', Weight: 0.986318 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1953: +Vertex groups: 5 + Group: 'Bone', Weight: 0.999603 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone.001', Weight: 0.076639 + Group: 'RightUpLeg', Weight: 0.973852 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 1954: +Vertex groups: 5 + Group: 'Bone', Weight: 0.424785 + Group: 'RightUpLeg', Weight: 0.408760 + Group: 'Bone2', Weight: 0.132974 + Group: 'Bone.001', Weight: 0.031186 + Group: 'Hips', Weight: 0.002296 +Vertex 1955: +Vertex groups: 5 + Group: 'Bone', Weight: 0.423595 + Group: 'RightUpLeg', Weight: 0.394911 + Group: 'Bone2', Weight: 0.129702 + Group: 'Bone.001', Weight: 0.030459 + Group: 'Hips', Weight: 0.021333 +Vertex 1956: +Vertex groups: 5 + Group: 'Bone', Weight: 0.461764 + Group: 'Bone2', Weight: 0.173171 + Group: 'RightUpLeg', Weight: 0.171914 + Group: 'Hips', Weight: 0.156512 + Group: 'Bone.001', Weight: 0.036639 +Vertex 1957: +Vertex groups: 5 + Group: 'Bone', Weight: 0.444253 + Group: 'RightUpLeg', Weight: 0.250630 + Group: 'Bone2', Weight: 0.167913 + Group: 'Hips', Weight: 0.102578 + Group: 'Bone.001', Weight: 0.034626 +Vertex 1958: +Vertex groups: 5 + Group: 'Bone', Weight: 0.429849 + Group: 'RightUpLeg', Weight: 0.304414 + Group: 'Bone2', Weight: 0.131580 + Group: 'Hips', Weight: 0.103256 + Group: 'Bone.001', Weight: 0.030900 +Vertex 1959: +Vertex groups: 5 + Group: 'Bone', Weight: 0.426453 + Group: 'RightUpLeg', Weight: 0.362512 + Group: 'Bone2', Weight: 0.133456 + Group: 'Hips', Weight: 0.046280 + Group: 'Bone.001', Weight: 0.031299 +Vertex 1960: +Vertex groups: 5 + Group: 'Bone', Weight: 0.423604 + Group: 'RightUpLeg', Weight: 0.380397 + Group: 'Bone2', Weight: 0.138819 + Group: 'Bone.001', Weight: 0.032467 + Group: 'Hips', Weight: 0.024714 +Vertex 1961: +Vertex groups: 5 + Group: 'Bone', Weight: 0.420945 + Group: 'RightUpLeg', Weight: 0.390422 + Group: 'Bone2', Weight: 0.148278 + Group: 'Bone.001', Weight: 0.034363 + Group: 'Hips', Weight: 0.005991 +Vertex 1962: +Vertex groups: 5 + Group: 'Bone', Weight: 0.413487 + Group: 'RightUpLeg', Weight: 0.391498 + Group: 'Bone2', Weight: 0.153510 + Group: 'Bone.001', Weight: 0.033978 + Group: 'Spine', Weight: 0.007527 +Vertex 1963: +Vertex groups: 5 + Group: 'Bone', Weight: 0.414511 + Group: 'RightUpLeg', Weight: 0.381309 + Group: 'Bone2', Weight: 0.155389 + Group: 'Bone.001', Weight: 0.032877 + Group: 'Spine', Weight: 0.015914 +Vertex 1964: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'RightLeg', Weight: 0.987070 +Vertex 1965: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightLeg', Weight: 0.987759 +Vertex 1966: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.990162 +Vertex 1967: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.993221 +Vertex 1968: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.995676 +Vertex 1969: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.996089 +Vertex 1970: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.996513 +Vertex 1971: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.087994 + Group: 'RightLeg', Weight: 0.993907 +Vertex 1972: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.994883 +Vertex 1973: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999975 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.987831 +Vertex 1974: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.989769 +Vertex 1975: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.990446 +Vertex 1976: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.991466 +Vertex 1977: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.992578 +Vertex 1978: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.993162 +Vertex 1979: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.995845 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.992284 +Vertex 1980: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.995752 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.990343 +Vertex 1981: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.996496 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.990696 +Vertex 1982: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.997502 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.991804 +Vertex 1983: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.998383 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.992530 +Vertex 1984: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999112 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.994005 +Vertex 1985: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.996907 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.994898 +Vertex 1986: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.996395 + Group: 'Bone.001', Weight: 0.087994 + Group: 'RightLeg', Weight: 0.993887 +Vertex 1987: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.997675 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.996137 +Vertex 1988: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.998713 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.998155 +Vertex 1989: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999246 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.998374 +Vertex 1990: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999542 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.997985 +Vertex 1991: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999791 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.997030 +Vertex 1992: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999812 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightLeg', Weight: 0.996162 +Vertex 1993: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999692 + Group: 'Bone.001', Weight: 0.130631 + Group: 'RightLeg', Weight: 0.995290 +Vertex 1994: +Vertex groups: 5 + Group: 'Bone', Weight: 0.422980 + Group: 'RightUpLeg', Weight: 0.335607 + Group: 'Bone2', Weight: 0.160790 + Group: 'Hips', Weight: 0.047689 + Group: 'Bone.001', Weight: 0.032933 +Vertex 1995: +Vertex groups: 5 + Group: 'Bone', Weight: 0.420148 + Group: 'RightUpLeg', Weight: 0.365849 + Group: 'Bone2', Weight: 0.158769 + Group: 'Bone.001', Weight: 0.032740 + Group: 'Hips', Weight: 0.022494 +Vertex 1996: +Vertex groups: 5 + Group: 'Bone', Weight: 0.439585 + Group: 'RightUpLeg', Weight: 0.253451 + Group: 'Bone2', Weight: 0.144067 + Group: 'Hips', Weight: 0.129203 + Group: 'Bone.001', Weight: 0.033694 +Vertex 1997: +Vertex groups: 5 + Group: 'Bone', Weight: 0.481678 + Group: 'Hips', Weight: 0.173425 + Group: 'Bone2', Weight: 0.169693 + Group: 'RightUpLeg', Weight: 0.135877 + Group: 'Bone.001', Weight: 0.039326 +Vertex 1998: +Vertex groups: 5 + Group: 'Bone', Weight: 0.414459 + Group: 'RightUpLeg', Weight: 0.368978 + Group: 'Bone2', Weight: 0.156852 + Group: 'Bone.001', Weight: 0.032345 + Group: 'Hips', Weight: 0.027366 +Vertex 1999: +Vertex groups: 5 + Group: 'Bone', Weight: 0.427812 + Group: 'RightUpLeg', Weight: 0.338296 + Group: 'Bone2', Weight: 0.160651 + Group: 'Hips', Weight: 0.039251 + Group: 'Bone.001', Weight: 0.033991 +Vertex 2000: +Vertex groups: 5 + Group: 'Bone', Weight: 0.443646 + Group: 'RightUpLeg', Weight: 0.319031 + Group: 'Bone2', Weight: 0.164938 + Group: 'Bone.001', Weight: 0.036507 + Group: 'Hips', Weight: 0.035878 +Vertex 2001: +Vertex groups: 5 + Group: 'Bone', Weight: 0.507890 + Group: 'RightUpLeg', Weight: 0.221303 + Group: 'Bone2', Weight: 0.183309 + Group: 'Hips', Weight: 0.045730 + Group: 'Bone.001', Weight: 0.041768 +Vertex 2002: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.282869 + Group: 'Bone', Weight: 0.262095 + Group: 'Bone1', Weight: 0.160702 + Group: 'Bone2', Weight: 0.154834 + Group: 'RightLeg', Weight: 0.139500 +Vertex 2003: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.284559 + Group: 'Bone', Weight: 0.254956 + Group: 'Bone1', Weight: 0.167621 + Group: 'Bone2', Weight: 0.155146 + Group: 'RightLeg', Weight: 0.137719 +Vertex 2004: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.324946 + Group: 'RightLeg', Weight: 0.297416 + Group: 'Bone2', Weight: 0.162703 + Group: 'RightUpLeg', Weight: 0.121138 + Group: 'Bone', Weight: 0.093797 +Vertex 2005: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.308951 + Group: 'RightLeg', Weight: 0.299678 + Group: 'Bone2', Weight: 0.162501 + Group: 'RightUpLeg', Weight: 0.119001 + Group: 'Bone', Weight: 0.109868 +Vertex 2006: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.336465 + Group: 'Bone', Weight: 0.332527 + Group: 'Bone2', Weight: 0.145298 + Group: 'Bone1', Weight: 0.092989 + Group: 'RightLeg', Weight: 0.092721 +Vertex 2007: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.338503 + Group: 'Bone', Weight: 0.320665 + Group: 'Bone2', Weight: 0.146011 + Group: 'Bone1', Weight: 0.104058 + Group: 'RightLeg', Weight: 0.090762 +Vertex 2008: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.275365 + Group: 'Bone1', Weight: 0.221302 + Group: 'Bone', Weight: 0.200907 + Group: 'Bone2', Weight: 0.155790 + Group: 'RightLeg', Weight: 0.146636 +Vertex 2009: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.304650 + Group: 'RightLeg', Weight: 0.281383 + Group: 'Bone2', Weight: 0.162698 + Group: 'RightUpLeg', Weight: 0.137213 + Group: 'Bone', Weight: 0.114056 +Vertex 2010: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.317960 + Group: 'Bone', Weight: 0.281449 + Group: 'Bone2', Weight: 0.148779 + Group: 'Bone1', Weight: 0.142937 + Group: 'RightLeg', Weight: 0.108875 +Vertex 2011: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.247026 + Group: 'Bone1', Weight: 0.236982 + Group: 'RightLeg', Weight: 0.190174 + Group: 'Bone2', Weight: 0.164902 + Group: 'Bone', Weight: 0.160916 +Vertex 2012: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.289420 + Group: 'RightLeg', Weight: 0.263770 + Group: 'Bone2', Weight: 0.169694 + Group: 'RightUpLeg', Weight: 0.169625 + Group: 'Bone', Weight: 0.107491 +Vertex 2013: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.351906 + Group: 'Bone', Weight: 0.191014 + Group: 'Bone2', Weight: 0.185363 + Group: 'RightLeg', Weight: 0.154408 + Group: 'Bone1', Weight: 0.117310 +Vertex 2014: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.283159 + Group: 'RightLeg', Weight: 0.276932 + Group: 'Bone2', Weight: 0.174392 + Group: 'RightUpLeg', Weight: 0.167742 + Group: 'Bone', Weight: 0.097776 +Vertex 2015: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.317680 + Group: 'Bone1', Weight: 0.245779 + Group: 'Bone2', Weight: 0.173133 + Group: 'RightLeg', Weight: 0.137081 + Group: 'Bone', Weight: 0.126327 +Vertex 2016: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.379071 + Group: 'Bone2', Weight: 0.211759 + Group: 'RightLeg', Weight: 0.174185 + Group: 'Bone', Weight: 0.161648 + Group: 'Bone1', Weight: 0.073337 +Vertex 2017: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.366868 + Group: 'Bone2', Weight: 0.208213 + Group: 'RightLeg', Weight: 0.166829 + Group: 'Bone', Weight: 0.164308 + Group: 'Bone1', Weight: 0.093782 +Vertex 2018: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.354467 + Group: 'Bone2', Weight: 0.212804 + Group: 'RightLeg', Weight: 0.183017 + Group: 'Bone', Weight: 0.178228 + Group: 'Bone1', Weight: 0.071485 +Vertex 2019: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.367726 + Group: 'Bone2', Weight: 0.212610 + Group: 'Bone', Weight: 0.173239 + Group: 'RightLeg', Weight: 0.172023 + Group: 'Bone1', Weight: 0.074402 +Vertex 2020: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.378816 + Group: 'RightLeg', Weight: 0.347772 + Group: 'Bone2', Weight: 0.170001 + Group: 'RightUpLeg', Weight: 0.060683 + Group: 'Bone.001', Weight: 0.042728 +Vertex 2021: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.373641 + Group: 'RightLeg', Weight: 0.359451 + Group: 'Bone2', Weight: 0.171229 + Group: 'RightUpLeg', Weight: 0.052831 + Group: 'Bone.001', Weight: 0.042848 +Vertex 2022: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.381499 + Group: 'RightLeg', Weight: 0.358332 + Group: 'Bone2', Weight: 0.175152 + Group: 'Bone.001', Weight: 0.045645 + Group: 'RightUpLeg', Weight: 0.039372 +Vertex 2023: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.380184 + Group: 'RightLeg', Weight: 0.364649 + Group: 'Bone2', Weight: 0.175134 + Group: 'Bone.001', Weight: 0.045333 + Group: 'RightUpLeg', Weight: 0.034700 +Vertex 2024: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.362672 + Group: 'RightLeg', Weight: 0.352734 + Group: 'Bone2', Weight: 0.171294 + Group: 'RightUpLeg', Weight: 0.061588 + Group: 'Bone', Weight: 0.051712 +Vertex 2025: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.376786 + Group: 'RightLeg', Weight: 0.366968 + Group: 'Bone2', Weight: 0.174247 + Group: 'Bone.001', Weight: 0.044085 + Group: 'RightUpLeg', Weight: 0.037914 +Vertex 2026: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.341399 + Group: 'RightLeg', Weight: 0.323995 + Group: 'Bone2', Weight: 0.171694 + Group: 'RightUpLeg', Weight: 0.096291 + Group: 'Bone', Weight: 0.066620 +Vertex 2027: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.358851 + Group: 'Bone1', Weight: 0.352085 + Group: 'Bone2', Weight: 0.177562 + Group: 'RightUpLeg', Weight: 0.062063 + Group: 'Bone', Weight: 0.049440 +Vertex 2028: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.374051 + Group: 'Bone1', Weight: 0.295200 + Group: 'Bone2', Weight: 0.187318 + Group: 'RightUpLeg', Weight: 0.077694 + Group: 'Bone', Weight: 0.065737 +Vertex 2029: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.376799 + Group: 'Bone1', Weight: 0.245696 + Group: 'Bone2', Weight: 0.200228 + Group: 'RightUpLeg', Weight: 0.099324 + Group: 'Bone', Weight: 0.077954 +Vertex 2030: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.369622 + Group: 'Bone1', Weight: 0.236144 + Group: 'Bone2', Weight: 0.199617 + Group: 'RightUpLeg', Weight: 0.102625 + Group: 'Bone', Weight: 0.091992 +Vertex 2031: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.323599 + Group: 'Bone1', Weight: 0.233997 + Group: 'Bone2', Weight: 0.198100 + Group: 'RightUpLeg', Weight: 0.142245 + Group: 'Bone', Weight: 0.102059 +Vertex 2032: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.341410 + Group: 'Bone1', Weight: 0.234342 + Group: 'Bone2', Weight: 0.199421 + Group: 'RightUpLeg', Weight: 0.126854 + Group: 'Bone', Weight: 0.097974 +Vertex 2033: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.274447 + Group: 'Bone1', Weight: 0.217309 + Group: 'Bone', Weight: 0.205020 + Group: 'Bone2', Weight: 0.155834 + Group: 'RightLeg', Weight: 0.147390 +Vertex 2034: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.317132 + Group: 'RightLeg', Weight: 0.277540 + Group: 'Bone2', Weight: 0.162721 + Group: 'RightUpLeg', Weight: 0.140975 + Group: 'Bone', Weight: 0.101632 +Vertex 2035: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.321628 + Group: 'Bone', Weight: 0.306506 + Group: 'Bone2', Weight: 0.148444 + Group: 'Bone1', Weight: 0.119637 + Group: 'RightLeg', Weight: 0.103786 +Vertex 2036: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.248733 + Group: 'Bone1', Weight: 0.223705 + Group: 'Bone', Weight: 0.197177 + Group: 'RightLeg', Weight: 0.171680 + Group: 'Bone2', Weight: 0.158705 +Vertex 2037: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.291867 + Group: 'RightLeg', Weight: 0.258422 + Group: 'Bone2', Weight: 0.163743 + Group: 'RightUpLeg', Weight: 0.159558 + Group: 'Bone', Weight: 0.126410 +Vertex 2038: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.282481 + Group: 'Bone', Weight: 0.262298 + Group: 'Bone1', Weight: 0.160608 + Group: 'Bone2', Weight: 0.154789 + Group: 'RightLeg', Weight: 0.139823 +Vertex 2039: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.275479 + Group: 'RightLeg', Weight: 0.253331 + Group: 'RightUpLeg', Weight: 0.164525 + Group: 'Bone2', Weight: 0.163973 + Group: 'Bone', Weight: 0.142691 +Vertex 2040: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.236359 + Group: 'Bone1', Weight: 0.218268 + Group: 'Bone', Weight: 0.201963 + Group: 'RightLeg', Weight: 0.183439 + Group: 'Bone2', Weight: 0.159971 +Vertex 2041: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.306331 + Group: 'Bone', Weight: 0.226953 + Group: 'RightLeg', Weight: 0.197035 + Group: 'Bone2', Weight: 0.192886 + Group: 'Bone1', Weight: 0.076795 +Vertex 2042: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.321752 + Group: 'Bone2', Weight: 0.203272 + Group: 'RightLeg', Weight: 0.198718 + Group: 'Bone', Weight: 0.192587 + Group: 'Bone1', Weight: 0.083671 +Vertex 2043: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.353329 + Group: 'Bone2', Weight: 0.213412 + Group: 'RightLeg', Weight: 0.188129 + Group: 'Bone', Weight: 0.187261 + Group: 'Bone1', Weight: 0.057869 +Vertex 2044: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.369187 + Group: 'RightLeg', Weight: 0.342587 + Group: 'Bone2', Weight: 0.171308 + Group: 'RightUpLeg', Weight: 0.071688 + Group: 'Bone', Weight: 0.045230 +Vertex 2045: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.377208 + Group: 'RightLeg', Weight: 0.353196 + Group: 'Bone2', Weight: 0.174149 + Group: 'RightUpLeg', Weight: 0.051386 + Group: 'Bone.001', Weight: 0.044060 +Vertex 2046: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.339685 + Group: 'RightLeg', Weight: 0.309641 + Group: 'Bone2', Weight: 0.169630 + Group: 'RightUpLeg', Weight: 0.105441 + Group: 'Bone', Weight: 0.075603 +Vertex 2047: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.343194 + Group: 'RightLeg', Weight: 0.318892 + Group: 'Bone2', Weight: 0.174207 + Group: 'RightUpLeg', Weight: 0.093910 + Group: 'Bone', Weight: 0.069798 +Vertex 2048: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.310927 + Group: 'RightLeg', Weight: 0.287316 + Group: 'Bone2', Weight: 0.171760 + Group: 'RightUpLeg', Weight: 0.126683 + Group: 'Bone', Weight: 0.103314 +Vertex 2049: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.299683 + Group: 'Bone1', Weight: 0.232098 + Group: 'Bone2', Weight: 0.191879 + Group: 'RightUpLeg', Weight: 0.156297 + Group: 'Bone', Weight: 0.120043 +Vertex 2050: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.290902 + Group: 'Bone1', Weight: 0.235504 + Group: 'Bone2', Weight: 0.193522 + Group: 'RightUpLeg', Weight: 0.166645 + Group: 'Bone', Weight: 0.113428 +Vertex 2051: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.307130 + Group: 'Bone1', Weight: 0.233992 + Group: 'Bone2', Weight: 0.196825 + Group: 'RightUpLeg', Weight: 0.154892 + Group: 'Bone', Weight: 0.107161 +Vertex 2052: +Vertex groups: 5 + Group: 'Bone', Weight: 0.403268 + Group: 'RightUpLeg', Weight: 0.370627 + Group: 'Bone2', Weight: 0.154940 + Group: 'RightLeg', Weight: 0.039213 + Group: 'Bone.001', Weight: 0.031951 +Vertex 2053: +Vertex groups: 5 + Group: 'Bone', Weight: 0.402793 + Group: 'RightUpLeg', Weight: 0.348147 + Group: 'Bone2', Weight: 0.155195 + Group: 'RightLeg', Weight: 0.061863 + Group: 'Bone.001', Weight: 0.032003 +Vertex 2054: +Vertex groups: 5 + Group: 'Bone', Weight: 0.414902 + Group: 'RightUpLeg', Weight: 0.364738 + Group: 'Bone2', Weight: 0.136881 + Group: 'RightLeg', Weight: 0.051466 + Group: 'Bone.001', Weight: 0.032013 +Vertex 2055: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.312920 + Group: 'Bone.001', Weight: 0.073388 + Group: 'Bone', Weight: 0.994168 + Group: 'RightUpLeg', Weight: 0.919339 + Group: 'RightLeg', Weight: 0.078621 +Vertex 2056: +Vertex groups: 5 + Group: 'Bone', Weight: 0.403063 + Group: 'RightUpLeg', Weight: 0.332661 + Group: 'Bone2', Weight: 0.154119 + Group: 'RightLeg', Weight: 0.077549 + Group: 'Bone.001', Weight: 0.032608 +Vertex 2057: +Vertex groups: 5 + Group: 'Bone', Weight: 0.404042 + Group: 'RightUpLeg', Weight: 0.332815 + Group: 'Bone2', Weight: 0.152487 + Group: 'RightLeg', Weight: 0.076905 + Group: 'Bone.001', Weight: 0.033751 +Vertex 2058: +Vertex groups: 5 + Group: 'Bone', Weight: 0.403916 + Group: 'RightUpLeg', Weight: 0.377617 + Group: 'Bone2', Weight: 0.153678 + Group: 'Bone.001', Weight: 0.032515 + Group: 'RightLeg', Weight: 0.032274 +Vertex 2059: +Vertex groups: 5 + Group: 'Bone', Weight: 0.402709 + Group: 'RightUpLeg', Weight: 0.361225 + Group: 'Bone2', Weight: 0.155832 + Group: 'RightLeg', Weight: 0.048317 + Group: 'Bone.001', Weight: 0.031918 +Vertex 2060: +Vertex groups: 5 + Group: 'Bone', Weight: 0.406748 + Group: 'RightUpLeg', Weight: 0.334554 + Group: 'Bone2', Weight: 0.148523 + Group: 'RightLeg', Weight: 0.076333 + Group: 'Bone.001', Weight: 0.033842 +Vertex 2061: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.306079 + Group: 'Bone.001', Weight: 0.071880 + Group: 'Bone', Weight: 0.994634 + Group: 'RightUpLeg', Weight: 0.903611 + Group: 'RightLeg', Weight: 0.092911 +Vertex 2062: +Vertex groups: 5 + Group: 'Bone', Weight: 0.409076 + Group: 'RightUpLeg', Weight: 0.345747 + Group: 'Bone2', Weight: 0.145448 + Group: 'RightLeg', Weight: 0.066021 + Group: 'Bone.001', Weight: 0.033708 +Vertex 2063: +Vertex groups: 5 + Group: 'Bone', Weight: 0.404595 + Group: 'RightUpLeg', Weight: 0.378029 + Group: 'Bone2', Weight: 0.152091 + Group: 'Bone.001', Weight: 0.033664 + Group: 'RightLeg', Weight: 0.031621 +Vertex 2064: +Vertex groups: 5 + Group: 'Bone', Weight: 0.406783 + Group: 'RightUpLeg', Weight: 0.377111 + Group: 'Bone2', Weight: 0.148281 + Group: 'RightLeg', Weight: 0.034038 + Group: 'Bone.001', Weight: 0.033787 +Vertex 2065: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone', Weight: 0.992900 + Group: 'RightUpLeg', Weight: 0.920032 + Group: 'RightLeg', Weight: 0.078772 +Vertex 2066: +Vertex groups: 5 + Group: 'Bone', Weight: 0.408701 + Group: 'RightUpLeg', Weight: 0.375406 + Group: 'Bone2', Weight: 0.145303 + Group: 'RightLeg', Weight: 0.036915 + Group: 'Bone.001', Weight: 0.033674 +Vertex 2067: +Vertex groups: 5 + Group: 'Bone', Weight: 0.408198 + Group: 'RightUpLeg', Weight: 0.395136 + Group: 'Bone2', Weight: 0.155867 + Group: 'Bone.001', Weight: 0.032142 + Group: 'RightLeg', Weight: 0.008657 +Vertex 2068: +Vertex groups: 5 + Group: 'Bone', Weight: 0.418891 + Group: 'RightUpLeg', Weight: 0.400321 + Group: 'Bone2', Weight: 0.137762 + Group: 'Bone.001', Weight: 0.032220 + Group: 'RightLeg', Weight: 0.010806 +Vertex 2069: +Vertex groups: 5 + Group: 'Bone', Weight: 0.991063 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'RightUpLeg', Weight: 0.937776 + Group: 'RightLeg', Weight: 0.053764 +Vertex 2070: +Vertex groups: 4 + Group: 'Bone', Weight: 0.992172 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone2', Weight: 0.374821 + Group: 'RightUpLeg', Weight: 0.985605 +Vertex 2071: +Vertex groups: 4 + Group: 'Bone', Weight: 0.994309 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'RightUpLeg', Weight: 0.985461 +Vertex 2072: +Vertex groups: 4 + Group: 'Bone', Weight: 0.995136 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone2', Weight: 0.352227 + Group: 'RightUpLeg', Weight: 0.981350 +Vertex 2073: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.077910 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone', Weight: 0.991126 + Group: 'RightUpLeg', Weight: 0.979876 +Vertex 2074: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.073388 + Group: 'Bone2', Weight: 0.312920 + Group: 'Bone', Weight: 0.996896 + Group: 'RightUpLeg', Weight: 0.972216 +Vertex 2075: +Vertex groups: 5 + Group: 'Bone', Weight: 0.406520 + Group: 'RightUpLeg', Weight: 0.387691 + Group: 'Bone2', Weight: 0.154036 + Group: 'Bone.001', Weight: 0.032591 + Group: 'RightLeg', Weight: 0.019162 +Vertex 2076: +Vertex groups: 5 + Group: 'Bone', Weight: 0.409338 + Group: 'RightUpLeg', Weight: 0.400772 + Group: 'Bone2', Weight: 0.157075 + Group: 'Bone.001', Weight: 0.032172 + Group: 'RightLeg', Weight: 0.000642 +Vertex 2077: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone', Weight: 0.993213 + Group: 'RightUpLeg', Weight: 0.938844 + Group: 'RightLeg', Weight: 0.051712 +Vertex 2078: +Vertex groups: 5 + Group: 'Bone', Weight: 0.424908 + Group: 'RightUpLeg', Weight: 0.409960 + Group: 'Bone2', Weight: 0.130430 + Group: 'Bone.001', Weight: 0.030630 + Group: 'RightLeg', Weight: 0.004072 +Vertex 2079: +Vertex groups: 5 + Group: 'Bone', Weight: 0.411725 + Group: 'RightUpLeg', Weight: 0.390084 + Group: 'Bone2', Weight: 0.145752 + Group: 'Bone.001', Weight: 0.033778 + Group: 'RightLeg', Weight: 0.018661 +Vertex 2080: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone', Weight: 0.993457 + Group: 'RightUpLeg', Weight: 0.987930 +Vertex 2081: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone', Weight: 0.996252 + Group: 'RightUpLeg', Weight: 0.976299 +Vertex 2082: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.993311 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightLeg', Weight: 0.986326 +Vertex 2083: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.386471 + Group: 'RightLeg', Weight: 0.374624 + Group: 'Bone2', Weight: 0.176721 + Group: 'Bone.001', Weight: 0.035599 + Group: 'RightUpLeg', Weight: 0.026585 +Vertex 2084: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.389740 + Group: 'RightLeg', Weight: 0.384480 + Group: 'Bone2', Weight: 0.174519 + Group: 'Bone.001', Weight: 0.042594 + Group: 'RightUpLeg', Weight: 0.008667 +Vertex 2085: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.394918 + Group: 'Bone1', Weight: 0.378207 + Group: 'Bone2', Weight: 0.179205 + Group: 'Bone.001', Weight: 0.037098 + Group: 'Bone', Weight: 0.010572 +Vertex 2086: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.993703 + Group: 'Bone2', Weight: 0.467316 + Group: 'RightLeg', Weight: 0.979522 +Vertex 2087: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.385542 + Group: 'RightLeg', Weight: 0.370175 + Group: 'Bone2', Weight: 0.176241 + Group: 'Bone.001', Weight: 0.036485 + Group: 'RightUpLeg', Weight: 0.031557 +Vertex 2088: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.987236 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightUpLeg', Weight: 0.008378 + Group: 'RightLeg', Weight: 0.970491 +Vertex 2089: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.386461 + Group: 'RightLeg', Weight: 0.378279 + Group: 'Bone2', Weight: 0.173596 + Group: 'Bone.001', Weight: 0.040641 + Group: 'RightUpLeg', Weight: 0.021023 +Vertex 2090: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.386441 + Group: 'RightLeg', Weight: 0.374899 + Group: 'Bone2', Weight: 0.173622 + Group: 'Bone.001', Weight: 0.038487 + Group: 'RightUpLeg', Weight: 0.026551 +Vertex 2091: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.106780 + Group: 'Bone1', Weight: 0.954507 + Group: 'Bone2', Weight: 0.437508 + Group: 'RightLeg', Weight: 0.991626 +Vertex 2092: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.385104 + Group: 'Bone1', Weight: 0.379231 + Group: 'Bone2', Weight: 0.178684 + Group: 'Bone.001', Weight: 0.035758 + Group: 'RightUpLeg', Weight: 0.021223 +Vertex 2093: +Vertex groups: 5 + Group: 'RightLeg', Weight: 0.389804 + Group: 'Bone1', Weight: 0.379391 + Group: 'Bone2', Weight: 0.179505 + Group: 'Bone.001', Weight: 0.036160 + Group: 'RightUpLeg', Weight: 0.015140 +Vertex 2094: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.991697 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.989355 +Vertex 2095: +Vertex groups: 5 + Group: 'Bone', Weight: 0.012908 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.931622 + Group: 'Bone2', Weight: 0.432383 + Group: 'RightLeg', Weight: 0.983745 +Vertex 2096: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone.001', Weight: 0.101754 + Group: 'Bone1', Weight: 0.931907 + Group: 'Bone', Weight: 0.004624 + Group: 'RightLeg', Weight: 0.989954 +Vertex 2097: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.394307 + Group: 'RightFoot', Weight: 0.340656 + Group: 'Bone2', Weight: 0.184268 + Group: 'Bone.001', Weight: 0.051510 + Group: 'RightLeg', Weight: 0.029260 +Vertex 2098: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392645 + Group: 'RightFoot', Weight: 0.336765 + Group: 'Bone2', Weight: 0.182604 + Group: 'Bone.001', Weight: 0.050486 + Group: 'RightLeg', Weight: 0.037500 +Vertex 2099: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393886 + Group: 'RightFoot', Weight: 0.348886 + Group: 'Bone2', Weight: 0.178626 + Group: 'Bone.001', Weight: 0.046949 + Group: 'RightLeg', Weight: 0.031652 +Vertex 2100: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.398074 + Group: 'RightFoot', Weight: 0.362945 + Group: 'Bone2', Weight: 0.174161 + Group: 'Bone.001', Weight: 0.042506 + Group: 'RightLeg', Weight: 0.022313 +Vertex 2101: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.011725 + Group: 'RightFoot', Weight: 0.948090 +Vertex 2102: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.026074 + Group: 'RightFoot', Weight: 0.955274 +Vertex 2103: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.140352 + Group: 'RightFoot', Weight: 0.854371 +Vertex 2104: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.087994 + Group: 'RightLeg', Weight: 0.241786 + Group: 'RightFoot', Weight: 0.752444 +Vertex 2105: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.222677 + Group: 'RightFoot', Weight: 0.772543 +Vertex 2106: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396436 + Group: 'RightFoot', Weight: 0.350805 + Group: 'Bone2', Weight: 0.179786 + Group: 'Bone.001', Weight: 0.047254 + Group: 'RightLeg', Weight: 0.025718 +Vertex 2107: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.398440 + Group: 'RightFoot', Weight: 0.356735 + Group: 'Bone2', Weight: 0.174326 + Group: 'Bone.001', Weight: 0.042547 + Group: 'RightLeg', Weight: 0.027953 +Vertex 2108: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.078382 + Group: 'RightFoot', Weight: 0.897005 +Vertex 2109: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.098336 + Group: 'RightFoot', Weight: 0.884242 +Vertex 2110: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.126546 + Group: 'RightFoot', Weight: 0.860873 +Vertex 2111: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.184283 + Group: 'RightFoot', Weight: 0.807639 +Vertex 2112: +Vertex groups: 5 + Group: 'Bone', Weight: 0.505235 + Group: 'Bone2', Weight: 0.190963 + Group: 'Hips', Weight: 0.185518 + Group: 'RightUpLeg', Weight: 0.078905 + Group: 'Bone.001', Weight: 0.039379 +Vertex 2113: +Vertex groups: 5 + Group: 'Bone', Weight: 0.540378 + Group: 'Bone2', Weight: 0.204245 + Group: 'Hips', Weight: 0.190945 + Group: 'Bone.001', Weight: 0.042118 + Group: 'RightUpLeg', Weight: 0.022313 +Vertex 2114: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightToeBase', Weight: 0.997674 +Vertex 2115: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightToeBase', Weight: 0.992369 +Vertex 2116: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.123765 + Group: 'Bone1', Weight: 0.999994 + Group: 'Bone2', Weight: 0.459127 + Group: 'RightToeBase', Weight: 0.997053 +Vertex 2117: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.121124 + Group: 'Bone1', Weight: 0.999995 + Group: 'Bone2', Weight: 0.455872 + Group: 'RightToeBase', Weight: 0.994768 +Vertex 2118: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightFoot', Weight: 0.203639 + Group: 'RightToeBase', Weight: 0.793222 +Vertex 2119: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightFoot', Weight: 0.036833 + Group: 'RightToeBase', Weight: 0.956002 +Vertex 2120: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightToeBase', Weight: 0.976395 +Vertex 2121: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119938 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.454410 + Group: 'RightToeBase', Weight: 0.975578 +Vertex 2122: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.085424 + Group: 'RightToeBase', Weight: 0.914327 +Vertex 2123: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119561 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453946 + Group: 'RightFoot', Weight: 0.075967 + Group: 'RightToeBase', Weight: 0.923818 +Vertex 2124: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.237879 + Group: 'RightToeBase', Weight: 0.761563 +Vertex 2125: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119426 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453780 + Group: 'RightFoot', Weight: 0.214618 + Group: 'RightToeBase', Weight: 0.784835 +Vertex 2126: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.911256 + Group: 'RightToeBase', Weight: 0.084567 +Vertex 2127: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119357 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453695 + Group: 'RightFoot', Weight: 0.796190 + Group: 'RightToeBase', Weight: 0.199140 +Vertex 2128: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396335 + Group: 'RightFoot', Weight: 0.373186 + Group: 'Bone2', Weight: 0.179737 + Group: 'Bone.001', Weight: 0.047241 + Group: 'RightToeBase', Weight: 0.003502 +Vertex 2129: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119269 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453586 + Group: 'RightFoot', Weight: 0.924170 + Group: 'RightToeBase', Weight: 0.055819 +Vertex 2130: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.050345 + Group: 'RightFoot', Weight: 0.927006 +Vertex 2131: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396314 + Group: 'RightFoot', Weight: 0.370354 + Group: 'Bone2', Weight: 0.179752 + Group: 'Bone.001', Weight: 0.047259 + Group: 'RightToeBase', Weight: 0.006321 +Vertex 2132: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.075257 + Group: 'RightFoot', Weight: 0.907937 +Vertex 2133: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119238 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453548 + Group: 'RightLeg', Weight: 0.037951 + Group: 'RightFoot', Weight: 0.931254 +Vertex 2134: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.075816 + Group: 'RightFoot', Weight: 0.906556 +Vertex 2135: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119237 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453546 + Group: 'RightLeg', Weight: 0.044715 + Group: 'RightFoot', Weight: 0.928227 +Vertex 2136: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.065750 + Group: 'RightFoot', Weight: 0.912722 +Vertex 2137: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.394328 + Group: 'RightFoot', Weight: 0.366340 + Group: 'Bone2', Weight: 0.178847 + Group: 'Bone.001', Weight: 0.047019 + Group: 'RightLeg', Weight: 0.013466 +Vertex 2138: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393167 + Group: 'RightFoot', Weight: 0.362331 + Group: 'Bone2', Weight: 0.178300 + Group: 'Bone.001', Weight: 0.046864 + Group: 'RightLeg', Weight: 0.019338 +Vertex 2139: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.395772 + Group: 'RightFoot', Weight: 0.367817 + Group: 'Bone2', Weight: 0.179505 + Group: 'Bone.001', Weight: 0.047194 + Group: 'RightToeBase', Weight: 0.009712 +Vertex 2140: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396275 + Group: 'RightFoot', Weight: 0.365434 + Group: 'Bone2', Weight: 0.179709 + Group: 'Bone.001', Weight: 0.047234 + Group: 'RightLeg', Weight: 0.011347 +Vertex 2141: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392598 + Group: 'RightFoot', Weight: 0.362221 + Group: 'Bone2', Weight: 0.178072 + Group: 'Bone.001', Weight: 0.046821 + Group: 'RightToeBase', Weight: 0.020288 +Vertex 2142: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.903773 + Group: 'RightToeBase', Weight: 0.075498 +Vertex 2143: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119304 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453629 + Group: 'RightFoot', Weight: 0.887536 + Group: 'RightToeBase', Weight: 0.098233 +Vertex 2144: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.644981 + Group: 'RightToeBase', Weight: 0.350473 +Vertex 2145: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119378 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453720 + Group: 'RightFoot', Weight: 0.495213 + Group: 'RightToeBase', Weight: 0.503105 +Vertex 2146: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119318 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453647 + Group: 'RightFoot', Weight: 0.843053 + Group: 'RightToeBase', Weight: 0.148255 +Vertex 2147: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.872582 + Group: 'RightToeBase', Weight: 0.113109 +Vertex 2148: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.314618 + Group: 'RightToeBase', Weight: 0.682784 +Vertex 2149: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119449 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453808 + Group: 'RightFoot', Weight: 0.222212 + Group: 'RightToeBase', Weight: 0.776822 +Vertex 2150: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.148505 + Group: 'RightToeBase', Weight: 0.850139 +Vertex 2151: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119568 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453955 + Group: 'RightFoot', Weight: 0.129279 + Group: 'RightToeBase', Weight: 0.870059 +Vertex 2152: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.062794 + Group: 'RightToeBase', Weight: 0.936626 +Vertex 2153: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119859 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.454314 + Group: 'RightFoot', Weight: 0.060320 + Group: 'RightToeBase', Weight: 0.939306 +Vertex 2154: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.003286 + Group: 'RightToeBase', Weight: 0.973098 +Vertex 2155: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.120824 + Group: 'Bone1', Weight: 0.999995 + Group: 'Bone2', Weight: 0.455503 + Group: 'RightFoot', Weight: 0.003381 + Group: 'RightToeBase', Weight: 0.973117 +Vertex 2156: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'RightToeBase', Weight: 0.989706 +Vertex 2157: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.122873 + Group: 'Bone1', Weight: 0.999994 + Group: 'Bone2', Weight: 0.458028 + Group: 'RightToeBase', Weight: 0.988336 +Vertex 2158: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.144499 + Group: 'RightToeBase', Weight: 0.853967 +Vertex 2159: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightFoot', Weight: 0.141079 + Group: 'RightToeBase', Weight: 0.856892 +Vertex 2160: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.394427 + Group: 'RightFoot', Weight: 0.359441 + Group: 'Bone2', Weight: 0.178871 + Group: 'Bone.001', Weight: 0.047014 + Group: 'RightToeBase', Weight: 0.020247 +Vertex 2161: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'RightToeBase', Weight: 0.997922 +Vertex 2162: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.122866 + Group: 'Bone1', Weight: 0.999994 + Group: 'Bone2', Weight: 0.458019 + Group: 'RightToeBase', Weight: 0.997938 +Vertex 2163: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.892739 + Group: 'RightToeBase', Weight: 0.084078 +Vertex 2164: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.699526 + Group: 'RightToeBase', Weight: 0.290916 +Vertex 2165: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.353200 + Group: 'RightToeBase', Weight: 0.641954 +Vertex 2166: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.157719 + Group: 'RightToeBase', Weight: 0.840236 +Vertex 2167: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.059939 + Group: 'RightToeBase', Weight: 0.939372 +Vertex 2168: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.007598 + Group: 'RightToeBase', Weight: 0.970866 +Vertex 2169: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightFoot', Weight: 0.096197 + Group: 'RightToeBase', Weight: 0.902415 +Vertex 2170: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightToeBase', Weight: 0.987656 +Vertex 2171: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightToeBase', Weight: 0.996476 +Vertex 2172: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightToeBase', Weight: 0.988566 +Vertex 2173: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightToeBase', Weight: 0.983268 +Vertex 2174: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.020440 + Group: 'RightToeBase', Weight: 0.964615 +Vertex 2175: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.115006 + Group: 'RightToeBase', Weight: 0.884582 +Vertex 2176: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.273572 + Group: 'RightToeBase', Weight: 0.725697 +Vertex 2177: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.939661 + Group: 'RightToeBase', Weight: 0.055586 +Vertex 2178: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.016374 + Group: 'RightFoot', Weight: 0.955267 +Vertex 2179: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.093308 + Group: 'RightFoot', Weight: 0.895918 +Vertex 2180: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.118549 + Group: 'RightFoot', Weight: 0.870536 +Vertex 2181: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.134357 + Group: 'RightFoot', Weight: 0.854788 +Vertex 2182: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.113377 + Group: 'RightFoot', Weight: 0.873447 +Vertex 2183: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.083078 + Group: 'RightFoot', Weight: 0.898357 +Vertex 2184: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392632 + Group: 'RightFoot', Weight: 0.358083 + Group: 'Bone2', Weight: 0.178057 + Group: 'Bone.001', Weight: 0.046800 + Group: 'RightLeg', Weight: 0.024427 +Vertex 2185: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightToeBase', Weight: 0.996806 +Vertex 2186: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.391667 + Group: 'RightFoot', Weight: 0.340054 + Group: 'Bone2', Weight: 0.182149 + Group: 'Bone.001', Weight: 0.050360 + Group: 'RightToeBase', Weight: 0.035770 +Vertex 2187: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393027 + Group: 'RightFoot', Weight: 0.353914 + Group: 'Bone2', Weight: 0.178237 + Group: 'Bone.001', Weight: 0.046847 + Group: 'RightToeBase', Weight: 0.027975 +Vertex 2188: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightFoot', Weight: 0.046432 + Group: 'RightToeBase', Weight: 0.951106 +Vertex 2189: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.050631 + Group: 'RightToeBase', Weight: 0.948835 +Vertex 2190: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightToeBase', Weight: 0.994410 +Vertex 2191: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightToeBase', Weight: 0.994240 +Vertex 2192: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightToeBase', Weight: 0.979810 +Vertex 2193: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightFoot', Weight: 0.336081 + Group: 'RightToeBase', Weight: 0.658740 +Vertex 2194: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.332378 + Group: 'RightToeBase', Weight: 0.663794 +Vertex 2195: +Vertex groups: 5 + Group: 'Bone', Weight: 0.468209 + Group: 'Hips', Weight: 0.274612 + Group: 'Bone2', Weight: 0.164948 + Group: 'RightUpLeg', Weight: 0.054003 + Group: 'Bone.001', Weight: 0.038227 +Vertex 2196: +Vertex groups: 5 + Group: 'Bone', Weight: 0.416697 + Group: 'RightUpLeg', Weight: 0.394391 + Group: 'Bone2', Weight: 0.150321 + Group: 'Bone.001', Weight: 0.034251 + Group: 'Spine', Weight: 0.004340 +Vertex 2197: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightToeBase', Weight: 0.985563 +Vertex 2198: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightToeBase', Weight: 0.987460 +Vertex 2199: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.012846 + Group: 'RightToeBase', Weight: 0.968311 +Vertex 2200: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.070836 + Group: 'RightToeBase', Weight: 0.928552 +Vertex 2201: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.290325 + Group: 'RightToeBase', Weight: 0.707198 +Vertex 2202: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.909170 + Group: 'RightToeBase', Weight: 0.067936 +Vertex 2203: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.390635 + Group: 'RightFoot', Weight: 0.330560 + Group: 'Bone2', Weight: 0.182553 + Group: 'Bone.001', Weight: 0.051030 + Group: 'RightToeBase', Weight: 0.045221 +Vertex 2204: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'RightFoot', Weight: 0.258643 + Group: 'RightToeBase', Weight: 0.737225 +Vertex 2205: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'RightFoot', Weight: 0.045180 + Group: 'RightToeBase', Weight: 0.951735 +Vertex 2206: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'RightToeBase', Weight: 0.975359 +Vertex 2207: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.036056 + Group: 'RightToeBase', Weight: 0.956727 +Vertex 2208: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.246950 + Group: 'RightToeBase', Weight: 0.752090 +Vertex 2209: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.934067 + Group: 'RightToeBase', Weight: 0.058578 +Vertex 2210: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.137494 + Group: 'RightToeBase', Weight: 0.861333 +Vertex 2211: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'RightFoot', Weight: 0.113778 + Group: 'RightToeBase', Weight: 0.884510 +Vertex 2212: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.113028 + Group: 'RightToeBase', Weight: 0.886433 +Vertex 2213: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightFoot', Weight: 0.417374 + Group: 'RightToeBase', Weight: 0.575481 +Vertex 2214: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.762265 + Group: 'RightToeBase', Weight: 0.236245 +Vertex 2215: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119393 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453739 + Group: 'RightFoot', Weight: 0.587199 + Group: 'RightToeBase', Weight: 0.411189 +Vertex 2216: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.721479 + Group: 'RightToeBase', Weight: 0.277041 +Vertex 2217: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.718357 + Group: 'RightToeBase', Weight: 0.273286 +Vertex 2218: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightFoot', Weight: 0.684447 + Group: 'RightToeBase', Weight: 0.303862 +Vertex 2219: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.684865 + Group: 'RightToeBase', Weight: 0.309358 +Vertex 2220: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'RightFoot', Weight: 0.546616 + Group: 'RightToeBase', Weight: 0.444209 +Vertex 2221: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.712745 + Group: 'RightToeBase', Weight: 0.284642 +Vertex 2222: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.465058 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone.001', Weight: 0.128577 + Group: 'RightFoot', Weight: 0.741968 + Group: 'RightToeBase', Weight: 0.241379 +Vertex 2223: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.389933 + Group: 'RightFoot', Weight: 0.335313 + Group: 'Bone2', Weight: 0.181345 + Group: 'Bone.001', Weight: 0.050138 + Group: 'RightToeBase', Weight: 0.043271 +Vertex 2224: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119345 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453680 + Group: 'RightFoot', Weight: 0.738496 + Group: 'RightToeBase', Weight: 0.257174 +Vertex 2225: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.794679 + Group: 'RightToeBase', Weight: 0.197265 +Vertex 2226: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.841532 + Group: 'RightToeBase', Weight: 0.142140 +Vertex 2227: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightLeg', Weight: 0.219432 + Group: 'RightFoot', Weight: 0.765530 +Vertex 2228: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.193853 + Group: 'RightFoot', Weight: 0.793764 +Vertex 2229: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.432383 + Group: 'RightLeg', Weight: 0.288708 + Group: 'RightFoot', Weight: 0.706411 +Vertex 2230: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.101754 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone2', Weight: 0.434634 + Group: 'RightLeg', Weight: 0.228242 + Group: 'RightFoot', Weight: 0.763575 +Vertex 2231: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.106780 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.437508 + Group: 'RightLeg', Weight: 0.155986 + Group: 'RightFoot', Weight: 0.834630 +Vertex 2232: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.101754 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.434634 + Group: 'RightLeg', Weight: 0.120757 + Group: 'RightFoot', Weight: 0.874029 +Vertex 2233: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.432383 + Group: 'RightLeg', Weight: 0.098418 + Group: 'RightFoot', Weight: 0.900611 +Vertex 2234: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.090799 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone2', Weight: 0.438608 + Group: 'RightLeg', Weight: 0.436005 + Group: 'RightFoot', Weight: 0.563589 +Vertex 2235: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.088715 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone2', Weight: 0.440400 + Group: 'RightLeg', Weight: 0.472042 + Group: 'RightFoot', Weight: 0.527378 +Vertex 2236: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'RightLeg', Weight: 0.197604 + Group: 'RightFoot', Weight: 0.784563 +Vertex 2237: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.106780 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone2', Weight: 0.437508 + Group: 'RightLeg', Weight: 0.196950 + Group: 'RightFoot', Weight: 0.791466 +Vertex 2238: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.088715 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone2', Weight: 0.440400 + Group: 'RightLeg', Weight: 0.432647 + Group: 'RightFoot', Weight: 0.565310 +Vertex 2239: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.090799 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone2', Weight: 0.438608 + Group: 'RightLeg', Weight: 0.399369 + Group: 'RightFoot', Weight: 0.597717 +Vertex 2240: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.087994 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.439706 + Group: 'RightLeg', Weight: 0.466617 + Group: 'RightFoot', Weight: 0.532207 +Vertex 2241: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999975 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.178382 + Group: 'RightFoot', Weight: 0.806169 +Vertex 2242: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119273 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453591 + Group: 'RightFoot', Weight: 0.911614 + Group: 'RightToeBase', Weight: 0.067991 +Vertex 2243: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393485 + Group: 'RightFoot', Weight: 0.361270 + Group: 'Bone2', Weight: 0.178444 + Group: 'Bone.001', Weight: 0.046902 + Group: 'RightToeBase', Weight: 0.019898 +Vertex 2244: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393851 + Group: 'RightFoot', Weight: 0.360776 + Group: 'Bone2', Weight: 0.178610 + Group: 'Bone.001', Weight: 0.046945 + Group: 'RightLeg', Weight: 0.019818 +Vertex 2245: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119301 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453625 + Group: 'RightFoot', Weight: 0.868311 + Group: 'RightToeBase', Weight: 0.123315 +Vertex 2246: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.962612 + Group: 'RightToeBase', Weight: 0.004607 +Vertex 2247: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.098800 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.433508 + Group: 'RightFoot', Weight: 0.972301 +Vertex 2248: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.098800 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.433508 + Group: 'RightLeg', Weight: 0.008037 + Group: 'RightFoot', Weight: 0.963975 +Vertex 2249: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'RightToeBase', Weight: 0.998577 +Vertex 2250: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightToeBase', Weight: 0.998205 +Vertex 2251: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightToeBase', Weight: 0.991711 +Vertex 2252: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightToeBase', Weight: 0.974952 +Vertex 2253: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.082571 + Group: 'RightToeBase', Weight: 0.917199 +Vertex 2254: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.222109 + Group: 'RightToeBase', Weight: 0.777331 +Vertex 2255: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.684778 + Group: 'RightToeBase', Weight: 0.313450 +Vertex 2256: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.831617 + Group: 'RightToeBase', Weight: 0.163712 +Vertex 2257: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.890335 + Group: 'RightToeBase', Weight: 0.099333 +Vertex 2258: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.925534 + Group: 'RightToeBase', Weight: 0.054145 +Vertex 2259: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.395818 + Group: 'RightFoot', Weight: 0.369726 + Group: 'Bone2', Weight: 0.179502 + Group: 'Bone.001', Weight: 0.047180 + Group: 'RightLeg', Weight: 0.007774 +Vertex 2260: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.051066 + Group: 'RightFoot', Weight: 0.926619 +Vertex 2261: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.054221 + Group: 'RightFoot', Weight: 0.923651 +Vertex 2262: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393555 + Group: 'RightFoot', Weight: 0.365007 + Group: 'Bone2', Weight: 0.178476 + Group: 'Bone.001', Weight: 0.046910 + Group: 'RightLeg', Weight: 0.016052 +Vertex 2263: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.396201 + Group: 'RightFoot', Weight: 0.367924 + Group: 'Bone2', Weight: 0.179676 + Group: 'Bone.001', Weight: 0.047225 + Group: 'RightToeBase', Weight: 0.008975 +Vertex 2264: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392863 + Group: 'RightFoot', Weight: 0.362452 + Group: 'Bone2', Weight: 0.178162 + Group: 'Bone.001', Weight: 0.046828 + Group: 'RightToeBase', Weight: 0.019695 +Vertex 2265: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.910002 + Group: 'RightToeBase', Weight: 0.068663 +Vertex 2266: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.888715 + Group: 'RightToeBase', Weight: 0.095876 +Vertex 2267: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.757992 + Group: 'RightToeBase', Weight: 0.236766 +Vertex 2268: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.533022 + Group: 'RightToeBase', Weight: 0.464560 +Vertex 2269: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.842785 + Group: 'RightToeBase', Weight: 0.147778 +Vertex 2270: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.276228 + Group: 'RightToeBase', Weight: 0.722306 +Vertex 2271: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.137593 + Group: 'RightToeBase', Weight: 0.861576 +Vertex 2272: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.061538 + Group: 'RightToeBase', Weight: 0.938034 +Vertex 2273: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.004127 + Group: 'RightToeBase', Weight: 0.972728 +Vertex 2274: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.459276 + Group: 'Bone1', Weight: 0.999993 + Group: 'Bone.001', Weight: 0.123886 + Group: 'RightToeBase', Weight: 0.989172 +Vertex 2275: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone.001', Weight: 0.077910 + Group: 'Bone', Weight: 0.993871 + Group: 'RightUpLeg', Weight: 0.963632 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2276: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone', Weight: 0.997959 + Group: 'RightUpLeg', Weight: 0.951741 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2277: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone', Weight: 0.994784 + Group: 'RightUpLeg', Weight: 0.949299 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2278: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone', Weight: 0.995680 + Group: 'RightUpLeg', Weight: 0.992291 +Vertex 2279: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone', Weight: 0.996897 + Group: 'RightUpLeg', Weight: 0.994741 +Vertex 2280: +Vertex groups: 4 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone', Weight: 0.997341 + Group: 'RightUpLeg', Weight: 0.992449 +Vertex 2281: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.077910 + Group: 'Bone2', Weight: 0.377808 + Group: 'Bone', Weight: 0.995020 + Group: 'RightUpLeg', Weight: 0.985682 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2282: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.073388 + Group: 'Bone2', Weight: 0.312920 + Group: 'Bone', Weight: 0.998259 + Group: 'RightUpLeg', Weight: 0.980353 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2283: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone', Weight: 0.993674 + Group: 'RightUpLeg', Weight: 0.951261 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2284: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.077837 + Group: 'Bone2', Weight: 0.380022 + Group: 'Bone', Weight: 0.994475 + Group: 'RightUpLeg', Weight: 0.975555 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2285: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone', Weight: 0.996102 + Group: 'RightUpLeg', Weight: 0.919710 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2286: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.071880 + Group: 'Bone2', Weight: 0.306079 + Group: 'Bone', Weight: 0.998379 + Group: 'RightUpLeg', Weight: 0.967322 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2287: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone', Weight: 0.997151 + Group: 'RightUpLeg', Weight: 0.913222 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2288: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone', Weight: 0.996423 + Group: 'RightUpLeg', Weight: 0.995384 +Vertex 2289: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.076639 + Group: 'Bone2', Weight: 0.327687 + Group: 'Bone', Weight: 0.997927 + Group: 'RightUpLeg', Weight: 0.986202 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2290: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.393856 + Group: 'RightFoot', Weight: 0.341908 + Group: 'Bone2', Weight: 0.178616 + Group: 'Bone.001', Weight: 0.046947 + Group: 'RightLeg', Weight: 0.038673 +Vertex 2291: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.107765 + Group: 'RightFoot', Weight: 0.868400 +Vertex 2292: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.392534 + Group: 'RightFoot', Weight: 0.339986 + Group: 'Bone2', Weight: 0.178013 + Group: 'Bone.001', Weight: 0.046788 + Group: 'RightLeg', Weight: 0.042679 +Vertex 2293: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.078748 + Group: 'RightFoot', Weight: 0.898110 +Vertex 2294: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.391508 + Group: 'RightFoot', Weight: 0.329443 + Group: 'Bone2', Weight: 0.182961 + Group: 'Bone.001', Weight: 0.051144 + Group: 'RightLeg', Weight: 0.044945 +Vertex 2295: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.130631 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone2', Weight: 0.467316 + Group: 'RightFoot', Weight: 0.762832 + Group: 'RightToeBase', Weight: 0.216846 +Vertex 2296: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.106985 + Group: 'RightFoot', Weight: 0.874568 +Vertex 2297: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.128677 + Group: 'RightFoot', Weight: 0.857663 +Vertex 2298: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.166600 + Group: 'RightFoot', Weight: 0.823647 +Vertex 2299: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.236024 + Group: 'RightFoot', Weight: 0.758029 +Vertex 2300: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.439706 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone.001', Weight: 0.087994 + Group: 'RightLeg', Weight: 0.334896 + Group: 'RightFoot', Weight: 0.661402 +Vertex 2301: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.336469 + Group: 'RightFoot', Weight: 0.660750 +Vertex 2302: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.171886 + Group: 'RightFoot', Weight: 0.824958 +Vertex 2303: +Vertex groups: 5 + Group: 'Bone1', Weight: 0.390535 + Group: 'RightFoot', Weight: 0.326431 + Group: 'Bone2', Weight: 0.181623 + Group: 'RightLeg', Weight: 0.051196 + Group: 'Bone.001', Weight: 0.050214 +Vertex 2304: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.038757 + Group: 'RightFoot', Weight: 0.951205 +Vertex 2305: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.048461 + Group: 'RightFoot', Weight: 0.936100 +Vertex 2306: +Vertex groups: 4 + Group: 'Hips', Weight: 0.609575 + Group: 'Spine', Weight: 0.030202 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.120326 +Vertex 2307: +Vertex groups: 3 + Group: 'Hips', Weight: 0.632464 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.123230 +Vertex 2308: +Vertex groups: 5 + Group: 'Bone', Weight: 0.486671 + Group: 'Hips', Weight: 0.262102 + Group: 'Bone2', Weight: 0.171452 + Group: 'RightUpLeg', Weight: 0.040040 + Group: 'Bone.001', Weight: 0.039734 +Vertex 2309: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightFoot', Weight: 0.814043 + Group: 'RightToeBase', Weight: 0.163427 +Vertex 2310: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.888922 + Group: 'RightToeBase', Weight: 0.108152 +Vertex 2311: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.846086 + Group: 'RightToeBase', Weight: 0.141862 +Vertex 2312: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.859982 + Group: 'RightToeBase', Weight: 0.122155 +Vertex 2313: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightFoot', Weight: 0.872462 + Group: 'RightToeBase', Weight: 0.123106 +Vertex 2314: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.881324 + Group: 'RightToeBase', Weight: 0.115769 +Vertex 2315: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.941314 + Group: 'RightFoot', Weight: 0.058149 +Vertex 2316: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.453495 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone.001', Weight: 0.119195 + Group: 'RightLeg', Weight: 0.903961 + Group: 'RightFoot', Weight: 0.094464 +Vertex 2317: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.434634 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.101754 + Group: 'RightLeg', Weight: 0.909246 + Group: 'RightFoot', Weight: 0.089508 +Vertex 2318: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.921086 + Group: 'RightFoot', Weight: 0.077867 +Vertex 2319: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.432383 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone.001', Weight: 0.095846 + Group: 'RightLeg', Weight: 0.951932 + Group: 'RightFoot', Weight: 0.045691 +Vertex 2320: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.440400 + Group: 'Bone1', Weight: 0.999957 + Group: 'Bone.001', Weight: 0.088715 + Group: 'RightLeg', Weight: 0.956458 + Group: 'RightFoot', Weight: 0.036821 +Vertex 2321: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.467316 + Group: 'Bone1', Weight: 0.999986 + Group: 'Bone.001', Weight: 0.130631 + Group: 'RightLeg', Weight: 0.879839 + Group: 'RightFoot', Weight: 0.117844 +Vertex 2322: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.437508 + Group: 'Bone1', Weight: 0.999967 + Group: 'Bone.001', Weight: 0.106780 + Group: 'RightLeg', Weight: 0.898473 + Group: 'RightFoot', Weight: 0.099947 +Vertex 2323: +Vertex groups: 5 + Group: 'Bone2', Weight: 0.438608 + Group: 'Bone1', Weight: 0.999928 + Group: 'Bone.001', Weight: 0.090799 + Group: 'RightLeg', Weight: 0.933492 + Group: 'RightFoot', Weight: 0.065898 +Vertex 2324: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.128577 + Group: 'Bone1', Weight: 0.999991 + Group: 'Bone2', Weight: 0.465058 + Group: 'RightLeg', Weight: 0.896055 + Group: 'RightFoot', Weight: 0.102032 +Vertex 2325: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.432383 + Group: 'RightLeg', Weight: 0.918864 + Group: 'RightFoot', Weight: 0.080235 +Vertex 2326: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.090799 + Group: 'Bone1', Weight: 0.999980 + Group: 'Bone2', Weight: 0.438608 + Group: 'RightLeg', Weight: 0.961386 + Group: 'RightFoot', Weight: 0.027013 +Vertex 2327: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.088715 + Group: 'Bone1', Weight: 0.999930 + Group: 'Bone2', Weight: 0.440400 + Group: 'RightLeg', Weight: 0.938904 + Group: 'RightFoot', Weight: 0.060690 +Vertex 2328: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.087994 + Group: 'Bone1', Weight: 0.999941 + Group: 'Bone2', Weight: 0.439706 + Group: 'RightLeg', Weight: 0.948229 + Group: 'RightFoot', Weight: 0.051530 +Vertex 2329: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999975 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.884974 + Group: 'RightFoot', Weight: 0.112980 +Vertex 2330: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightFoot', Weight: 0.943323 + Group: 'RightToeBase', Weight: 0.040643 +Vertex 2331: +Vertex groups: 4 + Group: 'Bone.001', Weight: 0.107003 + Group: 'Bone1', Weight: 0.999998 + Group: 'Bone2', Weight: 0.441547 + Group: 'RightFoot', Weight: 0.972830 +Vertex 2332: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.093061 + Group: 'Bone1', Weight: 0.999988 + Group: 'Bone2', Weight: 0.435818 + Group: 'RightLeg', Weight: 0.106781 + Group: 'RightFoot', Weight: 0.889705 +Vertex 2333: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.119195 + Group: 'Bone1', Weight: 0.999996 + Group: 'Bone2', Weight: 0.453495 + Group: 'RightLeg', Weight: 0.063433 + Group: 'RightFoot', Weight: 0.922211 +Vertex 2334: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.092612 + Group: 'Bone1', Weight: 0.999987 + Group: 'Bone2', Weight: 0.436371 + Group: 'RightLeg', Weight: 0.095509 + Group: 'RightFoot', Weight: 0.898800 +Vertex 2335: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.095846 + Group: 'Bone1', Weight: 0.999999 + Group: 'Bone2', Weight: 0.432383 + Group: 'RightLeg', Weight: 0.062523 + Group: 'RightFoot', Weight: 0.935838 +Vertex 2336: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.055526 + Group: 'RightFoot', Weight: 0.940127 +Vertex 2337: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.167904 + Group: 'RightFoot', Weight: 0.830418 +Vertex 2338: +Vertex groups: 4 + Group: 'Hips', Weight: 0.584802 + Group: 'Spine', Weight: 0.124278 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 2339: +Vertex groups: 5 + Group: 'Hips', Weight: 0.352459 + Group: 'Spine', Weight: 0.185197 + Group: 'Spine1', Weight: 0.011718 + Group: 'RightUpLeg', Weight: 0.000466 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2340: +Vertex groups: 5 + Group: 'Hips', Weight: 0.160299 + Group: 'Spine', Weight: 0.226150 + Group: 'Spine1', Weight: 0.026067 + Group: 'RightUpLeg', Weight: 0.143719 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2341: +Vertex groups: 5 + Group: 'Hips', Weight: 0.064560 + Group: 'Spine', Weight: 0.277186 + Group: 'Spine1', Weight: 0.044936 + Group: 'RightUpLeg', Weight: 0.559706 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2342: +Vertex groups: 5 + Group: 'Hips', Weight: 0.029006 + Group: 'Spine', Weight: 0.279418 + Group: 'Spine1', Weight: 0.042231 + Group: 'RightUpLeg', Weight: 0.617937 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2343: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004782 + Group: 'Spine', Weight: 0.280633 + Group: 'Spine1', Weight: 0.026187 + Group: 'RightUpLeg', Weight: 0.642152 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2344: +Vertex groups: 4 + Group: 'Hips', Weight: 0.037560 + Group: 'Spine', Weight: 0.214353 + Group: 'RightUpLeg', Weight: 0.702360 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2345: +Vertex groups: 4 + Group: 'Hips', Weight: 0.095776 + Group: 'Spine', Weight: 0.184190 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.666845 +Vertex 2346: +Vertex groups: 4 + Group: 'Hips', Weight: 0.173885 + Group: 'Spine', Weight: 0.129427 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.599044 +Vertex 2347: +Vertex groups: 4 + Group: 'Hips', Weight: 0.250852 + Group: 'Spine', Weight: 0.111852 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.386642 +Vertex 2348: +Vertex groups: 5 + Group: 'Bone', Weight: 0.417439 + Group: 'Hips', Weight: 0.283072 + Group: 'Bone2', Weight: 0.150553 + Group: 'Spine', Weight: 0.114632 + Group: 'Bone.001', Weight: 0.034304 +Vertex 2349: +Vertex groups: 5 + Group: 'Bone', Weight: 0.388318 + Group: 'Hips', Weight: 0.230158 + Group: 'Spine', Weight: 0.209562 + Group: 'Bone2', Weight: 0.140051 + Group: 'Bone.001', Weight: 0.031911 +Vertex 2350: +Vertex groups: 5 + Group: 'Bone', Weight: 0.380993 + Group: 'Spine', Weight: 0.225833 + Group: 'RightUpLeg', Weight: 0.165167 + Group: 'Bone2', Weight: 0.137409 + Group: 'Hips', Weight: 0.090598 +Vertex 2351: +Vertex groups: 5 + Group: 'Bone', Weight: 0.351882 + Group: 'Spine', Weight: 0.244570 + Group: 'RightUpLeg', Weight: 0.241023 + Group: 'Bone2', Weight: 0.126910 + Group: 'Hips', Weight: 0.035615 +Vertex 2352: +Vertex groups: 5 + Group: 'Bone', Weight: 0.438331 + Group: 'Hips', Weight: 0.304757 + Group: 'Bone2', Weight: 0.158088 + Group: 'Spine', Weight: 0.062802 + Group: 'Bone.001', Weight: 0.036021 +Vertex 2353: +Vertex groups: 5 + Group: 'Bone', Weight: 0.351171 + Group: 'RightUpLeg', Weight: 0.296235 + Group: 'Hips', Weight: 0.181069 + Group: 'Bone2', Weight: 0.126654 + Group: 'Spine', Weight: 0.044871 +Vertex 2354: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.437304 + Group: 'Bone', Weight: 0.311467 + Group: 'Bone2', Weight: 0.112334 + Group: 'Hips', Weight: 0.096976 + Group: 'Spine', Weight: 0.041919 +Vertex 2355: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.492871 + Group: 'Bone', Weight: 0.304186 + Group: 'Bone2', Weight: 0.109708 + Group: 'Spine', Weight: 0.051263 + Group: 'Hips', Weight: 0.041973 +Vertex 2356: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.508815 + Group: 'Bone', Weight: 0.299647 + Group: 'Bone2', Weight: 0.108071 + Group: 'Spine', Weight: 0.058843 + Group: 'Bone.001', Weight: 0.024624 +Vertex 2357: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.513511 + Group: 'Bone', Weight: 0.296906 + Group: 'Bone2', Weight: 0.107082 + Group: 'Spine', Weight: 0.058102 + Group: 'Bone.001', Weight: 0.024399 +Vertex 2358: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.509267 + Group: 'Bone', Weight: 0.298930 + Group: 'Bone2', Weight: 0.107812 + Group: 'Spine', Weight: 0.059426 + Group: 'Bone.001', Weight: 0.024566 +Vertex 2359: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.496554 + Group: 'Bone', Weight: 0.301607 + Group: 'Bone2', Weight: 0.108778 + Group: 'Spine', Weight: 0.061292 + Group: 'Hips', Weight: 0.031768 +Vertex 2360: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.467061 + Group: 'Bone', Weight: 0.302056 + Group: 'Bone2', Weight: 0.108940 + Group: 'Hips', Weight: 0.063312 + Group: 'Spine', Weight: 0.058632 +Vertex 2361: +Vertex groups: 5 + Group: 'RightUpLeg', Weight: 0.396843 + Group: 'Bone', Weight: 0.308438 + Group: 'Hips', Weight: 0.130915 + Group: 'Bone2', Weight: 0.111241 + Group: 'Spine', Weight: 0.052563 +Vertex 2362: +Vertex groups: 4 + Group: 'Hips', Weight: 0.638798 + Group: 'Spine', Weight: 0.081644 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 2363: +Vertex groups: 4 + Group: 'Hips', Weight: 0.327612 + Group: 'Spine', Weight: 0.062101 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.421265 +Vertex 2364: +Vertex groups: 3 + Group: 'Hips', Weight: 0.472131 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.417021 +Vertex 2365: +Vertex groups: 3 + Group: 'Hips', Weight: 0.497878 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.320721 +Vertex 2366: +Vertex groups: 3 + Group: 'Hips', Weight: 0.509405 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.212573 +Vertex 2367: +Vertex groups: 5 + Group: 'Hips', Weight: 0.012032 + Group: 'Spine', Weight: 0.526010 + Group: 'Spine1', Weight: 0.057514 + Group: 'RightUpLeg', Weight: 0.000960 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2368: +Vertex groups: 5 + Group: 'Hips', Weight: 0.032175 + Group: 'Spine', Weight: 0.648202 + Group: 'Spine1', Weight: 0.054027 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2369: +Vertex groups: 5 + Group: 'Spine', Weight: 0.410711 + Group: 'Bone', Weight: 0.375802 + Group: 'Bone2', Weight: 0.135537 + Group: 'Hips', Weight: 0.047067 + Group: 'Bone.001', Weight: 0.030883 +Vertex 2370: +Vertex groups: 5 + Group: 'Spine', Weight: 0.415116 + Group: 'Bone', Weight: 0.350297 + Group: 'Bone2', Weight: 0.126338 + Group: 'Hips', Weight: 0.079462 + Group: 'Bone.001', Weight: 0.028787 +Vertex 2371: +Vertex groups: 5 + Group: 'Bone', Weight: 0.326254 + Group: 'RightUpLeg', Weight: 0.277362 + Group: 'Spine', Weight: 0.170681 + Group: 'Bone2', Weight: 0.117667 + Group: 'Hips', Weight: 0.108036 +Vertex 2372: +Vertex groups: 5 + Group: 'Bone', Weight: 0.366132 + Group: 'Spine', Weight: 0.282316 + Group: 'Hips', Weight: 0.189415 + Group: 'Bone2', Weight: 0.132049 + Group: 'Bone.001', Weight: 0.030088 +Vertex 2373: +Vertex groups: 5 + Group: 'Hips', Weight: 0.062573 + Group: 'Spine', Weight: 0.711397 + Group: 'Spine1', Weight: 0.033414 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 2374: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082166 + Group: 'Bone2', Weight: 0.371221 + Group: 'Bone', Weight: 0.999647 + Group: 'RightUpLeg', Weight: 0.977588 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2375: +Vertex groups: 5 + Group: 'Bone', Weight: 0.436746 + Group: 'RightUpLeg', Weight: 0.281892 + Group: 'Bone2', Weight: 0.163897 + Group: 'Hips', Weight: 0.082787 + Group: 'Bone.001', Weight: 0.034677 +Vertex 2376: +Vertex groups: 5 + Group: 'Bone', Weight: 0.497343 + Group: 'Bone2', Weight: 0.179437 + Group: 'RightUpLeg', Weight: 0.178656 + Group: 'Hips', Weight: 0.103678 + Group: 'Bone.001', Weight: 0.040886 +Vertex 2377: +Vertex groups: 5 + Group: 'Bone', Weight: 0.417017 + Group: 'RightUpLeg', Weight: 0.358087 + Group: 'Bone2', Weight: 0.158610 + Group: 'Hips', Weight: 0.033798 + Group: 'Bone.001', Weight: 0.032487 +Vertex 2378: +Vertex groups: 5 + Group: 'Bone', Weight: 0.415696 + Group: 'RightUpLeg', Weight: 0.381620 + Group: 'Bone2', Weight: 0.157155 + Group: 'Bone.001', Weight: 0.032408 + Group: 'Hips', Weight: 0.013121 +Vertex 2379: +Vertex groups: 5 + Group: 'Bone', Weight: 0.462721 + Group: 'RightUpLeg', Weight: 0.255990 + Group: 'Bone2', Weight: 0.171938 + Group: 'Hips', Weight: 0.071295 + Group: 'Bone.001', Weight: 0.038057 +Vertex 2380: +Vertex groups: 5 + Group: 'Bone', Weight: 0.422570 + Group: 'RightUpLeg', Weight: 0.388751 + Group: 'Bone2', Weight: 0.132261 + Group: 'Bone.001', Weight: 0.031019 + Group: 'Hips', Weight: 0.025399 +Vertex 2381: +Vertex groups: 5 + Group: 'Bone', Weight: 0.434677 + Group: 'RightUpLeg', Weight: 0.320024 + Group: 'Bone2', Weight: 0.142482 + Group: 'Hips', Weight: 0.069494 + Group: 'Bone.001', Weight: 0.033323 +Vertex 2382: +Vertex groups: 5 + Group: 'Bone', Weight: 0.481542 + Group: 'RightUpLeg', Weight: 0.216883 + Group: 'Bone2', Weight: 0.169687 + Group: 'Hips', Weight: 0.092563 + Group: 'Bone.001', Weight: 0.039325 +Vertex 2383: +Vertex groups: 5 + Group: 'Bone', Weight: 0.425047 + Group: 'RightUpLeg', Weight: 0.311889 + Group: 'Bone2', Weight: 0.160756 + Group: 'Hips', Weight: 0.069157 + Group: 'Bone.001', Weight: 0.033150 +Vertex 2384: +Vertex groups: 5 + Group: 'Bone', Weight: 0.421585 + Group: 'RightUpLeg', Weight: 0.399286 + Group: 'Bone2', Weight: 0.138180 + Group: 'Bone.001', Weight: 0.032317 + Group: 'Hips', Weight: 0.008631 +Vertex 2385: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.079305 + Group: 'Bone2', Weight: 0.374821 + Group: 'Bone', Weight: 0.999525 + Group: 'RightUpLeg', Weight: 0.957434 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2386: +Vertex groups: 5 + Group: 'Bone', Weight: 0.425671 + Group: 'RightUpLeg', Weight: 0.366451 + Group: 'Bone2', Weight: 0.130319 + Group: 'Hips', Weight: 0.046954 + Group: 'Bone.001', Weight: 0.030604 +Vertex 2387: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.081629 + Group: 'Bone2', Weight: 0.352227 + Group: 'Bone', Weight: 0.999740 + Group: 'RightUpLeg', Weight: 0.968320 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2388: +Vertex groups: 5 + Group: 'Bone.001', Weight: 0.082155 + Group: 'Bone2', Weight: 0.360558 + Group: 'Bone', Weight: 0.999485 + Group: 'RightUpLeg', Weight: 0.977482 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 2389: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.978046 +Vertex 2390: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.982243 +Vertex 2391: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.984852 +Vertex 2392: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.985223 +Vertex 2393: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.980779 +Vertex 2394: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.974014 +Vertex 2395: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.962933 + Group: 'RightHand', Weight: 0.019514 +Vertex 2396: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.966115 + Group: 'RightHand', Weight: 0.013496 +Vertex 2397: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.965400 + Group: 'RightHand', Weight: 0.015343 +Vertex 2398: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.966983 + Group: 'RightHand', Weight: 0.012962 +Vertex 2399: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.976181 +Vertex 2400: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.978164 +Vertex 2401: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.978474 +Vertex 2402: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.084902 + Group: 'RightForeArm', Weight: 0.914688 +Vertex 2403: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.038219 + Group: 'RightForeArm', Weight: 0.955645 +Vertex 2404: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.041245 + Group: 'RightForeArm', Weight: 0.954153 +Vertex 2405: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.114389 + Group: 'RightForeArm', Weight: 0.885497 +Vertex 2406: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.242825 + Group: 'RightForeArm', Weight: 0.756971 +Vertex 2407: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.168059 + Group: 'RightForeArm', Weight: 0.831712 +Vertex 2408: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.072315 + Group: 'RightForeArm', Weight: 0.927384 +Vertex 2409: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.038998 + Group: 'RightForeArm', Weight: 0.955235 +Vertex 2410: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.976665 +Vertex 2411: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.055620 + Group: 'RightForeArm', Weight: 0.944134 +Vertex 2412: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.000746 + Group: 'RightForeArm', Weight: 0.974139 +Vertex 2413: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.033683 + Group: 'RightForeArm', Weight: 0.957563 +Vertex 2414: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.037073 + Group: 'RightForeArm', Weight: 0.956192 +Vertex 2415: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.103666 + Group: 'RightArm', Weight: 0.866491 +Vertex 2416: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.112091 + Group: 'RightArm', Weight: 0.850728 +Vertex 2417: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.973960 +Vertex 2418: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.025916 + Group: 'RightArm', Weight: 0.954129 +Vertex 2419: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991105 +Vertex 2420: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.098186 + Group: 'RightArm', Weight: 0.878936 +Vertex 2421: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.119347 + Group: 'RightArm', Weight: 0.861282 +Vertex 2422: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.094728 + Group: 'RightArm', Weight: 0.876809 +Vertex 2423: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.097836 + Group: 'RightArm', Weight: 0.879680 +Vertex 2424: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.983952 +Vertex 2425: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.989936 +Vertex 2426: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.989250 +Vertex 2427: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.975303 +Vertex 2428: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.801328 + Group: 'RightForeArm', Weight: 0.198285 +Vertex 2429: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.815794 + Group: 'RightForeArm', Weight: 0.184117 +Vertex 2430: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.783526 + Group: 'RightForeArm', Weight: 0.216444 +Vertex 2431: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.805309 + Group: 'RightForeArm', Weight: 0.194382 +Vertex 2432: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.839382 + Group: 'RightForeArm', Weight: 0.160584 +Vertex 2433: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.858919 + Group: 'RightForeArm', Weight: 0.140999 +Vertex 2434: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.827415 + Group: 'RightForeArm', Weight: 0.172524 +Vertex 2435: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.811599 + Group: 'RightForeArm', Weight: 0.188028 +Vertex 2436: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.815530 + Group: 'RightForeArm', Weight: 0.184338 +Vertex 2437: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.812541 + Group: 'RightForeArm', Weight: 0.187252 +Vertex 2438: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.607471 + Group: 'RightForeArm', Weight: 0.392492 +Vertex 2439: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.761657 + Group: 'RightForeArm', Weight: 0.238205 +Vertex 2440: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.918248 + Group: 'RightForeArm', Weight: 0.081484 +Vertex 2441: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.977091 +Vertex 2442: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991368 +Vertex 2443: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.987442 +Vertex 2444: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.997853 +Vertex 2445: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.981087 +Vertex 2446: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.985092 +Vertex 2447: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.979808 +Vertex 2448: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.984708 +Vertex 2449: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.990725 +Vertex 2450: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.994443 +Vertex 2451: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.996634 +Vertex 2452: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.998772 +Vertex 2453: +Vertex groups: 1 + Group: 'RightArm', Weight: 1.000318 +Vertex 2454: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.848196 + Group: 'RightForeArm', Weight: 0.151765 +Vertex 2455: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.212948 + Group: 'RightForeArm', Weight: 0.786995 +Vertex 2456: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.856169 + Group: 'RightForeArm', Weight: 0.143526 +Vertex 2457: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.453469 + Group: 'RightForeArm', Weight: 0.546424 +Vertex 2458: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.033015 + Group: 'RightForeArm', Weight: 0.958253 +Vertex 2459: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.091797 + Group: 'RightForeArm', Weight: 0.907825 +Vertex 2460: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.113141 + Group: 'RightForeArm', Weight: 0.886644 +Vertex 2461: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.071849 + Group: 'RightForeArm', Weight: 0.927635 +Vertex 2462: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.064011 + Group: 'RightForeArm', Weight: 0.935834 +Vertex 2463: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.075030 + Group: 'RightForeArm', Weight: 0.924842 +Vertex 2464: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.944176 + Group: 'RightForeArm', Weight: 0.055781 +Vertex 2465: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.954060 + Group: 'RightForeArm', Weight: 0.041734 +Vertex 2466: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.951262 + Group: 'RightForeArm', Weight: 0.047041 +Vertex 2467: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.832849 + Group: 'RightForeArm', Weight: 0.167023 +Vertex 2468: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.961144 +Vertex 2469: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.079316 + Group: 'LeftHandMiddle1', Weight: 0.864209 + Group: 'LeftHandRing1', Weight: 0.006250 +Vertex 2470: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.996803 +Vertex 2471: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.916841 + Group: 'LeftHandRing3', Weight: 0.080320 +Vertex 2472: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.004176 + Group: 'LeftHandMiddle1', Weight: 0.832684 + Group: 'LeftHandRing1', Weight: 0.099454 +Vertex 2473: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.010773 + Group: 'LeftHandRing3_end', Weight: 0.968991 +Vertex 2474: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.926795 + Group: 'LeftHandMiddle1', Weight: 0.026736 +Vertex 2475: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.675365 + Group: 'LeftHandRing1', Weight: 0.251876 + Group: 'LeftHandRing2', Weight: 0.007540 +Vertex 2476: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.724040 + Group: 'LeftHandMiddle1', Weight: 0.246276 +Vertex 2477: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.901018 + Group: 'LeftHandMiddle1', Weight: 0.079119 +Vertex 2478: +Vertex groups: 1 + Group: 'LeftHandIndex1', Weight: 0.953616 +Vertex 2479: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.756804 + Group: 'LeftHandIndex2', Weight: 0.102533 + Group: 'LeftHandMiddle1', Weight: 0.105404 + Group: 'LeftHandMiddle2', Weight: 0.014353 +Vertex 2480: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.895304 + Group: 'LeftHandIndex2', Weight: 0.091147 +Vertex 2481: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.830787 + Group: 'LeftHandIndex2', Weight: 0.127728 + Group: 'LeftHandMiddle1', Weight: 0.010705 +Vertex 2482: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.706098 + Group: 'LeftHandMiddle2', Weight: 0.112642 + Group: 'LeftHandRing1', Weight: 0.078071 + Group: 'LeftHandRing2', Weight: 0.094128 +Vertex 2483: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.045482 + Group: 'LeftHandMiddle1', Weight: 0.825128 + Group: 'LeftHandMiddle2', Weight: 0.098423 +Vertex 2484: +Vertex groups: 2 + Group: 'LeftHandMiddle1', Weight: 0.796894 + Group: 'LeftHandMiddle2', Weight: 0.137221 +Vertex 2485: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.101746 + Group: 'LeftHandRing1', Weight: 0.799090 + Group: 'LeftHandRing2', Weight: 0.058245 +Vertex 2486: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.026971 + Group: 'LeftHandRing1', Weight: 0.811079 + Group: 'LeftHandRing2', Weight: 0.054079 + Group: 'LeftHandPinky1', Weight: 0.065846 +Vertex 2487: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.697820 + Group: 'LeftHandRing2', Weight: 0.052059 + Group: 'LeftHandPinky1', Weight: 0.172217 + Group: 'LeftHandPinky2', Weight: 0.056289 +Vertex 2488: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.581002 + Group: 'LeftHandRing2', Weight: 0.270430 + Group: 'LeftHandPinky2', Weight: 0.131074 +Vertex 2489: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.035745 + Group: 'LeftHandRing1', Weight: 0.677774 + Group: 'LeftHandRing2', Weight: 0.258470 +Vertex 2490: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.521148 + Group: 'LeftHandRing2', Weight: 0.430220 + Group: 'LeftHandPinky2', Weight: 0.004943 +Vertex 2491: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.097435 + Group: 'LeftHandPinky1', Weight: 0.789330 + Group: 'LeftHandPinky2', Weight: 0.108245 +Vertex 2492: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.022505 + Group: 'LeftHandPinky1', Weight: 0.866296 + Group: 'LeftHandPinky2', Weight: 0.094045 +Vertex 2493: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.887970 + Group: 'LeftHandPinky2', Weight: 0.099513 +Vertex 2494: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.073177 + Group: 'LeftHandIndex2', Weight: 0.827935 + Group: 'LeftHandMiddle2', Weight: 0.066299 +Vertex 2495: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.091434 + Group: 'LeftHandPinky2', Weight: 0.893128 +Vertex 2496: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.092704 + Group: 'LeftHandRing2', Weight: 0.024244 + Group: 'LeftHandPinky1', Weight: 0.098004 + Group: 'LeftHandPinky2', Weight: 0.759978 +Vertex 2497: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.001228 + Group: 'LeftHandPinky1', Weight: 0.090215 + Group: 'LeftHandPinky2', Weight: 0.869367 +Vertex 2498: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.103198 + Group: 'LeftHandIndex1', Weight: 0.005480 + Group: 'LeftHandMiddle1', Weight: 0.768861 + Group: 'LeftHandRing1', Weight: 0.089113 +Vertex 2499: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.018916 + Group: 'LeftHandMiddle1', Weight: 0.031095 + Group: 'LeftHandRing1', Weight: 0.750018 + Group: 'LeftHandPinky1', Weight: 0.162221 +Vertex 2500: +Vertex groups: 1 + Group: 'LeftHandPinky1', Weight: 0.970073 +Vertex 2501: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.361249 + Group: 'LeftHandMiddle1', Weight: 0.600927 +Vertex 2502: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.576866 + Group: 'LeftHandIndex2', Weight: 0.104347 + Group: 'LeftHandMiddle1', Weight: 0.234894 + Group: 'LeftHandMiddle2', Weight: 0.078751 +Vertex 2503: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.146318 + Group: 'LeftHandMiddle1', Weight: 0.806380 +Vertex 2504: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.156434 + Group: 'LeftHandIndex2', Weight: 0.036240 + Group: 'LeftHandMiddle1', Weight: 0.643696 + Group: 'LeftHandMiddle2', Weight: 0.148344 +Vertex 2505: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.478097 + Group: 'LeftHandMiddle2', Weight: 0.099619 + Group: 'LeftHandRing1', Weight: 0.171052 + Group: 'LeftHandRing2', Weight: 0.244940 +Vertex 2506: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.367480 + Group: 'LeftHandRing1', Weight: 0.553481 + Group: 'LeftHandRing2', Weight: 0.024814 +Vertex 2507: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.113151 + Group: 'LeftHandMiddle2', Weight: 0.003675 + Group: 'LeftHandRing1', Weight: 0.448410 + Group: 'LeftHandRing2', Weight: 0.405974 +Vertex 2508: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.190055 + Group: 'LeftHandRing1', Weight: 0.731471 + Group: 'LeftHandRing2', Weight: 0.024431 +Vertex 2509: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.539584 + Group: 'LeftHandRing2', Weight: 0.188648 + Group: 'LeftHandPinky1', Weight: 0.048938 + Group: 'LeftHandPinky2', Weight: 0.209848 +Vertex 2510: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.494251 + Group: 'LeftHandRing2', Weight: 0.002964 + Group: 'LeftHandPinky1', Weight: 0.371399 + Group: 'LeftHandPinky2', Weight: 0.093503 +Vertex 2511: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.199441 + Group: 'LeftHandRing2', Weight: 0.091064 + Group: 'LeftHandPinky1', Weight: 0.043484 + Group: 'LeftHandPinky2', Weight: 0.644621 +Vertex 2512: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.199706 + Group: 'LeftHandPinky1', Weight: 0.659364 + Group: 'LeftHandPinky2', Weight: 0.122698 +Vertex 2513: +Vertex groups: 1 + Group: 'LeftHandIndex1', Weight: 0.941090 +Vertex 2514: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.859440 + Group: 'LeftHandIndex2', Weight: 0.128695 +Vertex 2515: +Vertex groups: 3 + Group: 'LeftHandThumb2', Weight: 0.005432 + Group: 'LeftHandIndex1', Weight: 0.895981 + Group: 'LeftHandIndex2', Weight: 0.030898 +Vertex 2516: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.786430 + Group: 'LeftHandIndex2', Weight: 0.189466 +Vertex 2517: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.030779 + Group: 'LeftHandIndex3', Weight: 0.921718 + Group: 'LeftHandIndex3_end', Weight: 0.024484 +Vertex 2518: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.022029 + Group: 'LeftHandIndex2', Weight: 0.940445 +Vertex 2519: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.026345 + Group: 'LeftHandIndex3_end', Weight: 0.960167 +Vertex 2520: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.951110 + Group: 'LeftHandIndex3', Weight: 0.022471 +Vertex 2521: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.978679 +Vertex 2522: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.009934 + Group: 'LeftHandIndex3_end', Weight: 0.968877 +Vertex 2523: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.976839 +Vertex 2524: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.014380 + Group: 'LeftHandIndex3_end', Weight: 0.966651 +Vertex 2525: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.020076 + Group: 'LeftHandIndex3_end', Weight: 0.963461 +Vertex 2526: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.034452 + Group: 'LeftHandIndex3_end', Weight: 0.955937 +Vertex 2527: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.051875 + Group: 'LeftHandIndex3_end', Weight: 0.945624 +Vertex 2528: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998864 +Vertex 2529: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998914 +Vertex 2530: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998945 +Vertex 2531: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.997610 +Vertex 2532: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.995846 +Vertex 2533: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.995655 +Vertex 2534: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.994551 +Vertex 2535: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999324 +Vertex 2536: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999392 +Vertex 2537: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999409 +Vertex 2538: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999387 +Vertex 2539: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999306 +Vertex 2540: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999198 +Vertex 2541: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999251 +Vertex 2542: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999236 +Vertex 2543: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999332 +Vertex 2544: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998793 +Vertex 2545: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999359 +Vertex 2546: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999454 +Vertex 2547: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999365 +Vertex 2548: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998193 +Vertex 2549: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998763 +Vertex 2550: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998087 +Vertex 2551: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.997835 +Vertex 2552: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.020532 + Group: 'LeftHandIndex3', Weight: 0.929548 + Group: 'LeftHandIndex3_end', Weight: 0.019655 +Vertex 2553: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.024518 + Group: 'LeftHandIndex3', Weight: 0.932565 + Group: 'LeftHandIndex3_end', Weight: 0.009429 +Vertex 2554: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.009841 + Group: 'LeftHandIndex3', Weight: 0.936851 + Group: 'LeftHandIndex3_end', Weight: 0.015216 +Vertex 2555: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.013788 + Group: 'LeftHandIndex3', Weight: 0.937029 + Group: 'LeftHandIndex3_end', Weight: 0.010317 +Vertex 2556: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.021469 + Group: 'LeftHandIndex3', Weight: 0.925469 + Group: 'LeftHandIndex3_end', Weight: 0.024996 +Vertex 2557: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.027468 + Group: 'LeftHandIndex3', Weight: 0.914097 + Group: 'LeftHandIndex3_end', Weight: 0.041832 +Vertex 2558: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.053456 + Group: 'LeftHandIndex3', Weight: 0.914097 + Group: 'LeftHandIndex3_end', Weight: 0.010210 +Vertex 2559: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999188 +Vertex 2560: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999485 +Vertex 2561: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998919 +Vertex 2562: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998848 +Vertex 2563: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998807 +Vertex 2564: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999417 +Vertex 2565: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999424 +Vertex 2566: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999148 +Vertex 2567: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.924658 + Group: 'LeftHandIndex3', Weight: 0.037404 +Vertex 2568: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.101765 + Group: 'LeftHandIndex2', Weight: 0.890165 +Vertex 2569: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.951496 + Group: 'LeftHandIndex3', Weight: 0.030680 +Vertex 2570: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.156340 + Group: 'LeftHandIndex2', Weight: 0.835492 +Vertex 2571: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.937695 + Group: 'LeftHandIndex3', Weight: 0.051051 +Vertex 2572: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.930652 + Group: 'LeftHandIndex3', Weight: 0.046997 +Vertex 2573: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.195731 + Group: 'LeftHandIndex2', Weight: 0.786790 +Vertex 2574: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.901476 + Group: 'LeftHandIndex3', Weight: 0.071985 +Vertex 2575: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.884193 + Group: 'LeftHandIndex3', Weight: 0.082868 +Vertex 2576: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.883163 + Group: 'LeftHandIndex3', Weight: 0.066014 +Vertex 2577: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.166031 + Group: 'LeftHandIndex2', Weight: 0.717302 + Group: 'LeftHandMiddle1', Weight: 0.032840 + Group: 'LeftHandMiddle2', Weight: 0.070155 +Vertex 2578: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.345541 + Group: 'LeftHandIndex2', Weight: 0.305149 + Group: 'LeftHandMiddle1', Weight: 0.117508 + Group: 'LeftHandMiddle2', Weight: 0.224554 +Vertex 2579: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.108833 + Group: 'LeftHandIndex2', Weight: 0.087350 + Group: 'LeftHandMiddle1', Weight: 0.171202 + Group: 'LeftHandMiddle2', Weight: 0.624264 +Vertex 2580: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.020937 + Group: 'LeftHandIndex2', Weight: 0.007629 + Group: 'LeftHandMiddle1', Weight: 0.104441 + Group: 'LeftHandMiddle2', Weight: 0.820456 +Vertex 2581: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.253829 + Group: 'LeftHandIndex2', Weight: 0.369824 + Group: 'LeftHandMiddle1', Weight: 0.070317 + Group: 'LeftHandMiddle2', Weight: 0.292420 +Vertex 2582: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.118111 + Group: 'LeftHandIndex2', Weight: 0.155061 + Group: 'LeftHandMiddle1', Weight: 0.079478 + Group: 'LeftHandMiddle2', Weight: 0.631846 +Vertex 2583: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.058195 + Group: 'LeftHandIndex2', Weight: 0.077312 + Group: 'LeftHandMiddle1', Weight: 0.039808 + Group: 'LeftHandMiddle2', Weight: 0.784453 + Group: 'LeftHandMiddle3', Weight: 0.004522 +Vertex 2584: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.116637 + Group: 'LeftHandIndex2', Weight: 0.857041 +Vertex 2585: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.006092 + Group: 'LeftHandIndex2', Weight: 0.958564 +Vertex 2586: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.037698 + Group: 'LeftHandIndex2', Weight: 0.939795 +Vertex 2587: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.070442 + Group: 'LeftHandIndex2', Weight: 0.905374 +Vertex 2588: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.085925 + Group: 'LeftHandIndex2', Weight: 0.872726 +Vertex 2589: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.082211 + Group: 'LeftHandIndex2', Weight: 0.843399 + Group: 'LeftHandIndex3', Weight: 0.008497 + Group: 'LeftHandMiddle2', Weight: 0.004033 +Vertex 2590: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.117017 + Group: 'LeftHandIndex2', Weight: 0.710419 + Group: 'LeftHandMiddle1', Weight: 0.018332 + Group: 'LeftHandMiddle2', Weight: 0.109927 +Vertex 2591: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.211923 + Group: 'LeftHandIndex2', Weight: 0.748094 +Vertex 2592: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.724529 + Group: 'LeftHandIndex2', Weight: 0.221482 +Vertex 2593: +Vertex groups: 4 + Group: 'LeftHandThumb2', Weight: 0.016804 + Group: 'LeftHandIndex1', Weight: 0.844435 + Group: 'LeftHandIndex2', Weight: 0.041389 + Group: 'LeftHandMiddle1', Weight: 0.013385 +Vertex 2594: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.227109 + Group: 'LeftHandIndex2', Weight: 0.662690 + Group: 'LeftHandMiddle1', Weight: 0.018356 + Group: 'LeftHandMiddle2', Weight: 0.054113 +Vertex 2595: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.643077 + Group: 'LeftHandIndex2', Weight: 0.202404 + Group: 'LeftHandMiddle1', Weight: 0.068696 + Group: 'LeftHandMiddle2', Weight: 0.056196 +Vertex 2596: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.751468 + Group: 'LeftHandIndex2', Weight: 0.055125 + Group: 'LeftHandMiddle1', Weight: 0.106900 +Vertex 2597: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.211761 + Group: 'LeftHandIndex2', Weight: 0.391746 + Group: 'LeftHandMiddle1', Weight: 0.066266 + Group: 'LeftHandMiddle2', Weight: 0.307234 +Vertex 2598: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.120687 + Group: 'LeftHandIndex2', Weight: 0.179559 + Group: 'LeftHandMiddle1', Weight: 0.071422 + Group: 'LeftHandMiddle2', Weight: 0.602229 +Vertex 2599: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.258797 + Group: 'LeftHandIndex2', Weight: 0.326516 + Group: 'LeftHandMiddle1', Weight: 0.102624 + Group: 'LeftHandMiddle2', Weight: 0.283038 +Vertex 2600: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.148853 + Group: 'LeftHandIndex2', Weight: 0.159413 + Group: 'LeftHandMiddle1', Weight: 0.143074 + Group: 'LeftHandMiddle2', Weight: 0.513896 +Vertex 2601: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.268648 + Group: 'LeftHandIndex2', Weight: 0.461781 + Group: 'LeftHandMiddle1', Weight: 0.075375 + Group: 'LeftHandMiddle2', Weight: 0.167287 +Vertex 2602: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.440305 + Group: 'LeftHandIndex2', Weight: 0.188483 + Group: 'LeftHandMiddle1', Weight: 0.151324 + Group: 'LeftHandMiddle2', Weight: 0.182478 +Vertex 2603: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.626710 + Group: 'LeftHandIndex2', Weight: 0.044150 + Group: 'LeftHandMiddle1', Weight: 0.208490 + Group: 'LeftHandMiddle2', Weight: 0.031189 + Group: 'LeftHandRing1', Weight: 0.016143 +Vertex 2604: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.137581 + Group: 'LeftHandMiddle3_end', Weight: 0.861932 +Vertex 2605: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.102358 + Group: 'LeftHandMiddle3', Weight: 0.896145 +Vertex 2606: +Vertex groups: 1 + Group: 'LeftHandMiddle3', Weight: 0.981316 +Vertex 2607: +Vertex groups: 2 + Group: 'LeftHandMiddle1', Weight: 0.037126 + Group: 'LeftHandMiddle2', Weight: 0.922383 +Vertex 2608: +Vertex groups: 1 + Group: 'LeftHandMiddle3', Weight: 0.978893 +Vertex 2609: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.970930 + Group: 'LeftHandMiddle3_end', Weight: 0.002840 +Vertex 2610: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.965330 + Group: 'LeftHandMiddle3_end', Weight: 0.013386 +Vertex 2611: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.958116 + Group: 'LeftHandMiddle3_end', Weight: 0.026631 +Vertex 2612: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.956386 + Group: 'LeftHandMiddle3_end', Weight: 0.026947 +Vertex 2613: +Vertex groups: 1 + Group: 'LeftHandMiddle3', Weight: 0.972188 +Vertex 2614: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.962480 + Group: 'LeftHandMiddle3_end', Weight: 0.015534 +Vertex 2615: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.041366 + Group: 'LeftHandMiddle3_end', Weight: 0.954186 +Vertex 2616: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.038918 + Group: 'LeftHandMiddle3_end', Weight: 0.955402 +Vertex 2617: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.057146 + Group: 'LeftHandMiddle3_end', Weight: 0.942653 +Vertex 2618: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.067136 + Group: 'LeftHandMiddle3_end', Weight: 0.932583 +Vertex 2619: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.077172 + Group: 'LeftHandMiddle3_end', Weight: 0.922449 +Vertex 2620: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.073048 + Group: 'LeftHandMiddle3_end', Weight: 0.926628 +Vertex 2621: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.081522 + Group: 'LeftHandMiddle3_end', Weight: 0.918084 +Vertex 2622: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993542 +Vertex 2623: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.994351 +Vertex 2624: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.994355 +Vertex 2625: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993192 +Vertex 2626: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993134 +Vertex 2627: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.991592 +Vertex 2628: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.991946 +Vertex 2629: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.992567 +Vertex 2630: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993878 +Vertex 2631: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.004837 + Group: 'LeftHandMiddle3_end', Weight: 0.972465 +Vertex 2632: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.978771 +Vertex 2633: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.985766 +Vertex 2634: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.987811 +Vertex 2635: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.001107 + Group: 'LeftHandMiddle3_end', Weight: 0.974338 +Vertex 2636: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.031972 + Group: 'LeftHandMiddle3_end', Weight: 0.958865 +Vertex 2637: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.012540 + Group: 'LeftHandMiddle3_end', Weight: 0.968584 +Vertex 2638: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.009626 + Group: 'LeftHandMiddle3_end', Weight: 0.970049 +Vertex 2639: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.080999 + Group: 'LeftHandMiddle3', Weight: 0.916873 +Vertex 2640: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.083568 + Group: 'LeftHandMiddle3', Weight: 0.912667 +Vertex 2641: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.075513 + Group: 'LeftHandMiddle3', Weight: 0.920113 +Vertex 2642: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.086200 + Group: 'LeftHandMiddle3', Weight: 0.910394 +Vertex 2643: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.180767 + Group: 'LeftHandMiddle3', Weight: 0.816228 +Vertex 2644: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.184559 + Group: 'LeftHandMiddle3', Weight: 0.813848 +Vertex 2645: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.703361 + Group: 'LeftHandMiddle3', Weight: 0.294568 +Vertex 2646: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.987498 +Vertex 2647: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.992839 +Vertex 2648: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.987322 +Vertex 2649: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.984703 +Vertex 2650: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.986362 +Vertex 2651: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.988911 +Vertex 2652: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993856 +Vertex 2653: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.988339 +Vertex 2654: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.071348 + Group: 'LeftHandMiddle2', Weight: 0.839122 + Group: 'LeftHandRing2', Weight: 0.066852 +Vertex 2655: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.007904 + Group: 'LeftHandMiddle1', Weight: 0.015995 + Group: 'LeftHandMiddle2', Weight: 0.891977 +Vertex 2656: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.160682 + Group: 'LeftHandMiddle2', Weight: 0.708955 + Group: 'LeftHandRing2', Weight: 0.100292 +Vertex 2657: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.075478 + Group: 'LeftHandIndex2', Weight: 0.079158 + Group: 'LeftHandMiddle1', Weight: 0.076514 + Group: 'LeftHandMiddle2', Weight: 0.729173 +Vertex 2658: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.009051 + Group: 'LeftHandMiddle1', Weight: 0.044244 + Group: 'LeftHandMiddle2', Weight: 0.836013 + Group: 'LeftHandMiddle3', Weight: 0.005267 + Group: 'LeftHandRing2', Weight: 0.003360 +Vertex 2659: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.048957 + Group: 'LeftHandMiddle2', Weight: 0.786717 + Group: 'LeftHandRing2', Weight: 0.108381 +Vertex 2660: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.050319 + Group: 'LeftHandMiddle2', Weight: 0.826010 + Group: 'LeftHandRing2', Weight: 0.089737 +Vertex 2661: +Vertex groups: 2 + Group: 'LeftHandRing1', Weight: 0.052174 + Group: 'LeftHandRing2', Weight: 0.922097 +Vertex 2662: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.963637 +Vertex 2663: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.970437 +Vertex 2664: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.963431 + Group: 'LeftHandRing3_end', Weight: 0.012754 +Vertex 2665: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.954061 + Group: 'LeftHandRing3_end', Weight: 0.023510 +Vertex 2666: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.947667 + Group: 'LeftHandRing3_end', Weight: 0.019589 +Vertex 2667: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.956420 +Vertex 2668: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.952098 + Group: 'LeftHandRing3_end', Weight: 0.008617 +Vertex 2669: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.017260 + Group: 'LeftHandRing3_end', Weight: 0.965853 +Vertex 2670: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.005257 + Group: 'LeftHandRing3_end', Weight: 0.972379 +Vertex 2671: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.019303 + Group: 'LeftHandRing3_end', Weight: 0.965136 +Vertex 2672: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.025759 + Group: 'LeftHandRing3_end', Weight: 0.961645 +Vertex 2673: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.033791 + Group: 'LeftHandRing3_end', Weight: 0.957390 +Vertex 2674: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.019407 + Group: 'LeftHandRing3_end', Weight: 0.964618 +Vertex 2675: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.039517 + Group: 'LeftHandRing3_end', Weight: 0.954406 +Vertex 2676: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.998053 +Vertex 2677: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997921 +Vertex 2678: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997941 +Vertex 2679: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997638 +Vertex 2680: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997849 +Vertex 2681: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997580 +Vertex 2682: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997959 +Vertex 2683: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997931 +Vertex 2684: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.998067 +Vertex 2685: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.989497 +Vertex 2686: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.991331 +Vertex 2687: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.993023 +Vertex 2688: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.993361 +Vertex 2689: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.992006 +Vertex 2690: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.989672 +Vertex 2691: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.988410 +Vertex 2692: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.989869 +Vertex 2693: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.796176 + Group: 'LeftHandRing3', Weight: 0.201449 +Vertex 2694: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.250713 + Group: 'LeftHandRing3', Weight: 0.745970 +Vertex 2695: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.137629 + Group: 'LeftHandRing3', Weight: 0.858113 +Vertex 2696: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.197138 + Group: 'LeftHandRing3', Weight: 0.799076 +Vertex 2697: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.800609 + Group: 'LeftHandRing3', Weight: 0.194707 +Vertex 2698: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.932942 + Group: 'LeftHandRing3', Weight: 0.063471 +Vertex 2699: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.929094 + Group: 'LeftHandRing3', Weight: 0.066329 +Vertex 2700: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996205 +Vertex 2701: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996838 +Vertex 2702: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996772 +Vertex 2703: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.995487 +Vertex 2704: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996262 +Vertex 2705: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.995930 +Vertex 2706: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997224 +Vertex 2707: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996689 +Vertex 2708: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.066240 + Group: 'LeftHandRing2', Weight: 0.891484 + Group: 'LeftHandPinky2', Weight: 0.010245 +Vertex 2709: +Vertex groups: 3 + Group: 'LeftHandMiddle2', Weight: 0.003859 + Group: 'LeftHandRing1', Weight: 0.009871 + Group: 'LeftHandRing2', Weight: 0.914735 +Vertex 2710: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.024997 + Group: 'LeftHandMiddle2', Weight: 0.066732 + Group: 'LeftHandRing2', Weight: 0.854062 +Vertex 2711: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.027387 + Group: 'LeftHandMiddle2', Weight: 0.124778 + Group: 'LeftHandRing1', Weight: 0.020995 + Group: 'LeftHandRing2', Weight: 0.767716 +Vertex 2712: +Vertex groups: 4 + Group: 'LeftHandMiddle2', Weight: 0.009639 + Group: 'LeftHandRing1', Weight: 0.004978 + Group: 'LeftHandRing2', Weight: 0.891252 + Group: 'LeftHandRing3', Weight: 0.000785 +Vertex 2713: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.209470 + Group: 'LeftHandRing2', Weight: 0.588845 + Group: 'LeftHandPinky2', Weight: 0.145383 +Vertex 2714: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.095458 + Group: 'LeftHandRing2', Weight: 0.816386 + Group: 'LeftHandPinky2', Weight: 0.067292 +Vertex 2715: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.910966 + Group: 'LeftHandPinky3_end', Weight: 0.082539 +Vertex 2716: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.068692 + Group: 'LeftHandPinky3', Weight: 0.926303 +Vertex 2717: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.134959 + Group: 'LeftHandPinky3_end', Weight: 0.864339 +Vertex 2718: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.941592 + Group: 'LeftHandPinky3_end', Weight: 0.054448 +Vertex 2719: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.937977 + Group: 'LeftHandPinky3_end', Weight: 0.056146 +Vertex 2720: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.878190 + Group: 'LeftHandPinky3_end', Weight: 0.116349 +Vertex 2721: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.701738 + Group: 'LeftHandPinky3_end', Weight: 0.291776 +Vertex 2722: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.575824 + Group: 'LeftHandPinky3_end', Weight: 0.422418 +Vertex 2723: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.937479 + Group: 'LeftHandPinky3_end', Weight: 0.060240 +Vertex 2724: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.870092 + Group: 'LeftHandPinky3_end', Weight: 0.127638 +Vertex 2725: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.087890 + Group: 'LeftHandPinky3_end', Weight: 0.911694 +Vertex 2726: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.064774 + Group: 'LeftHandPinky3_end', Weight: 0.934827 +Vertex 2727: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.058794 + Group: 'LeftHandPinky3_end', Weight: 0.940793 +Vertex 2728: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.066527 + Group: 'LeftHandPinky3_end', Weight: 0.932880 +Vertex 2729: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.023412 + Group: 'LeftHandPinky3_end', Weight: 0.963059 +Vertex 2730: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.045692 + Group: 'LeftHandPinky3_end', Weight: 0.951973 +Vertex 2731: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.030411 + Group: 'LeftHandPinky3_end', Weight: 0.959651 +Vertex 2732: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993442 +Vertex 2733: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991802 +Vertex 2734: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991932 +Vertex 2735: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.990581 +Vertex 2736: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991564 +Vertex 2737: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993107 +Vertex 2738: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.994440 +Vertex 2739: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.994362 +Vertex 2740: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993266 +Vertex 2741: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.003949 + Group: 'LeftHandPinky3_end', Weight: 0.972801 +Vertex 2742: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.978326 +Vertex 2743: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.976834 +Vertex 2744: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.002903 + Group: 'LeftHandPinky3_end', Weight: 0.973411 +Vertex 2745: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.990484 +Vertex 2746: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.020810 + Group: 'LeftHandPinky3_end', Weight: 0.964411 +Vertex 2747: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.987623 +Vertex 2748: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991253 +Vertex 2749: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.070453 + Group: 'LeftHandPinky3', Weight: 0.921899 +Vertex 2750: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.055695 + Group: 'LeftHandPinky3', Weight: 0.931089 +Vertex 2751: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.061748 + Group: 'LeftHandPinky3', Weight: 0.923565 +Vertex 2752: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.070407 + Group: 'LeftHandPinky3', Weight: 0.910504 +Vertex 2753: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.050637 + Group: 'LeftHandPinky3', Weight: 0.933317 +Vertex 2754: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.063967 + Group: 'LeftHandPinky3', Weight: 0.932019 +Vertex 2755: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.043325 + Group: 'LeftHandPinky3', Weight: 0.947059 +Vertex 2756: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.985980 +Vertex 2757: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.987719 +Vertex 2758: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.995219 +Vertex 2759: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993214 +Vertex 2760: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.996277 +Vertex 2761: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.987440 +Vertex 2762: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.986769 +Vertex 2763: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.989280 +Vertex 2764: +Vertex groups: 2 + Group: 'LeftHandMiddle1', Weight: 0.141197 + Group: 'LeftHandMiddle2', Weight: 0.818713 +Vertex 2765: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.277471 + Group: 'LeftHandMiddle2', Weight: 0.298310 + Group: 'LeftHandRing1', Weight: 0.091469 + Group: 'LeftHandRing2', Weight: 0.326409 +Vertex 2766: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.108677 + Group: 'LeftHandMiddle2', Weight: 0.081686 + Group: 'LeftHandRing1', Weight: 0.103708 + Group: 'LeftHandRing2', Weight: 0.701312 +Vertex 2767: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.205190 + Group: 'LeftHandIndex2', Weight: 0.104967 + Group: 'LeftHandMiddle1', Weight: 0.298320 + Group: 'LeftHandMiddle2', Weight: 0.334067 +Vertex 2768: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.277232 + Group: 'LeftHandIndex2', Weight: 0.009122 + Group: 'LeftHandMiddle1', Weight: 0.492867 + Group: 'LeftHandMiddle2', Weight: 0.069013 + Group: 'LeftHandRing1', Weight: 0.071155 +Vertex 2769: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.075510 + Group: 'LeftHandIndex2', Weight: 0.028101 + Group: 'LeftHandMiddle1', Weight: 0.138905 + Group: 'LeftHandMiddle2', Weight: 0.652399 + Group: 'LeftHandRing2', Weight: 0.057230 +Vertex 2770: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.153082 + Group: 'LeftHandMiddle1', Weight: 0.521071 + Group: 'LeftHandMiddle2', Weight: 0.105385 + Group: 'LeftHandRing1', Weight: 0.116319 + Group: 'LeftHandRing2', Weight: 0.040019 +Vertex 2771: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.311529 + Group: 'LeftHandIndex2', Weight: 0.246598 + Group: 'LeftHandMiddle1', Weight: 0.146870 + Group: 'LeftHandMiddle2', Weight: 0.259735 +Vertex 2772: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.208659 + Group: 'LeftHandIndex2', Weight: 0.167472 + Group: 'LeftHandMiddle1', Weight: 0.201366 + Group: 'LeftHandMiddle2', Weight: 0.381071 +Vertex 2773: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.071050 + Group: 'LeftHandMiddle2', Weight: 0.602903 + Group: 'LeftHandRing1', Weight: 0.037675 + Group: 'LeftHandRing2', Weight: 0.249635 +Vertex 2774: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.072679 + Group: 'LeftHandMiddle2', Weight: 0.266686 + Group: 'LeftHandRing1', Weight: 0.080376 + Group: 'LeftHandRing2', Weight: 0.557936 +Vertex 2775: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.011335 + Group: 'LeftHandMiddle1', Weight: 0.109972 + Group: 'LeftHandMiddle2', Weight: 0.596514 + Group: 'LeftHandRing1', Weight: 0.029458 + Group: 'LeftHandRing2', Weight: 0.192022 +Vertex 2776: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.459690 + Group: 'LeftHandRing1', Weight: 0.259219 + Group: 'LeftHandMiddle2', Weight: 0.102102 + Group: 'LeftHandRing2', Weight: 0.095130 + Group: 'LeftHandIndex1', Weight: 0.083859 +Vertex 2777: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.062318 + Group: 'LeftHandMiddle2', Weight: 0.182798 + Group: 'LeftHandRing1', Weight: 0.057739 + Group: 'LeftHandRing2', Weight: 0.655213 +Vertex 2778: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.457321 + Group: 'LeftHandMiddle1', Weight: 0.272496 + Group: 'LeftHandRing2', Weight: 0.146295 + Group: 'LeftHandMiddle2', Weight: 0.069243 + Group: 'LeftHandPinky1', Weight: 0.054644 +Vertex 2779: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.112423 + Group: 'LeftHandMiddle2', Weight: 0.540326 + Group: 'LeftHandRing1', Weight: 0.029077 + Group: 'LeftHandRing2', Weight: 0.261140 +Vertex 2780: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.104131 + Group: 'LeftHandMiddle2', Weight: 0.391377 + Group: 'LeftHandRing1', Weight: 0.038292 + Group: 'LeftHandRing2', Weight: 0.416941 +Vertex 2781: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.308537 + Group: 'LeftHandRing2', Weight: 0.414202 + Group: 'LeftHandPinky2', Weight: 0.236525 +Vertex 2782: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.140092 + Group: 'LeftHandRing2', Weight: 0.187146 + Group: 'LeftHandPinky2', Weight: 0.603037 + Group: 'LeftHandPinky3', Weight: 0.036213 +Vertex 2783: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.059933 + Group: 'LeftHandRing1', Weight: 0.477647 + Group: 'LeftHandRing2', Weight: 0.139513 + Group: 'LeftHandPinky1', Weight: 0.197534 + Group: 'LeftHandPinky2', Weight: 0.081256 +Vertex 2784: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.022765 + Group: 'LeftHandRing1', Weight: 0.315890 + Group: 'LeftHandRing2', Weight: 0.086337 + Group: 'LeftHandPinky1', Weight: 0.367926 + Group: 'LeftHandPinky2', Weight: 0.158273 +Vertex 2785: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.287180 + Group: 'LeftHandRing2', Weight: 0.453400 + Group: 'LeftHandPinky2', Weight: 0.204697 +Vertex 2786: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.143826 + Group: 'LeftHandRing2', Weight: 0.210945 + Group: 'LeftHandPinky1', Weight: 0.013837 + Group: 'LeftHandPinky2', Weight: 0.556703 + Group: 'LeftHandPinky3', Weight: 0.044165 +Vertex 2787: +Vertex groups: 2 + Group: 'LeftHandRing1', Weight: 0.143741 + Group: 'LeftHandRing2', Weight: 0.819269 +Vertex 2788: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.020590 + Group: 'LeftHandMiddle2', Weight: 0.001548 + Group: 'LeftHandRing1', Weight: 0.116178 + Group: 'LeftHandRing2', Weight: 0.816279 +Vertex 2789: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.192712 + Group: 'LeftHandRing2', Weight: 0.728542 + Group: 'LeftHandPinky2', Weight: 0.065113 +Vertex 2790: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.283841 + Group: 'LeftHandRing2', Weight: 0.564918 + Group: 'LeftHandPinky2', Weight: 0.122651 +Vertex 2791: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.911137 + Group: 'LeftHandMiddle3', Weight: 0.077374 +Vertex 2792: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.919751 + Group: 'LeftHandMiddle3', Weight: 0.062387 +Vertex 2793: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.884531 + Group: 'LeftHandMiddle3', Weight: 0.099851 +Vertex 2794: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.847301 + Group: 'LeftHandMiddle3', Weight: 0.112298 +Vertex 2795: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.855769 + Group: 'LeftHandMiddle3', Weight: 0.118655 +Vertex 2796: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.895898 + Group: 'LeftHandMiddle3', Weight: 0.075240 +Vertex 2797: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.932524 + Group: 'LeftHandMiddle3', Weight: 0.038509 +Vertex 2798: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.846753 + Group: 'LeftHandMiddle3', Weight: 0.120452 +Vertex 2799: +Vertex groups: 1 + Group: 'LeftHandRing2', Weight: 0.971699 +Vertex 2800: +Vertex groups: 1 + Group: 'LeftHandRing2', Weight: 0.967804 +Vertex 2801: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.956894 + Group: 'LeftHandRing3', Weight: 0.012466 +Vertex 2802: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.892292 + Group: 'LeftHandRing3', Weight: 0.084750 +Vertex 2803: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.838937 + Group: 'LeftHandRing3', Weight: 0.131041 +Vertex 2804: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.867590 + Group: 'LeftHandRing3', Weight: 0.104504 +Vertex 2805: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.914604 + Group: 'LeftHandRing3', Weight: 0.032304 +Vertex 2806: +Vertex groups: 1 + Group: 'LeftHandRing2', Weight: 0.950202 +Vertex 2807: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.924429 + Group: 'LeftHandPinky3', Weight: 0.051360 +Vertex 2808: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.930698 + Group: 'LeftHandPinky3', Weight: 0.055108 +Vertex 2809: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.870318 + Group: 'LeftHandPinky3', Weight: 0.079935 +Vertex 2810: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.069803 + Group: 'LeftHandRing2', Weight: 0.091080 + Group: 'LeftHandPinky2', Weight: 0.757043 + Group: 'LeftHandPinky3', Weight: 0.064509 +Vertex 2811: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.038334 + Group: 'LeftHandRing2', Weight: 0.054803 + Group: 'LeftHandPinky1', Weight: 0.014272 + Group: 'LeftHandPinky2', Weight: 0.794389 + Group: 'LeftHandPinky3', Weight: 0.070231 +Vertex 2812: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.835273 + Group: 'LeftHandPinky3', Weight: 0.121399 +Vertex 2813: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.891592 + Group: 'LeftHandPinky3', Weight: 0.094568 +Vertex 2814: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.914869 + Group: 'LeftHandPinky3', Weight: 0.074236 +Vertex 2815: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.218273 + Group: 'LeftHandRing2', Weight: 0.606068 + Group: 'LeftHandPinky2', Weight: 0.147034 +Vertex 2816: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.091555 + Group: 'LeftHandPinky2', Weight: 0.895438 +Vertex 2817: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.091354 + Group: 'LeftHandPinky2', Weight: 0.885939 +Vertex 2818: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.848605 + Group: 'LeftHandPinky2', Weight: 0.138658 +Vertex 2819: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.803575 + Group: 'LeftHandPinky2', Weight: 0.163798 +Vertex 2820: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.013346 + Group: 'LeftHandPinky1', Weight: 0.164304 + Group: 'LeftHandPinky2', Weight: 0.772421 +Vertex 2821: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.074468 + Group: 'LeftHandPinky1', Weight: 0.773026 + Group: 'LeftHandPinky2', Weight: 0.115413 +Vertex 2822: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.275027 + Group: 'LeftHandMiddle2', Weight: 0.340713 + Group: 'LeftHandRing1', Weight: 0.050053 + Group: 'LeftHandRing2', Weight: 0.326486 +Vertex 2823: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.104331 + Group: 'LeftHandMiddle2', Weight: 0.117342 + Group: 'LeftHandRing1', Weight: 0.052259 + Group: 'LeftHandRing2', Weight: 0.719111 +Vertex 2824: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.261860 + Group: 'LeftHandMiddle2', Weight: 0.356814 + Group: 'LeftHandRing1', Weight: 0.016408 + Group: 'LeftHandRing2', Weight: 0.337183 +Vertex 2825: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.110223 + Group: 'LeftHandMiddle2', Weight: 0.137575 + Group: 'LeftHandRing1', Weight: 0.046778 + Group: 'LeftHandRing2', Weight: 0.692242 +Vertex 2826: +Vertex groups: 4 + Group: 'LeftHandMiddle2', Weight: 0.024378 + Group: 'LeftHandRing1', Weight: 0.098852 + Group: 'LeftHandRing2', Weight: 0.772333 + Group: 'LeftHandPinky2', Weight: 0.010101 +Vertex 2827: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.561277 + Group: 'LeftHandRing2', Weight: 0.165259 + Group: 'LeftHandMiddle1', Weight: 0.165063 + Group: 'LeftHandPinky1', Weight: 0.089942 + Group: 'LeftHandMiddle2', Weight: 0.018459 +Vertex 2828: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.011598 + Group: 'LeftHandThumb2', Weight: 0.008767 + Group: 'LeftHandIndex1', Weight: 0.920366 +Vertex 2829: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.036306 + Group: 'LeftHandIndex1', Weight: 0.729030 + Group: 'LeftHandMiddle1', Weight: 0.210194 +Vertex 2830: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.001389 + Group: 'LeftHandIndex1', Weight: 0.391015 + Group: 'LeftHandMiddle1', Weight: 0.562352 +Vertex 2831: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.011256 + Group: 'LeftHandIndex1', Weight: 0.132136 + Group: 'LeftHandMiddle1', Weight: 0.813340 +Vertex 2832: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.062132 + Group: 'LeftHandMiddle1', Weight: 0.377012 + Group: 'LeftHandRing1', Weight: 0.512168 +Vertex 2833: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.037849 + Group: 'LeftHandMiddle1', Weight: 0.185557 + Group: 'LeftHandRing1', Weight: 0.713050 + Group: 'LeftHandPinky1', Weight: 0.012180 +Vertex 2834: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.376008 + Group: 'LeftHandPinky1', Weight: 0.549167 + Group: 'LeftHandPinky2', Weight: 0.036971 +Vertex 2835: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.147381 + Group: 'LeftHandPinky1', Weight: 0.793631 + Group: 'LeftHandPinky2', Weight: 0.042455 +Vertex 2836: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.057273 + Group: 'LeftHandIndex1', Weight: 0.084128 + Group: 'LeftHandMiddle1', Weight: 0.830669 +Vertex 2837: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.116779 + Group: 'LeftHandMiddle1', Weight: 0.600688 + Group: 'LeftHandRing1', Weight: 0.245393 +Vertex 2838: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.066291 + Group: 'LeftHandMiddle1', Weight: 0.110138 + Group: 'LeftHandRing1', Weight: 0.749875 + Group: 'LeftHandPinky1', Weight: 0.062297 +Vertex 2839: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.000527 + Group: 'LeftHandRing1', Weight: 0.592354 + Group: 'LeftHandPinky1', Weight: 0.342759 +Vertex 2840: +Vertex groups: 2 + Group: 'LeftHandRing1', Weight: 0.065944 + Group: 'LeftHandPinky1', Weight: 0.910453 +Vertex 2841: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.118532 + Group: 'LeftHandThumb2', Weight: 0.143727 + Group: 'LeftHandIndex1', Weight: 0.710667 +Vertex 2842: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.106108 + Group: 'LeftHandThumb2', Weight: 0.190031 + Group: 'LeftHandIndex1', Weight: 0.655366 +Vertex 2843: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.180730 + Group: 'LeftHandRing2', Weight: 0.033176 + Group: 'LeftHandPinky1', Weight: 0.467186 + Group: 'LeftHandPinky2', Weight: 0.262900 +Vertex 2844: +Vertex groups: 1 + Group: 'LeftHandPinky1', Weight: 0.964445 +Vertex 2845: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.933218 + Group: 'LeftHandPinky2', Weight: 0.014766 +Vertex 2846: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.010291 + Group: 'LeftHandRing1', Weight: 0.009548 + Group: 'LeftHandPinky1', Weight: 0.894475 + Group: 'LeftHandPinky2', Weight: 0.016507 +Vertex 2847: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.034531 + Group: 'LeftHandRing1', Weight: 0.069390 + Group: 'LeftHandPinky1', Weight: 0.832795 + Group: 'LeftHandPinky2', Weight: 0.011915 +Vertex 2848: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.072888 + Group: 'LeftHandThumb1', Weight: 0.607166 + Group: 'LeftHandThumb2', Weight: 0.064758 + Group: 'LeftHandIndex1', Weight: 0.248961 +Vertex 2849: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.007062 + Group: 'LeftHand', Weight: 0.928718 + Group: 'LeftHandThumb1', Weight: 0.023758 +Vertex 2850: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.100802 + Group: 'LeftHand', Weight: 0.781669 + Group: 'LeftHandThumb1', Weight: 0.111997 +Vertex 2851: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.165624 + Group: 'LeftHand', Weight: 0.647142 + Group: 'LeftHandThumb1', Weight: 0.181855 +Vertex 2852: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.056348 + Group: 'LeftHand', Weight: 0.359026 + Group: 'LeftHandThumb1', Weight: 0.571656 +Vertex 2853: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.157567 + Group: 'LeftHand', Weight: 0.571169 + Group: 'LeftHandThumb1', Weight: 0.263780 +Vertex 2854: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.065961 + Group: 'LeftHand', Weight: 0.312501 + Group: 'LeftHandThumb1', Weight: 0.610330 +Vertex 2855: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.332757 + Group: 'LeftHandThumb1', Weight: 0.073037 + Group: 'LeftHandIndex1', Weight: 0.550420 + Group: 'LeftHandMiddle1', Weight: 0.012800 +Vertex 2856: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.830772 + Group: 'LeftHandIndex1', Weight: 0.106799 + Group: 'LeftHandMiddle1', Weight: 0.012936 +Vertex 2857: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.036756 + Group: 'LeftHand', Weight: 0.672572 + Group: 'LeftHandThumb1', Weight: 0.266164 +Vertex 2858: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.007190 + Group: 'LeftHand', Weight: 0.241110 + Group: 'LeftHandThumb1', Weight: 0.714223 +Vertex 2859: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.139299 + Group: 'LeftHandThumb1', Weight: 0.819527 +Vertex 2860: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.358503 + Group: 'LeftHandThumb1', Weight: 0.573134 + Group: 'LeftHandPinky1', Weight: 0.013061 +Vertex 2861: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.232100 + Group: 'LeftHandThumb1', Weight: 0.644587 + Group: 'LeftHandIndex1', Weight: 0.010202 + Group: 'LeftHandPinky1', Weight: 0.040663 +Vertex 2862: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.096382 + Group: 'LeftHandThumb1', Weight: 0.816304 + Group: 'LeftHandThumb2', Weight: 0.017826 +Vertex 2863: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.071919 + Group: 'LeftHandThumb1', Weight: 0.680366 + Group: 'LeftHandThumb2', Weight: 0.097444 + Group: 'LeftHandIndex1', Weight: 0.091617 +Vertex 2864: +Vertex groups: 5 + Group: 'LeftHandThumb1', Weight: 0.580971 + Group: 'LeftHand', Weight: 0.184972 + Group: 'LeftHandIndex1', Weight: 0.141771 + Group: 'LeftHandThumb2', Weight: 0.054016 + Group: 'LeftHandPinky1', Weight: 0.038269 +Vertex 2865: +Vertex groups: 5 + Group: 'LeftHandThumb1', Weight: 0.209668 + Group: 'LeftHandThumb2', Weight: 0.383324 + Group: 'LeftHandThumb3', Weight: 0.018214 + Group: 'LeftHandIndex1', Weight: 0.297816 + Group: 'LeftHandMiddle1', Weight: 0.006380 +Vertex 2866: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.642099 + Group: 'LeftHandThumb2', Weight: 0.137464 + Group: 'LeftHandThumb1', Weight: 0.127514 + Group: 'LeftHandMiddle1', Weight: 0.077022 + Group: 'LeftHand', Weight: 0.015901 +Vertex 2867: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.196041 + Group: 'LeftHandThumb2', Weight: 0.354466 + Group: 'LeftHandThumb3', Weight: 0.053203 + Group: 'LeftHandIndex1', Weight: 0.354207 +Vertex 2868: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.104027 + Group: 'LeftHandThumb2', Weight: 0.171179 + Group: 'LeftHandIndex1', Weight: 0.636655 + Group: 'LeftHandMiddle1', Weight: 0.000457 +Vertex 2869: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.184881 + Group: 'LeftHandThumb2', Weight: 0.387581 + Group: 'LeftHandThumb3', Weight: 0.049134 + Group: 'LeftHandIndex1', Weight: 0.359724 +Vertex 2870: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.237711 + Group: 'LeftHandThumb2', Weight: 0.389391 + Group: 'LeftHandThumb3', Weight: 0.001763 + Group: 'LeftHandIndex1', Weight: 0.334540 +Vertex 2871: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.307521 + Group: 'LeftHandThumb2', Weight: 0.578125 + Group: 'LeftHandIndex1', Weight: 0.093273 +Vertex 2872: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.861253 + Group: 'LeftHandThumb2', Weight: 0.106812 +Vertex 2873: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.849842 + Group: 'LeftHandThumb2', Weight: 0.136973 +Vertex 2874: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.015966 + Group: 'LeftHandThumb1', Weight: 0.158445 + Group: 'LeftHandThumb2', Weight: 0.070195 + Group: 'LeftHandIndex1', Weight: 0.729618 +Vertex 2875: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.296805 + Group: 'LeftHandThumb2', Weight: 0.306202 + Group: 'LeftHandIndex1', Weight: 0.368666 +Vertex 2876: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.898516 + Group: 'LeftHandThumb2', Weight: 0.047296 + Group: 'LeftHandIndex1', Weight: 0.016046 +Vertex 2877: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.925440 + Group: 'LeftHandThumb2', Weight: 0.036668 +Vertex 2878: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.133808 + Group: 'LeftHandThumb1', Weight: 0.828825 +Vertex 2879: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.118683 + Group: 'LeftHandThumb1', Weight: 0.845301 +Vertex 2880: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.100380 + Group: 'LeftHandThumb1', Weight: 0.864987 +Vertex 2881: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.117107 + Group: 'LeftHandThumb1', Weight: 0.104246 + Group: 'LeftHandIndex1', Weight: 0.747449 +Vertex 2882: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.729894 + Group: 'LeftHandIndex1', Weight: 0.025969 + Group: 'LeftHandMiddle1', Weight: 0.174173 + Group: 'LeftHandRing1', Weight: 0.025858 +Vertex 2883: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.805796 + Group: 'LeftHandMiddle1', Weight: 0.080893 + Group: 'LeftHandRing1', Weight: 0.060210 + Group: 'LeftHandPinky1', Weight: 0.021022 +Vertex 2884: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.822313 + Group: 'LeftHandPinky1', Weight: 0.123206 +Vertex 2885: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.325922 + Group: 'LeftHandRing1', Weight: 0.052452 + Group: 'LeftHandPinky1', Weight: 0.606970 +Vertex 2886: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.121254 + Group: 'LeftHandRing1', Weight: 0.141281 + Group: 'LeftHandPinky1', Weight: 0.723037 +Vertex 2887: +Vertex groups: 1 + Group: 'LeftHandPinky1', Weight: 0.953060 +Vertex 2888: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.060836 + Group: 'LeftHandPinky1', Weight: 0.927973 +Vertex 2889: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.050537 + Group: 'LeftHandThumb1', Weight: 0.842678 + Group: 'LeftHandThumb2', Weight: 0.013631 + Group: 'LeftHandIndex1', Weight: 0.070810 +Vertex 2890: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.664516 + Group: 'LeftHandThumb2', Weight: 0.278317 + Group: 'LeftHandIndex1', Weight: 0.039112 +Vertex 2891: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.000823 + Group: 'LeftHandThumb1', Weight: 0.663988 + Group: 'LeftHandThumb2', Weight: 0.148666 + Group: 'LeftHandIndex1', Weight: 0.156110 +Vertex 2892: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.238449 + Group: 'LeftHandThumb1', Weight: 0.510820 + Group: 'LeftHandIndex1', Weight: 0.221834 +Vertex 2893: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.095601 + Group: 'LeftHandThumb1', Weight: 0.836123 + Group: 'LeftHandIndex1', Weight: 0.048634 +Vertex 2894: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.053477 + Group: 'LeftHandThumb1', Weight: 0.908789 +Vertex 2895: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.040250 + Group: 'LeftHandThumb1', Weight: 0.919082 +Vertex 2896: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.605274 + Group: 'LeftHandThumb1', Weight: 0.244996 + Group: 'LeftHandIndex1', Weight: 0.130781 +Vertex 2897: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.879772 + Group: 'LeftHandThumb1', Weight: 0.089896 +Vertex 2898: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.277821 + Group: 'LeftHandThumb1', Weight: 0.667522 + Group: 'LeftHandIndex1', Weight: 0.019244 +Vertex 2899: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.037082 + Group: 'LeftHand', Weight: 0.641269 + Group: 'LeftHandThumb1', Weight: 0.299622 +Vertex 2900: +Vertex groups: 1 + Group: 'LeftHand', Weight: 0.937477 +Vertex 2901: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.917854 + Group: 'LeftHandPinky1', Weight: 0.063052 +Vertex 2902: +Vertex groups: 1 + Group: 'LeftHand', Weight: 0.966304 +Vertex 2903: +Vertex groups: 1 + Group: 'LeftHand', Weight: 0.967152 +Vertex 2904: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.051251 + Group: 'LeftHand', Weight: 0.931143 +Vertex 2905: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.945542 + Group: 'LeftHandPinky1', Weight: 0.007713 +Vertex 2906: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.319701 + Group: 'LeftHandPinky1', Weight: 0.658509 +Vertex 2907: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.038546 + Group: 'LeftHand', Weight: 0.724523 + Group: 'LeftHandPinky1', Weight: 0.221640 +Vertex 2908: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.727428 + Group: 'LeftHandPinky1', Weight: 0.245494 +Vertex 2909: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.029866 + Group: 'LeftHand', Weight: 0.856003 + Group: 'LeftHandPinky1', Weight: 0.097014 +Vertex 2910: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.131350 + Group: 'LeftHand', Weight: 0.826255 + Group: 'LeftHandPinky1', Weight: 0.027212 +Vertex 2911: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.083765 + Group: 'LeftHand', Weight: 0.796393 + Group: 'LeftHandPinky1', Weight: 0.112426 +Vertex 2912: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.068230 + Group: 'LeftHand', Weight: 0.800759 + Group: 'LeftHandPinky1', Weight: 0.116735 +Vertex 2913: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.028292 + Group: 'LeftHand', Weight: 0.699315 + Group: 'LeftHandPinky1', Weight: 0.242259 +Vertex 2914: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.273441 + Group: 'LeftHandPinky1', Weight: 0.692643 +Vertex 2915: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.071213 + Group: 'LeftHandPinky1', Weight: 0.902157 +Vertex 2916: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.058134 + Group: 'LeftHandPinky1', Weight: 0.927455 +Vertex 2917: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.273584 + Group: 'LeftHandPinky1', Weight: 0.701248 +Vertex 2918: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.034652 + Group: 'LeftHand', Weight: 0.704526 + Group: 'LeftHandPinky1', Weight: 0.240795 +Vertex 2919: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.077046 + Group: 'LeftHand', Weight: 0.794623 + Group: 'LeftHandPinky1', Weight: 0.119110 +Vertex 2920: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.110417 + Group: 'LeftHand', Weight: 0.804644 + Group: 'LeftHandPinky1', Weight: 0.076441 +Vertex 2921: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.088046 + Group: 'LeftHand', Weight: 0.829994 + Group: 'LeftHandPinky1', Weight: 0.071193 +Vertex 2922: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.071046 + Group: 'LeftHand', Weight: 0.835847 + Group: 'LeftHandPinky1', Weight: 0.075432 +Vertex 2923: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.056429 + Group: 'LeftHand', Weight: 0.803196 + Group: 'LeftHandPinky1', Weight: 0.118055 +Vertex 2924: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.020274 + Group: 'LeftHand', Weight: 0.709855 + Group: 'LeftHandPinky1', Weight: 0.224637 +Vertex 2925: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.293498 + Group: 'LeftHandPinky1', Weight: 0.659994 +Vertex 2926: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.087405 + Group: 'LeftHandPinky1', Weight: 0.870601 +Vertex 2927: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.288137 + Group: 'LeftHandThumb1', Weight: 0.030872 + Group: 'LeftHandPinky1', Weight: 0.636070 +Vertex 2928: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.003452 + Group: 'LeftHand', Weight: 0.696290 + Group: 'LeftHandThumb1', Weight: 0.038842 + Group: 'LeftHandPinky1', Weight: 0.220400 +Vertex 2929: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.037361 + Group: 'LeftHand', Weight: 0.799625 + Group: 'LeftHandThumb1', Weight: 0.019752 + Group: 'LeftHandPinky1', Weight: 0.114817 +Vertex 2930: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.109104 + Group: 'LeftHandRing1', Weight: 0.033766 + Group: 'LeftHandPinky1', Weight: 0.806271 +Vertex 2931: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.021765 + Group: 'LeftHand', Weight: 0.813375 + Group: 'LeftHandThumb1', Weight: 0.069478 + Group: 'LeftHandPinky1', Weight: 0.071718 +Vertex 2932: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.018719 + Group: 'LeftHand', Weight: 0.781045 + Group: 'LeftHandThumb1', Weight: 0.145457 + Group: 'LeftHandPinky1', Weight: 0.010260 +Vertex 2933: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.706793 + Group: 'LeftHandThumb1', Weight: 0.099356 + Group: 'LeftHandPinky1', Weight: 0.151621 +Vertex 2934: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.630767 + Group: 'LeftHandThumb1', Weight: 0.278894 + Group: 'LeftHandPinky1', Weight: 0.052701 +Vertex 2935: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.521823 + Group: 'LeftHandThumb1', Weight: 0.117584 + Group: 'LeftHandRing1', Weight: 0.037185 + Group: 'LeftHandPinky1', Weight: 0.290654 +Vertex 2936: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.503799 + Group: 'LeftHandThumb1', Weight: 0.315440 + Group: 'LeftHandRing1', Weight: 0.004174 + Group: 'LeftHandPinky1', Weight: 0.105603 +Vertex 2937: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.763257 + Group: 'LeftHandThumb2', Weight: 0.218256 +Vertex 2938: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.903304 + Group: 'LeftHandThumb2', Weight: 0.065752 +Vertex 2939: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.036566 + Group: 'LeftHandThumb1', Weight: 0.912803 + Group: 'LeftHandThumb2', Weight: 0.013481 +Vertex 2940: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.084212 + Group: 'LeftHandThumb1', Weight: 0.875190 +Vertex 2941: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.021467 + Group: 'LeftHandThumb1', Weight: 0.854662 + Group: 'LeftHandThumb2', Weight: 0.080392 +Vertex 2942: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.039620 + Group: 'LeftHandThumb1', Weight: 0.901148 + Group: 'LeftHandThumb2', Weight: 0.029764 +Vertex 2943: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.864973 + Group: 'LeftHandThumb2', Weight: 0.093696 +Vertex 2944: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.732469 + Group: 'LeftHandThumb2', Weight: 0.235895 +Vertex 2945: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.864762 + Group: 'LeftHandThumb3_end', Weight: 0.129316 +Vertex 2946: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.823955 + Group: 'LeftHandThumb3_end', Weight: 0.155112 +Vertex 2947: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.821628 + Group: 'LeftHandThumb3_end', Weight: 0.151244 +Vertex 2948: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.818647 + Group: 'LeftHandThumb3_end', Weight: 0.162968 +Vertex 2949: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.844685 + Group: 'LeftHandThumb3_end', Weight: 0.143070 +Vertex 2950: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.851677 + Group: 'LeftHandThumb3_end', Weight: 0.142808 +Vertex 2951: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.885627 + Group: 'LeftHandThumb3_end', Weight: 0.108930 +Vertex 2952: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.989758 +Vertex 2953: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.854525 + Group: 'LeftHandThumb3_end', Weight: 0.130772 +Vertex 2954: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.011436 + Group: 'LeftHandThumb3_end', Weight: 0.968906 +Vertex 2955: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.055316 + Group: 'LeftHandThumb3_end', Weight: 0.943761 +Vertex 2956: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.068436 + Group: 'LeftHandThumb3_end', Weight: 0.929990 +Vertex 2957: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.065354 + Group: 'LeftHandThumb3_end', Weight: 0.932802 +Vertex 2958: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.061384 + Group: 'LeftHandThumb3_end', Weight: 0.937139 +Vertex 2959: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.048164 + Group: 'LeftHandThumb3_end', Weight: 0.950302 +Vertex 2960: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.054960 + Group: 'LeftHandThumb3_end', Weight: 0.944023 +Vertex 2961: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998594 +Vertex 2962: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997753 +Vertex 2963: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997188 +Vertex 2964: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.996246 +Vertex 2965: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.996891 +Vertex 2966: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997027 +Vertex 2967: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998509 +Vertex 2968: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998069 +Vertex 2969: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998002 +Vertex 2970: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.982087 +Vertex 2971: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.981536 +Vertex 2972: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.984963 +Vertex 2973: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.992677 +Vertex 2974: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.988404 +Vertex 2975: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998419 +Vertex 2976: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.983785 +Vertex 2977: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.985286 +Vertex 2978: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.993083 +Vertex 2979: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.993710 +Vertex 2980: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997114 +Vertex 2981: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.993962 +Vertex 2982: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.995046 +Vertex 2983: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.991406 +Vertex 2984: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.996365 +Vertex 2985: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998950 +Vertex 2986: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.124207 + Group: 'LeftHandThumb3_end', Weight: 0.874674 +Vertex 2987: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.189699 + Group: 'LeftHandThumb3_end', Weight: 0.807387 +Vertex 2988: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.205965 + Group: 'LeftHandThumb3_end', Weight: 0.789329 +Vertex 2989: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.202287 + Group: 'LeftHandThumb3_end', Weight: 0.791562 +Vertex 2990: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.193243 + Group: 'LeftHandThumb3_end', Weight: 0.801977 +Vertex 2991: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.180388 + Group: 'LeftHandThumb3_end', Weight: 0.816330 +Vertex 2992: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.122719 + Group: 'LeftHandThumb3_end', Weight: 0.876110 +Vertex 2993: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.085607 + Group: 'LeftHandThumb3_end', Weight: 0.913790 +Vertex 2994: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.068443 + Group: 'LeftHandThumb3', Weight: 0.918781 +Vertex 2995: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.098770 + Group: 'LeftHandThumb3', Weight: 0.856921 +Vertex 2996: +Vertex groups: 3 + Group: 'LeftHandThumb2', Weight: 0.115820 + Group: 'LeftHandThumb3', Weight: 0.839229 + Group: 'LeftHandThumb3_end', Weight: 0.009763 +Vertex 2997: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.100933 + Group: 'LeftHandThumb3', Weight: 0.868889 +Vertex 2998: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.083499 + Group: 'LeftHandThumb3', Weight: 0.893184 +Vertex 2999: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.055231 + Group: 'LeftHandThumb3', Weight: 0.927931 +Vertex 3000: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.066824 + Group: 'LeftHandThumb3', Weight: 0.923192 +Vertex 3001: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.089577 + Group: 'LeftHandThumb3', Weight: 0.881430 +Vertex 3002: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.003964 + Group: 'LeftHandThumb2', Weight: 0.831957 + Group: 'LeftHandThumb3', Weight: 0.118254 +Vertex 3003: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.067520 + Group: 'LeftHandThumb2', Weight: 0.675642 + Group: 'LeftHandThumb3', Weight: 0.144021 + Group: 'LeftHandIndex1', Weight: 0.096133 +Vertex 3004: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.056414 + Group: 'LeftHandThumb2', Weight: 0.747813 + Group: 'LeftHandThumb3', Weight: 0.157329 + Group: 'LeftHandIndex1', Weight: 0.004024 +Vertex 3005: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.072600 + Group: 'LeftHandThumb2', Weight: 0.786069 + Group: 'LeftHandThumb3', Weight: 0.125886 +Vertex 3006: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.061901 + Group: 'LeftHandThumb2', Weight: 0.809953 + Group: 'LeftHandThumb3', Weight: 0.120685 +Vertex 3007: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.019339 + Group: 'LeftHandThumb2', Weight: 0.854457 + Group: 'LeftHandThumb3', Weight: 0.107009 +Vertex 3008: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.004348 + Group: 'LeftHandThumb2', Weight: 0.889260 + Group: 'LeftHandThumb3', Weight: 0.078144 +Vertex 3009: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.059618 + Group: 'LeftHandThumb2', Weight: 0.723970 + Group: 'LeftHandThumb3', Weight: 0.116656 + Group: 'LeftHandIndex1', Weight: 0.091693 +Vertex 3010: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.106598 + Group: 'LeftHandThumb2', Weight: 0.715390 + Group: 'LeftHandThumb3', Weight: 0.054049 + Group: 'LeftHandIndex1', Weight: 0.117653 +Vertex 3011: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.107819 + Group: 'LeftHandThumb2', Weight: 0.816792 + Group: 'LeftHandThumb3', Weight: 0.013712 + Group: 'LeftHandIndex1', Weight: 0.030902 +Vertex 3012: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.168661 + Group: 'LeftHandThumb2', Weight: 0.806558 +Vertex 3013: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.175173 + Group: 'LeftHandThumb2', Weight: 0.791229 + Group: 'LeftHandThumb3', Weight: 0.007579 +Vertex 3014: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.239742 + Group: 'LeftHandThumb2', Weight: 0.711204 + Group: 'LeftHandThumb3', Weight: 0.027321 +Vertex 3015: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.261953 + Group: 'LeftHandThumb2', Weight: 0.667988 + Group: 'LeftHandThumb3', Weight: 0.036913 +Vertex 3016: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.220894 + Group: 'LeftHandThumb2', Weight: 0.639740 + Group: 'LeftHandThumb3', Weight: 0.038863 + Group: 'LeftHandIndex1', Weight: 0.067181 +Vertex 3017: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.172624 + Group: 'LeftHandThumb2', Weight: 0.582048 + Group: 'LeftHandThumb3', Weight: 0.058218 + Group: 'LeftHandIndex1', Weight: 0.149289 +Vertex 3018: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.442834 + Group: 'LeftHandThumb1', Weight: 0.291974 + Group: 'LeftHand', Weight: 0.102214 + Group: 'LeftHandThumb2', Weight: 0.093561 + Group: 'LeftHandMiddle1', Weight: 0.069417 +Vertex 3019: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.046180 + Group: 'LeftHandThumb1', Weight: 0.453440 + Group: 'LeftHandThumb2', Weight: 0.218238 + Group: 'LeftHandIndex1', Weight: 0.200815 + Group: 'LeftHandMiddle1', Weight: 0.003905 +Vertex 3020: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.655534 + Group: 'LeftHandThumb2', Weight: 0.292863 +Vertex 3021: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.004761 + Group: 'LeftHandThumb1', Weight: 0.703301 + Group: 'LeftHandThumb2', Weight: 0.200322 + Group: 'LeftHandIndex1', Weight: 0.024677 +Vertex 3022: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.472703 + Group: 'LeftHandThumb1', Weight: 0.179453 + Group: 'LeftHandPinky1', Weight: 0.127638 + Group: 'LeftHandRing1', Weight: 0.114973 + Group: 'LeftHandIndex1', Weight: 0.105233 +Vertex 3023: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.630350 + Group: 'LeftHandMiddle1', Weight: 0.184882 + Group: 'LeftHandThumb1', Weight: 0.066465 + Group: 'LeftHandThumb2', Weight: 0.063021 + Group: 'LeftHandRing1', Weight: 0.055282 +Vertex 3024: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.471132 + Group: 'LeftHandMiddle1', Weight: 0.202004 + Group: 'LeftHandThumb1', Weight: 0.120714 + Group: 'LeftHand', Weight: 0.106065 + Group: 'LeftHandRing1', Weight: 0.100085 +Vertex 3025: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.393233 + Group: 'LeftHandRing1', Weight: 0.272193 + Group: 'LeftHandIndex1', Weight: 0.189083 + Group: 'LeftHand', Weight: 0.089236 + Group: 'LeftHandPinky1', Weight: 0.056254 +Vertex 3026: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.402059 + Group: 'LeftHandIndex1', Weight: 0.326202 + Group: 'LeftHandRing1', Weight: 0.142276 + Group: 'LeftHand', Weight: 0.066753 + Group: 'LeftHandThumb1', Weight: 0.062709 +Vertex 3027: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.591674 + Group: 'LeftHandRing1', Weight: 0.193208 + Group: 'LeftHandIndex1', Weight: 0.189626 + Group: 'LeftHandMiddle2', Weight: 0.015205 + Group: 'LeftHand', Weight: 0.010287 +Vertex 3028: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.546621 + Group: 'LeftHandIndex1', Weight: 0.318611 + Group: 'LeftHandRing1', Weight: 0.112470 + Group: 'LeftHandMiddle2', Weight: 0.014698 + Group: 'LeftHandThumb1', Weight: 0.007601 +Vertex 3029: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.501652 + Group: 'LeftHandRing1', Weight: 0.318032 + Group: 'LeftHandIndex1', Weight: 0.107087 + Group: 'LeftHandPinky1', Weight: 0.048839 + Group: 'LeftHandRing2', Weight: 0.024389 +Vertex 3030: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.600905 + Group: 'LeftHandMiddle1', Weight: 0.180226 + Group: 'LeftHandPinky1', Weight: 0.108231 + Group: 'LeftHandRing2', Weight: 0.088620 + Group: 'LeftHandIndex1', Weight: 0.022018 +Vertex 3031: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.473748 + Group: 'LeftHandMiddle1', Weight: 0.309088 + Group: 'LeftHandRing2', Weight: 0.084045 + Group: 'LeftHandPinky1', Weight: 0.069124 + Group: 'LeftHandIndex1', Weight: 0.063996 +Vertex 3032: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.472108 + Group: 'LeftHandMiddle1', Weight: 0.240696 + Group: 'LeftHand', Weight: 0.102764 + Group: 'LeftHandIndex1', Weight: 0.099691 + Group: 'LeftHandPinky1', Weight: 0.084741 +Vertex 3033: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.450186 + Group: 'LeftHandPinky1', Weight: 0.310946 + Group: 'LeftHand', Weight: 0.175838 + Group: 'LeftHandThumb1', Weight: 0.039729 + Group: 'LeftHandMiddle1', Weight: 0.023300 +Vertex 3034: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.339910 + Group: 'LeftHandRing1', Weight: 0.310775 + Group: 'LeftHandPinky1', Weight: 0.156821 + Group: 'LeftHandMiddle1', Weight: 0.105123 + Group: 'LeftHandThumb1', Weight: 0.087371 +Vertex 3035: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.222241 + Group: 'LeftHandThumb1', Weight: 0.063149 + Group: 'LeftHandIndex1', Weight: 0.003146 + Group: 'LeftHandRing1', Weight: 0.172627 + Group: 'LeftHandPinky1', Weight: 0.476143 +Vertex 3036: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.084500 + Group: 'LeftHandRing1', Weight: 0.112494 + Group: 'LeftHandPinky1', Weight: 0.738812 +Vertex 3037: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.043562 + Group: 'LeftHandRing1', Weight: 0.147763 + Group: 'LeftHandPinky1', Weight: 0.733992 + Group: 'LeftHandPinky2', Weight: 0.009107 +Vertex 3038: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.077806 + Group: 'LeftHandRing1', Weight: 0.605569 + Group: 'LeftHandRing2', Weight: 0.030375 + Group: 'LeftHandPinky1', Weight: 0.176049 + Group: 'LeftHandPinky2', Weight: 0.020285 +Vertex 3039: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.041686 + Group: 'LeftHandRing1', Weight: 0.496796 + Group: 'LeftHandRing2', Weight: 0.015163 + Group: 'LeftHandPinky1', Weight: 0.316949 + Group: 'LeftHandPinky2', Weight: 0.058550 +Vertex 3040: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.232051 + Group: 'LeftHandPinky1', Weight: 0.602911 + Group: 'LeftHandPinky2', Weight: 0.087237 +Vertex 3041: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.080659 + Group: 'LeftHandIndex1', Weight: 0.014620 + Group: 'LeftHandMiddle1', Weight: 0.070022 + Group: 'LeftHandRing1', Weight: 0.574353 + Group: 'LeftHandPinky1', Weight: 0.187260 +Vertex 3042: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.050027 + Group: 'LeftHandMiddle1', Weight: 0.042419 + Group: 'LeftHandRing1', Weight: 0.503102 + Group: 'LeftHandPinky1', Weight: 0.316584 + Group: 'LeftHandPinky2', Weight: 0.005787 +Vertex 3043: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.961145 +Vertex 3044: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.079331 + Group: 'RightHandMiddle1', Weight: 0.864194 + Group: 'RightHandRing1', Weight: 0.006242 +Vertex 3045: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.996803 +Vertex 3046: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.916858 + Group: 'RightHandRing3', Weight: 0.080323 +Vertex 3047: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.004188 + Group: 'RightHandMiddle1', Weight: 0.832677 + Group: 'RightHandRing1', Weight: 0.099444 +Vertex 3048: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.010774 + Group: 'RightHandRing3_end', Weight: 0.968990 +Vertex 3049: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.926809 + Group: 'RightHandMiddle1', Weight: 0.026706 +Vertex 3050: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.675360 + Group: 'RightHandRing1', Weight: 0.251852 + Group: 'RightHandRing2', Weight: 0.007541 +Vertex 3051: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.724067 + Group: 'RightHandMiddle1', Weight: 0.246250 +Vertex 3052: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.901051 + Group: 'RightHandMiddle1', Weight: 0.079087 +Vertex 3053: +Vertex groups: 1 + Group: 'RightHandIndex1', Weight: 0.953710 +Vertex 3054: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.756922 + Group: 'RightHandIndex2', Weight: 0.102580 + Group: 'RightHandMiddle1', Weight: 0.105288 + Group: 'RightHandMiddle2', Weight: 0.014261 +Vertex 3055: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.895391 + Group: 'RightHandIndex2', Weight: 0.091165 +Vertex 3056: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.830842 + Group: 'RightHandIndex2', Weight: 0.127746 + Group: 'RightHandMiddle1', Weight: 0.010598 +Vertex 3057: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.706083 + Group: 'RightHandMiddle2', Weight: 0.112639 + Group: 'RightHandRing1', Weight: 0.078058 + Group: 'RightHandRing2', Weight: 0.094121 +Vertex 3058: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.045608 + Group: 'RightHandMiddle1', Weight: 0.825065 + Group: 'RightHandMiddle2', Weight: 0.098396 +Vertex 3059: +Vertex groups: 2 + Group: 'RightHandMiddle1', Weight: 0.796871 + Group: 'RightHandMiddle2', Weight: 0.137210 +Vertex 3060: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.101739 + Group: 'RightHandRing1', Weight: 0.798931 + Group: 'RightHandRing2', Weight: 0.058266 +Vertex 3061: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.026939 + Group: 'RightHandRing1', Weight: 0.810663 + Group: 'RightHandRing2', Weight: 0.054132 + Group: 'RightHandPinky1', Weight: 0.066245 +Vertex 3062: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.696837 + Group: 'RightHandRing2', Weight: 0.052175 + Group: 'RightHandPinky1', Weight: 0.173294 + Group: 'RightHandPinky2', Weight: 0.056120 +Vertex 3063: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.578506 + Group: 'RightHandRing2', Weight: 0.270918 + Group: 'RightHandPinky2', Weight: 0.132397 +Vertex 3064: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.035727 + Group: 'RightHandRing1', Weight: 0.677580 + Group: 'RightHandRing2', Weight: 0.258499 +Vertex 3065: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.520496 + Group: 'RightHandRing2', Weight: 0.430346 + Group: 'RightHandPinky2', Weight: 0.005603 +Vertex 3066: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.094035 + Group: 'RightHandPinky1', Weight: 0.797344 + Group: 'RightHandPinky2', Weight: 0.103861 +Vertex 3067: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.017134 + Group: 'RightHandPinky1', Weight: 0.875223 + Group: 'RightHandPinky2', Weight: 0.088069 +Vertex 3068: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.895080 + Group: 'RightHandPinky2', Weight: 0.093744 +Vertex 3069: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.074227 + Group: 'RightHandIndex2', Weight: 0.828359 + Group: 'RightHandMiddle2', Weight: 0.065892 +Vertex 3070: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.092200 + Group: 'RightHandPinky2', Weight: 0.892663 +Vertex 3071: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.091132 + Group: 'RightHandRing2', Weight: 0.024737 + Group: 'RightHandPinky1', Weight: 0.099174 + Group: 'RightHandPinky2', Weight: 0.760177 +Vertex 3072: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.000017 + Group: 'RightHandPinky1', Weight: 0.091164 + Group: 'RightHandPinky2', Weight: 0.869002 +Vertex 3073: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.103197 + Group: 'RightHandIndex1', Weight: 0.005482 + Group: 'RightHandMiddle1', Weight: 0.768860 + Group: 'RightHandRing1', Weight: 0.089102 +Vertex 3074: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.018865 + Group: 'RightHandMiddle1', Weight: 0.031079 + Group: 'RightHandRing1', Weight: 0.749751 + Group: 'RightHandPinky1', Weight: 0.162668 +Vertex 3075: +Vertex groups: 1 + Group: 'RightHandPinky1', Weight: 0.972562 +Vertex 3076: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.361277 + Group: 'RightHandMiddle1', Weight: 0.600899 +Vertex 3077: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.577109 + Group: 'RightHandIndex2', Weight: 0.104447 + Group: 'RightHandMiddle1', Weight: 0.234654 + Group: 'RightHandMiddle2', Weight: 0.078653 +Vertex 3078: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.146343 + Group: 'RightHandMiddle1', Weight: 0.806355 +Vertex 3079: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.156628 + Group: 'RightHandIndex2', Weight: 0.036402 + Group: 'RightHandMiddle1', Weight: 0.643504 + Group: 'RightHandMiddle2', Weight: 0.148263 +Vertex 3080: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.478084 + Group: 'RightHandMiddle2', Weight: 0.099633 + Group: 'RightHandRing1', Weight: 0.171018 + Group: 'RightHandRing2', Weight: 0.244913 +Vertex 3081: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.367476 + Group: 'RightHandRing1', Weight: 0.553431 + Group: 'RightHandRing2', Weight: 0.024824 +Vertex 3082: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.113147 + Group: 'RightHandMiddle2', Weight: 0.003704 + Group: 'RightHandRing1', Weight: 0.448349 + Group: 'RightHandRing2', Weight: 0.405963 +Vertex 3083: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.190050 + Group: 'RightHandRing1', Weight: 0.731379 + Group: 'RightHandRing2', Weight: 0.024453 +Vertex 3084: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.536298 + Group: 'RightHandRing2', Weight: 0.189279 + Group: 'RightHandPinky1', Weight: 0.050599 + Group: 'RightHandPinky2', Weight: 0.211433 +Vertex 3085: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.492703 + Group: 'RightHandRing2', Weight: 0.003234 + Group: 'RightHandPinky1', Weight: 0.373607 + Group: 'RightHandPinky2', Weight: 0.092788 +Vertex 3086: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.196177 + Group: 'RightHandRing2', Weight: 0.091714 + Group: 'RightHandPinky1', Weight: 0.045469 + Group: 'RightHandPinky2', Weight: 0.646298 +Vertex 3087: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.197738 + Group: 'RightHandPinky1', Weight: 0.663254 + Group: 'RightHandPinky2', Weight: 0.120815 +Vertex 3088: +Vertex groups: 1 + Group: 'RightHandIndex1', Weight: 0.941679 +Vertex 3089: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.859808 + Group: 'RightHandIndex2', Weight: 0.128762 +Vertex 3090: +Vertex groups: 3 + Group: 'RightHandThumb2', Weight: 0.005548 + Group: 'RightHandIndex1', Weight: 0.898145 + Group: 'RightHandIndex2', Weight: 0.031406 +Vertex 3091: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.787860 + Group: 'RightHandIndex2', Weight: 0.189741 +Vertex 3092: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.030784 + Group: 'RightHandIndex3', Weight: 0.921718 + Group: 'RightHandIndex3_end', Weight: 0.024484 +Vertex 3093: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.022317 + Group: 'RightHandIndex2', Weight: 0.940503 +Vertex 3094: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.026345 + Group: 'RightHandIndex3_end', Weight: 0.960167 +Vertex 3095: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.951137 + Group: 'RightHandIndex3', Weight: 0.022473 +Vertex 3096: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.978679 +Vertex 3097: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.009934 + Group: 'RightHandIndex3_end', Weight: 0.968877 +Vertex 3098: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.976839 +Vertex 3099: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.014380 + Group: 'RightHandIndex3_end', Weight: 0.966651 +Vertex 3100: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.020076 + Group: 'RightHandIndex3_end', Weight: 0.963461 +Vertex 3101: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.034452 + Group: 'RightHandIndex3_end', Weight: 0.955937 +Vertex 3102: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.051875 + Group: 'RightHandIndex3_end', Weight: 0.945624 +Vertex 3103: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998864 +Vertex 3104: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998914 +Vertex 3105: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998945 +Vertex 3106: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.997610 +Vertex 3107: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.995846 +Vertex 3108: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.995655 +Vertex 3109: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.994551 +Vertex 3110: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999324 +Vertex 3111: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999392 +Vertex 3112: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999409 +Vertex 3113: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999387 +Vertex 3114: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999306 +Vertex 3115: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999198 +Vertex 3116: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999251 +Vertex 3117: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999236 +Vertex 3118: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999332 +Vertex 3119: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998793 +Vertex 3120: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999359 +Vertex 3121: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999454 +Vertex 3122: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999365 +Vertex 3123: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998193 +Vertex 3124: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998763 +Vertex 3125: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998087 +Vertex 3126: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.997835 +Vertex 3127: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.020534 + Group: 'RightHandIndex3', Weight: 0.929548 + Group: 'RightHandIndex3_end', Weight: 0.019655 +Vertex 3128: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.024519 + Group: 'RightHandIndex3', Weight: 0.932565 + Group: 'RightHandIndex3_end', Weight: 0.009429 +Vertex 3129: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.009844 + Group: 'RightHandIndex3', Weight: 0.936851 + Group: 'RightHandIndex3_end', Weight: 0.015215 +Vertex 3130: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.013796 + Group: 'RightHandIndex3', Weight: 0.937029 + Group: 'RightHandIndex3_end', Weight: 0.010317 +Vertex 3131: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.021485 + Group: 'RightHandIndex3', Weight: 0.925469 + Group: 'RightHandIndex3_end', Weight: 0.024996 +Vertex 3132: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.027480 + Group: 'RightHandIndex3', Weight: 0.914097 + Group: 'RightHandIndex3_end', Weight: 0.041832 +Vertex 3133: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.053470 + Group: 'RightHandIndex3', Weight: 0.914097 + Group: 'RightHandIndex3_end', Weight: 0.010210 +Vertex 3134: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999188 +Vertex 3135: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999485 +Vertex 3136: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998919 +Vertex 3137: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998848 +Vertex 3138: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998807 +Vertex 3139: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999417 +Vertex 3140: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999424 +Vertex 3141: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999148 +Vertex 3142: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.924774 + Group: 'RightHandIndex3', Weight: 0.037409 +Vertex 3143: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.101820 + Group: 'RightHandIndex2', Weight: 0.890181 +Vertex 3144: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.951504 + Group: 'RightHandIndex3', Weight: 0.030681 +Vertex 3145: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.156531 + Group: 'RightHandIndex2', Weight: 0.835537 +Vertex 3146: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.937707 + Group: 'RightHandIndex3', Weight: 0.051052 +Vertex 3147: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.930692 + Group: 'RightHandIndex3', Weight: 0.046998 +Vertex 3148: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.196495 + Group: 'RightHandIndex2', Weight: 0.786975 +Vertex 3149: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.901570 + Group: 'RightHandIndex3', Weight: 0.071987 +Vertex 3150: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.884379 + Group: 'RightHandIndex3', Weight: 0.082872 +Vertex 3151: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.883483 + Group: 'RightHandIndex3', Weight: 0.066021 +Vertex 3152: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.166489 + Group: 'RightHandIndex2', Weight: 0.717489 + Group: 'RightHandMiddle1', Weight: 0.031938 + Group: 'RightHandMiddle2', Weight: 0.069974 +Vertex 3153: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.346543 + Group: 'RightHandIndex2', Weight: 0.305564 + Group: 'RightHandMiddle1', Weight: 0.116519 + Group: 'RightHandMiddle2', Weight: 0.224148 +Vertex 3154: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.109537 + Group: 'RightHandIndex2', Weight: 0.087647 + Group: 'RightHandMiddle1', Weight: 0.170505 + Group: 'RightHandMiddle2', Weight: 0.623966 +Vertex 3155: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.021599 + Group: 'RightHandIndex2', Weight: 0.007912 + Group: 'RightHandMiddle1', Weight: 0.104111 + Group: 'RightHandMiddle2', Weight: 0.820308 +Vertex 3156: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.256389 + Group: 'RightHandIndex2', Weight: 0.370881 + Group: 'RightHandMiddle1', Weight: 0.067795 + Group: 'RightHandMiddle2', Weight: 0.291390 +Vertex 3157: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.120431 + Group: 'RightHandIndex2', Weight: 0.156039 + Group: 'RightHandMiddle1', Weight: 0.077184 + Group: 'RightHandMiddle2', Weight: 0.630865 +Vertex 3158: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.062149 + Group: 'RightHandIndex2', Weight: 0.079034 + Group: 'RightHandMiddle1', Weight: 0.031936 + Group: 'RightHandMiddle2', Weight: 0.782606 + Group: 'RightHandMiddle3', Weight: 0.004920 +Vertex 3159: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.116730 + Group: 'RightHandIndex2', Weight: 0.857078 +Vertex 3160: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.006184 + Group: 'RightHandIndex2', Weight: 0.958579 +Vertex 3161: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.037907 + Group: 'RightHandIndex2', Weight: 0.939822 +Vertex 3162: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.070855 + Group: 'RightHandIndex2', Weight: 0.905484 +Vertex 3163: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.087092 + Group: 'RightHandIndex2', Weight: 0.873063 +Vertex 3164: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.084664 + Group: 'RightHandIndex2', Weight: 0.844207 + Group: 'RightHandIndex3', Weight: 0.008532 + Group: 'RightHandMiddle2', Weight: 0.002536 +Vertex 3165: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.121687 + Group: 'RightHandIndex2', Weight: 0.712279 + Group: 'RightHandMiddle1', Weight: 0.009174 + Group: 'RightHandMiddle2', Weight: 0.108169 +Vertex 3166: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.214269 + Group: 'RightHandIndex2', Weight: 0.748723 +Vertex 3167: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.729355 + Group: 'RightHandIndex2', Weight: 0.222514 +Vertex 3168: +Vertex groups: 3 + Group: 'RightHandThumb2', Weight: 0.017270 + Group: 'RightHandIndex1', Weight: 0.852952 + Group: 'RightHandIndex2', Weight: 0.043267 +Vertex 3169: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.233966 + Group: 'RightHandIndex2', Weight: 0.664841 + Group: 'RightHandMiddle1', Weight: 0.005166 + Group: 'RightHandMiddle2', Weight: 0.052131 +Vertex 3170: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.659679 + Group: 'RightHandIndex2', Weight: 0.206513 + Group: 'RightHandMiddle1', Weight: 0.052970 + Group: 'RightHandMiddle2', Weight: 0.052493 +Vertex 3171: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.782497 + Group: 'RightHandIndex2', Weight: 0.058354 + Group: 'RightHandMiddle1', Weight: 0.078451 +Vertex 3172: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.217964 + Group: 'RightHandIndex2', Weight: 0.394286 + Group: 'RightHandMiddle1', Weight: 0.060163 + Group: 'RightHandMiddle2', Weight: 0.304786 +Vertex 3173: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.126365 + Group: 'RightHandIndex2', Weight: 0.181964 + Group: 'RightHandMiddle1', Weight: 0.065805 + Group: 'RightHandMiddle2', Weight: 0.599817 +Vertex 3174: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.273589 + Group: 'RightHandIndex2', Weight: 0.332519 + Group: 'RightHandMiddle1', Weight: 0.088094 + Group: 'RightHandMiddle2', Weight: 0.277348 +Vertex 3175: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.164074 + Group: 'RightHandIndex2', Weight: 0.165889 + Group: 'RightHandMiddle1', Weight: 0.128025 + Group: 'RightHandMiddle2', Weight: 0.507504 +Vertex 3176: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.281236 + Group: 'RightHandIndex2', Weight: 0.466729 + Group: 'RightHandMiddle1', Weight: 0.063054 + Group: 'RightHandMiddle2', Weight: 0.162654 +Vertex 3177: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.472516 + Group: 'RightHandIndex2', Weight: 0.200095 + Group: 'RightHandMiddle1', Weight: 0.120051 + Group: 'RightHandMiddle2', Weight: 0.171779 +Vertex 3178: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.688853 + Group: 'RightHandIndex2', Weight: 0.053412 + Group: 'RightHandMiddle1', Weight: 0.151879 + Group: 'RightHandMiddle2', Weight: 0.020683 + Group: 'RightHandRing1', Weight: 0.000040 +Vertex 3179: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.137581 + Group: 'RightHandMiddle3_end', Weight: 0.861932 +Vertex 3180: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.102350 + Group: 'RightHandMiddle3', Weight: 0.896145 +Vertex 3181: +Vertex groups: 1 + Group: 'RightHandMiddle3', Weight: 0.981316 +Vertex 3182: +Vertex groups: 2 + Group: 'RightHandMiddle1', Weight: 0.036940 + Group: 'RightHandMiddle2', Weight: 0.922315 +Vertex 3183: +Vertex groups: 1 + Group: 'RightHandMiddle3', Weight: 0.978893 +Vertex 3184: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.970930 + Group: 'RightHandMiddle3_end', Weight: 0.002840 +Vertex 3185: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.965330 + Group: 'RightHandMiddle3_end', Weight: 0.013386 +Vertex 3186: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.958116 + Group: 'RightHandMiddle3_end', Weight: 0.026631 +Vertex 3187: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.956387 + Group: 'RightHandMiddle3_end', Weight: 0.026947 +Vertex 3188: +Vertex groups: 1 + Group: 'RightHandMiddle3', Weight: 0.972188 +Vertex 3189: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.962480 + Group: 'RightHandMiddle3_end', Weight: 0.015534 +Vertex 3190: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.041366 + Group: 'RightHandMiddle3_end', Weight: 0.954186 +Vertex 3191: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.038918 + Group: 'RightHandMiddle3_end', Weight: 0.955402 +Vertex 3192: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.057146 + Group: 'RightHandMiddle3_end', Weight: 0.942653 +Vertex 3193: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.067136 + Group: 'RightHandMiddle3_end', Weight: 0.932583 +Vertex 3194: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.077172 + Group: 'RightHandMiddle3_end', Weight: 0.922449 +Vertex 3195: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.073048 + Group: 'RightHandMiddle3_end', Weight: 0.926628 +Vertex 3196: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.081522 + Group: 'RightHandMiddle3_end', Weight: 0.918084 +Vertex 3197: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993542 +Vertex 3198: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.994351 +Vertex 3199: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.994355 +Vertex 3200: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993192 +Vertex 3201: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993134 +Vertex 3202: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.991592 +Vertex 3203: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.991946 +Vertex 3204: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.992567 +Vertex 3205: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993878 +Vertex 3206: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.004837 + Group: 'RightHandMiddle3_end', Weight: 0.972465 +Vertex 3207: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.978771 +Vertex 3208: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.985766 +Vertex 3209: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.987811 +Vertex 3210: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.001107 + Group: 'RightHandMiddle3_end', Weight: 0.974338 +Vertex 3211: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.031972 + Group: 'RightHandMiddle3_end', Weight: 0.958865 +Vertex 3212: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.012540 + Group: 'RightHandMiddle3_end', Weight: 0.968584 +Vertex 3213: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.009626 + Group: 'RightHandMiddle3_end', Weight: 0.970049 +Vertex 3214: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.080985 + Group: 'RightHandMiddle3', Weight: 0.916875 +Vertex 3215: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.083528 + Group: 'RightHandMiddle3', Weight: 0.912672 +Vertex 3216: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.075459 + Group: 'RightHandMiddle3', Weight: 0.920121 +Vertex 3217: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.086130 + Group: 'RightHandMiddle3', Weight: 0.910406 +Vertex 3218: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.180712 + Group: 'RightHandMiddle3', Weight: 0.816235 +Vertex 3219: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.184549 + Group: 'RightHandMiddle3', Weight: 0.813850 +Vertex 3220: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.703330 + Group: 'RightHandMiddle3', Weight: 0.294571 +Vertex 3221: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.987498 +Vertex 3222: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.992839 +Vertex 3223: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.987322 +Vertex 3224: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.984703 +Vertex 3225: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.986362 +Vertex 3226: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.988911 +Vertex 3227: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993856 +Vertex 3228: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.988339 +Vertex 3229: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.071180 + Group: 'RightHandMiddle2', Weight: 0.838821 + Group: 'RightHandRing2', Weight: 0.067049 +Vertex 3230: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.008565 + Group: 'RightHandMiddle1', Weight: 0.014469 + Group: 'RightHandMiddle2', Weight: 0.891626 +Vertex 3231: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.160610 + Group: 'RightHandMiddle2', Weight: 0.708873 + Group: 'RightHandRing2', Weight: 0.100320 +Vertex 3232: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.084805 + Group: 'RightHandIndex2', Weight: 0.083302 + Group: 'RightHandMiddle1', Weight: 0.067191 + Group: 'RightHandMiddle2', Weight: 0.724559 +Vertex 3233: +Vertex groups: 5 + Group: 'RightHandMiddle2', Weight: 0.923612 + Group: 'RightHandMiddle1', Weight: 0.031261 + Group: 'RightHandIndex1', Weight: 0.027130 + Group: 'RightHandRing2', Weight: 0.009105 + Group: 'RightHandMiddle3', Weight: 0.008891 +Vertex 3234: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.041501 + Group: 'RightHandMiddle2', Weight: 0.778411 + Group: 'RightHandRing2', Weight: 0.115141 +Vertex 3235: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.048375 + Group: 'RightHandMiddle2', Weight: 0.823536 + Group: 'RightHandRing2', Weight: 0.091618 +Vertex 3236: +Vertex groups: 2 + Group: 'RightHandRing1', Weight: 0.051184 + Group: 'RightHandRing2', Weight: 0.922288 +Vertex 3237: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.963637 +Vertex 3238: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.970437 +Vertex 3239: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.963432 + Group: 'RightHandRing3_end', Weight: 0.012754 +Vertex 3240: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.954063 + Group: 'RightHandRing3_end', Weight: 0.023510 +Vertex 3241: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.947668 + Group: 'RightHandRing3_end', Weight: 0.019589 +Vertex 3242: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.956420 +Vertex 3243: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.952099 + Group: 'RightHandRing3_end', Weight: 0.008617 +Vertex 3244: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.017260 + Group: 'RightHandRing3_end', Weight: 0.965853 +Vertex 3245: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.005260 + Group: 'RightHandRing3_end', Weight: 0.972378 +Vertex 3246: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.019303 + Group: 'RightHandRing3_end', Weight: 0.965136 +Vertex 3247: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.025756 + Group: 'RightHandRing3_end', Weight: 0.961646 +Vertex 3248: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.033789 + Group: 'RightHandRing3_end', Weight: 0.957391 +Vertex 3249: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.019412 + Group: 'RightHandRing3_end', Weight: 0.964615 +Vertex 3250: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.039515 + Group: 'RightHandRing3_end', Weight: 0.954408 +Vertex 3251: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.998053 +Vertex 3252: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997921 +Vertex 3253: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997941 +Vertex 3254: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997638 +Vertex 3255: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997849 +Vertex 3256: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997580 +Vertex 3257: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997959 +Vertex 3258: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997931 +Vertex 3259: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.998067 +Vertex 3260: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.989497 +Vertex 3261: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.991332 +Vertex 3262: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.993023 +Vertex 3263: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.993361 +Vertex 3264: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.992005 +Vertex 3265: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.989671 +Vertex 3266: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.988410 +Vertex 3267: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.989869 +Vertex 3268: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.796172 + Group: 'RightHandRing3', Weight: 0.201454 +Vertex 3269: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.250697 + Group: 'RightHandRing3', Weight: 0.745981 +Vertex 3270: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.137628 + Group: 'RightHandRing3', Weight: 0.858136 +Vertex 3271: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.197268 + Group: 'RightHandRing3', Weight: 0.799115 +Vertex 3272: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.800765 + Group: 'RightHandRing3', Weight: 0.194739 +Vertex 3273: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.932986 + Group: 'RightHandRing3', Weight: 0.063478 +Vertex 3274: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.929198 + Group: 'RightHandRing3', Weight: 0.066346 +Vertex 3275: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996205 +Vertex 3276: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996838 +Vertex 3277: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996772 +Vertex 3278: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.995487 +Vertex 3279: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996262 +Vertex 3280: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.995930 +Vertex 3281: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997224 +Vertex 3282: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996689 +Vertex 3283: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.062040 + Group: 'RightHandRing2', Weight: 0.892480 + Group: 'RightHandPinky2', Weight: 0.014394 +Vertex 3284: +Vertex groups: 3 + Group: 'RightHandMiddle2', Weight: 0.004230 + Group: 'RightHandRing1', Weight: 0.009560 + Group: 'RightHandRing2', Weight: 0.914531 +Vertex 3285: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.025193 + Group: 'RightHandMiddle2', Weight: 0.067727 + Group: 'RightHandRing2', Weight: 0.852834 +Vertex 3286: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.029298 + Group: 'RightHandMiddle2', Weight: 0.131562 + Group: 'RightHandRing1', Weight: 0.018306 + Group: 'RightHandRing2', Weight: 0.759688 +Vertex 3287: +Vertex groups: 3 + Group: 'RightHandMiddle2', Weight: 0.017924 + Group: 'RightHandRing2', Weight: 0.904569 + Group: 'RightHandRing3', Weight: 0.007271 +Vertex 3288: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.163622 + Group: 'RightHandRing2', Weight: 0.600789 + Group: 'RightHandPinky1', Weight: 0.005853 + Group: 'RightHandPinky2', Weight: 0.167442 +Vertex 3289: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.082917 + Group: 'RightHandRing2', Weight: 0.819443 + Group: 'RightHandPinky2', Weight: 0.073453 +Vertex 3290: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.910968 + Group: 'RightHandPinky3_end', Weight: 0.082538 +Vertex 3291: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.068730 + Group: 'RightHandPinky3', Weight: 0.926308 +Vertex 3292: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.134957 + Group: 'RightHandPinky3_end', Weight: 0.864340 +Vertex 3293: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.941592 + Group: 'RightHandPinky3_end', Weight: 0.054448 +Vertex 3294: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.937977 + Group: 'RightHandPinky3_end', Weight: 0.056148 +Vertex 3295: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.878191 + Group: 'RightHandPinky3_end', Weight: 0.116350 +Vertex 3296: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.701738 + Group: 'RightHandPinky3_end', Weight: 0.291776 +Vertex 3297: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.575824 + Group: 'RightHandPinky3_end', Weight: 0.422418 +Vertex 3298: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.937478 + Group: 'RightHandPinky3_end', Weight: 0.060240 +Vertex 3299: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.870093 + Group: 'RightHandPinky3_end', Weight: 0.127637 +Vertex 3300: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.087890 + Group: 'RightHandPinky3_end', Weight: 0.911694 +Vertex 3301: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.064776 + Group: 'RightHandPinky3_end', Weight: 0.934825 +Vertex 3302: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.058792 + Group: 'RightHandPinky3_end', Weight: 0.940795 +Vertex 3303: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.066531 + Group: 'RightHandPinky3_end', Weight: 0.932877 +Vertex 3304: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.023411 + Group: 'RightHandPinky3_end', Weight: 0.963060 +Vertex 3305: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.045690 + Group: 'RightHandPinky3_end', Weight: 0.951974 +Vertex 3306: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.030406 + Group: 'RightHandPinky3_end', Weight: 0.959653 +Vertex 3307: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993442 +Vertex 3308: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991802 +Vertex 3309: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991932 +Vertex 3310: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.990581 +Vertex 3311: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991564 +Vertex 3312: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993107 +Vertex 3313: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.994440 +Vertex 3314: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.994362 +Vertex 3315: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993266 +Vertex 3316: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.003948 + Group: 'RightHandPinky3_end', Weight: 0.972802 +Vertex 3317: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.978327 +Vertex 3318: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.976834 +Vertex 3319: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.002905 + Group: 'RightHandPinky3_end', Weight: 0.973410 +Vertex 3320: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.990484 +Vertex 3321: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.020809 + Group: 'RightHandPinky3_end', Weight: 0.964412 +Vertex 3322: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.987624 +Vertex 3323: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991253 +Vertex 3324: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.070566 + Group: 'RightHandPinky3', Weight: 0.921909 +Vertex 3325: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.055941 + Group: 'RightHandPinky3', Weight: 0.931116 +Vertex 3326: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.061946 + Group: 'RightHandPinky3', Weight: 0.923590 +Vertex 3327: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.070467 + Group: 'RightHandPinky3', Weight: 0.910501 +Vertex 3328: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.050657 + Group: 'RightHandPinky3', Weight: 0.933318 +Vertex 3329: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.063978 + Group: 'RightHandPinky3', Weight: 0.932021 +Vertex 3330: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.043344 + Group: 'RightHandPinky3', Weight: 0.947061 +Vertex 3331: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.985980 +Vertex 3332: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.987719 +Vertex 3333: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.995219 +Vertex 3334: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993214 +Vertex 3335: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.996277 +Vertex 3336: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.987440 +Vertex 3337: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.986769 +Vertex 3338: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.989280 +Vertex 3339: +Vertex groups: 2 + Group: 'RightHandMiddle1', Weight: 0.141132 + Group: 'RightHandMiddle2', Weight: 0.818672 +Vertex 3340: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.277432 + Group: 'RightHandMiddle2', Weight: 0.298333 + Group: 'RightHandRing1', Weight: 0.091435 + Group: 'RightHandRing2', Weight: 0.326338 +Vertex 3341: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.108678 + Group: 'RightHandMiddle2', Weight: 0.081804 + Group: 'RightHandRing1', Weight: 0.103607 + Group: 'RightHandRing2', Weight: 0.701178 +Vertex 3342: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.267985 + Group: 'RightHandIndex2', Weight: 0.132373 + Group: 'RightHandMiddle1', Weight: 0.236266 + Group: 'RightHandMiddle2', Weight: 0.308728 +Vertex 3343: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.439253 + Group: 'RightHandIndex2', Weight: 0.038212 + Group: 'RightHandMiddle1', Weight: 0.348705 + Group: 'RightHandMiddle2', Weight: 0.056181 + Group: 'RightHandRing1', Weight: 0.047764 +Vertex 3344: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.105009 + Group: 'RightHandIndex2', Weight: 0.054768 + Group: 'RightHandMiddle1', Weight: 0.108841 + Group: 'RightHandMiddle2', Weight: 0.628192 + Group: 'RightHandRing2', Weight: 0.063931 +Vertex 3345: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.337850 + Group: 'RightHandIndex2', Weight: 0.257104 + Group: 'RightHandMiddle1', Weight: 0.121073 + Group: 'RightHandMiddle2', Weight: 0.249941 +Vertex 3346: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.241387 + Group: 'RightHandIndex2', Weight: 0.181433 + Group: 'RightHandMiddle1', Weight: 0.169076 + Group: 'RightHandMiddle2', Weight: 0.367980 +Vertex 3347: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.068379 + Group: 'RightHandMiddle2', Weight: 0.596877 + Group: 'RightHandRing1', Weight: 0.041406 + Group: 'RightHandRing2', Weight: 0.253670 +Vertex 3348: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.072133 + Group: 'RightHandMiddle2', Weight: 0.266764 + Group: 'RightHandRing1', Weight: 0.080508 + Group: 'RightHandRing2', Weight: 0.556970 +Vertex 3349: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.007367 + Group: 'RightHandMiddle1', Weight: 0.096333 + Group: 'RightHandMiddle2', Weight: 0.552180 + Group: 'RightHandRing1', Weight: 0.049231 + Group: 'RightHandRing2', Weight: 0.234758 +Vertex 3350: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.345026 + Group: 'RightHandRing1', Weight: 0.322972 + Group: 'RightHandMiddle2', Weight: 0.139359 + Group: 'RightHandRing2', Weight: 0.138997 + Group: 'RightHandIndex1', Weight: 0.053646 +Vertex 3351: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.069871 + Group: 'RightHandMiddle2', Weight: 0.216688 + Group: 'RightHandRing1', Weight: 0.056683 + Group: 'RightHandRing2', Weight: 0.609559 +Vertex 3352: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.402873 + Group: 'RightHandMiddle1', Weight: 0.273515 + Group: 'RightHandRing2', Weight: 0.150772 + Group: 'RightHandMiddle2', Weight: 0.113747 + Group: 'RightHandPinky1', Weight: 0.059094 +Vertex 3353: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.105882 + Group: 'RightHandMiddle2', Weight: 0.521286 + Group: 'RightHandRing1', Weight: 0.039275 + Group: 'RightHandRing2', Weight: 0.277407 +Vertex 3354: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.102626 + Group: 'RightHandMiddle2', Weight: 0.390959 + Group: 'RightHandRing1', Weight: 0.043555 + Group: 'RightHandRing2', Weight: 0.411970 +Vertex 3355: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.293935 + Group: 'RightHandRing2', Weight: 0.417126 + Group: 'RightHandPinky2', Weight: 0.243980 +Vertex 3356: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.128484 + Group: 'RightHandRing2', Weight: 0.189505 + Group: 'RightHandPinky1', Weight: 0.001111 + Group: 'RightHandPinky2', Weight: 0.608879 + Group: 'RightHandPinky3', Weight: 0.037206 +Vertex 3357: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.354635 + Group: 'RightHandRing2', Weight: 0.100206 + Group: 'RightHandPinky1', Weight: 0.327463 + Group: 'RightHandPinky2', Weight: 0.158230 +Vertex 3358: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.250373 + Group: 'RightHandRing2', Weight: 0.066739 + Group: 'RightHandPinky1', Weight: 0.429824 + Group: 'RightHandPinky2', Weight: 0.202106 +Vertex 3359: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.227791 + Group: 'RightHandRing2', Weight: 0.465808 + Group: 'RightHandPinky1', Weight: 0.027601 + Group: 'RightHandPinky2', Weight: 0.234994 +Vertex 3360: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.115955 + Group: 'RightHandRing2', Weight: 0.215996 + Group: 'RightHandPinky1', Weight: 0.030673 + Group: 'RightHandPinky2', Weight: 0.571668 + Group: 'RightHandPinky3', Weight: 0.046345 +Vertex 3361: +Vertex groups: 2 + Group: 'RightHandRing1', Weight: 0.142628 + Group: 'RightHandRing2', Weight: 0.819490 +Vertex 3362: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.020578 + Group: 'RightHandMiddle2', Weight: 0.001675 + Group: 'RightHandRing1', Weight: 0.115940 + Group: 'RightHandRing2', Weight: 0.816244 +Vertex 3363: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.188357 + Group: 'RightHandRing2', Weight: 0.729459 + Group: 'RightHandPinky2', Weight: 0.067335 +Vertex 3364: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.278380 + Group: 'RightHandRing2', Weight: 0.566004 + Group: 'RightHandPinky2', Weight: 0.125439 +Vertex 3365: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.911100 + Group: 'RightHandMiddle3', Weight: 0.077378 +Vertex 3366: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.919663 + Group: 'RightHandMiddle3', Weight: 0.062397 +Vertex 3367: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.884421 + Group: 'RightHandMiddle3', Weight: 0.099864 +Vertex 3368: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.846485 + Group: 'RightHandMiddle3', Weight: 0.112410 +Vertex 3369: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.854634 + Group: 'RightHandMiddle3', Weight: 0.118857 +Vertex 3370: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.894767 + Group: 'RightHandMiddle3', Weight: 0.075371 +Vertex 3371: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.932200 + Group: 'RightHandMiddle3', Weight: 0.038581 +Vertex 3372: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.846302 + Group: 'RightHandMiddle3', Weight: 0.120509 +Vertex 3373: +Vertex groups: 1 + Group: 'RightHandRing2', Weight: 0.971765 +Vertex 3374: +Vertex groups: 1 + Group: 'RightHandRing2', Weight: 0.968059 +Vertex 3375: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.956850 + Group: 'RightHandRing3', Weight: 0.012498 +Vertex 3376: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.892046 + Group: 'RightHandRing3', Weight: 0.084823 +Vertex 3377: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.838519 + Group: 'RightHandRing3', Weight: 0.131294 +Vertex 3378: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.870650 + Group: 'RightHandRing3', Weight: 0.105257 +Vertex 3379: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.917027 + Group: 'RightHandRing3', Weight: 0.033229 +Vertex 3380: +Vertex groups: 1 + Group: 'RightHandRing2', Weight: 0.951075 +Vertex 3381: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.924596 + Group: 'RightHandPinky3', Weight: 0.051383 +Vertex 3382: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.930717 + Group: 'RightHandPinky3', Weight: 0.055114 +Vertex 3383: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.871082 + Group: 'RightHandPinky3', Weight: 0.080019 +Vertex 3384: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.061754 + Group: 'RightHandRing2', Weight: 0.092655 + Group: 'RightHandPinky2', Weight: 0.761055 + Group: 'RightHandPinky3', Weight: 0.064929 +Vertex 3385: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.023118 + Group: 'RightHandRing2', Weight: 0.055786 + Group: 'RightHandPinky1', Weight: 0.020365 + Group: 'RightHandPinky2', Weight: 0.798492 + Group: 'RightHandPinky3', Weight: 0.070430 +Vertex 3386: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.836282 + Group: 'RightHandPinky3', Weight: 0.121563 +Vertex 3387: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.891798 + Group: 'RightHandPinky3', Weight: 0.094598 +Vertex 3388: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.914920 + Group: 'RightHandPinky3', Weight: 0.074244 +Vertex 3389: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.206945 + Group: 'RightHandRing2', Weight: 0.608394 + Group: 'RightHandPinky2', Weight: 0.152838 +Vertex 3390: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.091975 + Group: 'RightHandPinky2', Weight: 0.895422 +Vertex 3391: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.091926 + Group: 'RightHandPinky2', Weight: 0.886711 +Vertex 3392: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.850868 + Group: 'RightHandPinky2', Weight: 0.137081 +Vertex 3393: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.801831 + Group: 'RightHandPinky2', Weight: 0.166661 +Vertex 3394: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.003544 + Group: 'RightHandPinky1', Weight: 0.167594 + Group: 'RightHandPinky2', Weight: 0.776339 +Vertex 3395: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.070528 + Group: 'RightHandPinky1', Weight: 0.771801 + Group: 'RightHandPinky2', Weight: 0.120538 +Vertex 3396: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.274946 + Group: 'RightHandMiddle2', Weight: 0.340732 + Group: 'RightHandRing1', Weight: 0.050034 + Group: 'RightHandRing2', Weight: 0.326362 +Vertex 3397: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.104379 + Group: 'RightHandMiddle2', Weight: 0.117815 + Group: 'RightHandRing1', Weight: 0.052104 + Group: 'RightHandRing2', Weight: 0.718557 +Vertex 3398: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.261646 + Group: 'RightHandMiddle2', Weight: 0.356665 + Group: 'RightHandRing1', Weight: 0.016493 + Group: 'RightHandRing2', Weight: 0.337097 +Vertex 3399: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.110382 + Group: 'RightHandMiddle2', Weight: 0.138744 + Group: 'RightHandRing1', Weight: 0.046202 + Group: 'RightHandRing2', Weight: 0.690905 +Vertex 3400: +Vertex groups: 4 + Group: 'RightHandMiddle2', Weight: 0.039046 + Group: 'RightHandRing1', Weight: 0.046418 + Group: 'RightHandRing2', Weight: 0.820199 + Group: 'RightHandPinky2', Weight: 0.028603 +Vertex 3401: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.011605 + Group: 'RightHandThumb2', Weight: 0.008772 + Group: 'RightHandIndex1', Weight: 0.920461 +Vertex 3402: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.036307 + Group: 'RightHandIndex1', Weight: 0.729035 + Group: 'RightHandMiddle1', Weight: 0.210188 +Vertex 3403: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.001389 + Group: 'RightHandIndex1', Weight: 0.391025 + Group: 'RightHandMiddle1', Weight: 0.562342 +Vertex 3404: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.011256 + Group: 'RightHandIndex1', Weight: 0.132141 + Group: 'RightHandMiddle1', Weight: 0.813335 +Vertex 3405: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.062129 + Group: 'RightHandMiddle1', Weight: 0.377010 + Group: 'RightHandRing1', Weight: 0.512120 +Vertex 3406: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.037840 + Group: 'RightHandMiddle1', Weight: 0.185553 + Group: 'RightHandRing1', Weight: 0.712972 + Group: 'RightHandPinky1', Weight: 0.012382 +Vertex 3407: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.374673 + Group: 'RightHandPinky1', Weight: 0.551626 + Group: 'RightHandPinky2', Weight: 0.034913 +Vertex 3408: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.144318 + Group: 'RightHandPinky1', Weight: 0.799064 + Group: 'RightHandPinky2', Weight: 0.038314 +Vertex 3409: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.057273 + Group: 'RightHandIndex1', Weight: 0.084129 + Group: 'RightHandMiddle1', Weight: 0.830668 +Vertex 3410: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.116777 + Group: 'RightHandMiddle1', Weight: 0.600687 + Group: 'RightHandRing1', Weight: 0.245365 +Vertex 3411: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.066281 + Group: 'RightHandMiddle1', Weight: 0.110135 + Group: 'RightHandRing1', Weight: 0.749770 + Group: 'RightHandPinky1', Weight: 0.062468 +Vertex 3412: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.000400 + Group: 'RightHandRing1', Weight: 0.591634 + Group: 'RightHandPinky1', Weight: 0.344018 +Vertex 3413: +Vertex groups: 2 + Group: 'RightHandRing1', Weight: 0.063053 + Group: 'RightHandPinky1', Weight: 0.914886 +Vertex 3414: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.118542 + Group: 'RightHandThumb2', Weight: 0.143733 + Group: 'RightHandIndex1', Weight: 0.710950 +Vertex 3415: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.106146 + Group: 'RightHandThumb2', Weight: 0.190052 + Group: 'RightHandIndex1', Weight: 0.656404 +Vertex 3416: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.150947 + Group: 'RightHandRing2', Weight: 0.015560 + Group: 'RightHandPinky1', Weight: 0.489583 + Group: 'RightHandPinky2', Weight: 0.287033 +Vertex 3417: +Vertex groups: 1 + Group: 'RightHandPinky1', Weight: 0.965491 +Vertex 3418: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.933184 + Group: 'RightHandPinky2', Weight: 0.015522 +Vertex 3419: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.010883 + Group: 'RightHandRing1', Weight: 0.007957 + Group: 'RightHandPinky1', Weight: 0.893815 + Group: 'RightHandPinky2', Weight: 0.018912 +Vertex 3420: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.035577 + Group: 'RightHandRing1', Weight: 0.067832 + Group: 'RightHandPinky1', Weight: 0.831933 + Group: 'RightHandPinky2', Weight: 0.015807 +Vertex 3421: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.072889 + Group: 'RightHandThumb1', Weight: 0.607166 + Group: 'RightHandThumb2', Weight: 0.064759 + Group: 'RightHandIndex1', Weight: 0.248982 +Vertex 3422: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.007062 + Group: 'RightHand', Weight: 0.928718 + Group: 'RightHandThumb1', Weight: 0.023758 +Vertex 3423: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.100802 + Group: 'RightHand', Weight: 0.781669 + Group: 'RightHandThumb1', Weight: 0.111997 +Vertex 3424: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.165624 + Group: 'RightHand', Weight: 0.647142 + Group: 'RightHandThumb1', Weight: 0.181856 +Vertex 3425: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.056348 + Group: 'RightHand', Weight: 0.359027 + Group: 'RightHandThumb1', Weight: 0.571656 +Vertex 3426: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.157567 + Group: 'RightHand', Weight: 0.571171 + Group: 'RightHandThumb1', Weight: 0.263780 +Vertex 3427: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.065961 + Group: 'RightHand', Weight: 0.312502 + Group: 'RightHandThumb1', Weight: 0.610331 +Vertex 3428: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.332757 + Group: 'RightHandThumb1', Weight: 0.073037 + Group: 'RightHandIndex1', Weight: 0.550424 + Group: 'RightHandMiddle1', Weight: 0.012791 +Vertex 3429: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.830771 + Group: 'RightHandIndex1', Weight: 0.106799 + Group: 'RightHandMiddle1', Weight: 0.012934 +Vertex 3430: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.036756 + Group: 'RightHand', Weight: 0.672577 + Group: 'RightHandThumb1', Weight: 0.266166 +Vertex 3431: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.007190 + Group: 'RightHand', Weight: 0.241114 + Group: 'RightHandThumb1', Weight: 0.714225 +Vertex 3432: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.139309 + Group: 'RightHandThumb1', Weight: 0.819532 +Vertex 3433: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.358526 + Group: 'RightHandThumb1', Weight: 0.573146 + Group: 'RightHandPinky1', Weight: 0.013141 +Vertex 3434: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.232171 + Group: 'RightHandThumb1', Weight: 0.644625 + Group: 'RightHandIndex1', Weight: 0.011416 + Group: 'RightHandPinky1', Weight: 0.040903 +Vertex 3435: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.096418 + Group: 'RightHandThumb1', Weight: 0.816324 + Group: 'RightHandThumb2', Weight: 0.017844 +Vertex 3436: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.072038 + Group: 'RightHandThumb1', Weight: 0.680432 + Group: 'RightHandThumb2', Weight: 0.097475 + Group: 'RightHandIndex1', Weight: 0.092920 +Vertex 3437: +Vertex groups: 5 + Group: 'RightHandThumb1', Weight: 0.578890 + Group: 'RightHand', Weight: 0.184520 + Group: 'RightHandIndex1', Weight: 0.143705 + Group: 'RightHandThumb2', Weight: 0.053943 + Group: 'RightHandPinky1', Weight: 0.038943 +Vertex 3438: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.209771 + Group: 'RightHandThumb2', Weight: 0.383368 + Group: 'RightHandThumb3', Weight: 0.018224 + Group: 'RightHandIndex1', Weight: 0.300820 +Vertex 3439: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.650985 + Group: 'RightHandThumb2', Weight: 0.137753 + Group: 'RightHandThumb1', Weight: 0.127942 + Group: 'RightHandMiddle1', Weight: 0.066346 + Group: 'RightHand', Weight: 0.016973 +Vertex 3440: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.196114 + Group: 'RightHandThumb2', Weight: 0.354506 + Group: 'RightHandThumb3', Weight: 0.053208 + Group: 'RightHandIndex1', Weight: 0.356245 +Vertex 3441: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.104166 + Group: 'RightHandThumb2', Weight: 0.171258 + Group: 'RightHandIndex1', Weight: 0.640503 +Vertex 3442: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.184906 + Group: 'RightHandThumb2', Weight: 0.387595 + Group: 'RightHandThumb3', Weight: 0.049137 + Group: 'RightHandIndex1', Weight: 0.360426 +Vertex 3443: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.237723 + Group: 'RightHandThumb2', Weight: 0.389398 + Group: 'RightHandThumb3', Weight: 0.001765 + Group: 'RightHandIndex1', Weight: 0.334875 +Vertex 3444: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.307523 + Group: 'RightHandThumb2', Weight: 0.578127 + Group: 'RightHandIndex1', Weight: 0.093343 +Vertex 3445: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.861253 + Group: 'RightHandThumb2', Weight: 0.106813 +Vertex 3446: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.849842 + Group: 'RightHandThumb2', Weight: 0.136973 +Vertex 3447: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.015971 + Group: 'RightHandThumb1', Weight: 0.158447 + Group: 'RightHandThumb2', Weight: 0.070196 + Group: 'RightHandIndex1', Weight: 0.729664 +Vertex 3448: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.296808 + Group: 'RightHandThumb2', Weight: 0.306204 + Group: 'RightHandIndex1', Weight: 0.368761 +Vertex 3449: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.898516 + Group: 'RightHandThumb2', Weight: 0.047296 + Group: 'RightHandIndex1', Weight: 0.016061 +Vertex 3450: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.925440 + Group: 'RightHandThumb2', Weight: 0.036668 +Vertex 3451: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.133809 + Group: 'RightHandThumb1', Weight: 0.828825 +Vertex 3452: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.118684 + Group: 'RightHandThumb1', Weight: 0.845302 +Vertex 3453: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.100382 + Group: 'RightHandThumb1', Weight: 0.864988 +Vertex 3454: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.117107 + Group: 'RightHandThumb1', Weight: 0.104247 + Group: 'RightHandIndex1', Weight: 0.747459 +Vertex 3455: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.729893 + Group: 'RightHandIndex1', Weight: 0.025970 + Group: 'RightHandMiddle1', Weight: 0.174172 + Group: 'RightHandRing1', Weight: 0.025845 +Vertex 3456: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.805793 + Group: 'RightHandMiddle1', Weight: 0.080892 + Group: 'RightHandRing1', Weight: 0.060197 + Group: 'RightHandPinky1', Weight: 0.021067 +Vertex 3457: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.822304 + Group: 'RightHandPinky1', Weight: 0.123250 +Vertex 3458: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.325876 + Group: 'RightHandRing1', Weight: 0.052340 + Group: 'RightHandPinky1', Weight: 0.607184 +Vertex 3459: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.121169 + Group: 'RightHandRing1', Weight: 0.141009 + Group: 'RightHandPinky1', Weight: 0.723540 +Vertex 3460: +Vertex groups: 1 + Group: 'RightHandPinky1', Weight: 0.954184 +Vertex 3461: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.060755 + Group: 'RightHandPinky1', Weight: 0.928209 +Vertex 3462: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.050538 + Group: 'RightHandThumb1', Weight: 0.842678 + Group: 'RightHandThumb2', Weight: 0.013631 + Group: 'RightHandIndex1', Weight: 0.070817 +Vertex 3463: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.664517 + Group: 'RightHandThumb2', Weight: 0.278318 + Group: 'RightHandIndex1', Weight: 0.039160 +Vertex 3464: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.000826 + Group: 'RightHandThumb1', Weight: 0.663989 + Group: 'RightHandThumb2', Weight: 0.148667 + Group: 'RightHandIndex1', Weight: 0.156142 +Vertex 3465: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.238449 + Group: 'RightHandThumb1', Weight: 0.510821 + Group: 'RightHandIndex1', Weight: 0.221842 +Vertex 3466: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.095601 + Group: 'RightHandThumb1', Weight: 0.836123 + Group: 'RightHandIndex1', Weight: 0.048642 +Vertex 3467: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.053477 + Group: 'RightHandThumb1', Weight: 0.908789 +Vertex 3468: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.040252 + Group: 'RightHandThumb1', Weight: 0.919083 +Vertex 3469: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.605274 + Group: 'RightHandThumb1', Weight: 0.244996 + Group: 'RightHandIndex1', Weight: 0.130784 +Vertex 3470: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.879772 + Group: 'RightHandThumb1', Weight: 0.089896 +Vertex 3471: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.277821 + Group: 'RightHandThumb1', Weight: 0.667522 + Group: 'RightHandIndex1', Weight: 0.019248 +Vertex 3472: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.037082 + Group: 'RightHand', Weight: 0.641269 + Group: 'RightHandThumb1', Weight: 0.299622 +Vertex 3473: +Vertex groups: 1 + Group: 'RightHand', Weight: 0.937477 +Vertex 3474: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.917851 + Group: 'RightHandPinky1', Weight: 0.063069 +Vertex 3475: +Vertex groups: 1 + Group: 'RightHand', Weight: 0.966304 +Vertex 3476: +Vertex groups: 1 + Group: 'RightHand', Weight: 0.967151 +Vertex 3477: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.051251 + Group: 'RightHand', Weight: 0.931143 +Vertex 3478: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.945541 + Group: 'RightHandPinky1', Weight: 0.007724 +Vertex 3479: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.319682 + Group: 'RightHandPinky1', Weight: 0.658581 +Vertex 3480: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.038546 + Group: 'RightHand', Weight: 0.724520 + Group: 'RightHandPinky1', Weight: 0.221661 +Vertex 3481: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.727416 + Group: 'RightHandPinky1', Weight: 0.245547 +Vertex 3482: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.029866 + Group: 'RightHand', Weight: 0.856000 + Group: 'RightHandPinky1', Weight: 0.097029 +Vertex 3483: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.131350 + Group: 'RightHand', Weight: 0.826255 + Group: 'RightHandPinky1', Weight: 0.027222 +Vertex 3484: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.083765 + Group: 'RightHand', Weight: 0.796392 + Group: 'RightHandPinky1', Weight: 0.112437 +Vertex 3485: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.068230 + Group: 'RightHand', Weight: 0.800761 + Group: 'RightHandPinky1', Weight: 0.116744 +Vertex 3486: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.028292 + Group: 'RightHand', Weight: 0.699318 + Group: 'RightHandPinky1', Weight: 0.242274 +Vertex 3487: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.273448 + Group: 'RightHandPinky1', Weight: 0.692671 +Vertex 3488: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.071239 + Group: 'RightHandPinky1', Weight: 0.902174 +Vertex 3489: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.058105 + Group: 'RightHandPinky1', Weight: 0.927626 +Vertex 3490: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.273575 + Group: 'RightHandPinky1', Weight: 0.701305 +Vertex 3491: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.034651 + Group: 'RightHand', Weight: 0.704525 + Group: 'RightHandPinky1', Weight: 0.240815 +Vertex 3492: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.077046 + Group: 'RightHand', Weight: 0.794623 + Group: 'RightHandPinky1', Weight: 0.119120 +Vertex 3493: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.110417 + Group: 'RightHand', Weight: 0.804645 + Group: 'RightHandPinky1', Weight: 0.076447 +Vertex 3494: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.088046 + Group: 'RightHand', Weight: 0.829995 + Group: 'RightHandPinky1', Weight: 0.071199 +Vertex 3495: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.071046 + Group: 'RightHand', Weight: 0.835850 + Group: 'RightHandPinky1', Weight: 0.075439 +Vertex 3496: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.056429 + Group: 'RightHand', Weight: 0.803200 + Group: 'RightHandPinky1', Weight: 0.118064 +Vertex 3497: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.020274 + Group: 'RightHand', Weight: 0.709863 + Group: 'RightHandPinky1', Weight: 0.224651 +Vertex 3498: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.293518 + Group: 'RightHandPinky1', Weight: 0.660005 +Vertex 3499: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.087469 + Group: 'RightHandPinky1', Weight: 0.870542 +Vertex 3500: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.288180 + Group: 'RightHandThumb1', Weight: 0.030912 + Group: 'RightHandPinky1', Weight: 0.636083 +Vertex 3501: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.003452 + Group: 'RightHand', Weight: 0.696306 + Group: 'RightHandThumb1', Weight: 0.038858 + Group: 'RightHandPinky1', Weight: 0.220419 +Vertex 3502: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.037361 + Group: 'RightHand', Weight: 0.799634 + Group: 'RightHandThumb1', Weight: 0.019761 + Group: 'RightHandPinky1', Weight: 0.114829 +Vertex 3503: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.109214 + Group: 'RightHandRing1', Weight: 0.032467 + Group: 'RightHandPinky1', Weight: 0.806256 +Vertex 3504: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.021766 + Group: 'RightHand', Weight: 0.813388 + Group: 'RightHandThumb1', Weight: 0.069484 + Group: 'RightHandPinky1', Weight: 0.071738 +Vertex 3505: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.018719 + Group: 'RightHand', Weight: 0.781055 + Group: 'RightHandThumb1', Weight: 0.145462 + Group: 'RightHandPinky1', Weight: 0.010294 +Vertex 3506: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.706825 + Group: 'RightHandThumb1', Weight: 0.099370 + Group: 'RightHandPinky1', Weight: 0.151674 +Vertex 3507: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.630791 + Group: 'RightHandThumb1', Weight: 0.278906 + Group: 'RightHandPinky1', Weight: 0.052742 +Vertex 3508: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.521914 + Group: 'RightHandThumb1', Weight: 0.117625 + Group: 'RightHandRing1', Weight: 0.036244 + Group: 'RightHandPinky1', Weight: 0.290818 +Vertex 3509: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.503894 + Group: 'RightHandThumb1', Weight: 0.315489 + Group: 'RightHandRing1', Weight: 0.003661 + Group: 'RightHandPinky1', Weight: 0.105771 +Vertex 3510: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.763258 + Group: 'RightHandThumb2', Weight: 0.218257 +Vertex 3511: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.903306 + Group: 'RightHandThumb2', Weight: 0.065753 +Vertex 3512: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.036571 + Group: 'RightHandThumb1', Weight: 0.912805 + Group: 'RightHandThumb2', Weight: 0.013482 +Vertex 3513: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.084218 + Group: 'RightHandThumb1', Weight: 0.875193 +Vertex 3514: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.021499 + Group: 'RightHandThumb1', Weight: 0.854671 + Group: 'RightHandThumb2', Weight: 0.080396 +Vertex 3515: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.039629 + Group: 'RightHandThumb1', Weight: 0.901150 + Group: 'RightHandThumb2', Weight: 0.029766 +Vertex 3516: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.864977 + Group: 'RightHandThumb2', Weight: 0.093698 +Vertex 3517: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.732472 + Group: 'RightHandThumb2', Weight: 0.235897 +Vertex 3518: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.864762 + Group: 'RightHandThumb3_end', Weight: 0.129316 +Vertex 3519: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.823955 + Group: 'RightHandThumb3_end', Weight: 0.155112 +Vertex 3520: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.821628 + Group: 'RightHandThumb3_end', Weight: 0.151244 +Vertex 3521: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.818647 + Group: 'RightHandThumb3_end', Weight: 0.162968 +Vertex 3522: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.844685 + Group: 'RightHandThumb3_end', Weight: 0.143070 +Vertex 3523: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.851677 + Group: 'RightHandThumb3_end', Weight: 0.142808 +Vertex 3524: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.885627 + Group: 'RightHandThumb3_end', Weight: 0.108930 +Vertex 3525: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.989758 +Vertex 3526: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.854525 + Group: 'RightHandThumb3_end', Weight: 0.130772 +Vertex 3527: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.011436 + Group: 'RightHandThumb3_end', Weight: 0.968906 +Vertex 3528: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.055316 + Group: 'RightHandThumb3_end', Weight: 0.943761 +Vertex 3529: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.068436 + Group: 'RightHandThumb3_end', Weight: 0.929990 +Vertex 3530: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.065354 + Group: 'RightHandThumb3_end', Weight: 0.932802 +Vertex 3531: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.061384 + Group: 'RightHandThumb3_end', Weight: 0.937139 +Vertex 3532: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.048164 + Group: 'RightHandThumb3_end', Weight: 0.950302 +Vertex 3533: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.054960 + Group: 'RightHandThumb3_end', Weight: 0.944023 +Vertex 3534: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998594 +Vertex 3535: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997753 +Vertex 3536: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997188 +Vertex 3537: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.996246 +Vertex 3538: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.996891 +Vertex 3539: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997027 +Vertex 3540: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998509 +Vertex 3541: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998069 +Vertex 3542: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998002 +Vertex 3543: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.982087 +Vertex 3544: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.981536 +Vertex 3545: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.984963 +Vertex 3546: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.992677 +Vertex 3547: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.988404 +Vertex 3548: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998419 +Vertex 3549: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.983785 +Vertex 3550: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.985286 +Vertex 3551: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.993083 +Vertex 3552: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.993710 +Vertex 3553: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997114 +Vertex 3554: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.993962 +Vertex 3555: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.995046 +Vertex 3556: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.991406 +Vertex 3557: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.996365 +Vertex 3558: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998950 +Vertex 3559: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.124207 + Group: 'RightHandThumb3_end', Weight: 0.874674 +Vertex 3560: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.189699 + Group: 'RightHandThumb3_end', Weight: 0.807387 +Vertex 3561: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.205965 + Group: 'RightHandThumb3_end', Weight: 0.789329 +Vertex 3562: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.202287 + Group: 'RightHandThumb3_end', Weight: 0.791562 +Vertex 3563: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.193243 + Group: 'RightHandThumb3_end', Weight: 0.801977 +Vertex 3564: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.180388 + Group: 'RightHandThumb3_end', Weight: 0.816330 +Vertex 3565: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.122719 + Group: 'RightHandThumb3_end', Weight: 0.876110 +Vertex 3566: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.085607 + Group: 'RightHandThumb3_end', Weight: 0.913790 +Vertex 3567: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.068443 + Group: 'RightHandThumb3', Weight: 0.918781 +Vertex 3568: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.098771 + Group: 'RightHandThumb3', Weight: 0.856921 +Vertex 3569: +Vertex groups: 3 + Group: 'RightHandThumb2', Weight: 0.115821 + Group: 'RightHandThumb3', Weight: 0.839229 + Group: 'RightHandThumb3_end', Weight: 0.009763 +Vertex 3570: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.100933 + Group: 'RightHandThumb3', Weight: 0.868889 +Vertex 3571: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.083499 + Group: 'RightHandThumb3', Weight: 0.893184 +Vertex 3572: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.055231 + Group: 'RightHandThumb3', Weight: 0.927931 +Vertex 3573: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.066824 + Group: 'RightHandThumb3', Weight: 0.923192 +Vertex 3574: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.089578 + Group: 'RightHandThumb3', Weight: 0.881430 +Vertex 3575: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.003967 + Group: 'RightHandThumb2', Weight: 0.831957 + Group: 'RightHandThumb3', Weight: 0.118254 +Vertex 3576: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.067540 + Group: 'RightHandThumb2', Weight: 0.675652 + Group: 'RightHandThumb3', Weight: 0.144023 + Group: 'RightHandIndex1', Weight: 0.096693 +Vertex 3577: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.056422 + Group: 'RightHandThumb2', Weight: 0.747816 + Group: 'RightHandThumb3', Weight: 0.157329 + Group: 'RightHandIndex1', Weight: 0.004420 +Vertex 3578: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.072603 + Group: 'RightHandThumb2', Weight: 0.786070 + Group: 'RightHandThumb3', Weight: 0.125886 +Vertex 3579: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.061902 + Group: 'RightHandThumb2', Weight: 0.809954 + Group: 'RightHandThumb3', Weight: 0.120685 +Vertex 3580: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.019340 + Group: 'RightHandThumb2', Weight: 0.854457 + Group: 'RightHandThumb3', Weight: 0.107009 +Vertex 3581: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.004348 + Group: 'RightHandThumb2', Weight: 0.889260 + Group: 'RightHandThumb3', Weight: 0.078144 +Vertex 3582: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.059626 + Group: 'RightHandThumb2', Weight: 0.723975 + Group: 'RightHandThumb3', Weight: 0.116657 + Group: 'RightHandIndex1', Weight: 0.091924 +Vertex 3583: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.106604 + Group: 'RightHandThumb2', Weight: 0.715393 + Group: 'RightHandThumb3', Weight: 0.054050 + Group: 'RightHandIndex1', Weight: 0.117813 +Vertex 3584: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.107820 + Group: 'RightHandThumb2', Weight: 0.816793 + Group: 'RightHandThumb3', Weight: 0.013712 + Group: 'RightHandIndex1', Weight: 0.030993 +Vertex 3585: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.168662 + Group: 'RightHandThumb2', Weight: 0.806558 +Vertex 3586: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.175173 + Group: 'RightHandThumb2', Weight: 0.791229 + Group: 'RightHandThumb3', Weight: 0.007579 +Vertex 3587: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.239744 + Group: 'RightHandThumb2', Weight: 0.711205 + Group: 'RightHandThumb3', Weight: 0.027322 +Vertex 3588: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.261959 + Group: 'RightHandThumb2', Weight: 0.667991 + Group: 'RightHandThumb3', Weight: 0.036914 +Vertex 3589: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.220921 + Group: 'RightHandThumb2', Weight: 0.639753 + Group: 'RightHandThumb3', Weight: 0.038866 + Group: 'RightHandIndex1', Weight: 0.067851 +Vertex 3590: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.172672 + Group: 'RightHandThumb2', Weight: 0.582070 + Group: 'RightHandThumb3', Weight: 0.058220 + Group: 'RightHandIndex1', Weight: 0.150624 +Vertex 3591: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.449185 + Group: 'RightHandThumb1', Weight: 0.292611 + Group: 'RightHand', Weight: 0.102831 + Group: 'RightHandThumb2', Weight: 0.093809 + Group: 'RightHandMiddle1', Weight: 0.061564 +Vertex 3592: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.046565 + Group: 'RightHandThumb1', Weight: 0.453546 + Group: 'RightHandThumb2', Weight: 0.218287 + Group: 'RightHandIndex1', Weight: 0.203234 +Vertex 3593: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.655542 + Group: 'RightHandThumb2', Weight: 0.292867 +Vertex 3594: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.004844 + Group: 'RightHandThumb1', Weight: 0.703324 + Group: 'RightHandThumb2', Weight: 0.200333 + Group: 'RightHandIndex1', Weight: 0.025629 +Vertex 3595: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.470979 + Group: 'RightHandThumb1', Weight: 0.178885 + Group: 'RightHandPinky1', Weight: 0.127973 + Group: 'RightHandRing1', Weight: 0.113473 + Group: 'RightHandIndex1', Weight: 0.108690 +Vertex 3596: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.659814 + Group: 'RightHandMiddle1', Weight: 0.154601 + Group: 'RightHandThumb1', Weight: 0.067673 + Group: 'RightHandThumb2', Weight: 0.063789 + Group: 'RightHandRing1', Weight: 0.054124 +Vertex 3597: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.490805 + Group: 'RightHandMiddle1', Weight: 0.179422 + Group: 'RightHandThumb1', Weight: 0.122051 + Group: 'RightHand', Weight: 0.107901 + Group: 'RightHandRing1', Weight: 0.099821 +Vertex 3598: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.359158 + Group: 'RightHandRing1', Weight: 0.273928 + Group: 'RightHandIndex1', Weight: 0.212469 + Group: 'RightHand', Weight: 0.092965 + Group: 'RightHandPinky1', Weight: 0.061481 +Vertex 3599: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.363508 + Group: 'RightHandMiddle1', Weight: 0.360202 + Group: 'RightHandRing1', Weight: 0.141948 + Group: 'RightHand', Weight: 0.069681 + Group: 'RightHandThumb1', Weight: 0.064660 +Vertex 3600: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.460011 + Group: 'RightHandIndex1', Weight: 0.269636 + Group: 'RightHandRing1', Weight: 0.207149 + Group: 'RightHand', Weight: 0.031874 + Group: 'RightHandPinky1', Weight: 0.031330 +Vertex 3601: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.435352 + Group: 'RightHandIndex1', Weight: 0.426827 + Group: 'RightHandRing1', Weight: 0.108948 + Group: 'RightHandMiddle2', Weight: 0.014907 + Group: 'RightHandThumb1', Weight: 0.013967 +Vertex 3602: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.426935 + Group: 'RightHandRing1', Weight: 0.332098 + Group: 'RightHandIndex1', Weight: 0.138369 + Group: 'RightHandPinky1', Weight: 0.067938 + Group: 'RightHand', Weight: 0.034660 +Vertex 3603: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.543471 + Group: 'RightHandMiddle1', Weight: 0.203372 + Group: 'RightHandPinky1', Weight: 0.131823 + Group: 'RightHandRing2', Weight: 0.063285 + Group: 'RightHandIndex1', Weight: 0.058049 +Vertex 3604: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.453022 + Group: 'RightHandMiddle1', Weight: 0.291956 + Group: 'RightHandRing2', Weight: 0.088754 + Group: 'RightHandPinky1', Weight: 0.087721 + Group: 'RightHandIndex1', Weight: 0.078547 +Vertex 3605: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.471974 + Group: 'RightHandMiddle1', Weight: 0.215999 + Group: 'RightHandIndex1', Weight: 0.114414 + Group: 'RightHand', Weight: 0.106325 + Group: 'RightHandPinky1', Weight: 0.091288 +Vertex 3606: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.449307 + Group: 'RightHandPinky1', Weight: 0.315428 + Group: 'RightHand', Weight: 0.177896 + Group: 'RightHandThumb1', Weight: 0.040682 + Group: 'RightHandMiddle1', Weight: 0.016686 +Vertex 3607: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.344326 + Group: 'RightHandRing1', Weight: 0.310986 + Group: 'RightHandPinky1', Weight: 0.161033 + Group: 'RightHandMiddle1', Weight: 0.094813 + Group: 'RightHandThumb1', Weight: 0.088842 +Vertex 3608: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.222607 + Group: 'RightHandThumb1', Weight: 0.063315 + Group: 'RightHandIndex1', Weight: 0.006114 + Group: 'RightHandRing1', Weight: 0.170860 + Group: 'RightHandPinky1', Weight: 0.476880 +Vertex 3609: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.085019 + Group: 'RightHandRing1', Weight: 0.110588 + Group: 'RightHandPinky1', Weight: 0.738591 +Vertex 3610: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.045148 + Group: 'RightHandRing1', Weight: 0.144519 + Group: 'RightHandPinky1', Weight: 0.733625 + Group: 'RightHandPinky2', Weight: 0.014988 +Vertex 3611: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.612895 + Group: 'RightHandPinky1', Weight: 0.221458 + Group: 'RightHandMiddle1', Weight: 0.093594 + Group: 'RightHandPinky2', Weight: 0.049486 + Group: 'RightHandRing2', Weight: 0.022567 +Vertex 3612: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.040750 + Group: 'RightHandRing1', Weight: 0.461278 + Group: 'RightHandRing2', Weight: 0.004403 + Group: 'RightHandPinky1', Weight: 0.334998 + Group: 'RightHandPinky2', Weight: 0.071881 +Vertex 3613: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.215036 + Group: 'RightHandPinky1', Weight: 0.609777 + Group: 'RightHandPinky2', Weight: 0.098684 +Vertex 3614: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.081934 + Group: 'RightHandIndex1', Weight: 0.023567 + Group: 'RightHandMiddle1', Weight: 0.064237 + Group: 'RightHandRing1', Weight: 0.564962 + Group: 'RightHandPinky1', Weight: 0.192087 +Vertex 3615: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.051358 + Group: 'RightHandMiddle1', Weight: 0.036695 + Group: 'RightHandRing1', Weight: 0.488272 + Group: 'RightHandPinky1', Weight: 0.323746 + Group: 'RightHandPinky2', Weight: 0.017016 +Vertex 3616: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3617: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3618: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3619: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3620: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3621: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3622: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3623: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3624: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3625: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3626: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3627: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3628: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3629: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3630: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3631: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3632: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3633: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3634: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3635: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3636: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3637: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3638: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3639: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3640: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3641: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3642: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3643: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3644: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3645: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3646: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3647: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3648: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3649: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3650: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3651: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3652: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999977 + Group: 'Head_end', Weight: 0.000000 +Vertex 3653: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999926 + Group: 'Head_end', Weight: 0.000000 +Vertex 3654: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3655: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3656: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3657: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3658: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3659: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3660: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3661: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3662: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3663: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3664: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3665: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3666: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3667: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3668: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3669: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999982 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3670: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999993 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3671: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3672: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3673: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3674: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3675: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3676: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3677: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3678: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999951 + Group: 'Head_end', Weight: 0.000000 +Vertex 3679: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3680: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3681: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3682: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3683: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3684: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3685: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3686: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999984 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3687: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3688: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3689: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3690: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3691: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3692: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3693: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3694: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3695: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3696: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3697: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3698: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3699: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3700: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3701: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3702: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3703: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3704: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3705: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3706: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3707: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3708: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3709: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3710: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3711: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3712: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3713: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3714: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3715: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3716: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3717: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3718: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3719: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3720: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3721: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3722: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3723: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3724: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3725: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3726: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3727: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3728: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3729: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3730: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3731: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3732: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3733: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3734: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3735: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3736: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3737: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3738: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3739: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3740: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3741: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3742: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3743: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3744: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3745: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3746: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3747: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3748: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3749: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3750: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3751: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3752: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3753: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3754: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999886 + Group: 'Head_end', Weight: 0.000000 +Vertex 3755: +Vertex groups: 4 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999973 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3756: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3757: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3758: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3759: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3760: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3761: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999995 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3762: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3763: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3764: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3765: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3766: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3767: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3768: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3769: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3770: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3771: +Vertex groups: 4 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999939 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3772: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999997 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3773: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3774: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3775: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3776: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3777: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3778: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3779: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3780: +Vertex groups: 3 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999799 + Group: 'Head_end', Weight: 0.000000 +Vertex 3781: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3782: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3783: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3784: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3785: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3786: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3787: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3788: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999986 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3789: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3790: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3791: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3792: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3793: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3794: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3795: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3796: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3797: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3798: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3799: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3800: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3801: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3802: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3803: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3804: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3805: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3806: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3807: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3808: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3809: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3810: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3811: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3812: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3813: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3814: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3815: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3816: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3817: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3818: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3819: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3820: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3821: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3822: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3823: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3824: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3825: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3826: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3827: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3828: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3829: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3830: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3831: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 3832: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3833: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3834: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3835: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3836: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3837: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3838: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3839: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3840: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3841: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3842: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3843: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3844: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3845: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3846: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3847: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3848: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3849: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3850: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3851: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3852: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3853: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3854: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3855: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3856: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3857: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3858: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3859: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3860: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3861: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3862: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3863: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3864: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3865: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3866: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3867: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3868: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3869: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3870: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3871: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3872: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3873: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3874: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3875: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3876: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3877: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3878: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3879: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3880: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3881: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3882: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3883: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3884: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3885: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3886: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3887: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3888: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3889: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3890: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3891: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3892: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3893: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3894: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3895: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3896: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3897: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3898: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3899: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3900: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3901: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3902: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3903: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3904: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3905: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3906: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3907: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3908: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3909: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3910: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3911: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3912: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 3913: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3914: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3915: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3916: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3917: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3918: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3919: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3920: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3921: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3922: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3923: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3924: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3925: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3926: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3927: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3928: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3929: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3930: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3931: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3932: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3933: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3934: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3935: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3936: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3937: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3938: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3939: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3940: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3941: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3942: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3943: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3944: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3945: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3946: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3947: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3948: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3949: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3950: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3951: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3952: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3953: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3954: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3955: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3956: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3957: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3958: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3959: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3960: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3961: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3962: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3963: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3964: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3965: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3966: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3967: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3968: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3969: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3970: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3971: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3972: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3973: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3974: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3975: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3976: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3977: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3978: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3979: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3980: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3981: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3982: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3983: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3984: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3985: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3986: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3987: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3988: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3989: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3990: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 3991: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3992: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3993: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3994: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3995: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3996: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3997: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3998: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 3999: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4000: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4001: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4002: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4003: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4004: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4005: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4006: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4007: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4008: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4009: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4010: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4011: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4012: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4013: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4014: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4015: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4016: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4017: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4018: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4019: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4020: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4021: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4022: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4023: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4024: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4025: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4026: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4027: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4028: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4029: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4030: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4031: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4032: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4033: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4034: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4035: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4036: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4037: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4038: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4039: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4040: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4041: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4042: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4043: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4044: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4045: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4046: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4047: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4048: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4049: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4050: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4051: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4052: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4053: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4054: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4055: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4056: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4057: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4058: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4059: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4060: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4061: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4062: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4063: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999964 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4064: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4065: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4066: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4067: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4068: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4069: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4070: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4071: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4072: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4073: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4074: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4075: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4076: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4077: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4078: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4079: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999984 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4080: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4081: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4082: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4083: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999971 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4084: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4085: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4086: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999995 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4087: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4088: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4089: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4090: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4091: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4092: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4093: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4094: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999999 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4095: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4096: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4097: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4098: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4099: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4100: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4101: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4102: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4103: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4104: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4105: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4106: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4107: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4108: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4109: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4110: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4111: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4112: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4113: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4114: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4115: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4116: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4117: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4118: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4119: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4120: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4121: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4122: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4123: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4124: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4125: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4126: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4127: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4128: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4129: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4130: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4131: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4132: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4133: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4134: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4135: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4136: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4137: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4138: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4139: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4140: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4141: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4142: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4143: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4144: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4145: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4146: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4147: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4148: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4149: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4150: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4151: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4152: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4153: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4154: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4155: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4156: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4157: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4158: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4159: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4160: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4161: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4162: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4163: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4164: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4165: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4166: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4167: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4168: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4169: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4170: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4171: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4172: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4173: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4174: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4175: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4176: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4177: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4178: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4179: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4180: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4181: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 0.999994 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightArm', Weight: 0.000000 +Vertex 4182: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4183: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4184: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4185: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4186: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4187: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4188: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4189: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4190: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4191: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4192: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4193: +Vertex groups: 5 + Group: 'Neck', Weight: 0.000000 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4194: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4195: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4196: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4197: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4198: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4199: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4200: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4201: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4202: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4203: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4204: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4205: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4206: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4207: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4208: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4209: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4210: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4211: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4212: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4213: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4214: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4215: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4216: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4217: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4218: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4219: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4220: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4221: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4222: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4223: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4224: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4225: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4226: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 4227: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4228: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4229: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4230: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4231: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4232: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4233: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4234: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4235: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4236: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4237: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4238: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4239: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4240: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4241: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4242: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4243: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4244: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4245: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4246: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4247: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4248: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4249: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4250: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4251: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4252: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4253: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4254: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4255: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4256: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4257: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4258: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4259: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4260: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4261: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4262: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4263: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4264: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4265: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4266: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4267: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4268: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4269: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4270: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4271: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4272: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4273: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4274: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4275: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4276: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4277: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4278: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4279: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4280: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4281: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4282: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4283: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4284: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4285: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4286: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4287: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4288: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4289: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4290: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4291: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4292: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4293: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4294: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4295: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4296: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4297: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4298: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4299: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4300: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4301: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4302: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4303: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4304: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4305: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4306: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4307: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4308: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4309: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4310: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4311: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4312: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4313: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4314: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4315: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4316: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4317: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4318: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4319: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4320: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4321: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4322: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4323: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4324: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4325: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4326: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4327: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4328: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4329: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4330: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4331: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4332: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4333: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4334: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4335: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4336: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4337: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4338: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4339: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4340: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4341: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4342: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4343: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4344: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4345: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4346: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4347: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4348: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4349: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4350: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4351: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4352: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4353: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4354: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4355: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4356: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4357: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4358: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4359: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4360: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4361: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4362: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4363: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4364: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4365: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4366: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4367: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4368: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4369: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4370: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4371: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4372: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4373: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4374: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4375: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4376: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4377: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4378: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4379: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4380: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4381: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4382: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4383: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4384: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4385: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4386: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4387: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4388: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4389: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4390: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4391: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4392: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4393: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4394: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4395: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4396: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4397: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4398: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4399: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4400: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4401: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4402: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4403: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4404: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4405: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4406: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4407: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4408: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4409: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4410: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4411: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4412: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4413: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4414: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4415: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4416: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4417: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4418: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4419: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4420: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4421: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4422: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4423: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4424: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4425: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4426: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4427: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4428: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4429: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4430: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4431: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4432: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4433: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4434: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4435: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4436: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4437: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4438: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4439: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4440: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4441: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4442: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4443: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4444: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4445: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4446: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4447: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4448: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4449: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4450: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4451: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4452: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4453: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4454: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4455: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4456: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4457: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4458: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4459: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4460: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4461: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4462: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4463: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4464: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4465: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4466: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4467: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4468: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4469: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4470: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4471: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4472: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4473: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4474: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4475: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4476: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4477: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4478: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4479: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4480: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4481: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4482: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4483: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4484: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4485: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4486: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4487: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4488: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4489: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4490: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4491: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4492: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4493: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4494: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4495: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4496: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4497: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4498: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4499: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4500: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4501: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4502: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4503: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4504: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4505: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4506: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4507: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4508: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4509: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4510: +Vertex groups: 5 + Group: 'Head', Weight: 0.999861 + Group: 'Spine2', Weight: 0.000139 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4511: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4512: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4513: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4514: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4515: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4516: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4517: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4518: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4519: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4520: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4521: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4522: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4523: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4524: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4525: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4526: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4527: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4528: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4529: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4530: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4531: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4532: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4533: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4534: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4535: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4536: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4537: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4538: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4539: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4540: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4541: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4542: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4543: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4544: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4545: +Vertex groups: 5 + Group: 'Head', Weight: 0.999380 + Group: 'RightShoulder', Weight: 0.000620 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4546: +Vertex groups: 5 + Group: 'Head', Weight: 0.999557 + Group: 'RightShoulder', Weight: 0.000443 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4547: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4548: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4549: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4550: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4551: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4552: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4553: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4554: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4555: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4556: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4557: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4558: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4559: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4560: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4561: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4562: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4563: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4564: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4565: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4566: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4567: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4568: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4569: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4570: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4571: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4572: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4573: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4574: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4575: +Vertex groups: 5 + Group: 'Head', Weight: 0.999831 + Group: 'RightShoulder', Weight: 0.000169 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4576: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4577: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4578: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4579: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4580: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4581: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4582: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4583: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4584: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4585: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4586: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4587: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4588: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4589: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4590: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4591: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4592: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4593: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4594: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4595: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4596: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4597: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4598: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4599: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4600: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4601: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4602: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4603: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4604: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4605: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4606: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4607: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4608: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4609: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4610: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4611: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4612: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4613: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4614: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4615: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4616: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4617: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4618: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4619: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4620: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4621: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4622: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4623: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4624: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4625: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4626: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4627: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4628: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4629: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4630: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4631: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4632: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4633: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4634: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4635: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4636: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4637: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4638: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4639: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4640: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4641: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4642: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4643: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4644: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4645: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4646: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4647: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4648: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4649: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4650: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4651: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4652: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4653: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4654: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4655: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4656: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4657: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4658: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4659: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4660: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4661: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4662: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4663: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4664: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4665: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4666: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4667: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4668: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4669: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4670: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4671: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4672: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4673: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4674: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4675: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4676: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4677: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4678: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4679: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4680: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4681: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4682: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4683: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4684: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4685: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4686: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4687: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4688: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4689: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4690: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4691: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4692: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4693: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4694: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4695: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4696: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4697: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4698: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4699: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4700: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4701: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4702: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4703: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4704: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4705: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4706: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4707: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4708: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4709: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4710: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4711: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4712: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4713: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4714: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4715: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4716: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4717: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4718: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4719: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4720: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4721: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4722: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4723: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4724: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4725: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4726: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4727: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4728: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4729: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4730: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4731: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4732: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4733: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4734: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4735: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4736: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4737: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4738: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4739: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4740: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4741: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4742: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4743: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4744: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4745: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4746: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4747: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4748: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4749: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4750: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4751: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4752: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4753: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4754: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4755: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4756: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4757: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4758: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4759: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4760: +Vertex groups: 5 + Group: 'Head', Weight: 0.999857 + Group: 'Spine2', Weight: 0.000143 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4761: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4762: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4763: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4764: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4765: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4766: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4767: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4768: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4769: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4770: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4771: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4772: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4773: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4774: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4775: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4776: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 4777: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4778: +Vertex groups: 5 + Group: 'Head', Weight: 0.999834 + Group: 'RightShoulder', Weight: 0.000166 + Group: 'Spine2', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4779: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4780: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4781: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4782: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4783: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4784: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4785: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4786: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4787: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4788: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4789: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4790: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4791: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4792: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4793: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4794: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 +Vertex 4795: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4796: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4797: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4798: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4799: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4800: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4801: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4802: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4803: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4804: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4805: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4806: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4807: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4808: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4809: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4810: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4811: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4812: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4813: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4814: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4815: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4816: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4817: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4818: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4819: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4820: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4821: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4822: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4823: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4824: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4825: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4826: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4827: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4828: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4829: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4830: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4831: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4832: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4833: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4834: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4835: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4836: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4837: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4838: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4839: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4840: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4841: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4842: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4843: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4844: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4845: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4846: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4847: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4848: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4849: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4850: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4851: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4852: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4853: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4854: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4855: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4856: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4857: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4858: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4859: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4860: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4861: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4862: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4863: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4864: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4865: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4866: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4867: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4868: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4869: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4870: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4871: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4872: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4873: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4874: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4875: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4876: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4877: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4878: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4879: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4880: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4881: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4882: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4883: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4884: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4885: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4886: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4887: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4888: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4889: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4890: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4891: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4892: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4893: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4894: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4895: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4896: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4897: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4898: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4899: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4900: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4901: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4902: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4903: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4904: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4905: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4906: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4907: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4908: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4909: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4910: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4911: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4912: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4913: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4914: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4915: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4916: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4917: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4918: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4919: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4920: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4921: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4922: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4923: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4924: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4925: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4926: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4927: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4928: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4929: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4930: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4931: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4932: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4933: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4934: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4935: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4936: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4937: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4938: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4939: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4940: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4941: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4942: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4943: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4944: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4945: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4946: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4947: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4948: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4949: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4950: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4951: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4952: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4953: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4954: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4955: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4956: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4957: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4958: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4959: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4960: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4961: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4962: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4963: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4964: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4965: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4966: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4967: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4968: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4969: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4970: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4971: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4972: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4973: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4974: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4975: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4976: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4977: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4978: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4979: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4980: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4981: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4982: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4983: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4984: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4985: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4986: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4987: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4988: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4989: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4990: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4991: +Vertex groups: 5 + Group: 'Head', Weight: 0.999614 + Group: 'LeftShoulder', Weight: 0.000386 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4992: +Vertex groups: 5 + Group: 'Head', Weight: 0.999833 + Group: 'LeftShoulder', Weight: 0.000167 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4993: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4994: +Vertex groups: 5 + Group: 'Head', Weight: 0.999065 + Group: 'LeftShoulder', Weight: 0.000935 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4995: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4996: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4997: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4998: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 4999: +Vertex groups: 5 + Group: 'Head', Weight: 0.995169 + Group: 'LeftShoulder', Weight: 0.004831 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5000: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5001: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5002: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5003: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5004: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5005: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5006: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5007: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5008: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5009: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5010: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5011: +Vertex groups: 5 + Group: 'Head', Weight: 0.999879 + Group: 'LeftShoulder', Weight: 0.000121 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5012: +Vertex groups: 5 + Group: 'Head', Weight: 0.999764 + Group: 'LeftShoulder', Weight: 0.000236 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5013: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5014: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5015: +Vertex groups: 5 + Group: 'Head', Weight: 0.953550 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 5016: +Vertex groups: 5 + Group: 'Head', Weight: 0.999768 + Group: 'LeftShoulder', Weight: 0.000232 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5017: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5018: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5019: +Vertex groups: 5 + Group: 'Head', Weight: 0.997823 + Group: 'LeftShoulder', Weight: 0.002177 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5020: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5021: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5022: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5023: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5024: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5025: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5026: +Vertex groups: 5 + Group: 'Head', Weight: 0.999840 + Group: 'LeftShoulder', Weight: 0.000160 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5027: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5028: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5029: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5030: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5031: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5032: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5033: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5034: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5035: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5036: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5037: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5038: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5039: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5040: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5041: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5042: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5043: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5044: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5045: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5046: +Vertex groups: 5 + Group: 'Head', Weight: 0.991966 + Group: 'LeftShoulder', Weight: 0.008034 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5047: +Vertex groups: 5 + Group: 'Head', Weight: 0.995661 + Group: 'LeftShoulder', Weight: 0.004339 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5048: +Vertex groups: 5 + Group: 'Head', Weight: 0.994015 + Group: 'LeftShoulder', Weight: 0.005985 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5049: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5050: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5051: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5052: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5053: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5054: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5055: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5056: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5057: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5058: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5059: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5060: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5061: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5062: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5063: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5064: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5065: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5066: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5067: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5068: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5069: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5070: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5071: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5072: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5073: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5074: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5075: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5076: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5077: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 + Group: 'LeftArm', Weight: 0.000000 +Vertex 5078: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5079: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5080: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5081: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5082: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5083: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5084: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5085: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5086: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5087: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5088: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5089: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5090: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5091: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5092: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5093: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5094: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5095: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5096: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5097: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5098: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5099: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5100: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5101: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5102: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5103: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5104: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5105: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5106: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5107: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5108: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5109: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5110: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5111: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5112: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5113: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5114: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5115: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5116: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5117: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5118: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5119: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5120: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5121: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5122: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5123: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5124: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5125: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5126: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5127: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5128: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5129: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5130: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5131: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5132: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5133: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5134: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5135: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5136: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5137: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5138: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5139: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5140: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5141: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5142: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5143: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5144: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5145: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5146: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5147: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5148: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5149: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5150: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5151: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5152: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5153: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5154: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5155: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5156: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5157: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5158: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5159: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5160: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5161: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5162: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5163: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5164: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5165: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5166: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5167: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5168: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5169: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5170: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5171: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5172: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5173: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5174: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5175: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5176: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5177: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5178: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5179: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5180: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5181: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5182: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5183: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5184: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5185: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5186: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5187: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5188: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5189: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5190: +Vertex groups: 5 + Group: 'Hips', Weight: 0.485923 + Group: 'Spine', Weight: 0.284869 + Group: 'Spine1', Weight: 0.047699 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5191: +Vertex groups: 5 + Group: 'Hips', Weight: 0.354494 + Group: 'Spine', Weight: 0.327523 + Group: 'Spine1', Weight: 0.053945 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5192: +Vertex groups: 5 + Group: 'Hips', Weight: 0.172641 + Group: 'Spine', Weight: 0.411246 + Group: 'Spine1', Weight: 0.068821 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5193: +Vertex groups: 5 + Group: 'Hips', Weight: 0.081324 + Group: 'Spine', Weight: 0.479573 + Group: 'Spine1', Weight: 0.087902 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5194: +Vertex groups: 5 + Group: 'Hips', Weight: 0.043142 + Group: 'Spine', Weight: 0.516324 + Group: 'Spine1', Weight: 0.099493 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5195: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004592 + Group: 'Spine', Weight: 0.564740 + Group: 'Spine1', Weight: 0.098608 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5196: +Vertex groups: 5 + Group: 'Hips', Weight: 0.005989 + Group: 'Spine', Weight: 0.785448 + Group: 'Spine1', Weight: 0.078377 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5197: +Vertex groups: 5 + Group: 'Hips', Weight: 0.007892 + Group: 'Spine', Weight: 0.825366 + Group: 'Spine1', Weight: 0.062199 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5198: +Vertex groups: 5 + Group: 'Hips', Weight: 0.000820 + Group: 'Spine', Weight: 0.718597 + Group: 'Spine1', Weight: 0.089622 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5199: +Vertex groups: 4 + Group: 'Spine', Weight: 0.646631 + Group: 'Spine1', Weight: 0.096957 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5200: +Vertex groups: 5 + Group: 'Hips', Weight: 0.521449 + Group: 'Spine', Weight: 0.276425 + Group: 'Spine1', Weight: 0.045459 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5201: +Vertex groups: 5 + Group: 'Hips', Weight: 0.485696 + Group: 'Spine', Weight: 0.284846 + Group: 'Spine1', Weight: 0.047800 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5202: +Vertex groups: 5 + Group: 'Hips', Weight: 0.354172 + Group: 'Spine', Weight: 0.327375 + Group: 'Spine1', Weight: 0.054040 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5203: +Vertex groups: 5 + Group: 'Hips', Weight: 0.172511 + Group: 'Spine', Weight: 0.410809 + Group: 'Spine1', Weight: 0.068957 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5204: +Vertex groups: 5 + Group: 'Hips', Weight: 0.081325 + Group: 'Spine', Weight: 0.478918 + Group: 'Spine1', Weight: 0.088071 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5205: +Vertex groups: 5 + Group: 'Hips', Weight: 0.043211 + Group: 'Spine', Weight: 0.515572 + Group: 'Spine1', Weight: 0.099686 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5206: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004689 + Group: 'Spine', Weight: 0.563901 + Group: 'Spine1', Weight: 0.098832 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5207: +Vertex groups: 5 + Group: 'Hips', Weight: 0.006091 + Group: 'Spine', Weight: 0.784867 + Group: 'Spine1', Weight: 0.078597 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5208: +Vertex groups: 5 + Group: 'Hips', Weight: 0.000943 + Group: 'Spine', Weight: 0.717777 + Group: 'Spine1', Weight: 0.089893 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5209: +Vertex groups: 4 + Group: 'Spine', Weight: 0.645736 + Group: 'Spine1', Weight: 0.097216 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5210: +Vertex groups: 5 + Group: 'Hips', Weight: 0.472233 + Group: 'Spine', Weight: 0.299955 + Group: 'Spine1', Weight: 0.051487 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5211: +Vertex groups: 5 + Group: 'Hips', Weight: 0.345829 + Group: 'Spine', Weight: 0.340444 + Group: 'Spine1', Weight: 0.056001 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5212: +Vertex groups: 5 + Group: 'Hips', Weight: 0.169230 + Group: 'Spine', Weight: 0.423859 + Group: 'Spine1', Weight: 0.071180 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5213: +Vertex groups: 5 + Group: 'Hips', Weight: 0.080965 + Group: 'Spine', Weight: 0.487820 + Group: 'Spine1', Weight: 0.090966 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5214: +Vertex groups: 5 + Group: 'Hips', Weight: 0.042778 + Group: 'Spine', Weight: 0.523298 + Group: 'Spine1', Weight: 0.103115 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5215: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004382 + Group: 'Spine', Weight: 0.570555 + Group: 'Spine1', Weight: 0.102662 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5216: +Vertex groups: 5 + Group: 'Hips', Weight: 0.002763 + Group: 'Spine', Weight: 0.785956 + Group: 'Spine1', Weight: 0.082598 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5217: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004753 + Group: 'Spine', Weight: 0.827290 + Group: 'Spine1', Weight: 0.064733 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5218: +Vertex groups: 4 + Group: 'Spine', Weight: 0.720626 + Group: 'Spine1', Weight: 0.093906 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5219: +Vertex groups: 4 + Group: 'Spine', Weight: 0.649793 + Group: 'Spine1', Weight: 0.101083 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5220: +Vertex groups: 5 + Group: 'Hips', Weight: 0.508397 + Group: 'Spine', Weight: 0.290198 + Group: 'Spine1', Weight: 0.050147 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5221: +Vertex groups: 5 + Group: 'Hips', Weight: 0.472016 + Group: 'Spine', Weight: 0.299920 + Group: 'Spine1', Weight: 0.051539 + Group: 'LeftUpLeg', Weight: 0.000000 + Group: 'RightUpLeg', Weight: 0.000000 +Vertex 5222: +Vertex groups: 5 + Group: 'Hips', Weight: 0.345525 + Group: 'Spine', Weight: 0.340277 + Group: 'Spine1', Weight: 0.056098 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5223: +Vertex groups: 5 + Group: 'Hips', Weight: 0.169113 + Group: 'Spine', Weight: 0.423403 + Group: 'Spine1', Weight: 0.071319 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5224: +Vertex groups: 5 + Group: 'Hips', Weight: 0.080969 + Group: 'Spine', Weight: 0.487155 + Group: 'Spine1', Weight: 0.091139 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5225: +Vertex groups: 5 + Group: 'Hips', Weight: 0.042851 + Group: 'Spine', Weight: 0.522537 + Group: 'Spine1', Weight: 0.103311 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5226: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004480 + Group: 'Spine', Weight: 0.569708 + Group: 'Spine1', Weight: 0.102889 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5227: +Vertex groups: 5 + Group: 'Hips', Weight: 0.002866 + Group: 'Spine', Weight: 0.785358 + Group: 'Spine1', Weight: 0.082830 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5228: +Vertex groups: 4 + Group: 'Spine', Weight: 0.719797 + Group: 'Spine1', Weight: 0.094185 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5229: +Vertex groups: 4 + Group: 'Spine', Weight: 0.648894 + Group: 'Spine1', Weight: 0.101347 + Group: 'RightUpLeg', Weight: 0.000000 + Group: 'LeftUpLeg', Weight: 0.000000 +Vertex 5230: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5231: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5232: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5233: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5234: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5235: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5236: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5237: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5238: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5239: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5240: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5241: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5242: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5243: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5244: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5245: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5246: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5247: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5248: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5249: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5250: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5251: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5252: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5253: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5254: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5255: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5256: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5257: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5258: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5259: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5260: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5261: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5262: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 +Vertex 5263: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5264: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5265: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5266: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5267: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5268: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5269: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5270: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5271: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5272: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5273: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5274: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5275: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5276: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5277: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5278: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5279: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5280: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5281: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5282: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5283: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5284: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5285: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5286: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5287: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5288: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5289: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5290: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5291: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5292: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5293: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5294: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5295: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5296: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5297: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5298: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5299: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5300: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5301: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5302: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5303: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5304: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5305: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5306: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5307: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5308: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5309: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5310: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5311: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5312: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5313: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5314: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5315: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5316: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5317: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5318: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5319: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5320: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5321: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5322: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5323: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5324: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5325: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5326: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5327: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'RightShoulder', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 +Vertex 5328: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5329: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5330: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5331: +Vertex groups: 5 + Group: 'Head', Weight: 1.000000 + Group: 'Head_end', Weight: 0.000000 + Group: 'Neck', Weight: 0.000000 + Group: 'LeftShoulder', Weight: 0.000000 + Group: 'Spine2', Weight: 0.000000 +Vertex 5332: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 5333: +Vertex groups: 1 + Group: 'Head', Weight: 0.999966 +Vertex 5334: +Vertex groups: 1 + Group: 'Head', Weight: 0.999898 +Vertex 5335: +Vertex groups: 1 + Group: 'Head', Weight: 0.999931 +Vertex 5336: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5337: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5338: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5339: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5340: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5341: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5342: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5343: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5344: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5345: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5346: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5347: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5348: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5349: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5350: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5351: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5352: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5353: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5354: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5355: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5356: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 5357: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 5358: +Vertex groups: 1 + Group: 'Head', Weight: 0.999972 +Vertex 5359: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 5360: +Vertex groups: 1 + Group: 'Head', Weight: 0.999967 +Vertex 5361: +Vertex groups: 1 + Group: 'Head', Weight: 0.999973 +Vertex 5362: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 5363: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5364: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 5365: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 5366: +Vertex groups: 1 + Group: 'Head', Weight: 0.999878 +Vertex 5367: +Vertex groups: 1 + Group: 'Head', Weight: 0.999967 +Vertex 5368: +Vertex groups: 1 + Group: 'Head', Weight: 0.999438 +Vertex 5369: +Vertex groups: 1 + Group: 'Head', Weight: 0.999773 +Vertex 5370: +Vertex groups: 1 + Group: 'Head', Weight: 0.999606 +Vertex 5371: +Vertex groups: 1 + Group: 'Head', Weight: 0.999409 +Vertex 5372: +Vertex groups: 1 + Group: 'Head', Weight: 0.999870 +Vertex 5373: +Vertex groups: 1 + Group: 'Head', Weight: 0.999655 +Vertex 5374: +Vertex groups: 1 + Group: 'Head', Weight: 0.999799 +Vertex 5375: +Vertex groups: 1 + Group: 'Head', Weight: 0.999767 +Vertex 5376: +Vertex groups: 1 + Group: 'Head', Weight: 0.999849 +Vertex 5377: +Vertex groups: 1 + Group: 'Head', Weight: 0.999806 +Vertex 5378: +Vertex groups: 1 + Group: 'Head', Weight: 0.999899 +Vertex 5379: +Vertex groups: 1 + Group: 'Head', Weight: 0.999589 +Vertex 5380: +Vertex groups: 1 + Group: 'Head', Weight: 0.999938 +Vertex 5381: +Vertex groups: 1 + Group: 'Head', Weight: 0.999655 +Vertex 5382: +Vertex groups: 1 + Group: 'Head', Weight: 0.998968 +Vertex 5383: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5384: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5385: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5386: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5387: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5388: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5389: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5390: +Vertex groups: 1 + Group: 'Head', Weight: 0.999979 +Vertex 5391: +Vertex groups: 1 + Group: 'Head', Weight: 0.999977 +Vertex 5392: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5393: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5394: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5395: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5396: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5397: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5398: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.367814 + Group: 'RightHandIndex1', Weight: 0.271328 + Group: 'RightHandRing1', Weight: 0.189331 + Group: 'RightHandMiddle2', Weight: 0.101477 + Group: 'RightHandRing2', Weight: 0.070050 +Vertex 5399: +Vertex groups: 5 + Group: 'RightHandRing2', Weight: 0.495034 + Group: 'RightHandRing1', Weight: 0.298855 + Group: 'RightHandMiddle1', Weight: 0.102023 + Group: 'RightHandPinky1', Weight: 0.066130 + Group: 'RightHandMiddle2', Weight: 0.037957 +=== Animation Keyframes === +=== Bone Transforms per Keyframe === +Keyframes: 31 +Frame: 0 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 1 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 2 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 3 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 4 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 5 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 6 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 7 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 8 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 9 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 10 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 11 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 12 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 13 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 14 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 15 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 16 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 17 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 18 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 19 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 20 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 21 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 22 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 23 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 24 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 25 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 26 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 27 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 28 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 29 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 30 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: Head_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + diff --git a/resources/w/girlfriend/girlfriend_walk003.txt b/resources/w/girlfriend/girlfriend_walk003.txt new file mode 100644 index 0000000..ff99c1f --- /dev/null +++ b/resources/w/girlfriend/girlfriend_walk003.txt @@ -0,0 +1,104689 @@ +=== Armature Matrix === + + + + +=== Armature Bones: 62 +Bone: Hips + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.09507554942544139 + + + + Parent: None + Children: ['Spine', 'LeftUpLeg', 'RightUpLeg'] +Bone: Spine + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.12353978971747905 + + + + Parent: Hips + Children: ['Spine1'] +Bone: Spine1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.14721100651092592 + + + + Parent: Spine + Children: ['Spine2'] +Bone: Spine2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.1504897780231176 + + + + Parent: Spine1 + Children: ['Neck', 'LeftShoulder', 'RightShoulder'] +Bone: Neck + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.14121287866897442 + + + + Parent: Spine2 + Children: ['Head'] +Bone: Head + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.22816329000639674 + + + + Parent: Neck + Children: [] +Bone: LeftShoulder + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.12367134536725961 + + + + Parent: Spine2 + Children: ['LeftArm'] +Bone: LeftArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2452980058838208 + + + + Parent: LeftShoulder + Children: ['LeftForeArm'] +Bone: LeftForeArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2225854961490068 + + + + Parent: LeftArm + Children: ['LeftHand'] +Bone: LeftHand + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.059997293858802675 + + + + Parent: LeftForeArm + Children: ['LeftHandThumb1', 'LeftHandIndex1', 'LeftHandMiddle1', 'LeftHandRing1', 'LeftHandPinky1'] +Bone: LeftHandThumb1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.024587623753619402 + + + + Parent: LeftHand + Children: ['LeftHandThumb2'] +Bone: LeftHandThumb2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022115675238174277 + + + + Parent: LeftHandThumb1 + Children: ['LeftHandThumb3'] +Bone: LeftHandThumb3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02079256883015047 + + + + Parent: LeftHandThumb2 + Children: ['LeftHandThumb3_end'] +Bone: LeftHandThumb3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02144576255051639 + + + + Parent: LeftHandThumb3 + Children: [] +Bone: LeftHandIndex1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.039380642877091566 + + + + Parent: LeftHand + Children: ['LeftHandIndex2'] +Bone: LeftHandIndex2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02689386367683547 + + + + Parent: LeftHandIndex1 + Children: ['LeftHandIndex3'] +Bone: LeftHandIndex3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.021548516170175166 + + + + Parent: LeftHandIndex2 + Children: ['LeftHandIndex3_end'] +Bone: LeftHandIndex3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.017936713692482353 + + + + Parent: LeftHandIndex3 + Children: [] +Bone: LeftHandMiddle1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.03128070502690231 + + + + Parent: LeftHand + Children: ['LeftHandMiddle2'] +Bone: LeftHandMiddle2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02933969730155993 + + + + Parent: LeftHandMiddle1 + Children: ['LeftHandMiddle3'] +Bone: LeftHandMiddle3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02854078575259649 + + + + Parent: LeftHandMiddle2 + Children: ['LeftHandMiddle3_end'] +Bone: LeftHandMiddle3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02217298257472352 + + + + Parent: LeftHandMiddle3 + Children: [] +Bone: LeftHandRing1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02824055589541246 + + + + Parent: LeftHand + Children: ['LeftHandRing2'] +Bone: LeftHandRing2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.026119443766119885 + + + + Parent: LeftHandRing1 + Children: ['LeftHandRing3'] +Bone: LeftHandRing3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.025662976201378793 + + + + Parent: LeftHandRing2 + Children: ['LeftHandRing3_end'] +Bone: LeftHandRing3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01959367912247575 + + + + Parent: LeftHandRing3 + Children: [] +Bone: LeftHandPinky1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02621499128668013 + + + + Parent: LeftHand + Children: ['LeftHandPinky2'] +Bone: LeftHandPinky2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.023017874331436206 + + + + Parent: LeftHandPinky1 + Children: ['LeftHandPinky3'] +Bone: LeftHandPinky3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022463324798304887 + + + + Parent: LeftHandPinky2 + Children: ['LeftHandPinky3_end'] +Bone: LeftHandPinky3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01734677299296374 + + + + Parent: LeftHandPinky3 + Children: [] +Bone: RightShoulder + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.12367134536725961 + + + + Parent: Spine2 + Children: ['RightArm'] +Bone: RightArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2452980058838208 + + + + Parent: RightShoulder + Children: ['RightForeArm'] +Bone: RightForeArm + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.2225854961490068 + + + + Parent: RightArm + Children: ['RightHand'] +Bone: RightHand + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.059997293858802675 + + + + Parent: RightForeArm + Children: ['RightHandThumb1', 'RightHandIndex1', 'RightHandMiddle1', 'RightHandRing1', 'RightHandPinky1'] +Bone: RightHandThumb1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.024587623753619402 + + + + Parent: RightHand + Children: ['RightHandThumb2'] +Bone: RightHandThumb2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022115675238174277 + + + + Parent: RightHandThumb1 + Children: ['RightHandThumb3'] +Bone: RightHandThumb3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02079256883015047 + + + + Parent: RightHandThumb2 + Children: ['RightHandThumb3_end'] +Bone: RightHandThumb3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02144576255051639 + + + + Parent: RightHandThumb3 + Children: [] +Bone: RightHandIndex1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.039380642877091566 + + + + Parent: RightHand + Children: ['RightHandIndex2'] +Bone: RightHandIndex2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02689386367683547 + + + + Parent: RightHandIndex1 + Children: ['RightHandIndex3'] +Bone: RightHandIndex3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.021548516170175166 + + + + Parent: RightHandIndex2 + Children: ['RightHandIndex3_end'] +Bone: RightHandIndex3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.017936713692482353 + + + + Parent: RightHandIndex3 + Children: [] +Bone: RightHandMiddle1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.03128070502690231 + + + + Parent: RightHand + Children: ['RightHandMiddle2'] +Bone: RightHandMiddle2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02933969730155993 + + + + Parent: RightHandMiddle1 + Children: ['RightHandMiddle3'] +Bone: RightHandMiddle3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02854078575259649 + + + + Parent: RightHandMiddle2 + Children: ['RightHandMiddle3_end'] +Bone: RightHandMiddle3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02217298257472352 + + + + Parent: RightHandMiddle3 + Children: [] +Bone: RightHandRing1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02824055589541246 + + + + Parent: RightHand + Children: ['RightHandRing2'] +Bone: RightHandRing2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.026119443766119885 + + + + Parent: RightHandRing1 + Children: ['RightHandRing3'] +Bone: RightHandRing3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.025662976201378793 + + + + Parent: RightHandRing2 + Children: ['RightHandRing3_end'] +Bone: RightHandRing3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01959367912247575 + + + + Parent: RightHandRing3 + Children: [] +Bone: RightHandPinky1 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.02606178578371245 + + + + Parent: RightHand + Children: ['RightHandPinky2'] +Bone: RightHandPinky2 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.023017874331436206 + + + + Parent: RightHandPinky1 + Children: ['RightHandPinky3'] +Bone: RightHandPinky3 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.022463324798304887 + + + + Parent: RightHandPinky2 + Children: ['RightHandPinky3_end'] +Bone: RightHandPinky3_end + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.01734677299296374 + + + + Parent: RightHandPinky3 + Children: [] +Bone: LeftUpLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.3457044687537974 + + + + Parent: Hips + Children: ['LeftLeg'] +Bone: LeftLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.380034175614433 + + + + Parent: LeftUpLeg + Children: ['LeftFoot'] +Bone: LeftFoot + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.1334373005165752 + + + + Parent: LeftLeg + Children: ['LeftToeBase'] +Bone: LeftToeBase + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.13343730116493727 + + + + Parent: LeftFoot + Children: [] +Bone: RightUpLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.3457048513836104 + + + + Parent: Hips + Children: ['RightLeg'] +Bone: RightLeg + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.3800342598547777 + + + + Parent: RightUpLeg + Children: ['RightFoot'] +Bone: RightFoot + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.13343732145500467 + + + + Parent: RightLeg + Children: ['RightToeBase'] +Bone: RightToeBase + HEAD_LOCAL: + TAIL_LOCAL: + Length: 0.13343732505038894 + + + + Parent: RightFoot + Children: [] +=== TOTAL MESHES TO EXPORT: 1 === +=== Mesh Object: Girl_Low === +===Vertices: 5400 +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: +Vertex 2660: +Vertex 2661: +Vertex 2662: +Vertex 2663: +Vertex 2664: +Vertex 2665: +Vertex 2666: +Vertex 2667: +Vertex 2668: +Vertex 2669: +Vertex 2670: +Vertex 2671: +Vertex 2672: +Vertex 2673: +Vertex 2674: +Vertex 2675: +Vertex 2676: +Vertex 2677: +Vertex 2678: +Vertex 2679: +Vertex 2680: +Vertex 2681: +Vertex 2682: +Vertex 2683: +Vertex 2684: +Vertex 2685: +Vertex 2686: +Vertex 2687: +Vertex 2688: +Vertex 2689: +Vertex 2690: +Vertex 2691: +Vertex 2692: +Vertex 2693: +Vertex 2694: +Vertex 2695: +Vertex 2696: +Vertex 2697: +Vertex 2698: +Vertex 2699: +Vertex 2700: +Vertex 2701: +Vertex 2702: +Vertex 2703: +Vertex 2704: +Vertex 2705: +Vertex 2706: +Vertex 2707: +Vertex 2708: +Vertex 2709: +Vertex 2710: +Vertex 2711: +Vertex 2712: +Vertex 2713: +Vertex 2714: +Vertex 2715: +Vertex 2716: +Vertex 2717: +Vertex 2718: +Vertex 2719: +Vertex 2720: +Vertex 2721: +Vertex 2722: +Vertex 2723: +Vertex 2724: +Vertex 2725: +Vertex 2726: +Vertex 2727: +Vertex 2728: +Vertex 2729: +Vertex 2730: +Vertex 2731: +Vertex 2732: +Vertex 2733: +Vertex 2734: +Vertex 2735: +Vertex 2736: +Vertex 2737: +Vertex 2738: +Vertex 2739: +Vertex 2740: +Vertex 2741: +Vertex 2742: +Vertex 2743: +Vertex 2744: +Vertex 2745: +Vertex 2746: +Vertex 2747: +Vertex 2748: +Vertex 2749: +Vertex 2750: +Vertex 2751: +Vertex 2752: +Vertex 2753: +Vertex 2754: +Vertex 2755: +Vertex 2756: +Vertex 2757: +Vertex 2758: +Vertex 2759: +Vertex 2760: +Vertex 2761: +Vertex 2762: +Vertex 2763: +Vertex 2764: +Vertex 2765: +Vertex 2766: +Vertex 2767: +Vertex 2768: +Vertex 2769: +Vertex 2770: +Vertex 2771: +Vertex 2772: +Vertex 2773: +Vertex 2774: +Vertex 2775: +Vertex 2776: +Vertex 2777: +Vertex 2778: +Vertex 2779: +Vertex 2780: +Vertex 2781: +Vertex 2782: +Vertex 2783: +Vertex 2784: +Vertex 2785: +Vertex 2786: +Vertex 2787: +Vertex 2788: +Vertex 2789: +Vertex 2790: +Vertex 2791: +Vertex 2792: +Vertex 2793: +Vertex 2794: +Vertex 2795: +Vertex 2796: +Vertex 2797: +Vertex 2798: +Vertex 2799: +Vertex 2800: +Vertex 2801: +Vertex 2802: +Vertex 2803: +Vertex 2804: +Vertex 2805: +Vertex 2806: +Vertex 2807: +Vertex 2808: +Vertex 2809: +Vertex 2810: +Vertex 2811: +Vertex 2812: +Vertex 2813: +Vertex 2814: +Vertex 2815: +Vertex 2816: +Vertex 2817: +Vertex 2818: +Vertex 2819: +Vertex 2820: +Vertex 2821: +Vertex 2822: +Vertex 2823: +Vertex 2824: +Vertex 2825: +Vertex 2826: +Vertex 2827: +Vertex 2828: +Vertex 2829: +Vertex 2830: +Vertex 2831: +Vertex 2832: +Vertex 2833: +Vertex 2834: +Vertex 2835: +Vertex 2836: +Vertex 2837: +Vertex 2838: +Vertex 2839: +Vertex 2840: +Vertex 2841: +Vertex 2842: +Vertex 2843: +Vertex 2844: +Vertex 2845: +Vertex 2846: +Vertex 2847: +Vertex 2848: +Vertex 2849: +Vertex 2850: +Vertex 2851: +Vertex 2852: +Vertex 2853: +Vertex 2854: +Vertex 2855: +Vertex 2856: +Vertex 2857: +Vertex 2858: +Vertex 2859: +Vertex 2860: +Vertex 2861: +Vertex 2862: +Vertex 2863: +Vertex 2864: +Vertex 2865: +Vertex 2866: +Vertex 2867: +Vertex 2868: +Vertex 2869: +Vertex 2870: +Vertex 2871: +Vertex 2872: +Vertex 2873: +Vertex 2874: +Vertex 2875: +Vertex 2876: +Vertex 2877: +Vertex 2878: +Vertex 2879: +Vertex 2880: +Vertex 2881: +Vertex 2882: +Vertex 2883: +Vertex 2884: +Vertex 2885: +Vertex 2886: +Vertex 2887: +Vertex 2888: +Vertex 2889: +Vertex 2890: +Vertex 2891: +Vertex 2892: +Vertex 2893: +Vertex 2894: +Vertex 2895: +Vertex 2896: +Vertex 2897: +Vertex 2898: +Vertex 2899: +Vertex 2900: +Vertex 2901: +Vertex 2902: +Vertex 2903: +Vertex 2904: +Vertex 2905: +Vertex 2906: +Vertex 2907: +Vertex 2908: +Vertex 2909: +Vertex 2910: +Vertex 2911: +Vertex 2912: +Vertex 2913: +Vertex 2914: +Vertex 2915: +Vertex 2916: +Vertex 2917: +Vertex 2918: +Vertex 2919: +Vertex 2920: +Vertex 2921: +Vertex 2922: +Vertex 2923: +Vertex 2924: +Vertex 2925: +Vertex 2926: +Vertex 2927: +Vertex 2928: +Vertex 2929: +Vertex 2930: +Vertex 2931: +Vertex 2932: +Vertex 2933: +Vertex 2934: +Vertex 2935: +Vertex 2936: +Vertex 2937: +Vertex 2938: +Vertex 2939: +Vertex 2940: +Vertex 2941: +Vertex 2942: +Vertex 2943: +Vertex 2944: +Vertex 2945: +Vertex 2946: +Vertex 2947: +Vertex 2948: +Vertex 2949: +Vertex 2950: +Vertex 2951: +Vertex 2952: +Vertex 2953: +Vertex 2954: +Vertex 2955: +Vertex 2956: +Vertex 2957: +Vertex 2958: +Vertex 2959: +Vertex 2960: +Vertex 2961: +Vertex 2962: +Vertex 2963: +Vertex 2964: +Vertex 2965: +Vertex 2966: +Vertex 2967: +Vertex 2968: +Vertex 2969: +Vertex 2970: +Vertex 2971: +Vertex 2972: +Vertex 2973: +Vertex 2974: +Vertex 2975: +Vertex 2976: +Vertex 2977: +Vertex 2978: +Vertex 2979: +Vertex 2980: +Vertex 2981: +Vertex 2982: +Vertex 2983: +Vertex 2984: +Vertex 2985: +Vertex 2986: +Vertex 2987: +Vertex 2988: +Vertex 2989: +Vertex 2990: +Vertex 2991: +Vertex 2992: +Vertex 2993: +Vertex 2994: +Vertex 2995: +Vertex 2996: +Vertex 2997: +Vertex 2998: +Vertex 2999: +Vertex 3000: +Vertex 3001: +Vertex 3002: +Vertex 3003: +Vertex 3004: +Vertex 3005: +Vertex 3006: +Vertex 3007: +Vertex 3008: +Vertex 3009: +Vertex 3010: +Vertex 3011: +Vertex 3012: +Vertex 3013: +Vertex 3014: +Vertex 3015: +Vertex 3016: +Vertex 3017: +Vertex 3018: +Vertex 3019: +Vertex 3020: +Vertex 3021: +Vertex 3022: +Vertex 3023: +Vertex 3024: +Vertex 3025: +Vertex 3026: +Vertex 3027: +Vertex 3028: +Vertex 3029: +Vertex 3030: +Vertex 3031: +Vertex 3032: +Vertex 3033: +Vertex 3034: +Vertex 3035: +Vertex 3036: +Vertex 3037: +Vertex 3038: +Vertex 3039: +Vertex 3040: +Vertex 3041: +Vertex 3042: +Vertex 3043: +Vertex 3044: +Vertex 3045: +Vertex 3046: +Vertex 3047: +Vertex 3048: +Vertex 3049: +Vertex 3050: +Vertex 3051: +Vertex 3052: +Vertex 3053: +Vertex 3054: +Vertex 3055: +Vertex 3056: +Vertex 3057: +Vertex 3058: +Vertex 3059: +Vertex 3060: +Vertex 3061: +Vertex 3062: +Vertex 3063: +Vertex 3064: +Vertex 3065: +Vertex 3066: +Vertex 3067: +Vertex 3068: +Vertex 3069: +Vertex 3070: +Vertex 3071: +Vertex 3072: +Vertex 3073: +Vertex 3074: +Vertex 3075: +Vertex 3076: +Vertex 3077: +Vertex 3078: +Vertex 3079: +Vertex 3080: +Vertex 3081: +Vertex 3082: +Vertex 3083: +Vertex 3084: +Vertex 3085: +Vertex 3086: +Vertex 3087: +Vertex 3088: +Vertex 3089: +Vertex 3090: +Vertex 3091: +Vertex 3092: +Vertex 3093: +Vertex 3094: +Vertex 3095: +Vertex 3096: +Vertex 3097: +Vertex 3098: +Vertex 3099: +Vertex 3100: +Vertex 3101: +Vertex 3102: +Vertex 3103: +Vertex 3104: +Vertex 3105: +Vertex 3106: +Vertex 3107: +Vertex 3108: +Vertex 3109: +Vertex 3110: +Vertex 3111: +Vertex 3112: +Vertex 3113: +Vertex 3114: +Vertex 3115: +Vertex 3116: +Vertex 3117: +Vertex 3118: +Vertex 3119: +Vertex 3120: +Vertex 3121: +Vertex 3122: +Vertex 3123: +Vertex 3124: +Vertex 3125: +Vertex 3126: +Vertex 3127: +Vertex 3128: +Vertex 3129: +Vertex 3130: +Vertex 3131: +Vertex 3132: +Vertex 3133: +Vertex 3134: +Vertex 3135: +Vertex 3136: +Vertex 3137: +Vertex 3138: +Vertex 3139: +Vertex 3140: +Vertex 3141: +Vertex 3142: +Vertex 3143: +Vertex 3144: +Vertex 3145: +Vertex 3146: +Vertex 3147: +Vertex 3148: +Vertex 3149: +Vertex 3150: +Vertex 3151: +Vertex 3152: +Vertex 3153: +Vertex 3154: +Vertex 3155: +Vertex 3156: +Vertex 3157: +Vertex 3158: +Vertex 3159: +Vertex 3160: +Vertex 3161: +Vertex 3162: +Vertex 3163: +Vertex 3164: +Vertex 3165: +Vertex 3166: +Vertex 3167: +Vertex 3168: +Vertex 3169: +Vertex 3170: +Vertex 3171: +Vertex 3172: +Vertex 3173: +Vertex 3174: +Vertex 3175: +Vertex 3176: +Vertex 3177: +Vertex 3178: +Vertex 3179: +Vertex 3180: +Vertex 3181: +Vertex 3182: +Vertex 3183: +Vertex 3184: +Vertex 3185: +Vertex 3186: +Vertex 3187: +Vertex 3188: +Vertex 3189: +Vertex 3190: +Vertex 3191: +Vertex 3192: +Vertex 3193: +Vertex 3194: +Vertex 3195: +Vertex 3196: +Vertex 3197: +Vertex 3198: +Vertex 3199: +Vertex 3200: +Vertex 3201: +Vertex 3202: +Vertex 3203: +Vertex 3204: +Vertex 3205: +Vertex 3206: +Vertex 3207: +Vertex 3208: +Vertex 3209: +Vertex 3210: +Vertex 3211: +Vertex 3212: +Vertex 3213: +Vertex 3214: +Vertex 3215: +Vertex 3216: +Vertex 3217: +Vertex 3218: +Vertex 3219: +Vertex 3220: +Vertex 3221: +Vertex 3222: +Vertex 3223: +Vertex 3224: +Vertex 3225: +Vertex 3226: +Vertex 3227: +Vertex 3228: +Vertex 3229: +Vertex 3230: +Vertex 3231: +Vertex 3232: +Vertex 3233: +Vertex 3234: +Vertex 3235: +Vertex 3236: +Vertex 3237: +Vertex 3238: +Vertex 3239: +Vertex 3240: +Vertex 3241: +Vertex 3242: +Vertex 3243: +Vertex 3244: +Vertex 3245: +Vertex 3246: +Vertex 3247: +Vertex 3248: +Vertex 3249: +Vertex 3250: +Vertex 3251: +Vertex 3252: +Vertex 3253: +Vertex 3254: +Vertex 3255: +Vertex 3256: +Vertex 3257: +Vertex 3258: +Vertex 3259: +Vertex 3260: +Vertex 3261: +Vertex 3262: +Vertex 3263: +Vertex 3264: +Vertex 3265: +Vertex 3266: +Vertex 3267: +Vertex 3268: +Vertex 3269: +Vertex 3270: +Vertex 3271: +Vertex 3272: +Vertex 3273: +Vertex 3274: +Vertex 3275: +Vertex 3276: +Vertex 3277: +Vertex 3278: +Vertex 3279: +Vertex 3280: +Vertex 3281: +Vertex 3282: +Vertex 3283: +Vertex 3284: +Vertex 3285: +Vertex 3286: +Vertex 3287: +Vertex 3288: +Vertex 3289: +Vertex 3290: +Vertex 3291: +Vertex 3292: +Vertex 3293: +Vertex 3294: +Vertex 3295: +Vertex 3296: +Vertex 3297: +Vertex 3298: +Vertex 3299: +Vertex 3300: +Vertex 3301: +Vertex 3302: +Vertex 3303: +Vertex 3304: +Vertex 3305: +Vertex 3306: +Vertex 3307: +Vertex 3308: +Vertex 3309: +Vertex 3310: +Vertex 3311: +Vertex 3312: +Vertex 3313: +Vertex 3314: +Vertex 3315: +Vertex 3316: +Vertex 3317: +Vertex 3318: +Vertex 3319: +Vertex 3320: +Vertex 3321: +Vertex 3322: +Vertex 3323: +Vertex 3324: +Vertex 3325: +Vertex 3326: +Vertex 3327: +Vertex 3328: +Vertex 3329: +Vertex 3330: +Vertex 3331: +Vertex 3332: +Vertex 3333: +Vertex 3334: +Vertex 3335: +Vertex 3336: +Vertex 3337: +Vertex 3338: +Vertex 3339: +Vertex 3340: +Vertex 3341: +Vertex 3342: +Vertex 3343: +Vertex 3344: +Vertex 3345: +Vertex 3346: +Vertex 3347: +Vertex 3348: +Vertex 3349: +Vertex 3350: +Vertex 3351: +Vertex 3352: +Vertex 3353: +Vertex 3354: +Vertex 3355: +Vertex 3356: +Vertex 3357: +Vertex 3358: +Vertex 3359: +Vertex 3360: +Vertex 3361: +Vertex 3362: +Vertex 3363: +Vertex 3364: +Vertex 3365: +Vertex 3366: +Vertex 3367: +Vertex 3368: +Vertex 3369: +Vertex 3370: +Vertex 3371: +Vertex 3372: +Vertex 3373: +Vertex 3374: +Vertex 3375: +Vertex 3376: +Vertex 3377: +Vertex 3378: +Vertex 3379: +Vertex 3380: +Vertex 3381: +Vertex 3382: +Vertex 3383: +Vertex 3384: +Vertex 3385: +Vertex 3386: +Vertex 3387: +Vertex 3388: +Vertex 3389: +Vertex 3390: +Vertex 3391: +Vertex 3392: +Vertex 3393: +Vertex 3394: +Vertex 3395: +Vertex 3396: +Vertex 3397: +Vertex 3398: +Vertex 3399: +Vertex 3400: +Vertex 3401: +Vertex 3402: +Vertex 3403: +Vertex 3404: +Vertex 3405: +Vertex 3406: +Vertex 3407: +Vertex 3408: +Vertex 3409: +Vertex 3410: +Vertex 3411: +Vertex 3412: +Vertex 3413: +Vertex 3414: +Vertex 3415: +Vertex 3416: +Vertex 3417: +Vertex 3418: +Vertex 3419: +Vertex 3420: +Vertex 3421: +Vertex 3422: +Vertex 3423: +Vertex 3424: +Vertex 3425: +Vertex 3426: +Vertex 3427: +Vertex 3428: +Vertex 3429: +Vertex 3430: +Vertex 3431: +Vertex 3432: +Vertex 3433: +Vertex 3434: +Vertex 3435: +Vertex 3436: +Vertex 3437: +Vertex 3438: +Vertex 3439: +Vertex 3440: +Vertex 3441: +Vertex 3442: +Vertex 3443: +Vertex 3444: +Vertex 3445: +Vertex 3446: +Vertex 3447: +Vertex 3448: +Vertex 3449: +Vertex 3450: +Vertex 3451: +Vertex 3452: +Vertex 3453: +Vertex 3454: +Vertex 3455: +Vertex 3456: +Vertex 3457: +Vertex 3458: +Vertex 3459: +Vertex 3460: +Vertex 3461: +Vertex 3462: +Vertex 3463: +Vertex 3464: +Vertex 3465: +Vertex 3466: +Vertex 3467: +Vertex 3468: +Vertex 3469: +Vertex 3470: +Vertex 3471: +Vertex 3472: +Vertex 3473: +Vertex 3474: +Vertex 3475: +Vertex 3476: +Vertex 3477: +Vertex 3478: +Vertex 3479: +Vertex 3480: +Vertex 3481: +Vertex 3482: +Vertex 3483: +Vertex 3484: +Vertex 3485: +Vertex 3486: +Vertex 3487: +Vertex 3488: +Vertex 3489: +Vertex 3490: +Vertex 3491: +Vertex 3492: +Vertex 3493: +Vertex 3494: +Vertex 3495: +Vertex 3496: +Vertex 3497: +Vertex 3498: +Vertex 3499: +Vertex 3500: +Vertex 3501: +Vertex 3502: +Vertex 3503: +Vertex 3504: +Vertex 3505: +Vertex 3506: +Vertex 3507: +Vertex 3508: +Vertex 3509: +Vertex 3510: +Vertex 3511: +Vertex 3512: +Vertex 3513: +Vertex 3514: +Vertex 3515: +Vertex 3516: +Vertex 3517: +Vertex 3518: +Vertex 3519: +Vertex 3520: +Vertex 3521: +Vertex 3522: +Vertex 3523: +Vertex 3524: +Vertex 3525: +Vertex 3526: +Vertex 3527: +Vertex 3528: +Vertex 3529: +Vertex 3530: +Vertex 3531: +Vertex 3532: +Vertex 3533: +Vertex 3534: +Vertex 3535: +Vertex 3536: +Vertex 3537: +Vertex 3538: +Vertex 3539: +Vertex 3540: +Vertex 3541: +Vertex 3542: +Vertex 3543: +Vertex 3544: +Vertex 3545: +Vertex 3546: +Vertex 3547: +Vertex 3548: +Vertex 3549: +Vertex 3550: +Vertex 3551: +Vertex 3552: +Vertex 3553: +Vertex 3554: +Vertex 3555: +Vertex 3556: +Vertex 3557: +Vertex 3558: +Vertex 3559: +Vertex 3560: +Vertex 3561: +Vertex 3562: +Vertex 3563: +Vertex 3564: +Vertex 3565: +Vertex 3566: +Vertex 3567: +Vertex 3568: +Vertex 3569: +Vertex 3570: +Vertex 3571: +Vertex 3572: +Vertex 3573: +Vertex 3574: +Vertex 3575: +Vertex 3576: +Vertex 3577: +Vertex 3578: +Vertex 3579: +Vertex 3580: +Vertex 3581: +Vertex 3582: +Vertex 3583: +Vertex 3584: +Vertex 3585: +Vertex 3586: +Vertex 3587: +Vertex 3588: +Vertex 3589: +Vertex 3590: +Vertex 3591: +Vertex 3592: +Vertex 3593: +Vertex 3594: +Vertex 3595: +Vertex 3596: +Vertex 3597: +Vertex 3598: +Vertex 3599: +Vertex 3600: +Vertex 3601: +Vertex 3602: +Vertex 3603: +Vertex 3604: +Vertex 3605: +Vertex 3606: +Vertex 3607: +Vertex 3608: +Vertex 3609: +Vertex 3610: +Vertex 3611: +Vertex 3612: +Vertex 3613: +Vertex 3614: +Vertex 3615: +Vertex 3616: +Vertex 3617: +Vertex 3618: +Vertex 3619: +Vertex 3620: +Vertex 3621: +Vertex 3622: +Vertex 3623: +Vertex 3624: +Vertex 3625: +Vertex 3626: +Vertex 3627: +Vertex 3628: +Vertex 3629: +Vertex 3630: +Vertex 3631: +Vertex 3632: +Vertex 3633: +Vertex 3634: +Vertex 3635: +Vertex 3636: +Vertex 3637: +Vertex 3638: +Vertex 3639: +Vertex 3640: +Vertex 3641: +Vertex 3642: +Vertex 3643: +Vertex 3644: +Vertex 3645: +Vertex 3646: +Vertex 3647: +Vertex 3648: +Vertex 3649: +Vertex 3650: +Vertex 3651: +Vertex 3652: +Vertex 3653: +Vertex 3654: +Vertex 3655: +Vertex 3656: +Vertex 3657: +Vertex 3658: +Vertex 3659: +Vertex 3660: +Vertex 3661: +Vertex 3662: +Vertex 3663: +Vertex 3664: +Vertex 3665: +Vertex 3666: +Vertex 3667: +Vertex 3668: +Vertex 3669: +Vertex 3670: +Vertex 3671: +Vertex 3672: +Vertex 3673: +Vertex 3674: +Vertex 3675: +Vertex 3676: +Vertex 3677: +Vertex 3678: +Vertex 3679: +Vertex 3680: +Vertex 3681: +Vertex 3682: +Vertex 3683: +Vertex 3684: +Vertex 3685: +Vertex 3686: +Vertex 3687: +Vertex 3688: +Vertex 3689: +Vertex 3690: +Vertex 3691: +Vertex 3692: +Vertex 3693: +Vertex 3694: +Vertex 3695: +Vertex 3696: +Vertex 3697: +Vertex 3698: +Vertex 3699: +Vertex 3700: +Vertex 3701: +Vertex 3702: +Vertex 3703: +Vertex 3704: +Vertex 3705: +Vertex 3706: +Vertex 3707: +Vertex 3708: +Vertex 3709: +Vertex 3710: +Vertex 3711: +Vertex 3712: +Vertex 3713: +Vertex 3714: +Vertex 3715: +Vertex 3716: +Vertex 3717: +Vertex 3718: +Vertex 3719: +Vertex 3720: +Vertex 3721: +Vertex 3722: +Vertex 3723: +Vertex 3724: +Vertex 3725: +Vertex 3726: +Vertex 3727: +Vertex 3728: +Vertex 3729: +Vertex 3730: +Vertex 3731: +Vertex 3732: +Vertex 3733: +Vertex 3734: +Vertex 3735: +Vertex 3736: +Vertex 3737: +Vertex 3738: +Vertex 3739: +Vertex 3740: +Vertex 3741: +Vertex 3742: +Vertex 3743: +Vertex 3744: +Vertex 3745: +Vertex 3746: +Vertex 3747: +Vertex 3748: +Vertex 3749: +Vertex 3750: +Vertex 3751: +Vertex 3752: +Vertex 3753: +Vertex 3754: +Vertex 3755: +Vertex 3756: +Vertex 3757: +Vertex 3758: +Vertex 3759: +Vertex 3760: +Vertex 3761: +Vertex 3762: +Vertex 3763: +Vertex 3764: +Vertex 3765: +Vertex 3766: +Vertex 3767: +Vertex 3768: +Vertex 3769: +Vertex 3770: +Vertex 3771: +Vertex 3772: +Vertex 3773: +Vertex 3774: +Vertex 3775: +Vertex 3776: +Vertex 3777: +Vertex 3778: +Vertex 3779: +Vertex 3780: +Vertex 3781: +Vertex 3782: +Vertex 3783: +Vertex 3784: +Vertex 3785: +Vertex 3786: +Vertex 3787: +Vertex 3788: +Vertex 3789: +Vertex 3790: +Vertex 3791: +Vertex 3792: +Vertex 3793: +Vertex 3794: +Vertex 3795: +Vertex 3796: +Vertex 3797: +Vertex 3798: +Vertex 3799: +Vertex 3800: +Vertex 3801: +Vertex 3802: +Vertex 3803: +Vertex 3804: +Vertex 3805: +Vertex 3806: +Vertex 3807: +Vertex 3808: +Vertex 3809: +Vertex 3810: +Vertex 3811: +Vertex 3812: +Vertex 3813: +Vertex 3814: +Vertex 3815: +Vertex 3816: +Vertex 3817: +Vertex 3818: +Vertex 3819: +Vertex 3820: +Vertex 3821: +Vertex 3822: +Vertex 3823: +Vertex 3824: +Vertex 3825: +Vertex 3826: +Vertex 3827: +Vertex 3828: +Vertex 3829: +Vertex 3830: +Vertex 3831: +Vertex 3832: +Vertex 3833: +Vertex 3834: +Vertex 3835: +Vertex 3836: +Vertex 3837: +Vertex 3838: +Vertex 3839: +Vertex 3840: +Vertex 3841: +Vertex 3842: +Vertex 3843: +Vertex 3844: +Vertex 3845: +Vertex 3846: +Vertex 3847: +Vertex 3848: +Vertex 3849: +Vertex 3850: +Vertex 3851: +Vertex 3852: +Vertex 3853: +Vertex 3854: +Vertex 3855: +Vertex 3856: +Vertex 3857: +Vertex 3858: +Vertex 3859: +Vertex 3860: +Vertex 3861: +Vertex 3862: +Vertex 3863: +Vertex 3864: +Vertex 3865: +Vertex 3866: +Vertex 3867: +Vertex 3868: +Vertex 3869: +Vertex 3870: +Vertex 3871: +Vertex 3872: +Vertex 3873: +Vertex 3874: +Vertex 3875: +Vertex 3876: +Vertex 3877: +Vertex 3878: +Vertex 3879: +Vertex 3880: +Vertex 3881: +Vertex 3882: +Vertex 3883: +Vertex 3884: +Vertex 3885: +Vertex 3886: +Vertex 3887: +Vertex 3888: +Vertex 3889: +Vertex 3890: +Vertex 3891: +Vertex 3892: +Vertex 3893: +Vertex 3894: +Vertex 3895: +Vertex 3896: +Vertex 3897: +Vertex 3898: +Vertex 3899: +Vertex 3900: +Vertex 3901: +Vertex 3902: +Vertex 3903: +Vertex 3904: +Vertex 3905: +Vertex 3906: +Vertex 3907: +Vertex 3908: +Vertex 3909: +Vertex 3910: +Vertex 3911: +Vertex 3912: +Vertex 3913: +Vertex 3914: +Vertex 3915: +Vertex 3916: +Vertex 3917: +Vertex 3918: +Vertex 3919: +Vertex 3920: +Vertex 3921: +Vertex 3922: +Vertex 3923: +Vertex 3924: +Vertex 3925: +Vertex 3926: +Vertex 3927: +Vertex 3928: +Vertex 3929: +Vertex 3930: +Vertex 3931: +Vertex 3932: +Vertex 3933: +Vertex 3934: +Vertex 3935: +Vertex 3936: +Vertex 3937: +Vertex 3938: +Vertex 3939: +Vertex 3940: +Vertex 3941: +Vertex 3942: +Vertex 3943: +Vertex 3944: +Vertex 3945: +Vertex 3946: +Vertex 3947: +Vertex 3948: +Vertex 3949: +Vertex 3950: +Vertex 3951: +Vertex 3952: +Vertex 3953: +Vertex 3954: +Vertex 3955: +Vertex 3956: +Vertex 3957: +Vertex 3958: +Vertex 3959: +Vertex 3960: +Vertex 3961: +Vertex 3962: +Vertex 3963: +Vertex 3964: +Vertex 3965: +Vertex 3966: +Vertex 3967: +Vertex 3968: +Vertex 3969: +Vertex 3970: +Vertex 3971: +Vertex 3972: +Vertex 3973: +Vertex 3974: +Vertex 3975: +Vertex 3976: +Vertex 3977: +Vertex 3978: +Vertex 3979: +Vertex 3980: +Vertex 3981: +Vertex 3982: +Vertex 3983: +Vertex 3984: +Vertex 3985: +Vertex 3986: +Vertex 3987: +Vertex 3988: +Vertex 3989: +Vertex 3990: +Vertex 3991: +Vertex 3992: +Vertex 3993: +Vertex 3994: +Vertex 3995: +Vertex 3996: +Vertex 3997: +Vertex 3998: +Vertex 3999: +Vertex 4000: +Vertex 4001: +Vertex 4002: +Vertex 4003: +Vertex 4004: +Vertex 4005: +Vertex 4006: +Vertex 4007: +Vertex 4008: +Vertex 4009: +Vertex 4010: +Vertex 4011: +Vertex 4012: +Vertex 4013: +Vertex 4014: +Vertex 4015: +Vertex 4016: +Vertex 4017: +Vertex 4018: +Vertex 4019: +Vertex 4020: +Vertex 4021: +Vertex 4022: +Vertex 4023: +Vertex 4024: +Vertex 4025: +Vertex 4026: +Vertex 4027: +Vertex 4028: +Vertex 4029: +Vertex 4030: +Vertex 4031: +Vertex 4032: +Vertex 4033: +Vertex 4034: +Vertex 4035: +Vertex 4036: +Vertex 4037: +Vertex 4038: +Vertex 4039: +Vertex 4040: +Vertex 4041: +Vertex 4042: +Vertex 4043: +Vertex 4044: +Vertex 4045: +Vertex 4046: +Vertex 4047: +Vertex 4048: +Vertex 4049: +Vertex 4050: +Vertex 4051: +Vertex 4052: +Vertex 4053: +Vertex 4054: +Vertex 4055: +Vertex 4056: +Vertex 4057: +Vertex 4058: +Vertex 4059: +Vertex 4060: +Vertex 4061: +Vertex 4062: +Vertex 4063: +Vertex 4064: +Vertex 4065: +Vertex 4066: +Vertex 4067: +Vertex 4068: +Vertex 4069: +Vertex 4070: +Vertex 4071: +Vertex 4072: +Vertex 4073: +Vertex 4074: +Vertex 4075: +Vertex 4076: +Vertex 4077: +Vertex 4078: +Vertex 4079: +Vertex 4080: +Vertex 4081: +Vertex 4082: +Vertex 4083: +Vertex 4084: +Vertex 4085: +Vertex 4086: +Vertex 4087: +Vertex 4088: +Vertex 4089: +Vertex 4090: +Vertex 4091: +Vertex 4092: +Vertex 4093: +Vertex 4094: +Vertex 4095: +Vertex 4096: +Vertex 4097: +Vertex 4098: +Vertex 4099: +Vertex 4100: +Vertex 4101: +Vertex 4102: +Vertex 4103: +Vertex 4104: +Vertex 4105: +Vertex 4106: +Vertex 4107: +Vertex 4108: +Vertex 4109: +Vertex 4110: +Vertex 4111: +Vertex 4112: +Vertex 4113: +Vertex 4114: +Vertex 4115: +Vertex 4116: +Vertex 4117: +Vertex 4118: +Vertex 4119: +Vertex 4120: +Vertex 4121: +Vertex 4122: +Vertex 4123: +Vertex 4124: +Vertex 4125: +Vertex 4126: +Vertex 4127: +Vertex 4128: +Vertex 4129: +Vertex 4130: +Vertex 4131: +Vertex 4132: +Vertex 4133: +Vertex 4134: +Vertex 4135: +Vertex 4136: +Vertex 4137: +Vertex 4138: +Vertex 4139: +Vertex 4140: +Vertex 4141: +Vertex 4142: +Vertex 4143: +Vertex 4144: +Vertex 4145: +Vertex 4146: +Vertex 4147: +Vertex 4148: +Vertex 4149: +Vertex 4150: +Vertex 4151: +Vertex 4152: +Vertex 4153: +Vertex 4154: +Vertex 4155: +Vertex 4156: +Vertex 4157: +Vertex 4158: +Vertex 4159: +Vertex 4160: +Vertex 4161: +Vertex 4162: +Vertex 4163: +Vertex 4164: +Vertex 4165: +Vertex 4166: +Vertex 4167: +Vertex 4168: +Vertex 4169: +Vertex 4170: +Vertex 4171: +Vertex 4172: +Vertex 4173: +Vertex 4174: +Vertex 4175: +Vertex 4176: +Vertex 4177: +Vertex 4178: +Vertex 4179: +Vertex 4180: +Vertex 4181: +Vertex 4182: +Vertex 4183: +Vertex 4184: +Vertex 4185: +Vertex 4186: +Vertex 4187: +Vertex 4188: +Vertex 4189: +Vertex 4190: +Vertex 4191: +Vertex 4192: +Vertex 4193: +Vertex 4194: +Vertex 4195: +Vertex 4196: +Vertex 4197: +Vertex 4198: +Vertex 4199: +Vertex 4200: +Vertex 4201: +Vertex 4202: +Vertex 4203: +Vertex 4204: +Vertex 4205: +Vertex 4206: +Vertex 4207: +Vertex 4208: +Vertex 4209: +Vertex 4210: +Vertex 4211: +Vertex 4212: +Vertex 4213: +Vertex 4214: +Vertex 4215: +Vertex 4216: +Vertex 4217: +Vertex 4218: +Vertex 4219: +Vertex 4220: +Vertex 4221: +Vertex 4222: +Vertex 4223: +Vertex 4224: +Vertex 4225: +Vertex 4226: +Vertex 4227: +Vertex 4228: +Vertex 4229: +Vertex 4230: +Vertex 4231: +Vertex 4232: +Vertex 4233: +Vertex 4234: +Vertex 4235: +Vertex 4236: +Vertex 4237: +Vertex 4238: +Vertex 4239: +Vertex 4240: +Vertex 4241: +Vertex 4242: +Vertex 4243: +Vertex 4244: +Vertex 4245: +Vertex 4246: +Vertex 4247: +Vertex 4248: +Vertex 4249: +Vertex 4250: +Vertex 4251: +Vertex 4252: +Vertex 4253: +Vertex 4254: +Vertex 4255: +Vertex 4256: +Vertex 4257: +Vertex 4258: +Vertex 4259: +Vertex 4260: +Vertex 4261: +Vertex 4262: +Vertex 4263: +Vertex 4264: +Vertex 4265: +Vertex 4266: +Vertex 4267: +Vertex 4268: +Vertex 4269: +Vertex 4270: +Vertex 4271: +Vertex 4272: +Vertex 4273: +Vertex 4274: +Vertex 4275: +Vertex 4276: +Vertex 4277: +Vertex 4278: +Vertex 4279: +Vertex 4280: +Vertex 4281: +Vertex 4282: +Vertex 4283: +Vertex 4284: +Vertex 4285: +Vertex 4286: +Vertex 4287: +Vertex 4288: +Vertex 4289: +Vertex 4290: +Vertex 4291: +Vertex 4292: +Vertex 4293: +Vertex 4294: +Vertex 4295: +Vertex 4296: +Vertex 4297: +Vertex 4298: +Vertex 4299: +Vertex 4300: +Vertex 4301: +Vertex 4302: +Vertex 4303: +Vertex 4304: +Vertex 4305: +Vertex 4306: +Vertex 4307: +Vertex 4308: +Vertex 4309: +Vertex 4310: +Vertex 4311: +Vertex 4312: +Vertex 4313: +Vertex 4314: +Vertex 4315: +Vertex 4316: +Vertex 4317: +Vertex 4318: +Vertex 4319: +Vertex 4320: +Vertex 4321: +Vertex 4322: +Vertex 4323: +Vertex 4324: +Vertex 4325: +Vertex 4326: +Vertex 4327: +Vertex 4328: +Vertex 4329: +Vertex 4330: +Vertex 4331: +Vertex 4332: +Vertex 4333: +Vertex 4334: +Vertex 4335: +Vertex 4336: +Vertex 4337: +Vertex 4338: +Vertex 4339: +Vertex 4340: +Vertex 4341: +Vertex 4342: +Vertex 4343: +Vertex 4344: +Vertex 4345: +Vertex 4346: +Vertex 4347: +Vertex 4348: +Vertex 4349: +Vertex 4350: +Vertex 4351: +Vertex 4352: +Vertex 4353: +Vertex 4354: +Vertex 4355: +Vertex 4356: +Vertex 4357: +Vertex 4358: +Vertex 4359: +Vertex 4360: +Vertex 4361: +Vertex 4362: +Vertex 4363: +Vertex 4364: +Vertex 4365: +Vertex 4366: +Vertex 4367: +Vertex 4368: +Vertex 4369: +Vertex 4370: +Vertex 4371: +Vertex 4372: +Vertex 4373: +Vertex 4374: +Vertex 4375: +Vertex 4376: +Vertex 4377: +Vertex 4378: +Vertex 4379: +Vertex 4380: +Vertex 4381: +Vertex 4382: +Vertex 4383: +Vertex 4384: +Vertex 4385: +Vertex 4386: +Vertex 4387: +Vertex 4388: +Vertex 4389: +Vertex 4390: +Vertex 4391: +Vertex 4392: +Vertex 4393: +Vertex 4394: +Vertex 4395: +Vertex 4396: +Vertex 4397: +Vertex 4398: +Vertex 4399: +Vertex 4400: +Vertex 4401: +Vertex 4402: +Vertex 4403: +Vertex 4404: +Vertex 4405: +Vertex 4406: +Vertex 4407: +Vertex 4408: +Vertex 4409: +Vertex 4410: +Vertex 4411: +Vertex 4412: +Vertex 4413: +Vertex 4414: +Vertex 4415: +Vertex 4416: +Vertex 4417: +Vertex 4418: +Vertex 4419: +Vertex 4420: +Vertex 4421: +Vertex 4422: +Vertex 4423: +Vertex 4424: +Vertex 4425: +Vertex 4426: +Vertex 4427: +Vertex 4428: +Vertex 4429: +Vertex 4430: +Vertex 4431: +Vertex 4432: +Vertex 4433: +Vertex 4434: +Vertex 4435: +Vertex 4436: +Vertex 4437: +Vertex 4438: +Vertex 4439: +Vertex 4440: +Vertex 4441: +Vertex 4442: +Vertex 4443: +Vertex 4444: +Vertex 4445: +Vertex 4446: +Vertex 4447: +Vertex 4448: +Vertex 4449: +Vertex 4450: +Vertex 4451: +Vertex 4452: +Vertex 4453: +Vertex 4454: +Vertex 4455: +Vertex 4456: +Vertex 4457: +Vertex 4458: +Vertex 4459: +Vertex 4460: +Vertex 4461: +Vertex 4462: +Vertex 4463: +Vertex 4464: +Vertex 4465: +Vertex 4466: +Vertex 4467: +Vertex 4468: +Vertex 4469: +Vertex 4470: +Vertex 4471: +Vertex 4472: +Vertex 4473: +Vertex 4474: +Vertex 4475: +Vertex 4476: +Vertex 4477: +Vertex 4478: +Vertex 4479: +Vertex 4480: +Vertex 4481: +Vertex 4482: +Vertex 4483: +Vertex 4484: +Vertex 4485: +Vertex 4486: +Vertex 4487: +Vertex 4488: +Vertex 4489: +Vertex 4490: +Vertex 4491: +Vertex 4492: +Vertex 4493: +Vertex 4494: +Vertex 4495: +Vertex 4496: +Vertex 4497: +Vertex 4498: +Vertex 4499: +Vertex 4500: +Vertex 4501: +Vertex 4502: +Vertex 4503: +Vertex 4504: +Vertex 4505: +Vertex 4506: +Vertex 4507: +Vertex 4508: +Vertex 4509: +Vertex 4510: +Vertex 4511: +Vertex 4512: +Vertex 4513: +Vertex 4514: +Vertex 4515: +Vertex 4516: +Vertex 4517: +Vertex 4518: +Vertex 4519: +Vertex 4520: +Vertex 4521: +Vertex 4522: +Vertex 4523: +Vertex 4524: +Vertex 4525: +Vertex 4526: +Vertex 4527: +Vertex 4528: +Vertex 4529: +Vertex 4530: +Vertex 4531: +Vertex 4532: +Vertex 4533: +Vertex 4534: +Vertex 4535: +Vertex 4536: +Vertex 4537: +Vertex 4538: +Vertex 4539: +Vertex 4540: +Vertex 4541: +Vertex 4542: +Vertex 4543: +Vertex 4544: +Vertex 4545: +Vertex 4546: +Vertex 4547: +Vertex 4548: +Vertex 4549: +Vertex 4550: +Vertex 4551: +Vertex 4552: +Vertex 4553: +Vertex 4554: +Vertex 4555: +Vertex 4556: +Vertex 4557: +Vertex 4558: +Vertex 4559: +Vertex 4560: +Vertex 4561: +Vertex 4562: +Vertex 4563: +Vertex 4564: +Vertex 4565: +Vertex 4566: +Vertex 4567: +Vertex 4568: +Vertex 4569: +Vertex 4570: +Vertex 4571: +Vertex 4572: +Vertex 4573: +Vertex 4574: +Vertex 4575: +Vertex 4576: +Vertex 4577: +Vertex 4578: +Vertex 4579: +Vertex 4580: +Vertex 4581: +Vertex 4582: +Vertex 4583: +Vertex 4584: +Vertex 4585: +Vertex 4586: +Vertex 4587: +Vertex 4588: +Vertex 4589: +Vertex 4590: +Vertex 4591: +Vertex 4592: +Vertex 4593: +Vertex 4594: +Vertex 4595: +Vertex 4596: +Vertex 4597: +Vertex 4598: +Vertex 4599: +Vertex 4600: +Vertex 4601: +Vertex 4602: +Vertex 4603: +Vertex 4604: +Vertex 4605: +Vertex 4606: +Vertex 4607: +Vertex 4608: +Vertex 4609: +Vertex 4610: +Vertex 4611: +Vertex 4612: +Vertex 4613: +Vertex 4614: +Vertex 4615: +Vertex 4616: +Vertex 4617: +Vertex 4618: +Vertex 4619: +Vertex 4620: +Vertex 4621: +Vertex 4622: +Vertex 4623: +Vertex 4624: +Vertex 4625: +Vertex 4626: +Vertex 4627: +Vertex 4628: +Vertex 4629: +Vertex 4630: +Vertex 4631: +Vertex 4632: +Vertex 4633: +Vertex 4634: +Vertex 4635: +Vertex 4636: +Vertex 4637: +Vertex 4638: +Vertex 4639: +Vertex 4640: +Vertex 4641: +Vertex 4642: +Vertex 4643: +Vertex 4644: +Vertex 4645: +Vertex 4646: +Vertex 4647: +Vertex 4648: +Vertex 4649: +Vertex 4650: +Vertex 4651: +Vertex 4652: +Vertex 4653: +Vertex 4654: +Vertex 4655: +Vertex 4656: +Vertex 4657: +Vertex 4658: +Vertex 4659: +Vertex 4660: +Vertex 4661: +Vertex 4662: +Vertex 4663: +Vertex 4664: +Vertex 4665: +Vertex 4666: +Vertex 4667: +Vertex 4668: +Vertex 4669: +Vertex 4670: +Vertex 4671: +Vertex 4672: +Vertex 4673: +Vertex 4674: +Vertex 4675: +Vertex 4676: +Vertex 4677: +Vertex 4678: +Vertex 4679: +Vertex 4680: +Vertex 4681: +Vertex 4682: +Vertex 4683: +Vertex 4684: +Vertex 4685: +Vertex 4686: +Vertex 4687: +Vertex 4688: +Vertex 4689: +Vertex 4690: +Vertex 4691: +Vertex 4692: +Vertex 4693: +Vertex 4694: +Vertex 4695: +Vertex 4696: +Vertex 4697: +Vertex 4698: +Vertex 4699: +Vertex 4700: +Vertex 4701: +Vertex 4702: +Vertex 4703: +Vertex 4704: +Vertex 4705: +Vertex 4706: +Vertex 4707: +Vertex 4708: +Vertex 4709: +Vertex 4710: +Vertex 4711: +Vertex 4712: +Vertex 4713: +Vertex 4714: +Vertex 4715: +Vertex 4716: +Vertex 4717: +Vertex 4718: +Vertex 4719: +Vertex 4720: +Vertex 4721: +Vertex 4722: +Vertex 4723: +Vertex 4724: +Vertex 4725: +Vertex 4726: +Vertex 4727: +Vertex 4728: +Vertex 4729: +Vertex 4730: +Vertex 4731: +Vertex 4732: +Vertex 4733: +Vertex 4734: +Vertex 4735: +Vertex 4736: +Vertex 4737: +Vertex 4738: +Vertex 4739: +Vertex 4740: +Vertex 4741: +Vertex 4742: +Vertex 4743: +Vertex 4744: +Vertex 4745: +Vertex 4746: +Vertex 4747: +Vertex 4748: +Vertex 4749: +Vertex 4750: +Vertex 4751: +Vertex 4752: +Vertex 4753: +Vertex 4754: +Vertex 4755: +Vertex 4756: +Vertex 4757: +Vertex 4758: +Vertex 4759: +Vertex 4760: +Vertex 4761: +Vertex 4762: +Vertex 4763: +Vertex 4764: +Vertex 4765: +Vertex 4766: +Vertex 4767: +Vertex 4768: +Vertex 4769: +Vertex 4770: +Vertex 4771: +Vertex 4772: +Vertex 4773: +Vertex 4774: +Vertex 4775: +Vertex 4776: +Vertex 4777: +Vertex 4778: +Vertex 4779: +Vertex 4780: +Vertex 4781: +Vertex 4782: +Vertex 4783: +Vertex 4784: +Vertex 4785: +Vertex 4786: +Vertex 4787: +Vertex 4788: +Vertex 4789: +Vertex 4790: +Vertex 4791: +Vertex 4792: +Vertex 4793: +Vertex 4794: +Vertex 4795: +Vertex 4796: +Vertex 4797: +Vertex 4798: +Vertex 4799: +Vertex 4800: +Vertex 4801: +Vertex 4802: +Vertex 4803: +Vertex 4804: +Vertex 4805: +Vertex 4806: +Vertex 4807: +Vertex 4808: +Vertex 4809: +Vertex 4810: +Vertex 4811: +Vertex 4812: +Vertex 4813: +Vertex 4814: +Vertex 4815: +Vertex 4816: +Vertex 4817: +Vertex 4818: +Vertex 4819: +Vertex 4820: +Vertex 4821: +Vertex 4822: +Vertex 4823: +Vertex 4824: +Vertex 4825: +Vertex 4826: +Vertex 4827: +Vertex 4828: +Vertex 4829: +Vertex 4830: +Vertex 4831: +Vertex 4832: +Vertex 4833: +Vertex 4834: +Vertex 4835: +Vertex 4836: +Vertex 4837: +Vertex 4838: +Vertex 4839: +Vertex 4840: +Vertex 4841: +Vertex 4842: +Vertex 4843: +Vertex 4844: +Vertex 4845: +Vertex 4846: +Vertex 4847: +Vertex 4848: +Vertex 4849: +Vertex 4850: +Vertex 4851: +Vertex 4852: +Vertex 4853: +Vertex 4854: +Vertex 4855: +Vertex 4856: +Vertex 4857: +Vertex 4858: +Vertex 4859: +Vertex 4860: +Vertex 4861: +Vertex 4862: +Vertex 4863: +Vertex 4864: +Vertex 4865: +Vertex 4866: +Vertex 4867: +Vertex 4868: +Vertex 4869: +Vertex 4870: +Vertex 4871: +Vertex 4872: +Vertex 4873: +Vertex 4874: +Vertex 4875: +Vertex 4876: +Vertex 4877: +Vertex 4878: +Vertex 4879: +Vertex 4880: +Vertex 4881: +Vertex 4882: +Vertex 4883: +Vertex 4884: +Vertex 4885: +Vertex 4886: +Vertex 4887: +Vertex 4888: +Vertex 4889: +Vertex 4890: +Vertex 4891: +Vertex 4892: +Vertex 4893: +Vertex 4894: +Vertex 4895: +Vertex 4896: +Vertex 4897: +Vertex 4898: +Vertex 4899: +Vertex 4900: +Vertex 4901: +Vertex 4902: +Vertex 4903: +Vertex 4904: +Vertex 4905: +Vertex 4906: +Vertex 4907: +Vertex 4908: +Vertex 4909: +Vertex 4910: +Vertex 4911: +Vertex 4912: +Vertex 4913: +Vertex 4914: +Vertex 4915: +Vertex 4916: +Vertex 4917: +Vertex 4918: +Vertex 4919: +Vertex 4920: +Vertex 4921: +Vertex 4922: +Vertex 4923: +Vertex 4924: +Vertex 4925: +Vertex 4926: +Vertex 4927: +Vertex 4928: +Vertex 4929: +Vertex 4930: +Vertex 4931: +Vertex 4932: +Vertex 4933: +Vertex 4934: +Vertex 4935: +Vertex 4936: +Vertex 4937: +Vertex 4938: +Vertex 4939: +Vertex 4940: +Vertex 4941: +Vertex 4942: +Vertex 4943: +Vertex 4944: +Vertex 4945: +Vertex 4946: +Vertex 4947: +Vertex 4948: +Vertex 4949: +Vertex 4950: +Vertex 4951: +Vertex 4952: +Vertex 4953: +Vertex 4954: +Vertex 4955: +Vertex 4956: +Vertex 4957: +Vertex 4958: +Vertex 4959: +Vertex 4960: +Vertex 4961: +Vertex 4962: +Vertex 4963: +Vertex 4964: +Vertex 4965: +Vertex 4966: +Vertex 4967: +Vertex 4968: +Vertex 4969: +Vertex 4970: +Vertex 4971: +Vertex 4972: +Vertex 4973: +Vertex 4974: +Vertex 4975: +Vertex 4976: +Vertex 4977: +Vertex 4978: +Vertex 4979: +Vertex 4980: +Vertex 4981: +Vertex 4982: +Vertex 4983: +Vertex 4984: +Vertex 4985: +Vertex 4986: +Vertex 4987: +Vertex 4988: +Vertex 4989: +Vertex 4990: +Vertex 4991: +Vertex 4992: +Vertex 4993: +Vertex 4994: +Vertex 4995: +Vertex 4996: +Vertex 4997: +Vertex 4998: +Vertex 4999: +Vertex 5000: +Vertex 5001: +Vertex 5002: +Vertex 5003: +Vertex 5004: +Vertex 5005: +Vertex 5006: +Vertex 5007: +Vertex 5008: +Vertex 5009: +Vertex 5010: +Vertex 5011: +Vertex 5012: +Vertex 5013: +Vertex 5014: +Vertex 5015: +Vertex 5016: +Vertex 5017: +Vertex 5018: +Vertex 5019: +Vertex 5020: +Vertex 5021: +Vertex 5022: +Vertex 5023: +Vertex 5024: +Vertex 5025: +Vertex 5026: +Vertex 5027: +Vertex 5028: +Vertex 5029: +Vertex 5030: +Vertex 5031: +Vertex 5032: +Vertex 5033: +Vertex 5034: +Vertex 5035: +Vertex 5036: +Vertex 5037: +Vertex 5038: +Vertex 5039: +Vertex 5040: +Vertex 5041: +Vertex 5042: +Vertex 5043: +Vertex 5044: +Vertex 5045: +Vertex 5046: +Vertex 5047: +Vertex 5048: +Vertex 5049: +Vertex 5050: +Vertex 5051: +Vertex 5052: +Vertex 5053: +Vertex 5054: +Vertex 5055: +Vertex 5056: +Vertex 5057: +Vertex 5058: +Vertex 5059: +Vertex 5060: +Vertex 5061: +Vertex 5062: +Vertex 5063: +Vertex 5064: +Vertex 5065: +Vertex 5066: +Vertex 5067: +Vertex 5068: +Vertex 5069: +Vertex 5070: +Vertex 5071: +Vertex 5072: +Vertex 5073: +Vertex 5074: +Vertex 5075: +Vertex 5076: +Vertex 5077: +Vertex 5078: +Vertex 5079: +Vertex 5080: +Vertex 5081: +Vertex 5082: +Vertex 5083: +Vertex 5084: +Vertex 5085: +Vertex 5086: +Vertex 5087: +Vertex 5088: +Vertex 5089: +Vertex 5090: +Vertex 5091: +Vertex 5092: +Vertex 5093: +Vertex 5094: +Vertex 5095: +Vertex 5096: +Vertex 5097: +Vertex 5098: +Vertex 5099: +Vertex 5100: +Vertex 5101: +Vertex 5102: +Vertex 5103: +Vertex 5104: +Vertex 5105: +Vertex 5106: +Vertex 5107: +Vertex 5108: +Vertex 5109: +Vertex 5110: +Vertex 5111: +Vertex 5112: +Vertex 5113: +Vertex 5114: +Vertex 5115: +Vertex 5116: +Vertex 5117: +Vertex 5118: +Vertex 5119: +Vertex 5120: +Vertex 5121: +Vertex 5122: +Vertex 5123: +Vertex 5124: +Vertex 5125: +Vertex 5126: +Vertex 5127: +Vertex 5128: +Vertex 5129: +Vertex 5130: +Vertex 5131: +Vertex 5132: +Vertex 5133: +Vertex 5134: +Vertex 5135: +Vertex 5136: +Vertex 5137: +Vertex 5138: +Vertex 5139: +Vertex 5140: +Vertex 5141: +Vertex 5142: +Vertex 5143: +Vertex 5144: +Vertex 5145: +Vertex 5146: +Vertex 5147: +Vertex 5148: +Vertex 5149: +Vertex 5150: +Vertex 5151: +Vertex 5152: +Vertex 5153: +Vertex 5154: +Vertex 5155: +Vertex 5156: +Vertex 5157: +Vertex 5158: +Vertex 5159: +Vertex 5160: +Vertex 5161: +Vertex 5162: +Vertex 5163: +Vertex 5164: +Vertex 5165: +Vertex 5166: +Vertex 5167: +Vertex 5168: +Vertex 5169: +Vertex 5170: +Vertex 5171: +Vertex 5172: +Vertex 5173: +Vertex 5174: +Vertex 5175: +Vertex 5176: +Vertex 5177: +Vertex 5178: +Vertex 5179: +Vertex 5180: +Vertex 5181: +Vertex 5182: +Vertex 5183: +Vertex 5184: +Vertex 5185: +Vertex 5186: +Vertex 5187: +Vertex 5188: +Vertex 5189: +Vertex 5190: +Vertex 5191: +Vertex 5192: +Vertex 5193: +Vertex 5194: +Vertex 5195: +Vertex 5196: +Vertex 5197: +Vertex 5198: +Vertex 5199: +Vertex 5200: +Vertex 5201: +Vertex 5202: +Vertex 5203: +Vertex 5204: +Vertex 5205: +Vertex 5206: +Vertex 5207: +Vertex 5208: +Vertex 5209: +Vertex 5210: +Vertex 5211: +Vertex 5212: +Vertex 5213: +Vertex 5214: +Vertex 5215: +Vertex 5216: +Vertex 5217: +Vertex 5218: +Vertex 5219: +Vertex 5220: +Vertex 5221: +Vertex 5222: +Vertex 5223: +Vertex 5224: +Vertex 5225: +Vertex 5226: +Vertex 5227: +Vertex 5228: +Vertex 5229: +Vertex 5230: +Vertex 5231: +Vertex 5232: +Vertex 5233: +Vertex 5234: +Vertex 5235: +Vertex 5236: +Vertex 5237: +Vertex 5238: +Vertex 5239: +Vertex 5240: +Vertex 5241: +Vertex 5242: +Vertex 5243: +Vertex 5244: +Vertex 5245: +Vertex 5246: +Vertex 5247: +Vertex 5248: +Vertex 5249: +Vertex 5250: +Vertex 5251: +Vertex 5252: +Vertex 5253: +Vertex 5254: +Vertex 5255: +Vertex 5256: +Vertex 5257: +Vertex 5258: +Vertex 5259: +Vertex 5260: +Vertex 5261: +Vertex 5262: +Vertex 5263: +Vertex 5264: +Vertex 5265: +Vertex 5266: +Vertex 5267: +Vertex 5268: +Vertex 5269: +Vertex 5270: +Vertex 5271: +Vertex 5272: +Vertex 5273: +Vertex 5274: +Vertex 5275: +Vertex 5276: +Vertex 5277: +Vertex 5278: +Vertex 5279: +Vertex 5280: +Vertex 5281: +Vertex 5282: +Vertex 5283: +Vertex 5284: +Vertex 5285: +Vertex 5286: +Vertex 5287: +Vertex 5288: +Vertex 5289: +Vertex 5290: +Vertex 5291: +Vertex 5292: +Vertex 5293: +Vertex 5294: +Vertex 5295: +Vertex 5296: +Vertex 5297: +Vertex 5298: +Vertex 5299: +Vertex 5300: +Vertex 5301: +Vertex 5302: +Vertex 5303: +Vertex 5304: +Vertex 5305: +Vertex 5306: +Vertex 5307: +Vertex 5308: +Vertex 5309: +Vertex 5310: +Vertex 5311: +Vertex 5312: +Vertex 5313: +Vertex 5314: +Vertex 5315: +Vertex 5316: +Vertex 5317: +Vertex 5318: +Vertex 5319: +Vertex 5320: +Vertex 5321: +Vertex 5322: +Vertex 5323: +Vertex 5324: +Vertex 5325: +Vertex 5326: +Vertex 5327: +Vertex 5328: +Vertex 5329: +Vertex 5330: +Vertex 5331: +Vertex 5332: +Vertex 5333: +Vertex 5334: +Vertex 5335: +Vertex 5336: +Vertex 5337: +Vertex 5338: +Vertex 5339: +Vertex 5340: +Vertex 5341: +Vertex 5342: +Vertex 5343: +Vertex 5344: +Vertex 5345: +Vertex 5346: +Vertex 5347: +Vertex 5348: +Vertex 5349: +Vertex 5350: +Vertex 5351: +Vertex 5352: +Vertex 5353: +Vertex 5354: +Vertex 5355: +Vertex 5356: +Vertex 5357: +Vertex 5358: +Vertex 5359: +Vertex 5360: +Vertex 5361: +Vertex 5362: +Vertex 5363: +Vertex 5364: +Vertex 5365: +Vertex 5366: +Vertex 5367: +Vertex 5368: +Vertex 5369: +Vertex 5370: +Vertex 5371: +Vertex 5372: +Vertex 5373: +Vertex 5374: +Vertex 5375: +Vertex 5376: +Vertex 5377: +Vertex 5378: +Vertex 5379: +Vertex 5380: +Vertex 5381: +Vertex 5382: +Vertex 5383: +Vertex 5384: +Vertex 5385: +Vertex 5386: +Vertex 5387: +Vertex 5388: +Vertex 5389: +Vertex 5390: +Vertex 5391: +Vertex 5392: +Vertex 5393: +Vertex 5394: +Vertex 5395: +Vertex 5396: +Vertex 5397: +Vertex 5398: +Vertex 5399: +===UV Coordinates: +Face count: 9390 +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 +Face 4480 +UV Count: 3 + UV + UV + UV +Face 4481 +UV Count: 3 + UV + UV + UV +Face 4482 +UV Count: 3 + UV + UV + UV +Face 4483 +UV Count: 3 + UV + UV + UV +Face 4484 +UV Count: 3 + UV + UV + UV +Face 4485 +UV Count: 3 + UV + UV + UV +Face 4486 +UV Count: 3 + UV + UV + UV +Face 4487 +UV Count: 3 + UV + UV + UV +Face 4488 +UV Count: 3 + UV + UV + UV +Face 4489 +UV Count: 3 + UV + UV + UV +Face 4490 +UV Count: 3 + UV + UV + UV +Face 4491 +UV Count: 3 + UV + UV + UV +Face 4492 +UV Count: 3 + UV + UV + UV +Face 4493 +UV Count: 3 + UV + UV + UV +Face 4494 +UV Count: 3 + UV + UV + UV +Face 4495 +UV Count: 3 + UV + UV + UV +Face 4496 +UV Count: 3 + UV + UV + UV +Face 4497 +UV Count: 3 + UV + UV + UV +Face 4498 +UV Count: 3 + UV + UV + UV +Face 4499 +UV Count: 3 + UV + UV + UV +Face 4500 +UV Count: 3 + UV + UV + UV +Face 4501 +UV Count: 3 + UV + UV + UV +Face 4502 +UV Count: 3 + UV + UV + UV +Face 4503 +UV Count: 3 + UV + UV + UV +Face 4504 +UV Count: 3 + UV + UV + UV +Face 4505 +UV Count: 3 + UV + UV + UV +Face 4506 +UV Count: 3 + UV + UV + UV +Face 4507 +UV Count: 3 + UV + UV + UV +Face 4508 +UV Count: 3 + UV + UV + UV +Face 4509 +UV Count: 3 + UV + UV + UV +Face 4510 +UV Count: 3 + UV + UV + UV +Face 4511 +UV Count: 3 + UV + UV + UV +Face 4512 +UV Count: 3 + UV + UV + UV +Face 4513 +UV Count: 3 + UV + UV + UV +Face 4514 +UV Count: 3 + UV + UV + UV +Face 4515 +UV Count: 3 + UV + UV + UV +Face 4516 +UV Count: 3 + UV + UV + UV +Face 4517 +UV Count: 3 + UV + UV + UV +Face 4518 +UV Count: 3 + UV + UV + UV +Face 4519 +UV Count: 3 + UV + UV + UV +Face 4520 +UV Count: 3 + UV + UV + UV +Face 4521 +UV Count: 3 + UV + UV + UV +Face 4522 +UV Count: 3 + UV + UV + UV +Face 4523 +UV Count: 3 + UV + UV + UV +Face 4524 +UV Count: 3 + UV + UV + UV +Face 4525 +UV Count: 3 + UV + UV + UV +Face 4526 +UV Count: 3 + UV + UV + UV +Face 4527 +UV Count: 3 + UV + UV + UV +Face 4528 +UV Count: 3 + UV + UV + UV +Face 4529 +UV Count: 3 + UV + UV + UV +Face 4530 +UV Count: 3 + UV + UV + UV +Face 4531 +UV Count: 3 + UV + UV + UV +Face 4532 +UV Count: 3 + UV + UV + UV +Face 4533 +UV Count: 3 + UV + UV + UV +Face 4534 +UV Count: 3 + UV + UV + UV +Face 4535 +UV Count: 3 + UV + UV + UV +Face 4536 +UV Count: 3 + UV + UV + UV +Face 4537 +UV Count: 3 + UV + UV + UV +Face 4538 +UV Count: 3 + UV + UV + UV +Face 4539 +UV Count: 3 + UV + UV + UV +Face 4540 +UV Count: 3 + UV + UV + UV +Face 4541 +UV Count: 3 + UV + UV + UV +Face 4542 +UV Count: 3 + UV + UV + UV +Face 4543 +UV Count: 3 + UV + UV + UV +Face 4544 +UV Count: 3 + UV + UV + UV +Face 4545 +UV Count: 3 + UV + UV + UV +Face 4546 +UV Count: 3 + UV + UV + UV +Face 4547 +UV Count: 3 + UV + UV + UV +Face 4548 +UV Count: 3 + UV + UV + UV +Face 4549 +UV Count: 3 + UV + UV + UV +Face 4550 +UV Count: 3 + UV + UV + UV +Face 4551 +UV Count: 3 + UV + UV + UV +Face 4552 +UV Count: 3 + UV + UV + UV +Face 4553 +UV Count: 3 + UV + UV + UV +Face 4554 +UV Count: 3 + UV + UV + UV +Face 4555 +UV Count: 3 + UV + UV + UV +Face 4556 +UV Count: 3 + UV + UV + UV +Face 4557 +UV Count: 3 + UV + UV + UV +Face 4558 +UV Count: 3 + UV + UV + UV +Face 4559 +UV Count: 3 + UV + UV + UV +Face 4560 +UV Count: 3 + UV + UV + UV +Face 4561 +UV Count: 3 + UV + UV + UV +Face 4562 +UV Count: 3 + UV + UV + UV +Face 4563 +UV Count: 3 + UV + UV + UV +Face 4564 +UV Count: 3 + UV + UV + UV +Face 4565 +UV Count: 3 + UV + UV + UV +Face 4566 +UV Count: 3 + UV + UV + UV +Face 4567 +UV Count: 3 + UV + UV + UV +Face 4568 +UV Count: 3 + UV + UV + UV +Face 4569 +UV Count: 3 + UV + UV + UV +Face 4570 +UV Count: 3 + UV + UV + UV +Face 4571 +UV Count: 3 + UV + UV + UV +Face 4572 +UV Count: 3 + UV + UV + UV +Face 4573 +UV Count: 3 + UV + UV + UV +Face 4574 +UV Count: 3 + UV + UV + UV +Face 4575 +UV Count: 3 + UV + UV + UV +Face 4576 +UV Count: 3 + UV + UV + UV +Face 4577 +UV Count: 3 + UV + UV + UV +Face 4578 +UV Count: 3 + UV + UV + UV +Face 4579 +UV Count: 3 + UV + UV + UV +Face 4580 +UV Count: 3 + UV + UV + UV +Face 4581 +UV Count: 3 + UV + UV + UV +Face 4582 +UV Count: 3 + UV + UV + UV +Face 4583 +UV Count: 3 + UV + UV + UV +Face 4584 +UV Count: 3 + UV + UV + UV +Face 4585 +UV Count: 3 + UV + UV + UV +Face 4586 +UV Count: 3 + UV + UV + UV +Face 4587 +UV Count: 3 + UV + UV + UV +Face 4588 +UV Count: 3 + UV + UV + UV +Face 4589 +UV Count: 3 + UV + UV + UV +Face 4590 +UV Count: 3 + UV + UV + UV +Face 4591 +UV Count: 3 + UV + UV + UV +Face 4592 +UV Count: 3 + UV + UV + UV +Face 4593 +UV Count: 3 + UV + UV + UV +Face 4594 +UV Count: 3 + UV + UV + UV +Face 4595 +UV Count: 3 + UV + UV + UV +Face 4596 +UV Count: 3 + UV + UV + UV +Face 4597 +UV Count: 3 + UV + UV + UV +Face 4598 +UV Count: 3 + UV + UV + UV +Face 4599 +UV Count: 3 + UV + UV + UV +Face 4600 +UV Count: 3 + UV + UV + UV +Face 4601 +UV Count: 3 + UV + UV + UV +Face 4602 +UV Count: 3 + UV + UV + UV +Face 4603 +UV Count: 3 + UV + UV + UV +Face 4604 +UV Count: 3 + UV + UV + UV +Face 4605 +UV Count: 3 + UV + UV + UV +Face 4606 +UV Count: 3 + UV + UV + UV +Face 4607 +UV Count: 3 + UV + UV + UV +Face 4608 +UV Count: 3 + UV + UV + UV +Face 4609 +UV Count: 3 + UV + UV + UV +Face 4610 +UV Count: 3 + UV + UV + UV +Face 4611 +UV Count: 3 + UV + UV + UV +Face 4612 +UV Count: 3 + UV + UV + UV +Face 4613 +UV Count: 3 + UV + UV + UV +Face 4614 +UV Count: 3 + UV + UV + UV +Face 4615 +UV Count: 3 + UV + UV + UV +Face 4616 +UV Count: 3 + UV + UV + UV +Face 4617 +UV Count: 3 + UV + UV + UV +Face 4618 +UV Count: 3 + UV + UV + UV +Face 4619 +UV Count: 3 + UV + UV + UV +Face 4620 +UV Count: 3 + UV + UV + UV +Face 4621 +UV Count: 3 + UV + UV + UV +Face 4622 +UV Count: 3 + UV + UV + UV +Face 4623 +UV Count: 3 + UV + UV + UV +Face 4624 +UV Count: 3 + UV + UV + UV +Face 4625 +UV Count: 3 + UV + UV + UV +Face 4626 +UV Count: 3 + UV + UV + UV +Face 4627 +UV Count: 3 + UV + UV + UV +Face 4628 +UV Count: 3 + UV + UV + UV +Face 4629 +UV Count: 3 + UV + UV + UV +Face 4630 +UV Count: 3 + UV + UV + UV +Face 4631 +UV Count: 3 + UV + UV + UV +Face 4632 +UV Count: 3 + UV + UV + UV +Face 4633 +UV Count: 3 + UV + UV + UV +Face 4634 +UV Count: 3 + UV + UV + UV +Face 4635 +UV Count: 3 + UV + UV + UV +Face 4636 +UV Count: 3 + UV + UV + UV +Face 4637 +UV Count: 3 + UV + UV + UV +Face 4638 +UV Count: 3 + UV + UV + UV +Face 4639 +UV Count: 3 + UV + UV + UV +Face 4640 +UV Count: 3 + UV + UV + UV +Face 4641 +UV Count: 3 + UV + UV + UV +Face 4642 +UV Count: 3 + UV + UV + UV +Face 4643 +UV Count: 3 + UV + UV + UV +Face 4644 +UV Count: 3 + UV + UV + UV +Face 4645 +UV Count: 3 + UV + UV + UV +Face 4646 +UV Count: 3 + UV + UV + UV +Face 4647 +UV Count: 3 + UV + UV + UV +Face 4648 +UV Count: 3 + UV + UV + UV +Face 4649 +UV Count: 3 + UV + UV + UV +Face 4650 +UV Count: 3 + UV + UV + UV +Face 4651 +UV Count: 3 + UV + UV + UV +Face 4652 +UV Count: 3 + UV + UV + UV +Face 4653 +UV Count: 3 + UV + UV + UV +Face 4654 +UV Count: 3 + UV + UV + UV +Face 4655 +UV Count: 3 + UV + UV + UV +Face 4656 +UV Count: 3 + UV + UV + UV +Face 4657 +UV Count: 3 + UV + UV + UV +Face 4658 +UV Count: 3 + UV + UV + UV +Face 4659 +UV Count: 3 + UV + UV + UV +Face 4660 +UV Count: 3 + UV + UV + UV +Face 4661 +UV Count: 3 + UV + UV + UV +Face 4662 +UV Count: 3 + UV + UV + UV +Face 4663 +UV Count: 3 + UV + UV + UV +Face 4664 +UV Count: 3 + UV + UV + UV +Face 4665 +UV Count: 3 + UV + UV + UV +Face 4666 +UV Count: 3 + UV + UV + UV +Face 4667 +UV Count: 3 + UV + UV + UV +Face 4668 +UV Count: 3 + UV + UV + UV +Face 4669 +UV Count: 3 + UV + UV + UV +Face 4670 +UV Count: 3 + UV + UV + UV +Face 4671 +UV Count: 3 + UV + UV + UV +Face 4672 +UV Count: 3 + UV + UV + UV +Face 4673 +UV Count: 3 + UV + UV + UV +Face 4674 +UV Count: 3 + UV + UV + UV +Face 4675 +UV Count: 3 + UV + UV + UV +Face 4676 +UV Count: 3 + UV + UV + UV +Face 4677 +UV Count: 3 + UV + UV + UV +Face 4678 +UV Count: 3 + UV + UV + UV +Face 4679 +UV Count: 3 + UV + UV + UV +Face 4680 +UV Count: 3 + UV + UV + UV +Face 4681 +UV Count: 3 + UV + UV + UV +Face 4682 +UV Count: 3 + UV + UV + UV +Face 4683 +UV Count: 3 + UV + UV + UV +Face 4684 +UV Count: 3 + UV + UV + UV +Face 4685 +UV Count: 3 + UV + UV + UV +Face 4686 +UV Count: 3 + UV + UV + UV +Face 4687 +UV Count: 3 + UV + UV + UV +Face 4688 +UV Count: 3 + UV + UV + UV +Face 4689 +UV Count: 3 + UV + UV + UV +Face 4690 +UV Count: 3 + UV + UV + UV +Face 4691 +UV Count: 3 + UV + UV + UV +Face 4692 +UV Count: 3 + UV + UV + UV +Face 4693 +UV Count: 3 + UV + UV + UV +Face 4694 +UV Count: 3 + UV + UV + UV +Face 4695 +UV Count: 3 + UV + UV + UV +Face 4696 +UV Count: 3 + UV + UV + UV +Face 4697 +UV Count: 3 + UV + UV + UV +Face 4698 +UV Count: 3 + UV + UV + UV +Face 4699 +UV Count: 3 + UV + UV + UV +Face 4700 +UV Count: 3 + UV + UV + UV +Face 4701 +UV Count: 3 + UV + UV + UV +Face 4702 +UV Count: 3 + UV + UV + UV +Face 4703 +UV Count: 3 + UV + UV + UV +Face 4704 +UV Count: 3 + UV + UV + UV +Face 4705 +UV Count: 3 + UV + UV + UV +Face 4706 +UV Count: 3 + UV + UV + UV +Face 4707 +UV Count: 3 + UV + UV + UV +Face 4708 +UV Count: 3 + UV + UV + UV +Face 4709 +UV Count: 3 + UV + UV + UV +Face 4710 +UV Count: 3 + UV + UV + UV +Face 4711 +UV Count: 3 + UV + UV + UV +Face 4712 +UV Count: 3 + UV + UV + UV +Face 4713 +UV Count: 3 + UV + UV + UV +Face 4714 +UV Count: 3 + UV + UV + UV +Face 4715 +UV Count: 3 + UV + UV + UV +Face 4716 +UV Count: 3 + UV + UV + UV +Face 4717 +UV Count: 3 + UV + UV + UV +Face 4718 +UV Count: 3 + UV + UV + UV +Face 4719 +UV Count: 3 + UV + UV + UV +Face 4720 +UV Count: 3 + UV + UV + UV +Face 4721 +UV Count: 3 + UV + UV + UV +Face 4722 +UV Count: 3 + UV + UV + UV +Face 4723 +UV Count: 3 + UV + UV + UV +Face 4724 +UV Count: 3 + UV + UV + UV +Face 4725 +UV Count: 3 + UV + UV + UV +Face 4726 +UV Count: 3 + UV + UV + UV +Face 4727 +UV Count: 3 + UV + UV + UV +Face 4728 +UV Count: 3 + UV + UV + UV +Face 4729 +UV Count: 3 + UV + UV + UV +Face 4730 +UV Count: 3 + UV + UV + UV +Face 4731 +UV Count: 3 + UV + UV + UV +Face 4732 +UV Count: 3 + UV + UV + UV +Face 4733 +UV Count: 3 + UV + UV + UV +Face 4734 +UV Count: 3 + UV + UV + UV +Face 4735 +UV Count: 3 + UV + UV + UV +Face 4736 +UV Count: 3 + UV + UV + UV +Face 4737 +UV Count: 3 + UV + UV + UV +Face 4738 +UV Count: 3 + UV + UV + UV +Face 4739 +UV Count: 3 + UV + UV + UV +Face 4740 +UV Count: 3 + UV + UV + UV +Face 4741 +UV Count: 3 + UV + UV + UV +Face 4742 +UV Count: 3 + UV + UV + UV +Face 4743 +UV Count: 3 + UV + UV + UV +Face 4744 +UV Count: 3 + UV + UV + UV +Face 4745 +UV Count: 3 + UV + UV + UV +Face 4746 +UV Count: 3 + UV + UV + UV +Face 4747 +UV Count: 3 + UV + UV + UV +Face 4748 +UV Count: 3 + UV + UV + UV +Face 4749 +UV Count: 3 + UV + UV + UV +Face 4750 +UV Count: 3 + UV + UV + UV +Face 4751 +UV Count: 3 + UV + UV + UV +Face 4752 +UV Count: 3 + UV + UV + UV +Face 4753 +UV Count: 3 + UV + UV + UV +Face 4754 +UV Count: 3 + UV + UV + UV +Face 4755 +UV Count: 3 + UV + UV + UV +Face 4756 +UV Count: 3 + UV + UV + UV +Face 4757 +UV Count: 3 + UV + UV + UV +Face 4758 +UV Count: 3 + UV + UV + UV +Face 4759 +UV Count: 3 + UV + UV + UV +Face 4760 +UV Count: 3 + UV + UV + UV +Face 4761 +UV Count: 3 + UV + UV + UV +Face 4762 +UV Count: 3 + UV + UV + UV +Face 4763 +UV Count: 3 + UV + UV + UV +Face 4764 +UV Count: 3 + UV + UV + UV +Face 4765 +UV Count: 3 + UV + UV + UV +Face 4766 +UV Count: 3 + UV + UV + UV +Face 4767 +UV Count: 3 + UV + UV + UV +Face 4768 +UV Count: 3 + UV + UV + UV +Face 4769 +UV Count: 3 + UV + UV + UV +Face 4770 +UV Count: 3 + UV + UV + UV +Face 4771 +UV Count: 3 + UV + UV + UV +Face 4772 +UV Count: 3 + UV + UV + UV +Face 4773 +UV Count: 3 + UV + UV + UV +Face 4774 +UV Count: 3 + UV + UV + UV +Face 4775 +UV Count: 3 + UV + UV + UV +Face 4776 +UV Count: 3 + UV + UV + UV +Face 4777 +UV Count: 3 + UV + UV + UV +Face 4778 +UV Count: 3 + UV + UV + UV +Face 4779 +UV Count: 3 + UV + UV + UV +Face 4780 +UV Count: 3 + UV + UV + UV +Face 4781 +UV Count: 3 + UV + UV + UV +Face 4782 +UV Count: 3 + UV + UV + UV +Face 4783 +UV Count: 3 + UV + UV + UV +Face 4784 +UV Count: 3 + UV + UV + UV +Face 4785 +UV Count: 3 + UV + UV + UV +Face 4786 +UV Count: 3 + UV + UV + UV +Face 4787 +UV Count: 3 + UV + UV + UV +Face 4788 +UV Count: 3 + UV + UV + UV +Face 4789 +UV Count: 3 + UV + UV + UV +Face 4790 +UV Count: 3 + UV + UV + UV +Face 4791 +UV Count: 3 + UV + UV + UV +Face 4792 +UV Count: 3 + UV + UV + UV +Face 4793 +UV Count: 3 + UV + UV + UV +Face 4794 +UV Count: 3 + UV + UV + UV +Face 4795 +UV Count: 3 + UV + UV + UV +Face 4796 +UV Count: 3 + UV + UV + UV +Face 4797 +UV Count: 3 + UV + UV + UV +Face 4798 +UV Count: 3 + UV + UV + UV +Face 4799 +UV Count: 3 + UV + UV + UV +Face 4800 +UV Count: 3 + UV + UV + UV +Face 4801 +UV Count: 3 + UV + UV + UV +Face 4802 +UV Count: 3 + UV + UV + UV +Face 4803 +UV Count: 3 + UV + UV + UV +Face 4804 +UV Count: 3 + UV + UV + UV +Face 4805 +UV Count: 3 + UV + UV + UV +Face 4806 +UV Count: 3 + UV + UV + UV +Face 4807 +UV Count: 3 + UV + UV + UV +Face 4808 +UV Count: 3 + UV + UV + UV +Face 4809 +UV Count: 3 + UV + UV + UV +Face 4810 +UV Count: 3 + UV + UV + UV +Face 4811 +UV Count: 3 + UV + UV + UV +Face 4812 +UV Count: 3 + UV + UV + UV +Face 4813 +UV Count: 3 + UV + UV + UV +Face 4814 +UV Count: 3 + UV + UV + UV +Face 4815 +UV Count: 3 + UV + UV + UV +Face 4816 +UV Count: 3 + UV + UV + UV +Face 4817 +UV Count: 3 + UV + UV + UV +Face 4818 +UV Count: 3 + UV + UV + UV +Face 4819 +UV Count: 3 + UV + UV + UV +Face 4820 +UV Count: 3 + UV + UV + UV +Face 4821 +UV Count: 3 + UV + UV + UV +Face 4822 +UV Count: 3 + UV + UV + UV +Face 4823 +UV Count: 3 + UV + UV + UV +Face 4824 +UV Count: 3 + UV + UV + UV +Face 4825 +UV Count: 3 + UV + UV + UV +Face 4826 +UV Count: 3 + UV + UV + UV +Face 4827 +UV Count: 3 + UV + UV + UV +Face 4828 +UV Count: 3 + UV + UV + UV +Face 4829 +UV Count: 3 + UV + UV + UV +Face 4830 +UV Count: 3 + UV + UV + UV +Face 4831 +UV Count: 3 + UV + UV + UV +Face 4832 +UV Count: 3 + UV + UV + UV +Face 4833 +UV Count: 3 + UV + UV + UV +Face 4834 +UV Count: 3 + UV + UV + UV +Face 4835 +UV Count: 3 + UV + UV + UV +Face 4836 +UV Count: 3 + UV + UV + UV +Face 4837 +UV Count: 3 + UV + UV + UV +Face 4838 +UV Count: 3 + UV + UV + UV +Face 4839 +UV Count: 3 + UV + UV + UV +Face 4840 +UV Count: 3 + UV + UV + UV +Face 4841 +UV Count: 3 + UV + UV + UV +Face 4842 +UV Count: 3 + UV + UV + UV +Face 4843 +UV Count: 3 + UV + UV + UV +Face 4844 +UV Count: 3 + UV + UV + UV +Face 4845 +UV Count: 3 + UV + UV + UV +Face 4846 +UV Count: 3 + UV + UV + UV +Face 4847 +UV Count: 3 + UV + UV + UV +Face 4848 +UV Count: 3 + UV + UV + UV +Face 4849 +UV Count: 3 + UV + UV + UV +Face 4850 +UV Count: 3 + UV + UV + UV +Face 4851 +UV Count: 3 + UV + UV + UV +Face 4852 +UV Count: 3 + UV + UV + UV +Face 4853 +UV Count: 3 + UV + UV + UV +Face 4854 +UV Count: 3 + UV + UV + UV +Face 4855 +UV Count: 3 + UV + UV + UV +Face 4856 +UV Count: 3 + UV + UV + UV +Face 4857 +UV Count: 3 + UV + UV + UV +Face 4858 +UV Count: 3 + UV + UV + UV +Face 4859 +UV Count: 3 + UV + UV + UV +Face 4860 +UV Count: 3 + UV + UV + UV +Face 4861 +UV Count: 3 + UV + UV + UV +Face 4862 +UV Count: 3 + UV + UV + UV +Face 4863 +UV Count: 3 + UV + UV + UV +Face 4864 +UV Count: 3 + UV + UV + UV +Face 4865 +UV Count: 3 + UV + UV + UV +Face 4866 +UV Count: 3 + UV + UV + UV +Face 4867 +UV Count: 3 + UV + UV + UV +Face 4868 +UV Count: 3 + UV + UV + UV +Face 4869 +UV Count: 3 + UV + UV + UV +Face 4870 +UV Count: 3 + UV + UV + UV +Face 4871 +UV Count: 3 + UV + UV + UV +Face 4872 +UV Count: 3 + UV + UV + UV +Face 4873 +UV Count: 3 + UV + UV + UV +Face 4874 +UV Count: 3 + UV + UV + UV +Face 4875 +UV Count: 3 + UV + UV + UV +Face 4876 +UV Count: 3 + UV + UV + UV +Face 4877 +UV Count: 3 + UV + UV + UV +Face 4878 +UV Count: 3 + UV + UV + UV +Face 4879 +UV Count: 3 + UV + UV + UV +Face 4880 +UV Count: 3 + UV + UV + UV +Face 4881 +UV Count: 3 + UV + UV + UV +Face 4882 +UV Count: 3 + UV + UV + UV +Face 4883 +UV Count: 3 + UV + UV + UV +Face 4884 +UV Count: 3 + UV + UV + UV +Face 4885 +UV Count: 3 + UV + UV + UV +Face 4886 +UV Count: 3 + UV + UV + UV +Face 4887 +UV Count: 3 + UV + UV + UV +Face 4888 +UV Count: 3 + UV + UV + UV +Face 4889 +UV Count: 3 + UV + UV + UV +Face 4890 +UV Count: 3 + UV + UV + UV +Face 4891 +UV Count: 3 + UV + UV + UV +Face 4892 +UV Count: 3 + UV + UV + UV +Face 4893 +UV Count: 3 + UV + UV + UV +Face 4894 +UV Count: 3 + UV + UV + UV +Face 4895 +UV Count: 3 + UV + UV + UV +Face 4896 +UV Count: 3 + UV + UV + UV +Face 4897 +UV Count: 3 + UV + UV + UV +Face 4898 +UV Count: 3 + UV + UV + UV +Face 4899 +UV Count: 3 + UV + UV + UV +Face 4900 +UV Count: 3 + UV + UV + UV +Face 4901 +UV Count: 3 + UV + UV + UV +Face 4902 +UV Count: 3 + UV + UV + UV +Face 4903 +UV Count: 3 + UV + UV + UV +Face 4904 +UV Count: 3 + UV + UV + UV +Face 4905 +UV Count: 3 + UV + UV + UV +Face 4906 +UV Count: 3 + UV + UV + UV +Face 4907 +UV Count: 3 + UV + UV + UV +Face 4908 +UV Count: 3 + UV + UV + UV +Face 4909 +UV Count: 3 + UV + UV + UV +Face 4910 +UV Count: 3 + UV + UV + UV +Face 4911 +UV Count: 3 + UV + UV + UV +Face 4912 +UV Count: 3 + UV + UV + UV +Face 4913 +UV Count: 3 + UV + UV + UV +Face 4914 +UV Count: 3 + UV + UV + UV +Face 4915 +UV Count: 3 + UV + UV + UV +Face 4916 +UV Count: 3 + UV + UV + UV +Face 4917 +UV Count: 3 + UV + UV + UV +Face 4918 +UV Count: 3 + UV + UV + UV +Face 4919 +UV Count: 3 + UV + UV + UV +Face 4920 +UV Count: 3 + UV + UV + UV +Face 4921 +UV Count: 3 + UV + UV + UV +Face 4922 +UV Count: 3 + UV + UV + UV +Face 4923 +UV Count: 3 + UV + UV + UV +Face 4924 +UV Count: 3 + UV + UV + UV +Face 4925 +UV Count: 3 + UV + UV + UV +Face 4926 +UV Count: 3 + UV + UV + UV +Face 4927 +UV Count: 3 + UV + UV + UV +Face 4928 +UV Count: 3 + UV + UV + UV +Face 4929 +UV Count: 3 + UV + UV + UV +Face 4930 +UV Count: 3 + UV + UV + UV +Face 4931 +UV Count: 3 + UV + UV + UV +Face 4932 +UV Count: 3 + UV + UV + UV +Face 4933 +UV Count: 3 + UV + UV + UV +Face 4934 +UV Count: 3 + UV + UV + UV +Face 4935 +UV Count: 3 + UV + UV + UV +Face 4936 +UV Count: 3 + UV + UV + UV +Face 4937 +UV Count: 3 + UV + UV + UV +Face 4938 +UV Count: 3 + UV + UV + UV +Face 4939 +UV Count: 3 + UV + UV + UV +Face 4940 +UV Count: 3 + UV + UV + UV +Face 4941 +UV Count: 3 + UV + UV + UV +Face 4942 +UV Count: 3 + UV + UV + UV +Face 4943 +UV Count: 3 + UV + UV + UV +Face 4944 +UV Count: 3 + UV + UV + UV +Face 4945 +UV Count: 3 + UV + UV + UV +Face 4946 +UV Count: 3 + UV + UV + UV +Face 4947 +UV Count: 3 + UV + UV + UV +Face 4948 +UV Count: 3 + UV + UV + UV +Face 4949 +UV Count: 3 + UV + UV + UV +Face 4950 +UV Count: 3 + UV + UV + UV +Face 4951 +UV Count: 3 + UV + UV + UV +Face 4952 +UV Count: 3 + UV + UV + UV +Face 4953 +UV Count: 3 + UV + UV + UV +Face 4954 +UV Count: 3 + UV + UV + UV +Face 4955 +UV Count: 3 + UV + UV + UV +Face 4956 +UV Count: 3 + UV + UV + UV +Face 4957 +UV Count: 3 + UV + UV + UV +Face 4958 +UV Count: 3 + UV + UV + UV +Face 4959 +UV Count: 3 + UV + UV + UV +Face 4960 +UV Count: 3 + UV + UV + UV +Face 4961 +UV Count: 3 + UV + UV + UV +Face 4962 +UV Count: 3 + UV + UV + UV +Face 4963 +UV Count: 3 + UV + UV + UV +Face 4964 +UV Count: 3 + UV + UV + UV +Face 4965 +UV Count: 3 + UV + UV + UV +Face 4966 +UV Count: 3 + UV + UV + UV +Face 4967 +UV Count: 3 + UV + UV + UV +Face 4968 +UV Count: 3 + UV + UV + UV +Face 4969 +UV Count: 3 + UV + UV + UV +Face 4970 +UV Count: 3 + UV + UV + UV +Face 4971 +UV Count: 3 + UV + UV + UV +Face 4972 +UV Count: 3 + UV + UV + UV +Face 4973 +UV Count: 3 + UV + UV + UV +Face 4974 +UV Count: 3 + UV + UV + UV +Face 4975 +UV Count: 3 + UV + UV + UV +Face 4976 +UV Count: 3 + UV + UV + UV +Face 4977 +UV Count: 3 + UV + UV + UV +Face 4978 +UV Count: 3 + UV + UV + UV +Face 4979 +UV Count: 3 + UV + UV + UV +Face 4980 +UV Count: 3 + UV + UV + UV +Face 4981 +UV Count: 3 + UV + UV + UV +Face 4982 +UV Count: 3 + UV + UV + UV +Face 4983 +UV Count: 3 + UV + UV + UV +Face 4984 +UV Count: 3 + UV + UV + UV +Face 4985 +UV Count: 3 + UV + UV + UV +Face 4986 +UV Count: 3 + UV + UV + UV +Face 4987 +UV Count: 3 + UV + UV + UV +Face 4988 +UV Count: 3 + UV + UV + UV +Face 4989 +UV Count: 3 + UV + UV + UV +Face 4990 +UV Count: 3 + UV + UV + UV +Face 4991 +UV Count: 3 + UV + UV + UV +Face 4992 +UV Count: 3 + UV + UV + UV +Face 4993 +UV Count: 3 + UV + UV + UV +Face 4994 +UV Count: 3 + UV + UV + UV +Face 4995 +UV Count: 3 + UV + UV + UV +Face 4996 +UV Count: 3 + UV + UV + UV +Face 4997 +UV Count: 3 + UV + UV + UV +Face 4998 +UV Count: 3 + UV + UV + UV +Face 4999 +UV Count: 3 + UV + UV + UV +Face 5000 +UV Count: 3 + UV + UV + UV +Face 5001 +UV Count: 3 + UV + UV + UV +Face 5002 +UV Count: 3 + UV + UV + UV +Face 5003 +UV Count: 3 + UV + UV + UV +Face 5004 +UV Count: 3 + UV + UV + UV +Face 5005 +UV Count: 3 + UV + UV + UV +Face 5006 +UV Count: 3 + UV + UV + UV +Face 5007 +UV Count: 3 + UV + UV + UV +Face 5008 +UV Count: 3 + UV + UV + UV +Face 5009 +UV Count: 3 + UV + UV + UV +Face 5010 +UV Count: 3 + UV + UV + UV +Face 5011 +UV Count: 3 + UV + UV + UV +Face 5012 +UV Count: 3 + UV + UV + UV +Face 5013 +UV Count: 3 + UV + UV + UV +Face 5014 +UV Count: 3 + UV + UV + UV +Face 5015 +UV Count: 3 + UV + UV + UV +Face 5016 +UV Count: 3 + UV + UV + UV +Face 5017 +UV Count: 3 + UV + UV + UV +Face 5018 +UV Count: 3 + UV + UV + UV +Face 5019 +UV Count: 3 + UV + UV + UV +Face 5020 +UV Count: 3 + UV + UV + UV +Face 5021 +UV Count: 3 + UV + UV + UV +Face 5022 +UV Count: 3 + UV + UV + UV +Face 5023 +UV Count: 3 + UV + UV + UV +Face 5024 +UV Count: 3 + UV + UV + UV +Face 5025 +UV Count: 3 + UV + UV + UV +Face 5026 +UV Count: 3 + UV + UV + UV +Face 5027 +UV Count: 3 + UV + UV + UV +Face 5028 +UV Count: 3 + UV + UV + UV +Face 5029 +UV Count: 3 + UV + UV + UV +Face 5030 +UV Count: 3 + UV + UV + UV +Face 5031 +UV Count: 3 + UV + UV + UV +Face 5032 +UV Count: 3 + UV + UV + UV +Face 5033 +UV Count: 3 + UV + UV + UV +Face 5034 +UV Count: 3 + UV + UV + UV +Face 5035 +UV Count: 3 + UV + UV + UV +Face 5036 +UV Count: 3 + UV + UV + UV +Face 5037 +UV Count: 3 + UV + UV + UV +Face 5038 +UV Count: 3 + UV + UV + UV +Face 5039 +UV Count: 3 + UV + UV + UV +Face 5040 +UV Count: 3 + UV + UV + UV +Face 5041 +UV Count: 3 + UV + UV + UV +Face 5042 +UV Count: 3 + UV + UV + UV +Face 5043 +UV Count: 3 + UV + UV + UV +Face 5044 +UV Count: 3 + UV + UV + UV +Face 5045 +UV Count: 3 + UV + UV + UV +Face 5046 +UV Count: 3 + UV + UV + UV +Face 5047 +UV Count: 3 + UV + UV + UV +Face 5048 +UV Count: 3 + UV + UV + UV +Face 5049 +UV Count: 3 + UV + UV + UV +Face 5050 +UV Count: 3 + UV + UV + UV +Face 5051 +UV Count: 3 + UV + UV + UV +Face 5052 +UV Count: 3 + UV + UV + UV +Face 5053 +UV Count: 3 + UV + UV + UV +Face 5054 +UV Count: 3 + UV + UV + UV +Face 5055 +UV Count: 3 + UV + UV + UV +Face 5056 +UV Count: 3 + UV + UV + UV +Face 5057 +UV Count: 3 + UV + UV + UV +Face 5058 +UV Count: 3 + UV + UV + UV +Face 5059 +UV Count: 3 + UV + UV + UV +Face 5060 +UV Count: 3 + UV + UV + UV +Face 5061 +UV Count: 3 + UV + UV + UV +Face 5062 +UV Count: 3 + UV + UV + UV +Face 5063 +UV Count: 3 + UV + UV + UV +Face 5064 +UV Count: 3 + UV + UV + UV +Face 5065 +UV Count: 3 + UV + UV + UV +Face 5066 +UV Count: 3 + UV + UV + UV +Face 5067 +UV Count: 3 + UV + UV + UV +Face 5068 +UV Count: 3 + UV + UV + UV +Face 5069 +UV Count: 3 + UV + UV + UV +Face 5070 +UV Count: 3 + UV + UV + UV +Face 5071 +UV Count: 3 + UV + UV + UV +Face 5072 +UV Count: 3 + UV + UV + UV +Face 5073 +UV Count: 3 + UV + UV + UV +Face 5074 +UV Count: 3 + UV + UV + UV +Face 5075 +UV Count: 3 + UV + UV + UV +Face 5076 +UV Count: 3 + UV + UV + UV +Face 5077 +UV Count: 3 + UV + UV + UV +Face 5078 +UV Count: 3 + UV + UV + UV +Face 5079 +UV Count: 3 + UV + UV + UV +Face 5080 +UV Count: 3 + UV + UV + UV +Face 5081 +UV Count: 3 + UV + UV + UV +Face 5082 +UV Count: 3 + UV + UV + UV +Face 5083 +UV Count: 3 + UV + UV + UV +Face 5084 +UV Count: 3 + UV + UV + UV +Face 5085 +UV Count: 3 + UV + UV + UV +Face 5086 +UV Count: 3 + UV + UV + UV +Face 5087 +UV Count: 3 + UV + UV + UV +Face 5088 +UV Count: 3 + UV + UV + UV +Face 5089 +UV Count: 3 + UV + UV + UV +Face 5090 +UV Count: 3 + UV + UV + UV +Face 5091 +UV Count: 3 + UV + UV + UV +Face 5092 +UV Count: 3 + UV + UV + UV +Face 5093 +UV Count: 3 + UV + UV + UV +Face 5094 +UV Count: 3 + UV + UV + UV +Face 5095 +UV Count: 3 + UV + UV + UV +Face 5096 +UV Count: 3 + UV + UV + UV +Face 5097 +UV Count: 3 + UV + UV + UV +Face 5098 +UV Count: 3 + UV + UV + UV +Face 5099 +UV Count: 3 + UV + UV + UV +Face 5100 +UV Count: 3 + UV + UV + UV +Face 5101 +UV Count: 3 + UV + UV + UV +Face 5102 +UV Count: 3 + UV + UV + UV +Face 5103 +UV Count: 3 + UV + UV + UV +Face 5104 +UV Count: 3 + UV + UV + UV +Face 5105 +UV Count: 3 + UV + UV + UV +Face 5106 +UV Count: 3 + UV + UV + UV +Face 5107 +UV Count: 3 + UV + UV + UV +Face 5108 +UV Count: 3 + UV + UV + UV +Face 5109 +UV Count: 3 + UV + UV + UV +Face 5110 +UV Count: 3 + UV + UV + UV +Face 5111 +UV Count: 3 + UV + UV + UV +Face 5112 +UV Count: 3 + UV + UV + UV +Face 5113 +UV Count: 3 + UV + UV + UV +Face 5114 +UV Count: 3 + UV + UV + UV +Face 5115 +UV Count: 3 + UV + UV + UV +Face 5116 +UV Count: 3 + UV + UV + UV +Face 5117 +UV Count: 3 + UV + UV + UV +Face 5118 +UV Count: 3 + UV + UV + UV +Face 5119 +UV Count: 3 + UV + UV + UV +Face 5120 +UV Count: 3 + UV + UV + UV +Face 5121 +UV Count: 3 + UV + UV + UV +Face 5122 +UV Count: 3 + UV + UV + UV +Face 5123 +UV Count: 3 + UV + UV + UV +Face 5124 +UV Count: 3 + UV + UV + UV +Face 5125 +UV Count: 3 + UV + UV + UV +Face 5126 +UV Count: 3 + UV + UV + UV +Face 5127 +UV Count: 3 + UV + UV + UV +Face 5128 +UV Count: 3 + UV + UV + UV +Face 5129 +UV Count: 3 + UV + UV + UV +Face 5130 +UV Count: 3 + UV + UV + UV +Face 5131 +UV Count: 3 + UV + UV + UV +Face 5132 +UV Count: 3 + UV + UV + UV +Face 5133 +UV Count: 3 + UV + UV + UV +Face 5134 +UV Count: 3 + UV + UV + UV +Face 5135 +UV Count: 3 + UV + UV + UV +Face 5136 +UV Count: 3 + UV + UV + UV +Face 5137 +UV Count: 3 + UV + UV + UV +Face 5138 +UV Count: 3 + UV + UV + UV +Face 5139 +UV Count: 3 + UV + UV + UV +Face 5140 +UV Count: 3 + UV + UV + UV +Face 5141 +UV Count: 3 + UV + UV + UV +Face 5142 +UV Count: 3 + UV + UV + UV +Face 5143 +UV Count: 3 + UV + UV + UV +Face 5144 +UV Count: 3 + UV + UV + UV +Face 5145 +UV Count: 3 + UV + UV + UV +Face 5146 +UV Count: 3 + UV + UV + UV +Face 5147 +UV Count: 3 + UV + UV + UV +Face 5148 +UV Count: 3 + UV + UV + UV +Face 5149 +UV Count: 3 + UV + UV + UV +Face 5150 +UV Count: 3 + UV + UV + UV +Face 5151 +UV Count: 3 + UV + UV + UV +Face 5152 +UV Count: 3 + UV + UV + UV +Face 5153 +UV Count: 3 + UV + UV + UV +Face 5154 +UV Count: 3 + UV + UV + UV +Face 5155 +UV Count: 3 + UV + UV + UV +Face 5156 +UV Count: 3 + UV + UV + UV +Face 5157 +UV Count: 3 + UV + UV + UV +Face 5158 +UV Count: 3 + UV + UV + UV +Face 5159 +UV Count: 3 + UV + UV + UV +Face 5160 +UV Count: 3 + UV + UV + UV +Face 5161 +UV Count: 3 + UV + UV + UV +Face 5162 +UV Count: 3 + UV + UV + UV +Face 5163 +UV Count: 3 + UV + UV + UV +Face 5164 +UV Count: 3 + UV + UV + UV +Face 5165 +UV Count: 3 + UV + UV + UV +Face 5166 +UV Count: 3 + UV + UV + UV +Face 5167 +UV Count: 3 + UV + UV + UV +Face 5168 +UV Count: 3 + UV + UV + UV +Face 5169 +UV Count: 3 + UV + UV + UV +Face 5170 +UV Count: 3 + UV + UV + UV +Face 5171 +UV Count: 3 + UV + UV + UV +Face 5172 +UV Count: 3 + UV + UV + UV +Face 5173 +UV Count: 3 + UV + UV + UV +Face 5174 +UV Count: 3 + UV + UV + UV +Face 5175 +UV Count: 3 + UV + UV + UV +Face 5176 +UV Count: 3 + UV + UV + UV +Face 5177 +UV Count: 3 + UV + UV + UV +Face 5178 +UV Count: 3 + UV + UV + UV +Face 5179 +UV Count: 3 + UV + UV + UV +Face 5180 +UV Count: 3 + UV + UV + UV +Face 5181 +UV Count: 3 + UV + UV + UV +Face 5182 +UV Count: 3 + UV + UV + UV +Face 5183 +UV Count: 3 + UV + UV + UV +Face 5184 +UV Count: 3 + UV + UV + UV +Face 5185 +UV Count: 3 + UV + UV + UV +Face 5186 +UV Count: 3 + UV + UV + UV +Face 5187 +UV Count: 3 + UV + UV + UV +Face 5188 +UV Count: 3 + UV + UV + UV +Face 5189 +UV Count: 3 + UV + UV + UV +Face 5190 +UV Count: 3 + UV + UV + UV +Face 5191 +UV Count: 3 + UV + UV + UV +Face 5192 +UV Count: 3 + UV + UV + UV +Face 5193 +UV Count: 3 + UV + UV + UV +Face 5194 +UV Count: 3 + UV + UV + UV +Face 5195 +UV Count: 3 + UV + UV + UV +Face 5196 +UV Count: 3 + UV + UV + UV +Face 5197 +UV Count: 3 + UV + UV + UV +Face 5198 +UV Count: 3 + UV + UV + UV +Face 5199 +UV Count: 3 + UV + UV + UV +Face 5200 +UV Count: 3 + UV + UV + UV +Face 5201 +UV Count: 3 + UV + UV + UV +Face 5202 +UV Count: 3 + UV + UV + UV +Face 5203 +UV Count: 3 + UV + UV + UV +Face 5204 +UV Count: 3 + UV + UV + UV +Face 5205 +UV Count: 3 + UV + UV + UV +Face 5206 +UV Count: 3 + UV + UV + UV +Face 5207 +UV Count: 3 + UV + UV + UV +Face 5208 +UV Count: 3 + UV + UV + UV +Face 5209 +UV Count: 3 + UV + UV + UV +Face 5210 +UV Count: 3 + UV + UV + UV +Face 5211 +UV Count: 3 + UV + UV + UV +Face 5212 +UV Count: 3 + UV + UV + UV +Face 5213 +UV Count: 3 + UV + UV + UV +Face 5214 +UV Count: 3 + UV + UV + UV +Face 5215 +UV Count: 3 + UV + UV + UV +Face 5216 +UV Count: 3 + UV + UV + UV +Face 5217 +UV Count: 3 + UV + UV + UV +Face 5218 +UV Count: 3 + UV + UV + UV +Face 5219 +UV Count: 3 + UV + UV + UV +Face 5220 +UV Count: 3 + UV + UV + UV +Face 5221 +UV Count: 3 + UV + UV + UV +Face 5222 +UV Count: 3 + UV + UV + UV +Face 5223 +UV Count: 3 + UV + UV + UV +Face 5224 +UV Count: 3 + UV + UV + UV +Face 5225 +UV Count: 3 + UV + UV + UV +Face 5226 +UV Count: 3 + UV + UV + UV +Face 5227 +UV Count: 3 + UV + UV + UV +Face 5228 +UV Count: 3 + UV + UV + UV +Face 5229 +UV Count: 3 + UV + UV + UV +Face 5230 +UV Count: 3 + UV + UV + UV +Face 5231 +UV Count: 3 + UV + UV + UV +Face 5232 +UV Count: 3 + UV + UV + UV +Face 5233 +UV Count: 3 + UV + UV + UV +Face 5234 +UV Count: 3 + UV + UV + UV +Face 5235 +UV Count: 3 + UV + UV + UV +Face 5236 +UV Count: 3 + UV + UV + UV +Face 5237 +UV Count: 3 + UV + UV + UV +Face 5238 +UV Count: 3 + UV + UV + UV +Face 5239 +UV Count: 3 + UV + UV + UV +Face 5240 +UV Count: 3 + UV + UV + UV +Face 5241 +UV Count: 3 + UV + UV + UV +Face 5242 +UV Count: 3 + UV + UV + UV +Face 5243 +UV Count: 3 + UV + UV + UV +Face 5244 +UV Count: 3 + UV + UV + UV +Face 5245 +UV Count: 3 + UV + UV + UV +Face 5246 +UV Count: 3 + UV + UV + UV +Face 5247 +UV Count: 3 + UV + UV + UV +Face 5248 +UV Count: 3 + UV + UV + UV +Face 5249 +UV Count: 3 + UV + UV + UV +Face 5250 +UV Count: 3 + UV + UV + UV +Face 5251 +UV Count: 3 + UV + UV + UV +Face 5252 +UV Count: 3 + UV + UV + UV +Face 5253 +UV Count: 3 + UV + UV + UV +Face 5254 +UV Count: 3 + UV + UV + UV +Face 5255 +UV Count: 3 + UV + UV + UV +Face 5256 +UV Count: 3 + UV + UV + UV +Face 5257 +UV Count: 3 + UV + UV + UV +Face 5258 +UV Count: 3 + UV + UV + UV +Face 5259 +UV Count: 3 + UV + UV + UV +Face 5260 +UV Count: 3 + UV + UV + UV +Face 5261 +UV Count: 3 + UV + UV + UV +Face 5262 +UV Count: 3 + UV + UV + UV +Face 5263 +UV Count: 3 + UV + UV + UV +Face 5264 +UV Count: 3 + UV + UV + UV +Face 5265 +UV Count: 3 + UV + UV + UV +Face 5266 +UV Count: 3 + UV + UV + UV +Face 5267 +UV Count: 3 + UV + UV + UV +Face 5268 +UV Count: 3 + UV + UV + UV +Face 5269 +UV Count: 3 + UV + UV + UV +Face 5270 +UV Count: 3 + UV + UV + UV +Face 5271 +UV Count: 3 + UV + UV + UV +Face 5272 +UV Count: 3 + UV + UV + UV +Face 5273 +UV Count: 3 + UV + UV + UV +Face 5274 +UV Count: 3 + UV + UV + UV +Face 5275 +UV Count: 3 + UV + UV + UV +Face 5276 +UV Count: 3 + UV + UV + UV +Face 5277 +UV Count: 3 + UV + UV + UV +Face 5278 +UV Count: 3 + UV + UV + UV +Face 5279 +UV Count: 3 + UV + UV + UV +Face 5280 +UV Count: 3 + UV + UV + UV +Face 5281 +UV Count: 3 + UV + UV + UV +Face 5282 +UV Count: 3 + UV + UV + UV +Face 5283 +UV Count: 3 + UV + UV + UV +Face 5284 +UV Count: 3 + UV + UV + UV +Face 5285 +UV Count: 3 + UV + UV + UV +Face 5286 +UV Count: 3 + UV + UV + UV +Face 5287 +UV Count: 3 + UV + UV + UV +Face 5288 +UV Count: 3 + UV + UV + UV +Face 5289 +UV Count: 3 + UV + UV + UV +Face 5290 +UV Count: 3 + UV + UV + UV +Face 5291 +UV Count: 3 + UV + UV + UV +Face 5292 +UV Count: 3 + UV + UV + UV +Face 5293 +UV Count: 3 + UV + UV + UV +Face 5294 +UV Count: 3 + UV + UV + UV +Face 5295 +UV Count: 3 + UV + UV + UV +Face 5296 +UV Count: 3 + UV + UV + UV +Face 5297 +UV Count: 3 + UV + UV + UV +Face 5298 +UV Count: 3 + UV + UV + UV +Face 5299 +UV Count: 3 + UV + UV + UV +Face 5300 +UV Count: 3 + UV + UV + UV +Face 5301 +UV Count: 3 + UV + UV + UV +Face 5302 +UV Count: 3 + UV + UV + UV +Face 5303 +UV Count: 3 + UV + UV + UV +Face 5304 +UV Count: 3 + UV + UV + UV +Face 5305 +UV Count: 3 + UV + UV + UV +Face 5306 +UV Count: 3 + UV + UV + UV +Face 5307 +UV Count: 3 + UV + UV + UV +Face 5308 +UV Count: 3 + UV + UV + UV +Face 5309 +UV Count: 3 + UV + UV + UV +Face 5310 +UV Count: 3 + UV + UV + UV +Face 5311 +UV Count: 3 + UV + UV + UV +Face 5312 +UV Count: 3 + UV + UV + UV +Face 5313 +UV Count: 3 + UV + UV + UV +Face 5314 +UV Count: 3 + UV + UV + UV +Face 5315 +UV Count: 3 + UV + UV + UV +Face 5316 +UV Count: 3 + UV + UV + UV +Face 5317 +UV Count: 3 + UV + UV + UV +Face 5318 +UV Count: 3 + UV + UV + UV +Face 5319 +UV Count: 3 + UV + UV + UV +Face 5320 +UV Count: 3 + UV + UV + UV +Face 5321 +UV Count: 3 + UV + UV + UV +Face 5322 +UV Count: 3 + UV + UV + UV +Face 5323 +UV Count: 3 + UV + UV + UV +Face 5324 +UV Count: 3 + UV + UV + UV +Face 5325 +UV Count: 3 + UV + UV + UV +Face 5326 +UV Count: 3 + UV + UV + UV +Face 5327 +UV Count: 3 + UV + UV + UV +Face 5328 +UV Count: 3 + UV + UV + UV +Face 5329 +UV Count: 3 + UV + UV + UV +Face 5330 +UV Count: 3 + UV + UV + UV +Face 5331 +UV Count: 3 + UV + UV + UV +Face 5332 +UV Count: 3 + UV + UV + UV +Face 5333 +UV Count: 3 + UV + UV + UV +Face 5334 +UV Count: 3 + UV + UV + UV +Face 5335 +UV Count: 3 + UV + UV + UV +Face 5336 +UV Count: 3 + UV + UV + UV +Face 5337 +UV Count: 3 + UV + UV + UV +Face 5338 +UV Count: 3 + UV + UV + UV +Face 5339 +UV Count: 3 + UV + UV + UV +Face 5340 +UV Count: 3 + UV + UV + UV +Face 5341 +UV Count: 3 + UV + UV + UV +Face 5342 +UV Count: 3 + UV + UV + UV +Face 5343 +UV Count: 3 + UV + UV + UV +Face 5344 +UV Count: 3 + UV + UV + UV +Face 5345 +UV Count: 3 + UV + UV + UV +Face 5346 +UV Count: 3 + UV + UV + UV +Face 5347 +UV Count: 3 + UV + UV + UV +Face 5348 +UV Count: 3 + UV + UV + UV +Face 5349 +UV Count: 3 + UV + UV + UV +Face 5350 +UV Count: 3 + UV + UV + UV +Face 5351 +UV Count: 3 + UV + UV + UV +Face 5352 +UV Count: 3 + UV + UV + UV +Face 5353 +UV Count: 3 + UV + UV + UV +Face 5354 +UV Count: 3 + UV + UV + UV +Face 5355 +UV Count: 3 + UV + UV + UV +Face 5356 +UV Count: 3 + UV + UV + UV +Face 5357 +UV Count: 3 + UV + UV + UV +Face 5358 +UV Count: 3 + UV + UV + UV +Face 5359 +UV Count: 3 + UV + UV + UV +Face 5360 +UV Count: 3 + UV + UV + UV +Face 5361 +UV Count: 3 + UV + UV + UV +Face 5362 +UV Count: 3 + UV + UV + UV +Face 5363 +UV Count: 3 + UV + UV + UV +Face 5364 +UV Count: 3 + UV + UV + UV +Face 5365 +UV Count: 3 + UV + UV + UV +Face 5366 +UV Count: 3 + UV + UV + UV +Face 5367 +UV Count: 3 + UV + UV + UV +Face 5368 +UV Count: 3 + UV + UV + UV +Face 5369 +UV Count: 3 + UV + UV + UV +Face 5370 +UV Count: 3 + UV + UV + UV +Face 5371 +UV Count: 3 + UV + UV + UV +Face 5372 +UV Count: 3 + UV + UV + UV +Face 5373 +UV Count: 3 + UV + UV + UV +Face 5374 +UV Count: 3 + UV + UV + UV +Face 5375 +UV Count: 3 + UV + UV + UV +Face 5376 +UV Count: 3 + UV + UV + UV +Face 5377 +UV Count: 3 + UV + UV + UV +Face 5378 +UV Count: 3 + UV + UV + UV +Face 5379 +UV Count: 3 + UV + UV + UV +Face 5380 +UV Count: 3 + UV + UV + UV +Face 5381 +UV Count: 3 + UV + UV + UV +Face 5382 +UV Count: 3 + UV + UV + UV +Face 5383 +UV Count: 3 + UV + UV + UV +Face 5384 +UV Count: 3 + UV + UV + UV +Face 5385 +UV Count: 3 + UV + UV + UV +Face 5386 +UV Count: 3 + UV + UV + UV +Face 5387 +UV Count: 3 + UV + UV + UV +Face 5388 +UV Count: 3 + UV + UV + UV +Face 5389 +UV Count: 3 + UV + UV + UV +Face 5390 +UV Count: 3 + UV + UV + UV +Face 5391 +UV Count: 3 + UV + UV + UV +Face 5392 +UV Count: 3 + UV + UV + UV +Face 5393 +UV Count: 3 + UV + UV + UV +Face 5394 +UV Count: 3 + UV + UV + UV +Face 5395 +UV Count: 3 + UV + UV + UV +Face 5396 +UV Count: 3 + UV + UV + UV +Face 5397 +UV Count: 3 + UV + UV + UV +Face 5398 +UV Count: 3 + UV + UV + UV +Face 5399 +UV Count: 3 + UV + UV + UV +Face 5400 +UV Count: 3 + UV + UV + UV +Face 5401 +UV Count: 3 + UV + UV + UV +Face 5402 +UV Count: 3 + UV + UV + UV +Face 5403 +UV Count: 3 + UV + UV + UV +Face 5404 +UV Count: 3 + UV + UV + UV +Face 5405 +UV Count: 3 + UV + UV + UV +Face 5406 +UV Count: 3 + UV + UV + UV +Face 5407 +UV Count: 3 + UV + UV + UV +Face 5408 +UV Count: 3 + UV + UV + UV +Face 5409 +UV Count: 3 + UV + UV + UV +Face 5410 +UV Count: 3 + UV + UV + UV +Face 5411 +UV Count: 3 + UV + UV + UV +Face 5412 +UV Count: 3 + UV + UV + UV +Face 5413 +UV Count: 3 + UV + UV + UV +Face 5414 +UV Count: 3 + UV + UV + UV +Face 5415 +UV Count: 3 + UV + UV + UV +Face 5416 +UV Count: 3 + UV + UV + UV +Face 5417 +UV Count: 3 + UV + UV + UV +Face 5418 +UV Count: 3 + UV + UV + UV +Face 5419 +UV Count: 3 + UV + UV + UV +Face 5420 +UV Count: 3 + UV + UV + UV +Face 5421 +UV Count: 3 + UV + UV + UV +Face 5422 +UV Count: 3 + UV + UV + UV +Face 5423 +UV Count: 3 + UV + UV + UV +Face 5424 +UV Count: 3 + UV + UV + UV +Face 5425 +UV Count: 3 + UV + UV + UV +Face 5426 +UV Count: 3 + UV + UV + UV +Face 5427 +UV Count: 3 + UV + UV + UV +Face 5428 +UV Count: 3 + UV + UV + UV +Face 5429 +UV Count: 3 + UV + UV + UV +Face 5430 +UV Count: 3 + UV + UV + UV +Face 5431 +UV Count: 3 + UV + UV + UV +Face 5432 +UV Count: 3 + UV + UV + UV +Face 5433 +UV Count: 3 + UV + UV + UV +Face 5434 +UV Count: 3 + UV + UV + UV +Face 5435 +UV Count: 3 + UV + UV + UV +Face 5436 +UV Count: 3 + UV + UV + UV +Face 5437 +UV Count: 3 + UV + UV + UV +Face 5438 +UV Count: 3 + UV + UV + UV +Face 5439 +UV Count: 3 + UV + UV + UV +Face 5440 +UV Count: 3 + UV + UV + UV +Face 5441 +UV Count: 3 + UV + UV + UV +Face 5442 +UV Count: 3 + UV + UV + UV +Face 5443 +UV Count: 3 + UV + UV + UV +Face 5444 +UV Count: 3 + UV + UV + UV +Face 5445 +UV Count: 3 + UV + UV + UV +Face 5446 +UV Count: 3 + UV + UV + UV +Face 5447 +UV Count: 3 + UV + UV + UV +Face 5448 +UV Count: 3 + UV + UV + UV +Face 5449 +UV Count: 3 + UV + UV + UV +Face 5450 +UV Count: 3 + UV + UV + UV +Face 5451 +UV Count: 3 + UV + UV + UV +Face 5452 +UV Count: 3 + UV + UV + UV +Face 5453 +UV Count: 3 + UV + UV + UV +Face 5454 +UV Count: 3 + UV + UV + UV +Face 5455 +UV Count: 3 + UV + UV + UV +Face 5456 +UV Count: 3 + UV + UV + UV +Face 5457 +UV Count: 3 + UV + UV + UV +Face 5458 +UV Count: 3 + UV + UV + UV +Face 5459 +UV Count: 3 + UV + UV + UV +Face 5460 +UV Count: 3 + UV + UV + UV +Face 5461 +UV Count: 3 + UV + UV + UV +Face 5462 +UV Count: 3 + UV + UV + UV +Face 5463 +UV Count: 3 + UV + UV + UV +Face 5464 +UV Count: 3 + UV + UV + UV +Face 5465 +UV Count: 3 + UV + UV + UV +Face 5466 +UV Count: 3 + UV + UV + UV +Face 5467 +UV Count: 3 + UV + UV + UV +Face 5468 +UV Count: 3 + UV + UV + UV +Face 5469 +UV Count: 3 + UV + UV + UV +Face 5470 +UV Count: 3 + UV + UV + UV +Face 5471 +UV Count: 3 + UV + UV + UV +Face 5472 +UV Count: 3 + UV + UV + UV +Face 5473 +UV Count: 3 + UV + UV + UV +Face 5474 +UV Count: 3 + UV + UV + UV +Face 5475 +UV Count: 3 + UV + UV + UV +Face 5476 +UV Count: 3 + UV + UV + UV +Face 5477 +UV Count: 3 + UV + UV + UV +Face 5478 +UV Count: 3 + UV + UV + UV +Face 5479 +UV Count: 3 + UV + UV + UV +Face 5480 +UV Count: 3 + UV + UV + UV +Face 5481 +UV Count: 3 + UV + UV + UV +Face 5482 +UV Count: 3 + UV + UV + UV +Face 5483 +UV Count: 3 + UV + UV + UV +Face 5484 +UV Count: 3 + UV + UV + UV +Face 5485 +UV Count: 3 + UV + UV + UV +Face 5486 +UV Count: 3 + UV + UV + UV +Face 5487 +UV Count: 3 + UV + UV + UV +Face 5488 +UV Count: 3 + UV + UV + UV +Face 5489 +UV Count: 3 + UV + UV + UV +Face 5490 +UV Count: 3 + UV + UV + UV +Face 5491 +UV Count: 3 + UV + UV + UV +Face 5492 +UV Count: 3 + UV + UV + UV +Face 5493 +UV Count: 3 + UV + UV + UV +Face 5494 +UV Count: 3 + UV + UV + UV +Face 5495 +UV Count: 3 + UV + UV + UV +Face 5496 +UV Count: 3 + UV + UV + UV +Face 5497 +UV Count: 3 + UV + UV + UV +Face 5498 +UV Count: 3 + UV + UV + UV +Face 5499 +UV Count: 3 + UV + UV + UV +Face 5500 +UV Count: 3 + UV + UV + UV +Face 5501 +UV Count: 3 + UV + UV + UV +Face 5502 +UV Count: 3 + UV + UV + UV +Face 5503 +UV Count: 3 + UV + UV + UV +Face 5504 +UV Count: 3 + UV + UV + UV +Face 5505 +UV Count: 3 + UV + UV + UV +Face 5506 +UV Count: 3 + UV + UV + UV +Face 5507 +UV Count: 3 + UV + UV + UV +Face 5508 +UV Count: 3 + UV + UV + UV +Face 5509 +UV Count: 3 + UV + UV + UV +Face 5510 +UV Count: 3 + UV + UV + UV +Face 5511 +UV Count: 3 + UV + UV + UV +Face 5512 +UV Count: 3 + UV + UV + UV +Face 5513 +UV Count: 3 + UV + UV + UV +Face 5514 +UV Count: 3 + UV + UV + UV +Face 5515 +UV Count: 3 + UV + UV + UV +Face 5516 +UV Count: 3 + UV + UV + UV +Face 5517 +UV Count: 3 + UV + UV + UV +Face 5518 +UV Count: 3 + UV + UV + UV +Face 5519 +UV Count: 3 + UV + UV + UV +Face 5520 +UV Count: 3 + UV + UV + UV +Face 5521 +UV Count: 3 + UV + UV + UV +Face 5522 +UV Count: 3 + UV + UV + UV +Face 5523 +UV Count: 3 + UV + UV + UV +Face 5524 +UV Count: 3 + UV + UV + UV +Face 5525 +UV Count: 3 + UV + UV + UV +Face 5526 +UV Count: 3 + UV + UV + UV +Face 5527 +UV Count: 3 + UV + UV + UV +Face 5528 +UV Count: 3 + UV + UV + UV +Face 5529 +UV Count: 3 + UV + UV + UV +Face 5530 +UV Count: 3 + UV + UV + UV +Face 5531 +UV Count: 3 + UV + UV + UV +Face 5532 +UV Count: 3 + UV + UV + UV +Face 5533 +UV Count: 3 + UV + UV + UV +Face 5534 +UV Count: 3 + UV + UV + UV +Face 5535 +UV Count: 3 + UV + UV + UV +Face 5536 +UV Count: 3 + UV + UV + UV +Face 5537 +UV Count: 3 + UV + UV + UV +Face 5538 +UV Count: 3 + UV + UV + UV +Face 5539 +UV Count: 3 + UV + UV + UV +Face 5540 +UV Count: 3 + UV + UV + UV +Face 5541 +UV Count: 3 + UV + UV + UV +Face 5542 +UV Count: 3 + UV + UV + UV +Face 5543 +UV Count: 3 + UV + UV + UV +Face 5544 +UV Count: 3 + UV + UV + UV +Face 5545 +UV Count: 3 + UV + UV + UV +Face 5546 +UV Count: 3 + UV + UV + UV +Face 5547 +UV Count: 3 + UV + UV + UV +Face 5548 +UV Count: 3 + UV + UV + UV +Face 5549 +UV Count: 3 + UV + UV + UV +Face 5550 +UV Count: 3 + UV + UV + UV +Face 5551 +UV Count: 3 + UV + UV + UV +Face 5552 +UV Count: 3 + UV + UV + UV +Face 5553 +UV Count: 3 + UV + UV + UV +Face 5554 +UV Count: 3 + UV + UV + UV +Face 5555 +UV Count: 3 + UV + UV + UV +Face 5556 +UV Count: 3 + UV + UV + UV +Face 5557 +UV Count: 3 + UV + UV + UV +Face 5558 +UV Count: 3 + UV + UV + UV +Face 5559 +UV Count: 3 + UV + UV + UV +Face 5560 +UV Count: 3 + UV + UV + UV +Face 5561 +UV Count: 3 + UV + UV + UV +Face 5562 +UV Count: 3 + UV + UV + UV +Face 5563 +UV Count: 3 + UV + UV + UV +Face 5564 +UV Count: 3 + UV + UV + UV +Face 5565 +UV Count: 3 + UV + UV + UV +Face 5566 +UV Count: 3 + UV + UV + UV +Face 5567 +UV Count: 3 + UV + UV + UV +Face 5568 +UV Count: 3 + UV + UV + UV +Face 5569 +UV Count: 3 + UV + UV + UV +Face 5570 +UV Count: 3 + UV + UV + UV +Face 5571 +UV Count: 3 + UV + UV + UV +Face 5572 +UV Count: 3 + UV + UV + UV +Face 5573 +UV Count: 3 + UV + UV + UV +Face 5574 +UV Count: 3 + UV + UV + UV +Face 5575 +UV Count: 3 + UV + UV + UV +Face 5576 +UV Count: 3 + UV + UV + UV +Face 5577 +UV Count: 3 + UV + UV + UV +Face 5578 +UV Count: 3 + UV + UV + UV +Face 5579 +UV Count: 3 + UV + UV + UV +Face 5580 +UV Count: 3 + UV + UV + UV +Face 5581 +UV Count: 3 + UV + UV + UV +Face 5582 +UV Count: 3 + UV + UV + UV +Face 5583 +UV Count: 3 + UV + UV + UV +Face 5584 +UV Count: 3 + UV + UV + UV +Face 5585 +UV Count: 3 + UV + UV + UV +Face 5586 +UV Count: 3 + UV + UV + UV +Face 5587 +UV Count: 3 + UV + UV + UV +Face 5588 +UV Count: 3 + UV + UV + UV +Face 5589 +UV Count: 3 + UV + UV + UV +Face 5590 +UV Count: 3 + UV + UV + UV +Face 5591 +UV Count: 3 + UV + UV + UV +Face 5592 +UV Count: 3 + UV + UV + UV +Face 5593 +UV Count: 3 + UV + UV + UV +Face 5594 +UV Count: 3 + UV + UV + UV +Face 5595 +UV Count: 3 + UV + UV + UV +Face 5596 +UV Count: 3 + UV + UV + UV +Face 5597 +UV Count: 3 + UV + UV + UV +Face 5598 +UV Count: 3 + UV + UV + UV +Face 5599 +UV Count: 3 + UV + UV + UV +Face 5600 +UV Count: 3 + UV + UV + UV +Face 5601 +UV Count: 3 + UV + UV + UV +Face 5602 +UV Count: 3 + UV + UV + UV +Face 5603 +UV Count: 3 + UV + UV + UV +Face 5604 +UV Count: 3 + UV + UV + UV +Face 5605 +UV Count: 3 + UV + UV + UV +Face 5606 +UV Count: 3 + UV + UV + UV +Face 5607 +UV Count: 3 + UV + UV + UV +Face 5608 +UV Count: 3 + UV + UV + UV +Face 5609 +UV Count: 3 + UV + UV + UV +Face 5610 +UV Count: 3 + UV + UV + UV +Face 5611 +UV Count: 3 + UV + UV + UV +Face 5612 +UV Count: 3 + UV + UV + UV +Face 5613 +UV Count: 3 + UV + UV + UV +Face 5614 +UV Count: 3 + UV + UV + UV +Face 5615 +UV Count: 3 + UV + UV + UV +Face 5616 +UV Count: 3 + UV + UV + UV +Face 5617 +UV Count: 3 + UV + UV + UV +Face 5618 +UV Count: 3 + UV + UV + UV +Face 5619 +UV Count: 3 + UV + UV + UV +Face 5620 +UV Count: 3 + UV + UV + UV +Face 5621 +UV Count: 3 + UV + UV + UV +Face 5622 +UV Count: 3 + UV + UV + UV +Face 5623 +UV Count: 3 + UV + UV + UV +Face 5624 +UV Count: 3 + UV + UV + UV +Face 5625 +UV Count: 3 + UV + UV + UV +Face 5626 +UV Count: 3 + UV + UV + UV +Face 5627 +UV Count: 3 + UV + UV + UV +Face 5628 +UV Count: 3 + UV + UV + UV +Face 5629 +UV Count: 3 + UV + UV + UV +Face 5630 +UV Count: 3 + UV + UV + UV +Face 5631 +UV Count: 3 + UV + UV + UV +Face 5632 +UV Count: 3 + UV + UV + UV +Face 5633 +UV Count: 3 + UV + UV + UV +Face 5634 +UV Count: 3 + UV + UV + UV +Face 5635 +UV Count: 3 + UV + UV + UV +Face 5636 +UV Count: 3 + UV + UV + UV +Face 5637 +UV Count: 3 + UV + UV + UV +Face 5638 +UV Count: 3 + UV + UV + UV +Face 5639 +UV Count: 3 + UV + UV + UV +Face 5640 +UV Count: 3 + UV + UV + UV +Face 5641 +UV Count: 3 + UV + UV + UV +Face 5642 +UV Count: 3 + UV + UV + UV +Face 5643 +UV Count: 3 + UV + UV + UV +Face 5644 +UV Count: 3 + UV + UV + UV +Face 5645 +UV Count: 3 + UV + UV + UV +Face 5646 +UV Count: 3 + UV + UV + UV +Face 5647 +UV Count: 3 + UV + UV + UV +Face 5648 +UV Count: 3 + UV + UV + UV +Face 5649 +UV Count: 3 + UV + UV + UV +Face 5650 +UV Count: 3 + UV + UV + UV +Face 5651 +UV Count: 3 + UV + UV + UV +Face 5652 +UV Count: 3 + UV + UV + UV +Face 5653 +UV Count: 3 + UV + UV + UV +Face 5654 +UV Count: 3 + UV + UV + UV +Face 5655 +UV Count: 3 + UV + UV + UV +Face 5656 +UV Count: 3 + UV + UV + UV +Face 5657 +UV Count: 3 + UV + UV + UV +Face 5658 +UV Count: 3 + UV + UV + UV +Face 5659 +UV Count: 3 + UV + UV + UV +Face 5660 +UV Count: 3 + UV + UV + UV +Face 5661 +UV Count: 3 + UV + UV + UV +Face 5662 +UV Count: 3 + UV + UV + UV +Face 5663 +UV Count: 3 + UV + UV + UV +Face 5664 +UV Count: 3 + UV + UV + UV +Face 5665 +UV Count: 3 + UV + UV + UV +Face 5666 +UV Count: 3 + UV + UV + UV +Face 5667 +UV Count: 3 + UV + UV + UV +Face 5668 +UV Count: 3 + UV + UV + UV +Face 5669 +UV Count: 3 + UV + UV + UV +Face 5670 +UV Count: 3 + UV + UV + UV +Face 5671 +UV Count: 3 + UV + UV + UV +Face 5672 +UV Count: 3 + UV + UV + UV +Face 5673 +UV Count: 3 + UV + UV + UV +Face 5674 +UV Count: 3 + UV + UV + UV +Face 5675 +UV Count: 3 + UV + UV + UV +Face 5676 +UV Count: 3 + UV + UV + UV +Face 5677 +UV Count: 3 + UV + UV + UV +Face 5678 +UV Count: 3 + UV + UV + UV +Face 5679 +UV Count: 3 + UV + UV + UV +Face 5680 +UV Count: 3 + UV + UV + UV +Face 5681 +UV Count: 3 + UV + UV + UV +Face 5682 +UV Count: 3 + UV + UV + UV +Face 5683 +UV Count: 3 + UV + UV + UV +Face 5684 +UV Count: 3 + UV + UV + UV +Face 5685 +UV Count: 3 + UV + UV + UV +Face 5686 +UV Count: 3 + UV + UV + UV +Face 5687 +UV Count: 3 + UV + UV + UV +Face 5688 +UV Count: 3 + UV + UV + UV +Face 5689 +UV Count: 3 + UV + UV + UV +Face 5690 +UV Count: 3 + UV + UV + UV +Face 5691 +UV Count: 3 + UV + UV + UV +Face 5692 +UV Count: 3 + UV + UV + UV +Face 5693 +UV Count: 3 + UV + UV + UV +Face 5694 +UV Count: 3 + UV + UV + UV +Face 5695 +UV Count: 3 + UV + UV + UV +Face 5696 +UV Count: 3 + UV + UV + UV +Face 5697 +UV Count: 3 + UV + UV + UV +Face 5698 +UV Count: 3 + UV + UV + UV +Face 5699 +UV Count: 3 + UV + UV + UV +Face 5700 +UV Count: 3 + UV + UV + UV +Face 5701 +UV Count: 3 + UV + UV + UV +Face 5702 +UV Count: 3 + UV + UV + UV +Face 5703 +UV Count: 3 + UV + UV + UV +Face 5704 +UV Count: 3 + UV + UV + UV +Face 5705 +UV Count: 3 + UV + UV + UV +Face 5706 +UV Count: 3 + UV + UV + UV +Face 5707 +UV Count: 3 + UV + UV + UV +Face 5708 +UV Count: 3 + UV + UV + UV +Face 5709 +UV Count: 3 + UV + UV + UV +Face 5710 +UV Count: 3 + UV + UV + UV +Face 5711 +UV Count: 3 + UV + UV + UV +Face 5712 +UV Count: 3 + UV + UV + UV +Face 5713 +UV Count: 3 + UV + UV + UV +Face 5714 +UV Count: 3 + UV + UV + UV +Face 5715 +UV Count: 3 + UV + UV + UV +Face 5716 +UV Count: 3 + UV + UV + UV +Face 5717 +UV Count: 3 + UV + UV + UV +Face 5718 +UV Count: 3 + UV + UV + UV +Face 5719 +UV Count: 3 + UV + UV + UV +Face 5720 +UV Count: 3 + UV + UV + UV +Face 5721 +UV Count: 3 + UV + UV + UV +Face 5722 +UV Count: 3 + UV + UV + UV +Face 5723 +UV Count: 3 + UV + UV + UV +Face 5724 +UV Count: 3 + UV + UV + UV +Face 5725 +UV Count: 3 + UV + UV + UV +Face 5726 +UV Count: 3 + UV + UV + UV +Face 5727 +UV Count: 3 + UV + UV + UV +Face 5728 +UV Count: 3 + UV + UV + UV +Face 5729 +UV Count: 3 + UV + UV + UV +Face 5730 +UV Count: 3 + UV + UV + UV +Face 5731 +UV Count: 3 + UV + UV + UV +Face 5732 +UV Count: 3 + UV + UV + UV +Face 5733 +UV Count: 3 + UV + UV + UV +Face 5734 +UV Count: 3 + UV + UV + UV +Face 5735 +UV Count: 3 + UV + UV + UV +Face 5736 +UV Count: 3 + UV + UV + UV +Face 5737 +UV Count: 3 + UV + UV + UV +Face 5738 +UV Count: 3 + UV + UV + UV +Face 5739 +UV Count: 3 + UV + UV + UV +Face 5740 +UV Count: 3 + UV + UV + UV +Face 5741 +UV Count: 3 + UV + UV + UV +Face 5742 +UV Count: 3 + UV + UV + UV +Face 5743 +UV Count: 3 + UV + UV + UV +Face 5744 +UV Count: 3 + UV + UV + UV +Face 5745 +UV Count: 3 + UV + UV + UV +Face 5746 +UV Count: 3 + UV + UV + UV +Face 5747 +UV Count: 3 + UV + UV + UV +Face 5748 +UV Count: 3 + UV + UV + UV +Face 5749 +UV Count: 3 + UV + UV + UV +Face 5750 +UV Count: 3 + UV + UV + UV +Face 5751 +UV Count: 3 + UV + UV + UV +Face 5752 +UV Count: 3 + UV + UV + UV +Face 5753 +UV Count: 3 + UV + UV + UV +Face 5754 +UV Count: 3 + UV + UV + UV +Face 5755 +UV Count: 3 + UV + UV + UV +Face 5756 +UV Count: 3 + UV + UV + UV +Face 5757 +UV Count: 3 + UV + UV + UV +Face 5758 +UV Count: 3 + UV + UV + UV +Face 5759 +UV Count: 3 + UV + UV + UV +Face 5760 +UV Count: 3 + UV + UV + UV +Face 5761 +UV Count: 3 + UV + UV + UV +Face 5762 +UV Count: 3 + UV + UV + UV +Face 5763 +UV Count: 3 + UV + UV + UV +Face 5764 +UV Count: 3 + UV + UV + UV +Face 5765 +UV Count: 3 + UV + UV + UV +Face 5766 +UV Count: 3 + UV + UV + UV +Face 5767 +UV Count: 3 + UV + UV + UV +Face 5768 +UV Count: 3 + UV + UV + UV +Face 5769 +UV Count: 3 + UV + UV + UV +Face 5770 +UV Count: 3 + UV + UV + UV +Face 5771 +UV Count: 3 + UV + UV + UV +Face 5772 +UV Count: 3 + UV + UV + UV +Face 5773 +UV Count: 3 + UV + UV + UV +Face 5774 +UV Count: 3 + UV + UV + UV +Face 5775 +UV Count: 3 + UV + UV + UV +Face 5776 +UV Count: 3 + UV + UV + UV +Face 5777 +UV Count: 3 + UV + UV + UV +Face 5778 +UV Count: 3 + UV + UV + UV +Face 5779 +UV Count: 3 + UV + UV + UV +Face 5780 +UV Count: 3 + UV + UV + UV +Face 5781 +UV Count: 3 + UV + UV + UV +Face 5782 +UV Count: 3 + UV + UV + UV +Face 5783 +UV Count: 3 + UV + UV + UV +Face 5784 +UV Count: 3 + UV + UV + UV +Face 5785 +UV Count: 3 + UV + UV + UV +Face 5786 +UV Count: 3 + UV + UV + UV +Face 5787 +UV Count: 3 + UV + UV + UV +Face 5788 +UV Count: 3 + UV + UV + UV +Face 5789 +UV Count: 3 + UV + UV + UV +Face 5790 +UV Count: 3 + UV + UV + UV +Face 5791 +UV Count: 3 + UV + UV + UV +Face 5792 +UV Count: 3 + UV + UV + UV +Face 5793 +UV Count: 3 + UV + UV + UV +Face 5794 +UV Count: 3 + UV + UV + UV +Face 5795 +UV Count: 3 + UV + UV + UV +Face 5796 +UV Count: 3 + UV + UV + UV +Face 5797 +UV Count: 3 + UV + UV + UV +Face 5798 +UV Count: 3 + UV + UV + UV +Face 5799 +UV Count: 3 + UV + UV + UV +Face 5800 +UV Count: 3 + UV + UV + UV +Face 5801 +UV Count: 3 + UV + UV + UV +Face 5802 +UV Count: 3 + UV + UV + UV +Face 5803 +UV Count: 3 + UV + UV + UV +Face 5804 +UV Count: 3 + UV + UV + UV +Face 5805 +UV Count: 3 + UV + UV + UV +Face 5806 +UV Count: 3 + UV + UV + UV +Face 5807 +UV Count: 3 + UV + UV + UV +Face 5808 +UV Count: 3 + UV + UV + UV +Face 5809 +UV Count: 3 + UV + UV + UV +Face 5810 +UV Count: 3 + UV + UV + UV +Face 5811 +UV Count: 3 + UV + UV + UV +Face 5812 +UV Count: 3 + UV + UV + UV +Face 5813 +UV Count: 3 + UV + UV + UV +Face 5814 +UV Count: 3 + UV + UV + UV +Face 5815 +UV Count: 3 + UV + UV + UV +Face 5816 +UV Count: 3 + UV + UV + UV +Face 5817 +UV Count: 3 + UV + UV + UV +Face 5818 +UV Count: 3 + UV + UV + UV +Face 5819 +UV Count: 3 + UV + UV + UV +Face 5820 +UV Count: 3 + UV + UV + UV +Face 5821 +UV Count: 3 + UV + UV + UV +Face 5822 +UV Count: 3 + UV + UV + UV +Face 5823 +UV Count: 3 + UV + UV + UV +Face 5824 +UV Count: 3 + UV + UV + UV +Face 5825 +UV Count: 3 + UV + UV + UV +Face 5826 +UV Count: 3 + UV + UV + UV +Face 5827 +UV Count: 3 + UV + UV + UV +Face 5828 +UV Count: 3 + UV + UV + UV +Face 5829 +UV Count: 3 + UV + UV + UV +Face 5830 +UV Count: 3 + UV + UV + UV +Face 5831 +UV Count: 3 + UV + UV + UV +Face 5832 +UV Count: 3 + UV + UV + UV +Face 5833 +UV Count: 3 + UV + UV + UV +Face 5834 +UV Count: 3 + UV + UV + UV +Face 5835 +UV Count: 3 + UV + UV + UV +Face 5836 +UV Count: 3 + UV + UV + UV +Face 5837 +UV Count: 3 + UV + UV + UV +Face 5838 +UV Count: 3 + UV + UV + UV +Face 5839 +UV Count: 3 + UV + UV + UV +Face 5840 +UV Count: 3 + UV + UV + UV +Face 5841 +UV Count: 3 + UV + UV + UV +Face 5842 +UV Count: 3 + UV + UV + UV +Face 5843 +UV Count: 3 + UV + UV + UV +Face 5844 +UV Count: 3 + UV + UV + UV +Face 5845 +UV Count: 3 + UV + UV + UV +Face 5846 +UV Count: 3 + UV + UV + UV +Face 5847 +UV Count: 3 + UV + UV + UV +Face 5848 +UV Count: 3 + UV + UV + UV +Face 5849 +UV Count: 3 + UV + UV + UV +Face 5850 +UV Count: 3 + UV + UV + UV +Face 5851 +UV Count: 3 + UV + UV + UV +Face 5852 +UV Count: 3 + UV + UV + UV +Face 5853 +UV Count: 3 + UV + UV + UV +Face 5854 +UV Count: 3 + UV + UV + UV +Face 5855 +UV Count: 3 + UV + UV + UV +Face 5856 +UV Count: 3 + UV + UV + UV +Face 5857 +UV Count: 3 + UV + UV + UV +Face 5858 +UV Count: 3 + UV + UV + UV +Face 5859 +UV Count: 3 + UV + UV + UV +Face 5860 +UV Count: 3 + UV + UV + UV +Face 5861 +UV Count: 3 + UV + UV + UV +Face 5862 +UV Count: 3 + UV + UV + UV +Face 5863 +UV Count: 3 + UV + UV + UV +Face 5864 +UV Count: 3 + UV + UV + UV +Face 5865 +UV Count: 3 + UV + UV + UV +Face 5866 +UV Count: 3 + UV + UV + UV +Face 5867 +UV Count: 3 + UV + UV + UV +Face 5868 +UV Count: 3 + UV + UV + UV +Face 5869 +UV Count: 3 + UV + UV + UV +Face 5870 +UV Count: 3 + UV + UV + UV +Face 5871 +UV Count: 3 + UV + UV + UV +Face 5872 +UV Count: 3 + UV + UV + UV +Face 5873 +UV Count: 3 + UV + UV + UV +Face 5874 +UV Count: 3 + UV + UV + UV +Face 5875 +UV Count: 3 + UV + UV + UV +Face 5876 +UV Count: 3 + UV + UV + UV +Face 5877 +UV Count: 3 + UV + UV + UV +Face 5878 +UV Count: 3 + UV + UV + UV +Face 5879 +UV Count: 3 + UV + UV + UV +Face 5880 +UV Count: 3 + UV + UV + UV +Face 5881 +UV Count: 3 + UV + UV + UV +Face 5882 +UV Count: 3 + UV + UV + UV +Face 5883 +UV Count: 3 + UV + UV + UV +Face 5884 +UV Count: 3 + UV + UV + UV +Face 5885 +UV Count: 3 + UV + UV + UV +Face 5886 +UV Count: 3 + UV + UV + UV +Face 5887 +UV Count: 3 + UV + UV + UV +Face 5888 +UV Count: 3 + UV + UV + UV +Face 5889 +UV Count: 3 + UV + UV + UV +Face 5890 +UV Count: 3 + UV + UV + UV +Face 5891 +UV Count: 3 + UV + UV + UV +Face 5892 +UV Count: 3 + UV + UV + UV +Face 5893 +UV Count: 3 + UV + UV + UV +Face 5894 +UV Count: 3 + UV + UV + UV +Face 5895 +UV Count: 3 + UV + UV + UV +Face 5896 +UV Count: 3 + UV + UV + UV +Face 5897 +UV Count: 3 + UV + UV + UV +Face 5898 +UV Count: 3 + UV + UV + UV +Face 5899 +UV Count: 3 + UV + UV + UV +Face 5900 +UV Count: 3 + UV + UV + UV +Face 5901 +UV Count: 3 + UV + UV + UV +Face 5902 +UV Count: 3 + UV + UV + UV +Face 5903 +UV Count: 3 + UV + UV + UV +Face 5904 +UV Count: 3 + UV + UV + UV +Face 5905 +UV Count: 3 + UV + UV + UV +Face 5906 +UV Count: 3 + UV + UV + UV +Face 5907 +UV Count: 3 + UV + UV + UV +Face 5908 +UV Count: 3 + UV + UV + UV +Face 5909 +UV Count: 3 + UV + UV + UV +Face 5910 +UV Count: 3 + UV + UV + UV +Face 5911 +UV Count: 3 + UV + UV + UV +Face 5912 +UV Count: 3 + UV + UV + UV +Face 5913 +UV Count: 3 + UV + UV + UV +Face 5914 +UV Count: 3 + UV + UV + UV +Face 5915 +UV Count: 3 + UV + UV + UV +Face 5916 +UV Count: 3 + UV + UV + UV +Face 5917 +UV Count: 3 + UV + UV + UV +Face 5918 +UV Count: 3 + UV + UV + UV +Face 5919 +UV Count: 3 + UV + UV + UV +Face 5920 +UV Count: 3 + UV + UV + UV +Face 5921 +UV Count: 3 + UV + UV + UV +Face 5922 +UV Count: 3 + UV + UV + UV +Face 5923 +UV Count: 3 + UV + UV + UV +Face 5924 +UV Count: 3 + UV + UV + UV +Face 5925 +UV Count: 3 + UV + UV + UV +Face 5926 +UV Count: 3 + UV + UV + UV +Face 5927 +UV Count: 3 + UV + UV + UV +Face 5928 +UV Count: 3 + UV + UV + UV +Face 5929 +UV Count: 3 + UV + UV + UV +Face 5930 +UV Count: 3 + UV + UV + UV +Face 5931 +UV Count: 3 + UV + UV + UV +Face 5932 +UV Count: 3 + UV + UV + UV +Face 5933 +UV Count: 3 + UV + UV + UV +Face 5934 +UV Count: 3 + UV + UV + UV +Face 5935 +UV Count: 3 + UV + UV + UV +Face 5936 +UV Count: 3 + UV + UV + UV +Face 5937 +UV Count: 3 + UV + UV + UV +Face 5938 +UV Count: 3 + UV + UV + UV +Face 5939 +UV Count: 3 + UV + UV + UV +Face 5940 +UV Count: 3 + UV + UV + UV +Face 5941 +UV Count: 3 + UV + UV + UV +Face 5942 +UV Count: 3 + UV + UV + UV +Face 5943 +UV Count: 3 + UV + UV + UV +Face 5944 +UV Count: 3 + UV + UV + UV +Face 5945 +UV Count: 3 + UV + UV + UV +Face 5946 +UV Count: 3 + UV + UV + UV +Face 5947 +UV Count: 3 + UV + UV + UV +Face 5948 +UV Count: 3 + UV + UV + UV +Face 5949 +UV Count: 3 + UV + UV + UV +Face 5950 +UV Count: 3 + UV + UV + UV +Face 5951 +UV Count: 3 + UV + UV + UV +Face 5952 +UV Count: 3 + UV + UV + UV +Face 5953 +UV Count: 3 + UV + UV + UV +Face 5954 +UV Count: 3 + UV + UV + UV +Face 5955 +UV Count: 3 + UV + UV + UV +Face 5956 +UV Count: 3 + UV + UV + UV +Face 5957 +UV Count: 3 + UV + UV + UV +Face 5958 +UV Count: 3 + UV + UV + UV +Face 5959 +UV Count: 3 + UV + UV + UV +Face 5960 +UV Count: 3 + UV + UV + UV +Face 5961 +UV Count: 3 + UV + UV + UV +Face 5962 +UV Count: 3 + UV + UV + UV +Face 5963 +UV Count: 3 + UV + UV + UV +Face 5964 +UV Count: 3 + UV + UV + UV +Face 5965 +UV Count: 3 + UV + UV + UV +Face 5966 +UV Count: 3 + UV + UV + UV +Face 5967 +UV Count: 3 + UV + UV + UV +Face 5968 +UV Count: 3 + UV + UV + UV +Face 5969 +UV Count: 3 + UV + UV + UV +Face 5970 +UV Count: 3 + UV + UV + UV +Face 5971 +UV Count: 3 + UV + UV + UV +Face 5972 +UV Count: 3 + UV + UV + UV +Face 5973 +UV Count: 3 + UV + UV + UV +Face 5974 +UV Count: 3 + UV + UV + UV +Face 5975 +UV Count: 3 + UV + UV + UV +Face 5976 +UV Count: 3 + UV + UV + UV +Face 5977 +UV Count: 3 + UV + UV + UV +Face 5978 +UV Count: 3 + UV + UV + UV +Face 5979 +UV Count: 3 + UV + UV + UV +Face 5980 +UV Count: 3 + UV + UV + UV +Face 5981 +UV Count: 3 + UV + UV + UV +Face 5982 +UV Count: 3 + UV + UV + UV +Face 5983 +UV Count: 3 + UV + UV + UV +Face 5984 +UV Count: 3 + UV + UV + UV +Face 5985 +UV Count: 3 + UV + UV + UV +Face 5986 +UV Count: 3 + UV + UV + UV +Face 5987 +UV Count: 3 + UV + UV + UV +Face 5988 +UV Count: 3 + UV + UV + UV +Face 5989 +UV Count: 3 + UV + UV + UV +Face 5990 +UV Count: 3 + UV + UV + UV +Face 5991 +UV Count: 3 + UV + UV + UV +Face 5992 +UV Count: 3 + UV + UV + UV +Face 5993 +UV Count: 3 + UV + UV + UV +Face 5994 +UV Count: 3 + UV + UV + UV +Face 5995 +UV Count: 3 + UV + UV + UV +Face 5996 +UV Count: 3 + UV + UV + UV +Face 5997 +UV Count: 3 + UV + UV + UV +Face 5998 +UV Count: 3 + UV + UV + UV +Face 5999 +UV Count: 3 + UV + UV + UV +Face 6000 +UV Count: 3 + UV + UV + UV +Face 6001 +UV Count: 3 + UV + UV + UV +Face 6002 +UV Count: 3 + UV + UV + UV +Face 6003 +UV Count: 3 + UV + UV + UV +Face 6004 +UV Count: 3 + UV + UV + UV +Face 6005 +UV Count: 3 + UV + UV + UV +Face 6006 +UV Count: 3 + UV + UV + UV +Face 6007 +UV Count: 3 + UV + UV + UV +Face 6008 +UV Count: 3 + UV + UV + UV +Face 6009 +UV Count: 3 + UV + UV + UV +Face 6010 +UV Count: 3 + UV + UV + UV +Face 6011 +UV Count: 3 + UV + UV + UV +Face 6012 +UV Count: 3 + UV + UV + UV +Face 6013 +UV Count: 3 + UV + UV + UV +Face 6014 +UV Count: 3 + UV + UV + UV +Face 6015 +UV Count: 3 + UV + UV + UV +Face 6016 +UV Count: 3 + UV + UV + UV +Face 6017 +UV Count: 3 + UV + UV + UV +Face 6018 +UV Count: 3 + UV + UV + UV +Face 6019 +UV Count: 3 + UV + UV + UV +Face 6020 +UV Count: 3 + UV + UV + UV +Face 6021 +UV Count: 3 + UV + UV + UV +Face 6022 +UV Count: 3 + UV + UV + UV +Face 6023 +UV Count: 3 + UV + UV + UV +Face 6024 +UV Count: 3 + UV + UV + UV +Face 6025 +UV Count: 3 + UV + UV + UV +Face 6026 +UV Count: 3 + UV + UV + UV +Face 6027 +UV Count: 3 + UV + UV + UV +Face 6028 +UV Count: 3 + UV + UV + UV +Face 6029 +UV Count: 3 + UV + UV + UV +Face 6030 +UV Count: 3 + UV + UV + UV +Face 6031 +UV Count: 3 + UV + UV + UV +Face 6032 +UV Count: 3 + UV + UV + UV +Face 6033 +UV Count: 3 + UV + UV + UV +Face 6034 +UV Count: 3 + UV + UV + UV +Face 6035 +UV Count: 3 + UV + UV + UV +Face 6036 +UV Count: 3 + UV + UV + UV +Face 6037 +UV Count: 3 + UV + UV + UV +Face 6038 +UV Count: 3 + UV + UV + UV +Face 6039 +UV Count: 3 + UV + UV + UV +Face 6040 +UV Count: 3 + UV + UV + UV +Face 6041 +UV Count: 3 + UV + UV + UV +Face 6042 +UV Count: 3 + UV + UV + UV +Face 6043 +UV Count: 3 + UV + UV + UV +Face 6044 +UV Count: 3 + UV + UV + UV +Face 6045 +UV Count: 3 + UV + UV + UV +Face 6046 +UV Count: 3 + UV + UV + UV +Face 6047 +UV Count: 3 + UV + UV + UV +Face 6048 +UV Count: 3 + UV + UV + UV +Face 6049 +UV Count: 3 + UV + UV + UV +Face 6050 +UV Count: 3 + UV + UV + UV +Face 6051 +UV Count: 3 + UV + UV + UV +Face 6052 +UV Count: 3 + UV + UV + UV +Face 6053 +UV Count: 3 + UV + UV + UV +Face 6054 +UV Count: 3 + UV + UV + UV +Face 6055 +UV Count: 3 + UV + UV + UV +Face 6056 +UV Count: 3 + UV + UV + UV +Face 6057 +UV Count: 3 + UV + UV + UV +Face 6058 +UV Count: 3 + UV + UV + UV +Face 6059 +UV Count: 3 + UV + UV + UV +Face 6060 +UV Count: 3 + UV + UV + UV +Face 6061 +UV Count: 3 + UV + UV + UV +Face 6062 +UV Count: 3 + UV + UV + UV +Face 6063 +UV Count: 3 + UV + UV + UV +Face 6064 +UV Count: 3 + UV + UV + UV +Face 6065 +UV Count: 3 + UV + UV + UV +Face 6066 +UV Count: 3 + UV + UV + UV +Face 6067 +UV Count: 3 + UV + UV + UV +Face 6068 +UV Count: 3 + UV + UV + UV +Face 6069 +UV Count: 3 + UV + UV + UV +Face 6070 +UV Count: 3 + UV + UV + UV +Face 6071 +UV Count: 3 + UV + UV + UV +Face 6072 +UV Count: 3 + UV + UV + UV +Face 6073 +UV Count: 3 + UV + UV + UV +Face 6074 +UV Count: 3 + UV + UV + UV +Face 6075 +UV Count: 3 + UV + UV + UV +Face 6076 +UV Count: 3 + UV + UV + UV +Face 6077 +UV Count: 3 + UV + UV + UV +Face 6078 +UV Count: 3 + UV + UV + UV +Face 6079 +UV Count: 3 + UV + UV + UV +Face 6080 +UV Count: 3 + UV + UV + UV +Face 6081 +UV Count: 3 + UV + UV + UV +Face 6082 +UV Count: 3 + UV + UV + UV +Face 6083 +UV Count: 3 + UV + UV + UV +Face 6084 +UV Count: 3 + UV + UV + UV +Face 6085 +UV Count: 3 + UV + UV + UV +Face 6086 +UV Count: 3 + UV + UV + UV +Face 6087 +UV Count: 3 + UV + UV + UV +Face 6088 +UV Count: 3 + UV + UV + UV +Face 6089 +UV Count: 3 + UV + UV + UV +Face 6090 +UV Count: 3 + UV + UV + UV +Face 6091 +UV Count: 3 + UV + UV + UV +Face 6092 +UV Count: 3 + UV + UV + UV +Face 6093 +UV Count: 3 + UV + UV + UV +Face 6094 +UV Count: 3 + UV + UV + UV +Face 6095 +UV Count: 3 + UV + UV + UV +Face 6096 +UV Count: 3 + UV + UV + UV +Face 6097 +UV Count: 3 + UV + UV + UV +Face 6098 +UV Count: 3 + UV + UV + UV +Face 6099 +UV Count: 3 + UV + UV + UV +Face 6100 +UV Count: 3 + UV + UV + UV +Face 6101 +UV Count: 3 + UV + UV + UV +Face 6102 +UV Count: 3 + UV + UV + UV +Face 6103 +UV Count: 3 + UV + UV + UV +Face 6104 +UV Count: 3 + UV + UV + UV +Face 6105 +UV Count: 3 + UV + UV + UV +Face 6106 +UV Count: 3 + UV + UV + UV +Face 6107 +UV Count: 3 + UV + UV + UV +Face 6108 +UV Count: 3 + UV + UV + UV +Face 6109 +UV Count: 3 + UV + UV + UV +Face 6110 +UV Count: 3 + UV + UV + UV +Face 6111 +UV Count: 3 + UV + UV + UV +Face 6112 +UV Count: 3 + UV + UV + UV +Face 6113 +UV Count: 3 + UV + UV + UV +Face 6114 +UV Count: 3 + UV + UV + UV +Face 6115 +UV Count: 3 + UV + UV + UV +Face 6116 +UV Count: 3 + UV + UV + UV +Face 6117 +UV Count: 3 + UV + UV + UV +Face 6118 +UV Count: 3 + UV + UV + UV +Face 6119 +UV Count: 3 + UV + UV + UV +Face 6120 +UV Count: 3 + UV + UV + UV +Face 6121 +UV Count: 3 + UV + UV + UV +Face 6122 +UV Count: 3 + UV + UV + UV +Face 6123 +UV Count: 3 + UV + UV + UV +Face 6124 +UV Count: 3 + UV + UV + UV +Face 6125 +UV Count: 3 + UV + UV + UV +Face 6126 +UV Count: 3 + UV + UV + UV +Face 6127 +UV Count: 3 + UV + UV + UV +Face 6128 +UV Count: 3 + UV + UV + UV +Face 6129 +UV Count: 3 + UV + UV + UV +Face 6130 +UV Count: 3 + UV + UV + UV +Face 6131 +UV Count: 3 + UV + UV + UV +Face 6132 +UV Count: 3 + UV + UV + UV +Face 6133 +UV Count: 3 + UV + UV + UV +Face 6134 +UV Count: 3 + UV + UV + UV +Face 6135 +UV Count: 3 + UV + UV + UV +Face 6136 +UV Count: 3 + UV + UV + UV +Face 6137 +UV Count: 3 + UV + UV + UV +Face 6138 +UV Count: 3 + UV + UV + UV +Face 6139 +UV Count: 3 + UV + UV + UV +Face 6140 +UV Count: 3 + UV + UV + UV +Face 6141 +UV Count: 3 + UV + UV + UV +Face 6142 +UV Count: 3 + UV + UV + UV +Face 6143 +UV Count: 3 + UV + UV + UV +Face 6144 +UV Count: 3 + UV + UV + UV +Face 6145 +UV Count: 3 + UV + UV + UV +Face 6146 +UV Count: 3 + UV + UV + UV +Face 6147 +UV Count: 3 + UV + UV + UV +Face 6148 +UV Count: 3 + UV + UV + UV +Face 6149 +UV Count: 3 + UV + UV + UV +Face 6150 +UV Count: 3 + UV + UV + UV +Face 6151 +UV Count: 3 + UV + UV + UV +Face 6152 +UV Count: 3 + UV + UV + UV +Face 6153 +UV Count: 3 + UV + UV + UV +Face 6154 +UV Count: 3 + UV + UV + UV +Face 6155 +UV Count: 3 + UV + UV + UV +Face 6156 +UV Count: 3 + UV + UV + UV +Face 6157 +UV Count: 3 + UV + UV + UV +Face 6158 +UV Count: 3 + UV + UV + UV +Face 6159 +UV Count: 3 + UV + UV + UV +Face 6160 +UV Count: 3 + UV + UV + UV +Face 6161 +UV Count: 3 + UV + UV + UV +Face 6162 +UV Count: 3 + UV + UV + UV +Face 6163 +UV Count: 3 + UV + UV + UV +Face 6164 +UV Count: 3 + UV + UV + UV +Face 6165 +UV Count: 3 + UV + UV + UV +Face 6166 +UV Count: 3 + UV + UV + UV +Face 6167 +UV Count: 3 + UV + UV + UV +Face 6168 +UV Count: 3 + UV + UV + UV +Face 6169 +UV Count: 3 + UV + UV + UV +Face 6170 +UV Count: 3 + UV + UV + UV +Face 6171 +UV Count: 3 + UV + UV + UV +Face 6172 +UV Count: 3 + UV + UV + UV +Face 6173 +UV Count: 3 + UV + UV + UV +Face 6174 +UV Count: 3 + UV + UV + UV +Face 6175 +UV Count: 3 + UV + UV + UV +Face 6176 +UV Count: 3 + UV + UV + UV +Face 6177 +UV Count: 3 + UV + UV + UV +Face 6178 +UV Count: 3 + UV + UV + UV +Face 6179 +UV Count: 3 + UV + UV + UV +Face 6180 +UV Count: 3 + UV + UV + UV +Face 6181 +UV Count: 3 + UV + UV + UV +Face 6182 +UV Count: 3 + UV + UV + UV +Face 6183 +UV Count: 3 + UV + UV + UV +Face 6184 +UV Count: 3 + UV + UV + UV +Face 6185 +UV Count: 3 + UV + UV + UV +Face 6186 +UV Count: 3 + UV + UV + UV +Face 6187 +UV Count: 3 + UV + UV + UV +Face 6188 +UV Count: 3 + UV + UV + UV +Face 6189 +UV Count: 3 + UV + UV + UV +Face 6190 +UV Count: 3 + UV + UV + UV +Face 6191 +UV Count: 3 + UV + UV + UV +Face 6192 +UV Count: 3 + UV + UV + UV +Face 6193 +UV Count: 3 + UV + UV + UV +Face 6194 +UV Count: 3 + UV + UV + UV +Face 6195 +UV Count: 3 + UV + UV + UV +Face 6196 +UV Count: 3 + UV + UV + UV +Face 6197 +UV Count: 3 + UV + UV + UV +Face 6198 +UV Count: 3 + UV + UV + UV +Face 6199 +UV Count: 3 + UV + UV + UV +Face 6200 +UV Count: 3 + UV + UV + UV +Face 6201 +UV Count: 3 + UV + UV + UV +Face 6202 +UV Count: 3 + UV + UV + UV +Face 6203 +UV Count: 3 + UV + UV + UV +Face 6204 +UV Count: 3 + UV + UV + UV +Face 6205 +UV Count: 3 + UV + UV + UV +Face 6206 +UV Count: 3 + UV + UV + UV +Face 6207 +UV Count: 3 + UV + UV + UV +Face 6208 +UV Count: 3 + UV + UV + UV +Face 6209 +UV Count: 3 + UV + UV + UV +Face 6210 +UV Count: 3 + UV + UV + UV +Face 6211 +UV Count: 3 + UV + UV + UV +Face 6212 +UV Count: 3 + UV + UV + UV +Face 6213 +UV Count: 3 + UV + UV + UV +Face 6214 +UV Count: 3 + UV + UV + UV +Face 6215 +UV Count: 3 + UV + UV + UV +Face 6216 +UV Count: 3 + UV + UV + UV +Face 6217 +UV Count: 3 + UV + UV + UV +Face 6218 +UV Count: 3 + UV + UV + UV +Face 6219 +UV Count: 3 + UV + UV + UV +Face 6220 +UV Count: 3 + UV + UV + UV +Face 6221 +UV Count: 3 + UV + UV + UV +Face 6222 +UV Count: 3 + UV + UV + UV +Face 6223 +UV Count: 3 + UV + UV + UV +Face 6224 +UV Count: 3 + UV + UV + UV +Face 6225 +UV Count: 3 + UV + UV + UV +Face 6226 +UV Count: 3 + UV + UV + UV +Face 6227 +UV Count: 3 + UV + UV + UV +Face 6228 +UV Count: 3 + UV + UV + UV +Face 6229 +UV Count: 3 + UV + UV + UV +Face 6230 +UV Count: 3 + UV + UV + UV +Face 6231 +UV Count: 3 + UV + UV + UV +Face 6232 +UV Count: 3 + UV + UV + UV +Face 6233 +UV Count: 3 + UV + UV + UV +Face 6234 +UV Count: 3 + UV + UV + UV +Face 6235 +UV Count: 3 + UV + UV + UV +Face 6236 +UV Count: 3 + UV + UV + UV +Face 6237 +UV Count: 3 + UV + UV + UV +Face 6238 +UV Count: 3 + UV + UV + UV +Face 6239 +UV Count: 3 + UV + UV + UV +Face 6240 +UV Count: 3 + UV + UV + UV +Face 6241 +UV Count: 3 + UV + UV + UV +Face 6242 +UV Count: 3 + UV + UV + UV +Face 6243 +UV Count: 3 + UV + UV + UV +Face 6244 +UV Count: 3 + UV + UV + UV +Face 6245 +UV Count: 3 + UV + UV + UV +Face 6246 +UV Count: 3 + UV + UV + UV +Face 6247 +UV Count: 3 + UV + UV + UV +Face 6248 +UV Count: 3 + UV + UV + UV +Face 6249 +UV Count: 3 + UV + UV + UV +Face 6250 +UV Count: 3 + UV + UV + UV +Face 6251 +UV Count: 3 + UV + UV + UV +Face 6252 +UV Count: 3 + UV + UV + UV +Face 6253 +UV Count: 3 + UV + UV + UV +Face 6254 +UV Count: 3 + UV + UV + UV +Face 6255 +UV Count: 3 + UV + UV + UV +Face 6256 +UV Count: 3 + UV + UV + UV +Face 6257 +UV Count: 3 + UV + UV + UV +Face 6258 +UV Count: 3 + UV + UV + UV +Face 6259 +UV Count: 3 + UV + UV + UV +Face 6260 +UV Count: 3 + UV + UV + UV +Face 6261 +UV Count: 3 + UV + UV + UV +Face 6262 +UV Count: 3 + UV + UV + UV +Face 6263 +UV Count: 3 + UV + UV + UV +Face 6264 +UV Count: 3 + UV + UV + UV +Face 6265 +UV Count: 3 + UV + UV + UV +Face 6266 +UV Count: 3 + UV + UV + UV +Face 6267 +UV Count: 3 + UV + UV + UV +Face 6268 +UV Count: 3 + UV + UV + UV +Face 6269 +UV Count: 3 + UV + UV + UV +Face 6270 +UV Count: 3 + UV + UV + UV +Face 6271 +UV Count: 3 + UV + UV + UV +Face 6272 +UV Count: 3 + UV + UV + UV +Face 6273 +UV Count: 3 + UV + UV + UV +Face 6274 +UV Count: 3 + UV + UV + UV +Face 6275 +UV Count: 3 + UV + UV + UV +Face 6276 +UV Count: 3 + UV + UV + UV +Face 6277 +UV Count: 3 + UV + UV + UV +Face 6278 +UV Count: 3 + UV + UV + UV +Face 6279 +UV Count: 3 + UV + UV + UV +Face 6280 +UV Count: 3 + UV + UV + UV +Face 6281 +UV Count: 3 + UV + UV + UV +Face 6282 +UV Count: 3 + UV + UV + UV +Face 6283 +UV Count: 3 + UV + UV + UV +Face 6284 +UV Count: 3 + UV + UV + UV +Face 6285 +UV Count: 3 + UV + UV + UV +Face 6286 +UV Count: 3 + UV + UV + UV +Face 6287 +UV Count: 3 + UV + UV + UV +Face 6288 +UV Count: 3 + UV + UV + UV +Face 6289 +UV Count: 3 + UV + UV + UV +Face 6290 +UV Count: 3 + UV + UV + UV +Face 6291 +UV Count: 3 + UV + UV + UV +Face 6292 +UV Count: 3 + UV + UV + UV +Face 6293 +UV Count: 3 + UV + UV + UV +Face 6294 +UV Count: 3 + UV + UV + UV +Face 6295 +UV Count: 3 + UV + UV + UV +Face 6296 +UV Count: 3 + UV + UV + UV +Face 6297 +UV Count: 3 + UV + UV + UV +Face 6298 +UV Count: 3 + UV + UV + UV +Face 6299 +UV Count: 3 + UV + UV + UV +Face 6300 +UV Count: 3 + UV + UV + UV +Face 6301 +UV Count: 3 + UV + UV + UV +Face 6302 +UV Count: 3 + UV + UV + UV +Face 6303 +UV Count: 3 + UV + UV + UV +Face 6304 +UV Count: 3 + UV + UV + UV +Face 6305 +UV Count: 3 + UV + UV + UV +Face 6306 +UV Count: 3 + UV + UV + UV +Face 6307 +UV Count: 3 + UV + UV + UV +Face 6308 +UV Count: 3 + UV + UV + UV +Face 6309 +UV Count: 3 + UV + UV + UV +Face 6310 +UV Count: 3 + UV + UV + UV +Face 6311 +UV Count: 3 + UV + UV + UV +Face 6312 +UV Count: 3 + UV + UV + UV +Face 6313 +UV Count: 3 + UV + UV + UV +Face 6314 +UV Count: 3 + UV + UV + UV +Face 6315 +UV Count: 3 + UV + UV + UV +Face 6316 +UV Count: 3 + UV + UV + UV +Face 6317 +UV Count: 3 + UV + UV + UV +Face 6318 +UV Count: 3 + UV + UV + UV +Face 6319 +UV Count: 3 + UV + UV + UV +Face 6320 +UV Count: 3 + UV + UV + UV +Face 6321 +UV Count: 3 + UV + UV + UV +Face 6322 +UV Count: 3 + UV + UV + UV +Face 6323 +UV Count: 3 + UV + UV + UV +Face 6324 +UV Count: 3 + UV + UV + UV +Face 6325 +UV Count: 3 + UV + UV + UV +Face 6326 +UV Count: 3 + UV + UV + UV +Face 6327 +UV Count: 3 + UV + UV + UV +Face 6328 +UV Count: 3 + UV + UV + UV +Face 6329 +UV Count: 3 + UV + UV + UV +Face 6330 +UV Count: 3 + UV + UV + UV +Face 6331 +UV Count: 3 + UV + UV + UV +Face 6332 +UV Count: 3 + UV + UV + UV +Face 6333 +UV Count: 3 + UV + UV + UV +Face 6334 +UV Count: 3 + UV + UV + UV +Face 6335 +UV Count: 3 + UV + UV + UV +Face 6336 +UV Count: 3 + UV + UV + UV +Face 6337 +UV Count: 3 + UV + UV + UV +Face 6338 +UV Count: 3 + UV + UV + UV +Face 6339 +UV Count: 3 + UV + UV + UV +Face 6340 +UV Count: 3 + UV + UV + UV +Face 6341 +UV Count: 3 + UV + UV + UV +Face 6342 +UV Count: 3 + UV + UV + UV +Face 6343 +UV Count: 3 + UV + UV + UV +Face 6344 +UV Count: 3 + UV + UV + UV +Face 6345 +UV Count: 3 + UV + UV + UV +Face 6346 +UV Count: 3 + UV + UV + UV +Face 6347 +UV Count: 3 + UV + UV + UV +Face 6348 +UV Count: 3 + UV + UV + UV +Face 6349 +UV Count: 3 + UV + UV + UV +Face 6350 +UV Count: 3 + UV + UV + UV +Face 6351 +UV Count: 3 + UV + UV + UV +Face 6352 +UV Count: 3 + UV + UV + UV +Face 6353 +UV Count: 3 + UV + UV + UV +Face 6354 +UV Count: 3 + UV + UV + UV +Face 6355 +UV Count: 3 + UV + UV + UV +Face 6356 +UV Count: 3 + UV + UV + UV +Face 6357 +UV Count: 3 + UV + UV + UV +Face 6358 +UV Count: 3 + UV + UV + UV +Face 6359 +UV Count: 3 + UV + UV + UV +Face 6360 +UV Count: 3 + UV + UV + UV +Face 6361 +UV Count: 3 + UV + UV + UV +Face 6362 +UV Count: 3 + UV + UV + UV +Face 6363 +UV Count: 3 + UV + UV + UV +Face 6364 +UV Count: 3 + UV + UV + UV +Face 6365 +UV Count: 3 + UV + UV + UV +Face 6366 +UV Count: 3 + UV + UV + UV +Face 6367 +UV Count: 3 + UV + UV + UV +Face 6368 +UV Count: 3 + UV + UV + UV +Face 6369 +UV Count: 3 + UV + UV + UV +Face 6370 +UV Count: 3 + UV + UV + UV +Face 6371 +UV Count: 3 + UV + UV + UV +Face 6372 +UV Count: 3 + UV + UV + UV +Face 6373 +UV Count: 3 + UV + UV + UV +Face 6374 +UV Count: 3 + UV + UV + UV +Face 6375 +UV Count: 3 + UV + UV + UV +Face 6376 +UV Count: 3 + UV + UV + UV +Face 6377 +UV Count: 3 + UV + UV + UV +Face 6378 +UV Count: 3 + UV + UV + UV +Face 6379 +UV Count: 3 + UV + UV + UV +Face 6380 +UV Count: 3 + UV + UV + UV +Face 6381 +UV Count: 3 + UV + UV + UV +Face 6382 +UV Count: 3 + UV + UV + UV +Face 6383 +UV Count: 3 + UV + UV + UV +Face 6384 +UV Count: 3 + UV + UV + UV +Face 6385 +UV Count: 3 + UV + UV + UV +Face 6386 +UV Count: 3 + UV + UV + UV +Face 6387 +UV Count: 3 + UV + UV + UV +Face 6388 +UV Count: 3 + UV + UV + UV +Face 6389 +UV Count: 3 + UV + UV + UV +Face 6390 +UV Count: 3 + UV + UV + UV +Face 6391 +UV Count: 3 + UV + UV + UV +Face 6392 +UV Count: 3 + UV + UV + UV +Face 6393 +UV Count: 3 + UV + UV + UV +Face 6394 +UV Count: 3 + UV + UV + UV +Face 6395 +UV Count: 3 + UV + UV + UV +Face 6396 +UV Count: 3 + UV + UV + UV +Face 6397 +UV Count: 3 + UV + UV + UV +Face 6398 +UV Count: 3 + UV + UV + UV +Face 6399 +UV Count: 3 + UV + UV + UV +Face 6400 +UV Count: 3 + UV + UV + UV +Face 6401 +UV Count: 3 + UV + UV + UV +Face 6402 +UV Count: 3 + UV + UV + UV +Face 6403 +UV Count: 3 + UV + UV + UV +Face 6404 +UV Count: 3 + UV + UV + UV +Face 6405 +UV Count: 3 + UV + UV + UV +Face 6406 +UV Count: 3 + UV + UV + UV +Face 6407 +UV Count: 3 + UV + UV + UV +Face 6408 +UV Count: 3 + UV + UV + UV +Face 6409 +UV Count: 3 + UV + UV + UV +Face 6410 +UV Count: 3 + UV + UV + UV +Face 6411 +UV Count: 3 + UV + UV + UV +Face 6412 +UV Count: 3 + UV + UV + UV +Face 6413 +UV Count: 3 + UV + UV + UV +Face 6414 +UV Count: 3 + UV + UV + UV +Face 6415 +UV Count: 3 + UV + UV + UV +Face 6416 +UV Count: 3 + UV + UV + UV +Face 6417 +UV Count: 3 + UV + UV + UV +Face 6418 +UV Count: 3 + UV + UV + UV +Face 6419 +UV Count: 3 + UV + UV + UV +Face 6420 +UV Count: 3 + UV + UV + UV +Face 6421 +UV Count: 3 + UV + UV + UV +Face 6422 +UV Count: 3 + UV + UV + UV +Face 6423 +UV Count: 3 + UV + UV + UV +Face 6424 +UV Count: 3 + UV + UV + UV +Face 6425 +UV Count: 3 + UV + UV + UV +Face 6426 +UV Count: 3 + UV + UV + UV +Face 6427 +UV Count: 3 + UV + UV + UV +Face 6428 +UV Count: 3 + UV + UV + UV +Face 6429 +UV Count: 3 + UV + UV + UV +Face 6430 +UV Count: 3 + UV + UV + UV +Face 6431 +UV Count: 3 + UV + UV + UV +Face 6432 +UV Count: 3 + UV + UV + UV +Face 6433 +UV Count: 3 + UV + UV + UV +Face 6434 +UV Count: 3 + UV + UV + UV +Face 6435 +UV Count: 3 + UV + UV + UV +Face 6436 +UV Count: 3 + UV + UV + UV +Face 6437 +UV Count: 3 + UV + UV + UV +Face 6438 +UV Count: 3 + UV + UV + UV +Face 6439 +UV Count: 3 + UV + UV + UV +Face 6440 +UV Count: 3 + UV + UV + UV +Face 6441 +UV Count: 3 + UV + UV + UV +Face 6442 +UV Count: 3 + UV + UV + UV +Face 6443 +UV Count: 3 + UV + UV + UV +Face 6444 +UV Count: 3 + UV + UV + UV +Face 6445 +UV Count: 3 + UV + UV + UV +Face 6446 +UV Count: 3 + UV + UV + UV +Face 6447 +UV Count: 3 + UV + UV + UV +Face 6448 +UV Count: 3 + UV + UV + UV +Face 6449 +UV Count: 3 + UV + UV + UV +Face 6450 +UV Count: 3 + UV + UV + UV +Face 6451 +UV Count: 3 + UV + UV + UV +Face 6452 +UV Count: 3 + UV + UV + UV +Face 6453 +UV Count: 3 + UV + UV + UV +Face 6454 +UV Count: 3 + UV + UV + UV +Face 6455 +UV Count: 3 + UV + UV + UV +Face 6456 +UV Count: 3 + UV + UV + UV +Face 6457 +UV Count: 3 + UV + UV + UV +Face 6458 +UV Count: 3 + UV + UV + UV +Face 6459 +UV Count: 3 + UV + UV + UV +Face 6460 +UV Count: 3 + UV + UV + UV +Face 6461 +UV Count: 3 + UV + UV + UV +Face 6462 +UV Count: 3 + UV + UV + UV +Face 6463 +UV Count: 3 + UV + UV + UV +Face 6464 +UV Count: 3 + UV + UV + UV +Face 6465 +UV Count: 3 + UV + UV + UV +Face 6466 +UV Count: 3 + UV + UV + UV +Face 6467 +UV Count: 3 + UV + UV + UV +Face 6468 +UV Count: 3 + UV + UV + UV +Face 6469 +UV Count: 3 + UV + UV + UV +Face 6470 +UV Count: 3 + UV + UV + UV +Face 6471 +UV Count: 3 + UV + UV + UV +Face 6472 +UV Count: 3 + UV + UV + UV +Face 6473 +UV Count: 3 + UV + UV + UV +Face 6474 +UV Count: 3 + UV + UV + UV +Face 6475 +UV Count: 3 + UV + UV + UV +Face 6476 +UV Count: 3 + UV + UV + UV +Face 6477 +UV Count: 3 + UV + UV + UV +Face 6478 +UV Count: 3 + UV + UV + UV +Face 6479 +UV Count: 3 + UV + UV + UV +Face 6480 +UV Count: 3 + UV + UV + UV +Face 6481 +UV Count: 3 + UV + UV + UV +Face 6482 +UV Count: 3 + UV + UV + UV +Face 6483 +UV Count: 3 + UV + UV + UV +Face 6484 +UV Count: 3 + UV + UV + UV +Face 6485 +UV Count: 3 + UV + UV + UV +Face 6486 +UV Count: 3 + UV + UV + UV +Face 6487 +UV Count: 3 + UV + UV + UV +Face 6488 +UV Count: 3 + UV + UV + UV +Face 6489 +UV Count: 3 + UV + UV + UV +Face 6490 +UV Count: 3 + UV + UV + UV +Face 6491 +UV Count: 3 + UV + UV + UV +Face 6492 +UV Count: 3 + UV + UV + UV +Face 6493 +UV Count: 3 + UV + UV + UV +Face 6494 +UV Count: 3 + UV + UV + UV +Face 6495 +UV Count: 3 + UV + UV + UV +Face 6496 +UV Count: 3 + UV + UV + UV +Face 6497 +UV Count: 3 + UV + UV + UV +Face 6498 +UV Count: 3 + UV + UV + UV +Face 6499 +UV Count: 3 + UV + UV + UV +Face 6500 +UV Count: 3 + UV + UV + UV +Face 6501 +UV Count: 3 + UV + UV + UV +Face 6502 +UV Count: 3 + UV + UV + UV +Face 6503 +UV Count: 3 + UV + UV + UV +Face 6504 +UV Count: 3 + UV + UV + UV +Face 6505 +UV Count: 3 + UV + UV + UV +Face 6506 +UV Count: 3 + UV + UV + UV +Face 6507 +UV Count: 3 + UV + UV + UV +Face 6508 +UV Count: 3 + UV + UV + UV +Face 6509 +UV Count: 3 + UV + UV + UV +Face 6510 +UV Count: 3 + UV + UV + UV +Face 6511 +UV Count: 3 + UV + UV + UV +Face 6512 +UV Count: 3 + UV + UV + UV +Face 6513 +UV Count: 3 + UV + UV + UV +Face 6514 +UV Count: 3 + UV + UV + UV +Face 6515 +UV Count: 3 + UV + UV + UV +Face 6516 +UV Count: 3 + UV + UV + UV +Face 6517 +UV Count: 3 + UV + UV + UV +Face 6518 +UV Count: 3 + UV + UV + UV +Face 6519 +UV Count: 3 + UV + UV + UV +Face 6520 +UV Count: 3 + UV + UV + UV +Face 6521 +UV Count: 3 + UV + UV + UV +Face 6522 +UV Count: 3 + UV + UV + UV +Face 6523 +UV Count: 3 + UV + UV + UV +Face 6524 +UV Count: 3 + UV + UV + UV +Face 6525 +UV Count: 3 + UV + UV + UV +Face 6526 +UV Count: 3 + UV + UV + UV +Face 6527 +UV Count: 3 + UV + UV + UV +Face 6528 +UV Count: 3 + UV + UV + UV +Face 6529 +UV Count: 3 + UV + UV + UV +Face 6530 +UV Count: 3 + UV + UV + UV +Face 6531 +UV Count: 3 + UV + UV + UV +Face 6532 +UV Count: 3 + UV + UV + UV +Face 6533 +UV Count: 3 + UV + UV + UV +Face 6534 +UV Count: 3 + UV + UV + UV +Face 6535 +UV Count: 3 + UV + UV + UV +Face 6536 +UV Count: 3 + UV + UV + UV +Face 6537 +UV Count: 3 + UV + UV + UV +Face 6538 +UV Count: 3 + UV + UV + UV +Face 6539 +UV Count: 3 + UV + UV + UV +Face 6540 +UV Count: 3 + UV + UV + UV +Face 6541 +UV Count: 3 + UV + UV + UV +Face 6542 +UV Count: 3 + UV + UV + UV +Face 6543 +UV Count: 3 + UV + UV + UV +Face 6544 +UV Count: 3 + UV + UV + UV +Face 6545 +UV Count: 3 + UV + UV + UV +Face 6546 +UV Count: 3 + UV + UV + UV +Face 6547 +UV Count: 3 + UV + UV + UV +Face 6548 +UV Count: 3 + UV + UV + UV +Face 6549 +UV Count: 3 + UV + UV + UV +Face 6550 +UV Count: 3 + UV + UV + UV +Face 6551 +UV Count: 3 + UV + UV + UV +Face 6552 +UV Count: 3 + UV + UV + UV +Face 6553 +UV Count: 3 + UV + UV + UV +Face 6554 +UV Count: 3 + UV + UV + UV +Face 6555 +UV Count: 3 + UV + UV + UV +Face 6556 +UV Count: 3 + UV + UV + UV +Face 6557 +UV Count: 3 + UV + UV + UV +Face 6558 +UV Count: 3 + UV + UV + UV +Face 6559 +UV Count: 3 + UV + UV + UV +Face 6560 +UV Count: 3 + UV + UV + UV +Face 6561 +UV Count: 3 + UV + UV + UV +Face 6562 +UV Count: 3 + UV + UV + UV +Face 6563 +UV Count: 3 + UV + UV + UV +Face 6564 +UV Count: 3 + UV + UV + UV +Face 6565 +UV Count: 3 + UV + UV + UV +Face 6566 +UV Count: 3 + UV + UV + UV +Face 6567 +UV Count: 3 + UV + UV + UV +Face 6568 +UV Count: 3 + UV + UV + UV +Face 6569 +UV Count: 3 + UV + UV + UV +Face 6570 +UV Count: 3 + UV + UV + UV +Face 6571 +UV Count: 3 + UV + UV + UV +Face 6572 +UV Count: 3 + UV + UV + UV +Face 6573 +UV Count: 3 + UV + UV + UV +Face 6574 +UV Count: 3 + UV + UV + UV +Face 6575 +UV Count: 3 + UV + UV + UV +Face 6576 +UV Count: 3 + UV + UV + UV +Face 6577 +UV Count: 3 + UV + UV + UV +Face 6578 +UV Count: 3 + UV + UV + UV +Face 6579 +UV Count: 3 + UV + UV + UV +Face 6580 +UV Count: 3 + UV + UV + UV +Face 6581 +UV Count: 3 + UV + UV + UV +Face 6582 +UV Count: 3 + UV + UV + UV +Face 6583 +UV Count: 3 + UV + UV + UV +Face 6584 +UV Count: 3 + UV + UV + UV +Face 6585 +UV Count: 3 + UV + UV + UV +Face 6586 +UV Count: 3 + UV + UV + UV +Face 6587 +UV Count: 3 + UV + UV + UV +Face 6588 +UV Count: 3 + UV + UV + UV +Face 6589 +UV Count: 3 + UV + UV + UV +Face 6590 +UV Count: 3 + UV + UV + UV +Face 6591 +UV Count: 3 + UV + UV + UV +Face 6592 +UV Count: 3 + UV + UV + UV +Face 6593 +UV Count: 3 + UV + UV + UV +Face 6594 +UV Count: 3 + UV + UV + UV +Face 6595 +UV Count: 3 + UV + UV + UV +Face 6596 +UV Count: 3 + UV + UV + UV +Face 6597 +UV Count: 3 + UV + UV + UV +Face 6598 +UV Count: 3 + UV + UV + UV +Face 6599 +UV Count: 3 + UV + UV + UV +Face 6600 +UV Count: 3 + UV + UV + UV +Face 6601 +UV Count: 3 + UV + UV + UV +Face 6602 +UV Count: 3 + UV + UV + UV +Face 6603 +UV Count: 3 + UV + UV + UV +Face 6604 +UV Count: 3 + UV + UV + UV +Face 6605 +UV Count: 3 + UV + UV + UV +Face 6606 +UV Count: 3 + UV + UV + UV +Face 6607 +UV Count: 3 + UV + UV + UV +Face 6608 +UV Count: 3 + UV + UV + UV +Face 6609 +UV Count: 3 + UV + UV + UV +Face 6610 +UV Count: 3 + UV + UV + UV +Face 6611 +UV Count: 3 + UV + UV + UV +Face 6612 +UV Count: 3 + UV + UV + UV +Face 6613 +UV Count: 3 + UV + UV + UV +Face 6614 +UV Count: 3 + UV + UV + UV +Face 6615 +UV Count: 3 + UV + UV + UV +Face 6616 +UV Count: 3 + UV + UV + UV +Face 6617 +UV Count: 3 + UV + UV + UV +Face 6618 +UV Count: 3 + UV + UV + UV +Face 6619 +UV Count: 3 + UV + UV + UV +Face 6620 +UV Count: 3 + UV + UV + UV +Face 6621 +UV Count: 3 + UV + UV + UV +Face 6622 +UV Count: 3 + UV + UV + UV +Face 6623 +UV Count: 3 + UV + UV + UV +Face 6624 +UV Count: 3 + UV + UV + UV +Face 6625 +UV Count: 3 + UV + UV + UV +Face 6626 +UV Count: 3 + UV + UV + UV +Face 6627 +UV Count: 3 + UV + UV + UV +Face 6628 +UV Count: 3 + UV + UV + UV +Face 6629 +UV Count: 3 + UV + UV + UV +Face 6630 +UV Count: 3 + UV + UV + UV +Face 6631 +UV Count: 3 + UV + UV + UV +Face 6632 +UV Count: 3 + UV + UV + UV +Face 6633 +UV Count: 3 + UV + UV + UV +Face 6634 +UV Count: 3 + UV + UV + UV +Face 6635 +UV Count: 3 + UV + UV + UV +Face 6636 +UV Count: 3 + UV + UV + UV +Face 6637 +UV Count: 3 + UV + UV + UV +Face 6638 +UV Count: 3 + UV + UV + UV +Face 6639 +UV Count: 3 + UV + UV + UV +Face 6640 +UV Count: 3 + UV + UV + UV +Face 6641 +UV Count: 3 + UV + UV + UV +Face 6642 +UV Count: 3 + UV + UV + UV +Face 6643 +UV Count: 3 + UV + UV + UV +Face 6644 +UV Count: 3 + UV + UV + UV +Face 6645 +UV Count: 3 + UV + UV + UV +Face 6646 +UV Count: 3 + UV + UV + UV +Face 6647 +UV Count: 3 + UV + UV + UV +Face 6648 +UV Count: 3 + UV + UV + UV +Face 6649 +UV Count: 3 + UV + UV + UV +Face 6650 +UV Count: 3 + UV + UV + UV +Face 6651 +UV Count: 3 + UV + UV + UV +Face 6652 +UV Count: 3 + UV + UV + UV +Face 6653 +UV Count: 3 + UV + UV + UV +Face 6654 +UV Count: 3 + UV + UV + UV +Face 6655 +UV Count: 3 + UV + UV + UV +Face 6656 +UV Count: 3 + UV + UV + UV +Face 6657 +UV Count: 3 + UV + UV + UV +Face 6658 +UV Count: 3 + UV + UV + UV +Face 6659 +UV Count: 3 + UV + UV + UV +Face 6660 +UV Count: 3 + UV + UV + UV +Face 6661 +UV Count: 3 + UV + UV + UV +Face 6662 +UV Count: 3 + UV + UV + UV +Face 6663 +UV Count: 3 + UV + UV + UV +Face 6664 +UV Count: 3 + UV + UV + UV +Face 6665 +UV Count: 3 + UV + UV + UV +Face 6666 +UV Count: 3 + UV + UV + UV +Face 6667 +UV Count: 3 + UV + UV + UV +Face 6668 +UV Count: 3 + UV + UV + UV +Face 6669 +UV Count: 3 + UV + UV + UV +Face 6670 +UV Count: 3 + UV + UV + UV +Face 6671 +UV Count: 3 + UV + UV + UV +Face 6672 +UV Count: 3 + UV + UV + UV +Face 6673 +UV Count: 3 + UV + UV + UV +Face 6674 +UV Count: 3 + UV + UV + UV +Face 6675 +UV Count: 3 + UV + UV + UV +Face 6676 +UV Count: 3 + UV + UV + UV +Face 6677 +UV Count: 3 + UV + UV + UV +Face 6678 +UV Count: 3 + UV + UV + UV +Face 6679 +UV Count: 3 + UV + UV + UV +Face 6680 +UV Count: 3 + UV + UV + UV +Face 6681 +UV Count: 3 + UV + UV + UV +Face 6682 +UV Count: 3 + UV + UV + UV +Face 6683 +UV Count: 3 + UV + UV + UV +Face 6684 +UV Count: 3 + UV + UV + UV +Face 6685 +UV Count: 3 + UV + UV + UV +Face 6686 +UV Count: 3 + UV + UV + UV +Face 6687 +UV Count: 3 + UV + UV + UV +Face 6688 +UV Count: 3 + UV + UV + UV +Face 6689 +UV Count: 3 + UV + UV + UV +Face 6690 +UV Count: 3 + UV + UV + UV +Face 6691 +UV Count: 3 + UV + UV + UV +Face 6692 +UV Count: 3 + UV + UV + UV +Face 6693 +UV Count: 3 + UV + UV + UV +Face 6694 +UV Count: 3 + UV + UV + UV +Face 6695 +UV Count: 3 + UV + UV + UV +Face 6696 +UV Count: 3 + UV + UV + UV +Face 6697 +UV Count: 3 + UV + UV + UV +Face 6698 +UV Count: 3 + UV + UV + UV +Face 6699 +UV Count: 3 + UV + UV + UV +Face 6700 +UV Count: 3 + UV + UV + UV +Face 6701 +UV Count: 3 + UV + UV + UV +Face 6702 +UV Count: 3 + UV + UV + UV +Face 6703 +UV Count: 3 + UV + UV + UV +Face 6704 +UV Count: 3 + UV + UV + UV +Face 6705 +UV Count: 3 + UV + UV + UV +Face 6706 +UV Count: 3 + UV + UV + UV +Face 6707 +UV Count: 3 + UV + UV + UV +Face 6708 +UV Count: 3 + UV + UV + UV +Face 6709 +UV Count: 3 + UV + UV + UV +Face 6710 +UV Count: 3 + UV + UV + UV +Face 6711 +UV Count: 3 + UV + UV + UV +Face 6712 +UV Count: 3 + UV + UV + UV +Face 6713 +UV Count: 3 + UV + UV + UV +Face 6714 +UV Count: 3 + UV + UV + UV +Face 6715 +UV Count: 3 + UV + UV + UV +Face 6716 +UV Count: 3 + UV + UV + UV +Face 6717 +UV Count: 3 + UV + UV + UV +Face 6718 +UV Count: 3 + UV + UV + UV +Face 6719 +UV Count: 3 + UV + UV + UV +Face 6720 +UV Count: 3 + UV + UV + UV +Face 6721 +UV Count: 3 + UV + UV + UV +Face 6722 +UV Count: 3 + UV + UV + UV +Face 6723 +UV Count: 3 + UV + UV + UV +Face 6724 +UV Count: 3 + UV + UV + UV +Face 6725 +UV Count: 3 + UV + UV + UV +Face 6726 +UV Count: 3 + UV + UV + UV +Face 6727 +UV Count: 3 + UV + UV + UV +Face 6728 +UV Count: 3 + UV + UV + UV +Face 6729 +UV Count: 3 + UV + UV + UV +Face 6730 +UV Count: 3 + UV + UV + UV +Face 6731 +UV Count: 3 + UV + UV + UV +Face 6732 +UV Count: 3 + UV + UV + UV +Face 6733 +UV Count: 3 + UV + UV + UV +Face 6734 +UV Count: 3 + UV + UV + UV +Face 6735 +UV Count: 3 + UV + UV + UV +Face 6736 +UV Count: 3 + UV + UV + UV +Face 6737 +UV Count: 3 + UV + UV + UV +Face 6738 +UV Count: 3 + UV + UV + UV +Face 6739 +UV Count: 3 + UV + UV + UV +Face 6740 +UV Count: 3 + UV + UV + UV +Face 6741 +UV Count: 3 + UV + UV + UV +Face 6742 +UV Count: 3 + UV + UV + UV +Face 6743 +UV Count: 3 + UV + UV + UV +Face 6744 +UV Count: 3 + UV + UV + UV +Face 6745 +UV Count: 3 + UV + UV + UV +Face 6746 +UV Count: 3 + UV + UV + UV +Face 6747 +UV Count: 3 + UV + UV + UV +Face 6748 +UV Count: 3 + UV + UV + UV +Face 6749 +UV Count: 3 + UV + UV + UV +Face 6750 +UV Count: 3 + UV + UV + UV +Face 6751 +UV Count: 3 + UV + UV + UV +Face 6752 +UV Count: 3 + UV + UV + UV +Face 6753 +UV Count: 3 + UV + UV + UV +Face 6754 +UV Count: 3 + UV + UV + UV +Face 6755 +UV Count: 3 + UV + UV + UV +Face 6756 +UV Count: 3 + UV + UV + UV +Face 6757 +UV Count: 3 + UV + UV + UV +Face 6758 +UV Count: 3 + UV + UV + UV +Face 6759 +UV Count: 3 + UV + UV + UV +Face 6760 +UV Count: 3 + UV + UV + UV +Face 6761 +UV Count: 3 + UV + UV + UV +Face 6762 +UV Count: 3 + UV + UV + UV +Face 6763 +UV Count: 3 + UV + UV + UV +Face 6764 +UV Count: 3 + UV + UV + UV +Face 6765 +UV Count: 3 + UV + UV + UV +Face 6766 +UV Count: 3 + UV + UV + UV +Face 6767 +UV Count: 3 + UV + UV + UV +Face 6768 +UV Count: 3 + UV + UV + UV +Face 6769 +UV Count: 3 + UV + UV + UV +Face 6770 +UV Count: 3 + UV + UV + UV +Face 6771 +UV Count: 3 + UV + UV + UV +Face 6772 +UV Count: 3 + UV + UV + UV +Face 6773 +UV Count: 3 + UV + UV + UV +Face 6774 +UV Count: 3 + UV + UV + UV +Face 6775 +UV Count: 3 + UV + UV + UV +Face 6776 +UV Count: 3 + UV + UV + UV +Face 6777 +UV Count: 3 + UV + UV + UV +Face 6778 +UV Count: 3 + UV + UV + UV +Face 6779 +UV Count: 3 + UV + UV + UV +Face 6780 +UV Count: 3 + UV + UV + UV +Face 6781 +UV Count: 3 + UV + UV + UV +Face 6782 +UV Count: 3 + UV + UV + UV +Face 6783 +UV Count: 3 + UV + UV + UV +Face 6784 +UV Count: 3 + UV + UV + UV +Face 6785 +UV Count: 3 + UV + UV + UV +Face 6786 +UV Count: 3 + UV + UV + UV +Face 6787 +UV Count: 3 + UV + UV + UV +Face 6788 +UV Count: 3 + UV + UV + UV +Face 6789 +UV Count: 3 + UV + UV + UV +Face 6790 +UV Count: 3 + UV + UV + UV +Face 6791 +UV Count: 3 + UV + UV + UV +Face 6792 +UV Count: 3 + UV + UV + UV +Face 6793 +UV Count: 3 + UV + UV + UV +Face 6794 +UV Count: 3 + UV + UV + UV +Face 6795 +UV Count: 3 + UV + UV + UV +Face 6796 +UV Count: 3 + UV + UV + UV +Face 6797 +UV Count: 3 + UV + UV + UV +Face 6798 +UV Count: 3 + UV + UV + UV +Face 6799 +UV Count: 3 + UV + UV + UV +Face 6800 +UV Count: 3 + UV + UV + UV +Face 6801 +UV Count: 3 + UV + UV + UV +Face 6802 +UV Count: 3 + UV + UV + UV +Face 6803 +UV Count: 3 + UV + UV + UV +Face 6804 +UV Count: 3 + UV + UV + UV +Face 6805 +UV Count: 3 + UV + UV + UV +Face 6806 +UV Count: 3 + UV + UV + UV +Face 6807 +UV Count: 3 + UV + UV + UV +Face 6808 +UV Count: 3 + UV + UV + UV +Face 6809 +UV Count: 3 + UV + UV + UV +Face 6810 +UV Count: 3 + UV + UV + UV +Face 6811 +UV Count: 3 + UV + UV + UV +Face 6812 +UV Count: 3 + UV + UV + UV +Face 6813 +UV Count: 3 + UV + UV + UV +Face 6814 +UV Count: 3 + UV + UV + UV +Face 6815 +UV Count: 3 + UV + UV + UV +Face 6816 +UV Count: 3 + UV + UV + UV +Face 6817 +UV Count: 3 + UV + UV + UV +Face 6818 +UV Count: 3 + UV + UV + UV +Face 6819 +UV Count: 3 + UV + UV + UV +Face 6820 +UV Count: 3 + UV + UV + UV +Face 6821 +UV Count: 3 + UV + UV + UV +Face 6822 +UV Count: 3 + UV + UV + UV +Face 6823 +UV Count: 3 + UV + UV + UV +Face 6824 +UV Count: 3 + UV + UV + UV +Face 6825 +UV Count: 3 + UV + UV + UV +Face 6826 +UV Count: 3 + UV + UV + UV +Face 6827 +UV Count: 3 + UV + UV + UV +Face 6828 +UV Count: 3 + UV + UV + UV +Face 6829 +UV Count: 3 + UV + UV + UV +Face 6830 +UV Count: 3 + UV + UV + UV +Face 6831 +UV Count: 3 + UV + UV + UV +Face 6832 +UV Count: 3 + UV + UV + UV +Face 6833 +UV Count: 3 + UV + UV + UV +Face 6834 +UV Count: 3 + UV + UV + UV +Face 6835 +UV Count: 3 + UV + UV + UV +Face 6836 +UV Count: 3 + UV + UV + UV +Face 6837 +UV Count: 3 + UV + UV + UV +Face 6838 +UV Count: 3 + UV + UV + UV +Face 6839 +UV Count: 3 + UV + UV + UV +Face 6840 +UV Count: 3 + UV + UV + UV +Face 6841 +UV Count: 3 + UV + UV + UV +Face 6842 +UV Count: 3 + UV + UV + UV +Face 6843 +UV Count: 3 + UV + UV + UV +Face 6844 +UV Count: 3 + UV + UV + UV +Face 6845 +UV Count: 3 + UV + UV + UV +Face 6846 +UV Count: 3 + UV + UV + UV +Face 6847 +UV Count: 3 + UV + UV + UV +Face 6848 +UV Count: 3 + UV + UV + UV +Face 6849 +UV Count: 3 + UV + UV + UV +Face 6850 +UV Count: 3 + UV + UV + UV +Face 6851 +UV Count: 3 + UV + UV + UV +Face 6852 +UV Count: 3 + UV + UV + UV +Face 6853 +UV Count: 3 + UV + UV + UV +Face 6854 +UV Count: 3 + UV + UV + UV +Face 6855 +UV Count: 3 + UV + UV + UV +Face 6856 +UV Count: 3 + UV + UV + UV +Face 6857 +UV Count: 3 + UV + UV + UV +Face 6858 +UV Count: 3 + UV + UV + UV +Face 6859 +UV Count: 3 + UV + UV + UV +Face 6860 +UV Count: 3 + UV + UV + UV +Face 6861 +UV Count: 3 + UV + UV + UV +Face 6862 +UV Count: 3 + UV + UV + UV +Face 6863 +UV Count: 3 + UV + UV + UV +Face 6864 +UV Count: 3 + UV + UV + UV +Face 6865 +UV Count: 3 + UV + UV + UV +Face 6866 +UV Count: 3 + UV + UV + UV +Face 6867 +UV Count: 3 + UV + UV + UV +Face 6868 +UV Count: 3 + UV + UV + UV +Face 6869 +UV Count: 3 + UV + UV + UV +Face 6870 +UV Count: 3 + UV + UV + UV +Face 6871 +UV Count: 3 + UV + UV + UV +Face 6872 +UV Count: 3 + UV + UV + UV +Face 6873 +UV Count: 3 + UV + UV + UV +Face 6874 +UV Count: 3 + UV + UV + UV +Face 6875 +UV Count: 3 + UV + UV + UV +Face 6876 +UV Count: 3 + UV + UV + UV +Face 6877 +UV Count: 3 + UV + UV + UV +Face 6878 +UV Count: 3 + UV + UV + UV +Face 6879 +UV Count: 3 + UV + UV + UV +Face 6880 +UV Count: 3 + UV + UV + UV +Face 6881 +UV Count: 3 + UV + UV + UV +Face 6882 +UV Count: 3 + UV + UV + UV +Face 6883 +UV Count: 3 + UV + UV + UV +Face 6884 +UV Count: 3 + UV + UV + UV +Face 6885 +UV Count: 3 + UV + UV + UV +Face 6886 +UV Count: 3 + UV + UV + UV +Face 6887 +UV Count: 3 + UV + UV + UV +Face 6888 +UV Count: 3 + UV + UV + UV +Face 6889 +UV Count: 3 + UV + UV + UV +Face 6890 +UV Count: 3 + UV + UV + UV +Face 6891 +UV Count: 3 + UV + UV + UV +Face 6892 +UV Count: 3 + UV + UV + UV +Face 6893 +UV Count: 3 + UV + UV + UV +Face 6894 +UV Count: 3 + UV + UV + UV +Face 6895 +UV Count: 3 + UV + UV + UV +Face 6896 +UV Count: 3 + UV + UV + UV +Face 6897 +UV Count: 3 + UV + UV + UV +Face 6898 +UV Count: 3 + UV + UV + UV +Face 6899 +UV Count: 3 + UV + UV + UV +Face 6900 +UV Count: 3 + UV + UV + UV +Face 6901 +UV Count: 3 + UV + UV + UV +Face 6902 +UV Count: 3 + UV + UV + UV +Face 6903 +UV Count: 3 + UV + UV + UV +Face 6904 +UV Count: 3 + UV + UV + UV +Face 6905 +UV Count: 3 + UV + UV + UV +Face 6906 +UV Count: 3 + UV + UV + UV +Face 6907 +UV Count: 3 + UV + UV + UV +Face 6908 +UV Count: 3 + UV + UV + UV +Face 6909 +UV Count: 3 + UV + UV + UV +Face 6910 +UV Count: 3 + UV + UV + UV +Face 6911 +UV Count: 3 + UV + UV + UV +Face 6912 +UV Count: 3 + UV + UV + UV +Face 6913 +UV Count: 3 + UV + UV + UV +Face 6914 +UV Count: 3 + UV + UV + UV +Face 6915 +UV Count: 3 + UV + UV + UV +Face 6916 +UV Count: 3 + UV + UV + UV +Face 6917 +UV Count: 3 + UV + UV + UV +Face 6918 +UV Count: 3 + UV + UV + UV +Face 6919 +UV Count: 3 + UV + UV + UV +Face 6920 +UV Count: 3 + UV + UV + UV +Face 6921 +UV Count: 3 + UV + UV + UV +Face 6922 +UV Count: 3 + UV + UV + UV +Face 6923 +UV Count: 3 + UV + UV + UV +Face 6924 +UV Count: 3 + UV + UV + UV +Face 6925 +UV Count: 3 + UV + UV + UV +Face 6926 +UV Count: 3 + UV + UV + UV +Face 6927 +UV Count: 3 + UV + UV + UV +Face 6928 +UV Count: 3 + UV + UV + UV +Face 6929 +UV Count: 3 + UV + UV + UV +Face 6930 +UV Count: 3 + UV + UV + UV +Face 6931 +UV Count: 3 + UV + UV + UV +Face 6932 +UV Count: 3 + UV + UV + UV +Face 6933 +UV Count: 3 + UV + UV + UV +Face 6934 +UV Count: 3 + UV + UV + UV +Face 6935 +UV Count: 3 + UV + UV + UV +Face 6936 +UV Count: 3 + UV + UV + UV +Face 6937 +UV Count: 3 + UV + UV + UV +Face 6938 +UV Count: 3 + UV + UV + UV +Face 6939 +UV Count: 3 + UV + UV + UV +Face 6940 +UV Count: 3 + UV + UV + UV +Face 6941 +UV Count: 3 + UV + UV + UV +Face 6942 +UV Count: 3 + UV + UV + UV +Face 6943 +UV Count: 3 + UV + UV + UV +Face 6944 +UV Count: 3 + UV + UV + UV +Face 6945 +UV Count: 3 + UV + UV + UV +Face 6946 +UV Count: 3 + UV + UV + UV +Face 6947 +UV Count: 3 + UV + UV + UV +Face 6948 +UV Count: 3 + UV + UV + UV +Face 6949 +UV Count: 3 + UV + UV + UV +Face 6950 +UV Count: 3 + UV + UV + UV +Face 6951 +UV Count: 3 + UV + UV + UV +Face 6952 +UV Count: 3 + UV + UV + UV +Face 6953 +UV Count: 3 + UV + UV + UV +Face 6954 +UV Count: 3 + UV + UV + UV +Face 6955 +UV Count: 3 + UV + UV + UV +Face 6956 +UV Count: 3 + UV + UV + UV +Face 6957 +UV Count: 3 + UV + UV + UV +Face 6958 +UV Count: 3 + UV + UV + UV +Face 6959 +UV Count: 3 + UV + UV + UV +Face 6960 +UV Count: 3 + UV + UV + UV +Face 6961 +UV Count: 3 + UV + UV + UV +Face 6962 +UV Count: 3 + UV + UV + UV +Face 6963 +UV Count: 3 + UV + UV + UV +Face 6964 +UV Count: 3 + UV + UV + UV +Face 6965 +UV Count: 3 + UV + UV + UV +Face 6966 +UV Count: 3 + UV + UV + UV +Face 6967 +UV Count: 3 + UV + UV + UV +Face 6968 +UV Count: 3 + UV + UV + UV +Face 6969 +UV Count: 3 + UV + UV + UV +Face 6970 +UV Count: 3 + UV + UV + UV +Face 6971 +UV Count: 3 + UV + UV + UV +Face 6972 +UV Count: 3 + UV + UV + UV +Face 6973 +UV Count: 3 + UV + UV + UV +Face 6974 +UV Count: 3 + UV + UV + UV +Face 6975 +UV Count: 3 + UV + UV + UV +Face 6976 +UV Count: 3 + UV + UV + UV +Face 6977 +UV Count: 3 + UV + UV + UV +Face 6978 +UV Count: 3 + UV + UV + UV +Face 6979 +UV Count: 3 + UV + UV + UV +Face 6980 +UV Count: 3 + UV + UV + UV +Face 6981 +UV Count: 3 + UV + UV + UV +Face 6982 +UV Count: 3 + UV + UV + UV +Face 6983 +UV Count: 3 + UV + UV + UV +Face 6984 +UV Count: 3 + UV + UV + UV +Face 6985 +UV Count: 3 + UV + UV + UV +Face 6986 +UV Count: 3 + UV + UV + UV +Face 6987 +UV Count: 3 + UV + UV + UV +Face 6988 +UV Count: 3 + UV + UV + UV +Face 6989 +UV Count: 3 + UV + UV + UV +Face 6990 +UV Count: 3 + UV + UV + UV +Face 6991 +UV Count: 3 + UV + UV + UV +Face 6992 +UV Count: 3 + UV + UV + UV +Face 6993 +UV Count: 3 + UV + UV + UV +Face 6994 +UV Count: 3 + UV + UV + UV +Face 6995 +UV Count: 3 + UV + UV + UV +Face 6996 +UV Count: 3 + UV + UV + UV +Face 6997 +UV Count: 3 + UV + UV + UV +Face 6998 +UV Count: 3 + UV + UV + UV +Face 6999 +UV Count: 3 + UV + UV + UV +Face 7000 +UV Count: 3 + UV + UV + UV +Face 7001 +UV Count: 3 + UV + UV + UV +Face 7002 +UV Count: 3 + UV + UV + UV +Face 7003 +UV Count: 3 + UV + UV + UV +Face 7004 +UV Count: 3 + UV + UV + UV +Face 7005 +UV Count: 3 + UV + UV + UV +Face 7006 +UV Count: 3 + UV + UV + UV +Face 7007 +UV Count: 3 + UV + UV + UV +Face 7008 +UV Count: 3 + UV + UV + UV +Face 7009 +UV Count: 3 + UV + UV + UV +Face 7010 +UV Count: 3 + UV + UV + UV +Face 7011 +UV Count: 3 + UV + UV + UV +Face 7012 +UV Count: 3 + UV + UV + UV +Face 7013 +UV Count: 3 + UV + UV + UV +Face 7014 +UV Count: 3 + UV + UV + UV +Face 7015 +UV Count: 3 + UV + UV + UV +Face 7016 +UV Count: 3 + UV + UV + UV +Face 7017 +UV Count: 3 + UV + UV + UV +Face 7018 +UV Count: 3 + UV + UV + UV +Face 7019 +UV Count: 3 + UV + UV + UV +Face 7020 +UV Count: 3 + UV + UV + UV +Face 7021 +UV Count: 3 + UV + UV + UV +Face 7022 +UV Count: 3 + UV + UV + UV +Face 7023 +UV Count: 3 + UV + UV + UV +Face 7024 +UV Count: 3 + UV + UV + UV +Face 7025 +UV Count: 3 + UV + UV + UV +Face 7026 +UV Count: 3 + UV + UV + UV +Face 7027 +UV Count: 3 + UV + UV + UV +Face 7028 +UV Count: 3 + UV + UV + UV +Face 7029 +UV Count: 3 + UV + UV + UV +Face 7030 +UV Count: 3 + UV + UV + UV +Face 7031 +UV Count: 3 + UV + UV + UV +Face 7032 +UV Count: 3 + UV + UV + UV +Face 7033 +UV Count: 3 + UV + UV + UV +Face 7034 +UV Count: 3 + UV + UV + UV +Face 7035 +UV Count: 3 + UV + UV + UV +Face 7036 +UV Count: 3 + UV + UV + UV +Face 7037 +UV Count: 3 + UV + UV + UV +Face 7038 +UV Count: 3 + UV + UV + UV +Face 7039 +UV Count: 3 + UV + UV + UV +Face 7040 +UV Count: 3 + UV + UV + UV +Face 7041 +UV Count: 3 + UV + UV + UV +Face 7042 +UV Count: 3 + UV + UV + UV +Face 7043 +UV Count: 3 + UV + UV + UV +Face 7044 +UV Count: 3 + UV + UV + UV +Face 7045 +UV Count: 3 + UV + UV + UV +Face 7046 +UV Count: 3 + UV + UV + UV +Face 7047 +UV Count: 3 + UV + UV + UV +Face 7048 +UV Count: 3 + UV + UV + UV +Face 7049 +UV Count: 3 + UV + UV + UV +Face 7050 +UV Count: 3 + UV + UV + UV +Face 7051 +UV Count: 3 + UV + UV + UV +Face 7052 +UV Count: 3 + UV + UV + UV +Face 7053 +UV Count: 3 + UV + UV + UV +Face 7054 +UV Count: 3 + UV + UV + UV +Face 7055 +UV Count: 3 + UV + UV + UV +Face 7056 +UV Count: 3 + UV + UV + UV +Face 7057 +UV Count: 3 + UV + UV + UV +Face 7058 +UV Count: 3 + UV + UV + UV +Face 7059 +UV Count: 3 + UV + UV + UV +Face 7060 +UV Count: 3 + UV + UV + UV +Face 7061 +UV Count: 3 + UV + UV + UV +Face 7062 +UV Count: 3 + UV + UV + UV +Face 7063 +UV Count: 3 + UV + UV + UV +Face 7064 +UV Count: 3 + UV + UV + UV +Face 7065 +UV Count: 3 + UV + UV + UV +Face 7066 +UV Count: 3 + UV + UV + UV +Face 7067 +UV Count: 3 + UV + UV + UV +Face 7068 +UV Count: 3 + UV + UV + UV +Face 7069 +UV Count: 3 + UV + UV + UV +Face 7070 +UV Count: 3 + UV + UV + UV +Face 7071 +UV Count: 3 + UV + UV + UV +Face 7072 +UV Count: 3 + UV + UV + UV +Face 7073 +UV Count: 3 + UV + UV + UV +Face 7074 +UV Count: 3 + UV + UV + UV +Face 7075 +UV Count: 3 + UV + UV + UV +Face 7076 +UV Count: 3 + UV + UV + UV +Face 7077 +UV Count: 3 + UV + UV + UV +Face 7078 +UV Count: 3 + UV + UV + UV +Face 7079 +UV Count: 3 + UV + UV + UV +Face 7080 +UV Count: 3 + UV + UV + UV +Face 7081 +UV Count: 3 + UV + UV + UV +Face 7082 +UV Count: 3 + UV + UV + UV +Face 7083 +UV Count: 3 + UV + UV + UV +Face 7084 +UV Count: 3 + UV + UV + UV +Face 7085 +UV Count: 3 + UV + UV + UV +Face 7086 +UV Count: 3 + UV + UV + UV +Face 7087 +UV Count: 3 + UV + UV + UV +Face 7088 +UV Count: 3 + UV + UV + UV +Face 7089 +UV Count: 3 + UV + UV + UV +Face 7090 +UV Count: 3 + UV + UV + UV +Face 7091 +UV Count: 3 + UV + UV + UV +Face 7092 +UV Count: 3 + UV + UV + UV +Face 7093 +UV Count: 3 + UV + UV + UV +Face 7094 +UV Count: 3 + UV + UV + UV +Face 7095 +UV Count: 3 + UV + UV + UV +Face 7096 +UV Count: 3 + UV + UV + UV +Face 7097 +UV Count: 3 + UV + UV + UV +Face 7098 +UV Count: 3 + UV + UV + UV +Face 7099 +UV Count: 3 + UV + UV + UV +Face 7100 +UV Count: 3 + UV + UV + UV +Face 7101 +UV Count: 3 + UV + UV + UV +Face 7102 +UV Count: 3 + UV + UV + UV +Face 7103 +UV Count: 3 + UV + UV + UV +Face 7104 +UV Count: 3 + UV + UV + UV +Face 7105 +UV Count: 3 + UV + UV + UV +Face 7106 +UV Count: 3 + UV + UV + UV +Face 7107 +UV Count: 3 + UV + UV + UV +Face 7108 +UV Count: 3 + UV + UV + UV +Face 7109 +UV Count: 3 + UV + UV + UV +Face 7110 +UV Count: 3 + UV + UV + UV +Face 7111 +UV Count: 3 + UV + UV + UV +Face 7112 +UV Count: 3 + UV + UV + UV +Face 7113 +UV Count: 3 + UV + UV + UV +Face 7114 +UV Count: 3 + UV + UV + UV +Face 7115 +UV Count: 3 + UV + UV + UV +Face 7116 +UV Count: 3 + UV + UV + UV +Face 7117 +UV Count: 3 + UV + UV + UV +Face 7118 +UV Count: 3 + UV + UV + UV +Face 7119 +UV Count: 3 + UV + UV + UV +Face 7120 +UV Count: 3 + UV + UV + UV +Face 7121 +UV Count: 3 + UV + UV + UV +Face 7122 +UV Count: 3 + UV + UV + UV +Face 7123 +UV Count: 3 + UV + UV + UV +Face 7124 +UV Count: 3 + UV + UV + UV +Face 7125 +UV Count: 3 + UV + UV + UV +Face 7126 +UV Count: 3 + UV + UV + UV +Face 7127 +UV Count: 3 + UV + UV + UV +Face 7128 +UV Count: 3 + UV + UV + UV +Face 7129 +UV Count: 3 + UV + UV + UV +Face 7130 +UV Count: 3 + UV + UV + UV +Face 7131 +UV Count: 3 + UV + UV + UV +Face 7132 +UV Count: 3 + UV + UV + UV +Face 7133 +UV Count: 3 + UV + UV + UV +Face 7134 +UV Count: 3 + UV + UV + UV +Face 7135 +UV Count: 3 + UV + UV + UV +Face 7136 +UV Count: 3 + UV + UV + UV +Face 7137 +UV Count: 3 + UV + UV + UV +Face 7138 +UV Count: 3 + UV + UV + UV +Face 7139 +UV Count: 3 + UV + UV + UV +Face 7140 +UV Count: 3 + UV + UV + UV +Face 7141 +UV Count: 3 + UV + UV + UV +Face 7142 +UV Count: 3 + UV + UV + UV +Face 7143 +UV Count: 3 + UV + UV + UV +Face 7144 +UV Count: 3 + UV + UV + UV +Face 7145 +UV Count: 3 + UV + UV + UV +Face 7146 +UV Count: 3 + UV + UV + UV +Face 7147 +UV Count: 3 + UV + UV + UV +Face 7148 +UV Count: 3 + UV + UV + UV +Face 7149 +UV Count: 3 + UV + UV + UV +Face 7150 +UV Count: 3 + UV + UV + UV +Face 7151 +UV Count: 3 + UV + UV + UV +Face 7152 +UV Count: 3 + UV + UV + UV +Face 7153 +UV Count: 3 + UV + UV + UV +Face 7154 +UV Count: 3 + UV + UV + UV +Face 7155 +UV Count: 3 + UV + UV + UV +Face 7156 +UV Count: 3 + UV + UV + UV +Face 7157 +UV Count: 3 + UV + UV + UV +Face 7158 +UV Count: 3 + UV + UV + UV +Face 7159 +UV Count: 3 + UV + UV + UV +Face 7160 +UV Count: 3 + UV + UV + UV +Face 7161 +UV Count: 3 + UV + UV + UV +Face 7162 +UV Count: 3 + UV + UV + UV +Face 7163 +UV Count: 3 + UV + UV + UV +Face 7164 +UV Count: 3 + UV + UV + UV +Face 7165 +UV Count: 3 + UV + UV + UV +Face 7166 +UV Count: 3 + UV + UV + UV +Face 7167 +UV Count: 3 + UV + UV + UV +Face 7168 +UV Count: 3 + UV + UV + UV +Face 7169 +UV Count: 3 + UV + UV + UV +Face 7170 +UV Count: 3 + UV + UV + UV +Face 7171 +UV Count: 3 + UV + UV + UV +Face 7172 +UV Count: 3 + UV + UV + UV +Face 7173 +UV Count: 3 + UV + UV + UV +Face 7174 +UV Count: 3 + UV + UV + UV +Face 7175 +UV Count: 3 + UV + UV + UV +Face 7176 +UV Count: 3 + UV + UV + UV +Face 7177 +UV Count: 3 + UV + UV + UV +Face 7178 +UV Count: 3 + UV + UV + UV +Face 7179 +UV Count: 3 + UV + UV + UV +Face 7180 +UV Count: 3 + UV + UV + UV +Face 7181 +UV Count: 3 + UV + UV + UV +Face 7182 +UV Count: 3 + UV + UV + UV +Face 7183 +UV Count: 3 + UV + UV + UV +Face 7184 +UV Count: 3 + UV + UV + UV +Face 7185 +UV Count: 3 + UV + UV + UV +Face 7186 +UV Count: 3 + UV + UV + UV +Face 7187 +UV Count: 3 + UV + UV + UV +Face 7188 +UV Count: 3 + UV + UV + UV +Face 7189 +UV Count: 3 + UV + UV + UV +Face 7190 +UV Count: 3 + UV + UV + UV +Face 7191 +UV Count: 3 + UV + UV + UV +Face 7192 +UV Count: 3 + UV + UV + UV +Face 7193 +UV Count: 3 + UV + UV + UV +Face 7194 +UV Count: 3 + UV + UV + UV +Face 7195 +UV Count: 3 + UV + UV + UV +Face 7196 +UV Count: 3 + UV + UV + UV +Face 7197 +UV Count: 3 + UV + UV + UV +Face 7198 +UV Count: 3 + UV + UV + UV +Face 7199 +UV Count: 3 + UV + UV + UV +Face 7200 +UV Count: 3 + UV + UV + UV +Face 7201 +UV Count: 3 + UV + UV + UV +Face 7202 +UV Count: 3 + UV + UV + UV +Face 7203 +UV Count: 3 + UV + UV + UV +Face 7204 +UV Count: 3 + UV + UV + UV +Face 7205 +UV Count: 3 + UV + UV + UV +Face 7206 +UV Count: 3 + UV + UV + UV +Face 7207 +UV Count: 3 + UV + UV + UV +Face 7208 +UV Count: 3 + UV + UV + UV +Face 7209 +UV Count: 3 + UV + UV + UV +Face 7210 +UV Count: 3 + UV + UV + UV +Face 7211 +UV Count: 3 + UV + UV + UV +Face 7212 +UV Count: 3 + UV + UV + UV +Face 7213 +UV Count: 3 + UV + UV + UV +Face 7214 +UV Count: 3 + UV + UV + UV +Face 7215 +UV Count: 3 + UV + UV + UV +Face 7216 +UV Count: 3 + UV + UV + UV +Face 7217 +UV Count: 3 + UV + UV + UV +Face 7218 +UV Count: 3 + UV + UV + UV +Face 7219 +UV Count: 3 + UV + UV + UV +Face 7220 +UV Count: 3 + UV + UV + UV +Face 7221 +UV Count: 3 + UV + UV + UV +Face 7222 +UV Count: 3 + UV + UV + UV +Face 7223 +UV Count: 3 + UV + UV + UV +Face 7224 +UV Count: 3 + UV + UV + UV +Face 7225 +UV Count: 3 + UV + UV + UV +Face 7226 +UV Count: 3 + UV + UV + UV +Face 7227 +UV Count: 3 + UV + UV + UV +Face 7228 +UV Count: 3 + UV + UV + UV +Face 7229 +UV Count: 3 + UV + UV + UV +Face 7230 +UV Count: 3 + UV + UV + UV +Face 7231 +UV Count: 3 + UV + UV + UV +Face 7232 +UV Count: 3 + UV + UV + UV +Face 7233 +UV Count: 3 + UV + UV + UV +Face 7234 +UV Count: 3 + UV + UV + UV +Face 7235 +UV Count: 3 + UV + UV + UV +Face 7236 +UV Count: 3 + UV + UV + UV +Face 7237 +UV Count: 3 + UV + UV + UV +Face 7238 +UV Count: 3 + UV + UV + UV +Face 7239 +UV Count: 3 + UV + UV + UV +Face 7240 +UV Count: 3 + UV + UV + UV +Face 7241 +UV Count: 3 + UV + UV + UV +Face 7242 +UV Count: 3 + UV + UV + UV +Face 7243 +UV Count: 3 + UV + UV + UV +Face 7244 +UV Count: 3 + UV + UV + UV +Face 7245 +UV Count: 3 + UV + UV + UV +Face 7246 +UV Count: 3 + UV + UV + UV +Face 7247 +UV Count: 3 + UV + UV + UV +Face 7248 +UV Count: 3 + UV + UV + UV +Face 7249 +UV Count: 3 + UV + UV + UV +Face 7250 +UV Count: 3 + UV + UV + UV +Face 7251 +UV Count: 3 + UV + UV + UV +Face 7252 +UV Count: 3 + UV + UV + UV +Face 7253 +UV Count: 3 + UV + UV + UV +Face 7254 +UV Count: 3 + UV + UV + UV +Face 7255 +UV Count: 3 + UV + UV + UV +Face 7256 +UV Count: 3 + UV + UV + UV +Face 7257 +UV Count: 3 + UV + UV + UV +Face 7258 +UV Count: 3 + UV + UV + UV +Face 7259 +UV Count: 3 + UV + UV + UV +Face 7260 +UV Count: 3 + UV + UV + UV +Face 7261 +UV Count: 3 + UV + UV + UV +Face 7262 +UV Count: 3 + UV + UV + UV +Face 7263 +UV Count: 3 + UV + UV + UV +Face 7264 +UV Count: 3 + UV + UV + UV +Face 7265 +UV Count: 3 + UV + UV + UV +Face 7266 +UV Count: 3 + UV + UV + UV +Face 7267 +UV Count: 3 + UV + UV + UV +Face 7268 +UV Count: 3 + UV + UV + UV +Face 7269 +UV Count: 3 + UV + UV + UV +Face 7270 +UV Count: 3 + UV + UV + UV +Face 7271 +UV Count: 3 + UV + UV + UV +Face 7272 +UV Count: 3 + UV + UV + UV +Face 7273 +UV Count: 3 + UV + UV + UV +Face 7274 +UV Count: 3 + UV + UV + UV +Face 7275 +UV Count: 3 + UV + UV + UV +Face 7276 +UV Count: 3 + UV + UV + UV +Face 7277 +UV Count: 3 + UV + UV + UV +Face 7278 +UV Count: 3 + UV + UV + UV +Face 7279 +UV Count: 3 + UV + UV + UV +Face 7280 +UV Count: 3 + UV + UV + UV +Face 7281 +UV Count: 3 + UV + UV + UV +Face 7282 +UV Count: 3 + UV + UV + UV +Face 7283 +UV Count: 3 + UV + UV + UV +Face 7284 +UV Count: 3 + UV + UV + UV +Face 7285 +UV Count: 3 + UV + UV + UV +Face 7286 +UV Count: 3 + UV + UV + UV +Face 7287 +UV Count: 3 + UV + UV + UV +Face 7288 +UV Count: 3 + UV + UV + UV +Face 7289 +UV Count: 3 + UV + UV + UV +Face 7290 +UV Count: 3 + UV + UV + UV +Face 7291 +UV Count: 3 + UV + UV + UV +Face 7292 +UV Count: 3 + UV + UV + UV +Face 7293 +UV Count: 3 + UV + UV + UV +Face 7294 +UV Count: 3 + UV + UV + UV +Face 7295 +UV Count: 3 + UV + UV + UV +Face 7296 +UV Count: 3 + UV + UV + UV +Face 7297 +UV Count: 3 + UV + UV + UV +Face 7298 +UV Count: 3 + UV + UV + UV +Face 7299 +UV Count: 3 + UV + UV + UV +Face 7300 +UV Count: 3 + UV + UV + UV +Face 7301 +UV Count: 3 + UV + UV + UV +Face 7302 +UV Count: 3 + UV + UV + UV +Face 7303 +UV Count: 3 + UV + UV + UV +Face 7304 +UV Count: 3 + UV + UV + UV +Face 7305 +UV Count: 3 + UV + UV + UV +Face 7306 +UV Count: 3 + UV + UV + UV +Face 7307 +UV Count: 3 + UV + UV + UV +Face 7308 +UV Count: 3 + UV + UV + UV +Face 7309 +UV Count: 3 + UV + UV + UV +Face 7310 +UV Count: 3 + UV + UV + UV +Face 7311 +UV Count: 3 + UV + UV + UV +Face 7312 +UV Count: 3 + UV + UV + UV +Face 7313 +UV Count: 3 + UV + UV + UV +Face 7314 +UV Count: 3 + UV + UV + UV +Face 7315 +UV Count: 3 + UV + UV + UV +Face 7316 +UV Count: 3 + UV + UV + UV +Face 7317 +UV Count: 3 + UV + UV + UV +Face 7318 +UV Count: 3 + UV + UV + UV +Face 7319 +UV Count: 3 + UV + UV + UV +Face 7320 +UV Count: 3 + UV + UV + UV +Face 7321 +UV Count: 3 + UV + UV + UV +Face 7322 +UV Count: 3 + UV + UV + UV +Face 7323 +UV Count: 3 + UV + UV + UV +Face 7324 +UV Count: 3 + UV + UV + UV +Face 7325 +UV Count: 3 + UV + UV + UV +Face 7326 +UV Count: 3 + UV + UV + UV +Face 7327 +UV Count: 3 + UV + UV + UV +Face 7328 +UV Count: 3 + UV + UV + UV +Face 7329 +UV Count: 3 + UV + UV + UV +Face 7330 +UV Count: 3 + UV + UV + UV +Face 7331 +UV Count: 3 + UV + UV + UV +Face 7332 +UV Count: 3 + UV + UV + UV +Face 7333 +UV Count: 3 + UV + UV + UV +Face 7334 +UV Count: 3 + UV + UV + UV +Face 7335 +UV Count: 3 + UV + UV + UV +Face 7336 +UV Count: 3 + UV + UV + UV +Face 7337 +UV Count: 3 + UV + UV + UV +Face 7338 +UV Count: 3 + UV + UV + UV +Face 7339 +UV Count: 3 + UV + UV + UV +Face 7340 +UV Count: 3 + UV + UV + UV +Face 7341 +UV Count: 3 + UV + UV + UV +Face 7342 +UV Count: 3 + UV + UV + UV +Face 7343 +UV Count: 3 + UV + UV + UV +Face 7344 +UV Count: 3 + UV + UV + UV +Face 7345 +UV Count: 3 + UV + UV + UV +Face 7346 +UV Count: 3 + UV + UV + UV +Face 7347 +UV Count: 3 + UV + UV + UV +Face 7348 +UV Count: 3 + UV + UV + UV +Face 7349 +UV Count: 3 + UV + UV + UV +Face 7350 +UV Count: 3 + UV + UV + UV +Face 7351 +UV Count: 3 + UV + UV + UV +Face 7352 +UV Count: 3 + UV + UV + UV +Face 7353 +UV Count: 3 + UV + UV + UV +Face 7354 +UV Count: 3 + UV + UV + UV +Face 7355 +UV Count: 3 + UV + UV + UV +Face 7356 +UV Count: 3 + UV + UV + UV +Face 7357 +UV Count: 3 + UV + UV + UV +Face 7358 +UV Count: 3 + UV + UV + UV +Face 7359 +UV Count: 3 + UV + UV + UV +Face 7360 +UV Count: 3 + UV + UV + UV +Face 7361 +UV Count: 3 + UV + UV + UV +Face 7362 +UV Count: 3 + UV + UV + UV +Face 7363 +UV Count: 3 + UV + UV + UV +Face 7364 +UV Count: 3 + UV + UV + UV +Face 7365 +UV Count: 3 + UV + UV + UV +Face 7366 +UV Count: 3 + UV + UV + UV +Face 7367 +UV Count: 3 + UV + UV + UV +Face 7368 +UV Count: 3 + UV + UV + UV +Face 7369 +UV Count: 3 + UV + UV + UV +Face 7370 +UV Count: 3 + UV + UV + UV +Face 7371 +UV Count: 3 + UV + UV + UV +Face 7372 +UV Count: 3 + UV + UV + UV +Face 7373 +UV Count: 3 + UV + UV + UV +Face 7374 +UV Count: 3 + UV + UV + UV +Face 7375 +UV Count: 3 + UV + UV + UV +Face 7376 +UV Count: 3 + UV + UV + UV +Face 7377 +UV Count: 3 + UV + UV + UV +Face 7378 +UV Count: 3 + UV + UV + UV +Face 7379 +UV Count: 3 + UV + UV + UV +Face 7380 +UV Count: 3 + UV + UV + UV +Face 7381 +UV Count: 3 + UV + UV + UV +Face 7382 +UV Count: 3 + UV + UV + UV +Face 7383 +UV Count: 3 + UV + UV + UV +Face 7384 +UV Count: 3 + UV + UV + UV +Face 7385 +UV Count: 3 + UV + UV + UV +Face 7386 +UV Count: 3 + UV + UV + UV +Face 7387 +UV Count: 3 + UV + UV + UV +Face 7388 +UV Count: 3 + UV + UV + UV +Face 7389 +UV Count: 3 + UV + UV + UV +Face 7390 +UV Count: 3 + UV + UV + UV +Face 7391 +UV Count: 3 + UV + UV + UV +Face 7392 +UV Count: 3 + UV + UV + UV +Face 7393 +UV Count: 3 + UV + UV + UV +Face 7394 +UV Count: 3 + UV + UV + UV +Face 7395 +UV Count: 3 + UV + UV + UV +Face 7396 +UV Count: 3 + UV + UV + UV +Face 7397 +UV Count: 3 + UV + UV + UV +Face 7398 +UV Count: 3 + UV + UV + UV +Face 7399 +UV Count: 3 + UV + UV + UV +Face 7400 +UV Count: 3 + UV + UV + UV +Face 7401 +UV Count: 3 + UV + UV + UV +Face 7402 +UV Count: 3 + UV + UV + UV +Face 7403 +UV Count: 3 + UV + UV + UV +Face 7404 +UV Count: 3 + UV + UV + UV +Face 7405 +UV Count: 3 + UV + UV + UV +Face 7406 +UV Count: 3 + UV + UV + UV +Face 7407 +UV Count: 3 + UV + UV + UV +Face 7408 +UV Count: 3 + UV + UV + UV +Face 7409 +UV Count: 3 + UV + UV + UV +Face 7410 +UV Count: 3 + UV + UV + UV +Face 7411 +UV Count: 3 + UV + UV + UV +Face 7412 +UV Count: 3 + UV + UV + UV +Face 7413 +UV Count: 3 + UV + UV + UV +Face 7414 +UV Count: 3 + UV + UV + UV +Face 7415 +UV Count: 3 + UV + UV + UV +Face 7416 +UV Count: 3 + UV + UV + UV +Face 7417 +UV Count: 3 + UV + UV + UV +Face 7418 +UV Count: 3 + UV + UV + UV +Face 7419 +UV Count: 3 + UV + UV + UV +Face 7420 +UV Count: 3 + UV + UV + UV +Face 7421 +UV Count: 3 + UV + UV + UV +Face 7422 +UV Count: 3 + UV + UV + UV +Face 7423 +UV Count: 3 + UV + UV + UV +Face 7424 +UV Count: 3 + UV + UV + UV +Face 7425 +UV Count: 3 + UV + UV + UV +Face 7426 +UV Count: 3 + UV + UV + UV +Face 7427 +UV Count: 3 + UV + UV + UV +Face 7428 +UV Count: 3 + UV + UV + UV +Face 7429 +UV Count: 3 + UV + UV + UV +Face 7430 +UV Count: 3 + UV + UV + UV +Face 7431 +UV Count: 3 + UV + UV + UV +Face 7432 +UV Count: 3 + UV + UV + UV +Face 7433 +UV Count: 3 + UV + UV + UV +Face 7434 +UV Count: 3 + UV + UV + UV +Face 7435 +UV Count: 3 + UV + UV + UV +Face 7436 +UV Count: 3 + UV + UV + UV +Face 7437 +UV Count: 3 + UV + UV + UV +Face 7438 +UV Count: 3 + UV + UV + UV +Face 7439 +UV Count: 3 + UV + UV + UV +Face 7440 +UV Count: 3 + UV + UV + UV +Face 7441 +UV Count: 3 + UV + UV + UV +Face 7442 +UV Count: 3 + UV + UV + UV +Face 7443 +UV Count: 3 + UV + UV + UV +Face 7444 +UV Count: 3 + UV + UV + UV +Face 7445 +UV Count: 3 + UV + UV + UV +Face 7446 +UV Count: 3 + UV + UV + UV +Face 7447 +UV Count: 3 + UV + UV + UV +Face 7448 +UV Count: 3 + UV + UV + UV +Face 7449 +UV Count: 3 + UV + UV + UV +Face 7450 +UV Count: 3 + UV + UV + UV +Face 7451 +UV Count: 3 + UV + UV + UV +Face 7452 +UV Count: 3 + UV + UV + UV +Face 7453 +UV Count: 3 + UV + UV + UV +Face 7454 +UV Count: 3 + UV + UV + UV +Face 7455 +UV Count: 3 + UV + UV + UV +Face 7456 +UV Count: 3 + UV + UV + UV +Face 7457 +UV Count: 3 + UV + UV + UV +Face 7458 +UV Count: 3 + UV + UV + UV +Face 7459 +UV Count: 3 + UV + UV + UV +Face 7460 +UV Count: 3 + UV + UV + UV +Face 7461 +UV Count: 3 + UV + UV + UV +Face 7462 +UV Count: 3 + UV + UV + UV +Face 7463 +UV Count: 3 + UV + UV + UV +Face 7464 +UV Count: 3 + UV + UV + UV +Face 7465 +UV Count: 3 + UV + UV + UV +Face 7466 +UV Count: 3 + UV + UV + UV +Face 7467 +UV Count: 3 + UV + UV + UV +Face 7468 +UV Count: 3 + UV + UV + UV +Face 7469 +UV Count: 3 + UV + UV + UV +Face 7470 +UV Count: 3 + UV + UV + UV +Face 7471 +UV Count: 3 + UV + UV + UV +Face 7472 +UV Count: 3 + UV + UV + UV +Face 7473 +UV Count: 3 + UV + UV + UV +Face 7474 +UV Count: 3 + UV + UV + UV +Face 7475 +UV Count: 3 + UV + UV + UV +Face 7476 +UV Count: 3 + UV + UV + UV +Face 7477 +UV Count: 3 + UV + UV + UV +Face 7478 +UV Count: 3 + UV + UV + UV +Face 7479 +UV Count: 3 + UV + UV + UV +Face 7480 +UV Count: 3 + UV + UV + UV +Face 7481 +UV Count: 3 + UV + UV + UV +Face 7482 +UV Count: 3 + UV + UV + UV +Face 7483 +UV Count: 3 + UV + UV + UV +Face 7484 +UV Count: 3 + UV + UV + UV +Face 7485 +UV Count: 3 + UV + UV + UV +Face 7486 +UV Count: 3 + UV + UV + UV +Face 7487 +UV Count: 3 + UV + UV + UV +Face 7488 +UV Count: 3 + UV + UV + UV +Face 7489 +UV Count: 3 + UV + UV + UV +Face 7490 +UV Count: 3 + UV + UV + UV +Face 7491 +UV Count: 3 + UV + UV + UV +Face 7492 +UV Count: 3 + UV + UV + UV +Face 7493 +UV Count: 3 + UV + UV + UV +Face 7494 +UV Count: 3 + UV + UV + UV +Face 7495 +UV Count: 3 + UV + UV + UV +Face 7496 +UV Count: 3 + UV + UV + UV +Face 7497 +UV Count: 3 + UV + UV + UV +Face 7498 +UV Count: 3 + UV + UV + UV +Face 7499 +UV Count: 3 + UV + UV + UV +Face 7500 +UV Count: 3 + UV + UV + UV +Face 7501 +UV Count: 3 + UV + UV + UV +Face 7502 +UV Count: 3 + UV + UV + UV +Face 7503 +UV Count: 3 + UV + UV + UV +Face 7504 +UV Count: 3 + UV + UV + UV +Face 7505 +UV Count: 3 + UV + UV + UV +Face 7506 +UV Count: 3 + UV + UV + UV +Face 7507 +UV Count: 3 + UV + UV + UV +Face 7508 +UV Count: 3 + UV + UV + UV +Face 7509 +UV Count: 3 + UV + UV + UV +Face 7510 +UV Count: 3 + UV + UV + UV +Face 7511 +UV Count: 3 + UV + UV + UV +Face 7512 +UV Count: 3 + UV + UV + UV +Face 7513 +UV Count: 3 + UV + UV + UV +Face 7514 +UV Count: 3 + UV + UV + UV +Face 7515 +UV Count: 3 + UV + UV + UV +Face 7516 +UV Count: 3 + UV + UV + UV +Face 7517 +UV Count: 3 + UV + UV + UV +Face 7518 +UV Count: 3 + UV + UV + UV +Face 7519 +UV Count: 3 + UV + UV + UV +Face 7520 +UV Count: 3 + UV + UV + UV +Face 7521 +UV Count: 3 + UV + UV + UV +Face 7522 +UV Count: 3 + UV + UV + UV +Face 7523 +UV Count: 3 + UV + UV + UV +Face 7524 +UV Count: 3 + UV + UV + UV +Face 7525 +UV Count: 3 + UV + UV + UV +Face 7526 +UV Count: 3 + UV + UV + UV +Face 7527 +UV Count: 3 + UV + UV + UV +Face 7528 +UV Count: 3 + UV + UV + UV +Face 7529 +UV Count: 3 + UV + UV + UV +Face 7530 +UV Count: 3 + UV + UV + UV +Face 7531 +UV Count: 3 + UV + UV + UV +Face 7532 +UV Count: 3 + UV + UV + UV +Face 7533 +UV Count: 3 + UV + UV + UV +Face 7534 +UV Count: 3 + UV + UV + UV +Face 7535 +UV Count: 3 + UV + UV + UV +Face 7536 +UV Count: 3 + UV + UV + UV +Face 7537 +UV Count: 3 + UV + UV + UV +Face 7538 +UV Count: 3 + UV + UV + UV +Face 7539 +UV Count: 3 + UV + UV + UV +Face 7540 +UV Count: 3 + UV + UV + UV +Face 7541 +UV Count: 3 + UV + UV + UV +Face 7542 +UV Count: 3 + UV + UV + UV +Face 7543 +UV Count: 3 + UV + UV + UV +Face 7544 +UV Count: 3 + UV + UV + UV +Face 7545 +UV Count: 3 + UV + UV + UV +Face 7546 +UV Count: 3 + UV + UV + UV +Face 7547 +UV Count: 3 + UV + UV + UV +Face 7548 +UV Count: 3 + UV + UV + UV +Face 7549 +UV Count: 3 + UV + UV + UV +Face 7550 +UV Count: 3 + UV + UV + UV +Face 7551 +UV Count: 3 + UV + UV + UV +Face 7552 +UV Count: 3 + UV + UV + UV +Face 7553 +UV Count: 3 + UV + UV + UV +Face 7554 +UV Count: 3 + UV + UV + UV +Face 7555 +UV Count: 3 + UV + UV + UV +Face 7556 +UV Count: 3 + UV + UV + UV +Face 7557 +UV Count: 3 + UV + UV + UV +Face 7558 +UV Count: 3 + UV + UV + UV +Face 7559 +UV Count: 3 + UV + UV + UV +Face 7560 +UV Count: 3 + UV + UV + UV +Face 7561 +UV Count: 3 + UV + UV + UV +Face 7562 +UV Count: 3 + UV + UV + UV +Face 7563 +UV Count: 3 + UV + UV + UV +Face 7564 +UV Count: 3 + UV + UV + UV +Face 7565 +UV Count: 3 + UV + UV + UV +Face 7566 +UV Count: 3 + UV + UV + UV +Face 7567 +UV Count: 3 + UV + UV + UV +Face 7568 +UV Count: 3 + UV + UV + UV +Face 7569 +UV Count: 3 + UV + UV + UV +Face 7570 +UV Count: 3 + UV + UV + UV +Face 7571 +UV Count: 3 + UV + UV + UV +Face 7572 +UV Count: 3 + UV + UV + UV +Face 7573 +UV Count: 3 + UV + UV + UV +Face 7574 +UV Count: 3 + UV + UV + UV +Face 7575 +UV Count: 3 + UV + UV + UV +Face 7576 +UV Count: 3 + UV + UV + UV +Face 7577 +UV Count: 3 + UV + UV + UV +Face 7578 +UV Count: 3 + UV + UV + UV +Face 7579 +UV Count: 3 + UV + UV + UV +Face 7580 +UV Count: 3 + UV + UV + UV +Face 7581 +UV Count: 3 + UV + UV + UV +Face 7582 +UV Count: 3 + UV + UV + UV +Face 7583 +UV Count: 3 + UV + UV + UV +Face 7584 +UV Count: 3 + UV + UV + UV +Face 7585 +UV Count: 3 + UV + UV + UV +Face 7586 +UV Count: 3 + UV + UV + UV +Face 7587 +UV Count: 3 + UV + UV + UV +Face 7588 +UV Count: 3 + UV + UV + UV +Face 7589 +UV Count: 3 + UV + UV + UV +Face 7590 +UV Count: 3 + UV + UV + UV +Face 7591 +UV Count: 3 + UV + UV + UV +Face 7592 +UV Count: 3 + UV + UV + UV +Face 7593 +UV Count: 3 + UV + UV + UV +Face 7594 +UV Count: 3 + UV + UV + UV +Face 7595 +UV Count: 3 + UV + UV + UV +Face 7596 +UV Count: 3 + UV + UV + UV +Face 7597 +UV Count: 3 + UV + UV + UV +Face 7598 +UV Count: 3 + UV + UV + UV +Face 7599 +UV Count: 3 + UV + UV + UV +Face 7600 +UV Count: 3 + UV + UV + UV +Face 7601 +UV Count: 3 + UV + UV + UV +Face 7602 +UV Count: 3 + UV + UV + UV +Face 7603 +UV Count: 3 + UV + UV + UV +Face 7604 +UV Count: 3 + UV + UV + UV +Face 7605 +UV Count: 3 + UV + UV + UV +Face 7606 +UV Count: 3 + UV + UV + UV +Face 7607 +UV Count: 3 + UV + UV + UV +Face 7608 +UV Count: 3 + UV + UV + UV +Face 7609 +UV Count: 3 + UV + UV + UV +Face 7610 +UV Count: 3 + UV + UV + UV +Face 7611 +UV Count: 3 + UV + UV + UV +Face 7612 +UV Count: 3 + UV + UV + UV +Face 7613 +UV Count: 3 + UV + UV + UV +Face 7614 +UV Count: 3 + UV + UV + UV +Face 7615 +UV Count: 3 + UV + UV + UV +Face 7616 +UV Count: 3 + UV + UV + UV +Face 7617 +UV Count: 3 + UV + UV + UV +Face 7618 +UV Count: 3 + UV + UV + UV +Face 7619 +UV Count: 3 + UV + UV + UV +Face 7620 +UV Count: 3 + UV + UV + UV +Face 7621 +UV Count: 3 + UV + UV + UV +Face 7622 +UV Count: 3 + UV + UV + UV +Face 7623 +UV Count: 3 + UV + UV + UV +Face 7624 +UV Count: 3 + UV + UV + UV +Face 7625 +UV Count: 3 + UV + UV + UV +Face 7626 +UV Count: 3 + UV + UV + UV +Face 7627 +UV Count: 3 + UV + UV + UV +Face 7628 +UV Count: 3 + UV + UV + UV +Face 7629 +UV Count: 3 + UV + UV + UV +Face 7630 +UV Count: 3 + UV + UV + UV +Face 7631 +UV Count: 3 + UV + UV + UV +Face 7632 +UV Count: 3 + UV + UV + UV +Face 7633 +UV Count: 3 + UV + UV + UV +Face 7634 +UV Count: 3 + UV + UV + UV +Face 7635 +UV Count: 3 + UV + UV + UV +Face 7636 +UV Count: 3 + UV + UV + UV +Face 7637 +UV Count: 3 + UV + UV + UV +Face 7638 +UV Count: 3 + UV + UV + UV +Face 7639 +UV Count: 3 + UV + UV + UV +Face 7640 +UV Count: 3 + UV + UV + UV +Face 7641 +UV Count: 3 + UV + UV + UV +Face 7642 +UV Count: 3 + UV + UV + UV +Face 7643 +UV Count: 3 + UV + UV + UV +Face 7644 +UV Count: 3 + UV + UV + UV +Face 7645 +UV Count: 3 + UV + UV + UV +Face 7646 +UV Count: 3 + UV + UV + UV +Face 7647 +UV Count: 3 + UV + UV + UV +Face 7648 +UV Count: 3 + UV + UV + UV +Face 7649 +UV Count: 3 + UV + UV + UV +Face 7650 +UV Count: 3 + UV + UV + UV +Face 7651 +UV Count: 3 + UV + UV + UV +Face 7652 +UV Count: 3 + UV + UV + UV +Face 7653 +UV Count: 3 + UV + UV + UV +Face 7654 +UV Count: 3 + UV + UV + UV +Face 7655 +UV Count: 3 + UV + UV + UV +Face 7656 +UV Count: 3 + UV + UV + UV +Face 7657 +UV Count: 3 + UV + UV + UV +Face 7658 +UV Count: 3 + UV + UV + UV +Face 7659 +UV Count: 3 + UV + UV + UV +Face 7660 +UV Count: 3 + UV + UV + UV +Face 7661 +UV Count: 3 + UV + UV + UV +Face 7662 +UV Count: 3 + UV + UV + UV +Face 7663 +UV Count: 3 + UV + UV + UV +Face 7664 +UV Count: 3 + UV + UV + UV +Face 7665 +UV Count: 3 + UV + UV + UV +Face 7666 +UV Count: 3 + UV + UV + UV +Face 7667 +UV Count: 3 + UV + UV + UV +Face 7668 +UV Count: 3 + UV + UV + UV +Face 7669 +UV Count: 3 + UV + UV + UV +Face 7670 +UV Count: 3 + UV + UV + UV +Face 7671 +UV Count: 3 + UV + UV + UV +Face 7672 +UV Count: 3 + UV + UV + UV +Face 7673 +UV Count: 3 + UV + UV + UV +Face 7674 +UV Count: 3 + UV + UV + UV +Face 7675 +UV Count: 3 + UV + UV + UV +Face 7676 +UV Count: 3 + UV + UV + UV +Face 7677 +UV Count: 3 + UV + UV + UV +Face 7678 +UV Count: 3 + UV + UV + UV +Face 7679 +UV Count: 3 + UV + UV + UV +Face 7680 +UV Count: 3 + UV + UV + UV +Face 7681 +UV Count: 3 + UV + UV + UV +Face 7682 +UV Count: 3 + UV + UV + UV +Face 7683 +UV Count: 3 + UV + UV + UV +Face 7684 +UV Count: 3 + UV + UV + UV +Face 7685 +UV Count: 3 + UV + UV + UV +Face 7686 +UV Count: 3 + UV + UV + UV +Face 7687 +UV Count: 3 + UV + UV + UV +Face 7688 +UV Count: 3 + UV + UV + UV +Face 7689 +UV Count: 3 + UV + UV + UV +Face 7690 +UV Count: 3 + UV + UV + UV +Face 7691 +UV Count: 3 + UV + UV + UV +Face 7692 +UV Count: 3 + UV + UV + UV +Face 7693 +UV Count: 3 + UV + UV + UV +Face 7694 +UV Count: 3 + UV + UV + UV +Face 7695 +UV Count: 3 + UV + UV + UV +Face 7696 +UV Count: 3 + UV + UV + UV +Face 7697 +UV Count: 3 + UV + UV + UV +Face 7698 +UV Count: 3 + UV + UV + UV +Face 7699 +UV Count: 3 + UV + UV + UV +Face 7700 +UV Count: 3 + UV + UV + UV +Face 7701 +UV Count: 3 + UV + UV + UV +Face 7702 +UV Count: 3 + UV + UV + UV +Face 7703 +UV Count: 3 + UV + UV + UV +Face 7704 +UV Count: 3 + UV + UV + UV +Face 7705 +UV Count: 3 + UV + UV + UV +Face 7706 +UV Count: 3 + UV + UV + UV +Face 7707 +UV Count: 3 + UV + UV + UV +Face 7708 +UV Count: 3 + UV + UV + UV +Face 7709 +UV Count: 3 + UV + UV + UV +Face 7710 +UV Count: 3 + UV + UV + UV +Face 7711 +UV Count: 3 + UV + UV + UV +Face 7712 +UV Count: 3 + UV + UV + UV +Face 7713 +UV Count: 3 + UV + UV + UV +Face 7714 +UV Count: 3 + UV + UV + UV +Face 7715 +UV Count: 3 + UV + UV + UV +Face 7716 +UV Count: 3 + UV + UV + UV +Face 7717 +UV Count: 3 + UV + UV + UV +Face 7718 +UV Count: 3 + UV + UV + UV +Face 7719 +UV Count: 3 + UV + UV + UV +Face 7720 +UV Count: 3 + UV + UV + UV +Face 7721 +UV Count: 3 + UV + UV + UV +Face 7722 +UV Count: 3 + UV + UV + UV +Face 7723 +UV Count: 3 + UV + UV + UV +Face 7724 +UV Count: 3 + UV + UV + UV +Face 7725 +UV Count: 3 + UV + UV + UV +Face 7726 +UV Count: 3 + UV + UV + UV +Face 7727 +UV Count: 3 + UV + UV + UV +Face 7728 +UV Count: 3 + UV + UV + UV +Face 7729 +UV Count: 3 + UV + UV + UV +Face 7730 +UV Count: 3 + UV + UV + UV +Face 7731 +UV Count: 3 + UV + UV + UV +Face 7732 +UV Count: 3 + UV + UV + UV +Face 7733 +UV Count: 3 + UV + UV + UV +Face 7734 +UV Count: 3 + UV + UV + UV +Face 7735 +UV Count: 3 + UV + UV + UV +Face 7736 +UV Count: 3 + UV + UV + UV +Face 7737 +UV Count: 3 + UV + UV + UV +Face 7738 +UV Count: 3 + UV + UV + UV +Face 7739 +UV Count: 3 + UV + UV + UV +Face 7740 +UV Count: 3 + UV + UV + UV +Face 7741 +UV Count: 3 + UV + UV + UV +Face 7742 +UV Count: 3 + UV + UV + UV +Face 7743 +UV Count: 3 + UV + UV + UV +Face 7744 +UV Count: 3 + UV + UV + UV +Face 7745 +UV Count: 3 + UV + UV + UV +Face 7746 +UV Count: 3 + UV + UV + UV +Face 7747 +UV Count: 3 + UV + UV + UV +Face 7748 +UV Count: 3 + UV + UV + UV +Face 7749 +UV Count: 3 + UV + UV + UV +Face 7750 +UV Count: 3 + UV + UV + UV +Face 7751 +UV Count: 3 + UV + UV + UV +Face 7752 +UV Count: 3 + UV + UV + UV +Face 7753 +UV Count: 3 + UV + UV + UV +Face 7754 +UV Count: 3 + UV + UV + UV +Face 7755 +UV Count: 3 + UV + UV + UV +Face 7756 +UV Count: 3 + UV + UV + UV +Face 7757 +UV Count: 3 + UV + UV + UV +Face 7758 +UV Count: 3 + UV + UV + UV +Face 7759 +UV Count: 3 + UV + UV + UV +Face 7760 +UV Count: 3 + UV + UV + UV +Face 7761 +UV Count: 3 + UV + UV + UV +Face 7762 +UV Count: 3 + UV + UV + UV +Face 7763 +UV Count: 3 + UV + UV + UV +Face 7764 +UV Count: 3 + UV + UV + UV +Face 7765 +UV Count: 3 + UV + UV + UV +Face 7766 +UV Count: 3 + UV + UV + UV +Face 7767 +UV Count: 3 + UV + UV + UV +Face 7768 +UV Count: 3 + UV + UV + UV +Face 7769 +UV Count: 3 + UV + UV + UV +Face 7770 +UV Count: 3 + UV + UV + UV +Face 7771 +UV Count: 3 + UV + UV + UV +Face 7772 +UV Count: 3 + UV + UV + UV +Face 7773 +UV Count: 3 + UV + UV + UV +Face 7774 +UV Count: 3 + UV + UV + UV +Face 7775 +UV Count: 3 + UV + UV + UV +Face 7776 +UV Count: 3 + UV + UV + UV +Face 7777 +UV Count: 3 + UV + UV + UV +Face 7778 +UV Count: 3 + UV + UV + UV +Face 7779 +UV Count: 3 + UV + UV + UV +Face 7780 +UV Count: 3 + UV + UV + UV +Face 7781 +UV Count: 3 + UV + UV + UV +Face 7782 +UV Count: 3 + UV + UV + UV +Face 7783 +UV Count: 3 + UV + UV + UV +Face 7784 +UV Count: 3 + UV + UV + UV +Face 7785 +UV Count: 3 + UV + UV + UV +Face 7786 +UV Count: 3 + UV + UV + UV +Face 7787 +UV Count: 3 + UV + UV + UV +Face 7788 +UV Count: 3 + UV + UV + UV +Face 7789 +UV Count: 3 + UV + UV + UV +Face 7790 +UV Count: 3 + UV + UV + UV +Face 7791 +UV Count: 3 + UV + UV + UV +Face 7792 +UV Count: 3 + UV + UV + UV +Face 7793 +UV Count: 3 + UV + UV + UV +Face 7794 +UV Count: 3 + UV + UV + UV +Face 7795 +UV Count: 3 + UV + UV + UV +Face 7796 +UV Count: 3 + UV + UV + UV +Face 7797 +UV Count: 3 + UV + UV + UV +Face 7798 +UV Count: 3 + UV + UV + UV +Face 7799 +UV Count: 3 + UV + UV + UV +Face 7800 +UV Count: 3 + UV + UV + UV +Face 7801 +UV Count: 3 + UV + UV + UV +Face 7802 +UV Count: 3 + UV + UV + UV +Face 7803 +UV Count: 3 + UV + UV + UV +Face 7804 +UV Count: 3 + UV + UV + UV +Face 7805 +UV Count: 3 + UV + UV + UV +Face 7806 +UV Count: 3 + UV + UV + UV +Face 7807 +UV Count: 3 + UV + UV + UV +Face 7808 +UV Count: 3 + UV + UV + UV +Face 7809 +UV Count: 3 + UV + UV + UV +Face 7810 +UV Count: 3 + UV + UV + UV +Face 7811 +UV Count: 3 + UV + UV + UV +Face 7812 +UV Count: 3 + UV + UV + UV +Face 7813 +UV Count: 3 + UV + UV + UV +Face 7814 +UV Count: 3 + UV + UV + UV +Face 7815 +UV Count: 3 + UV + UV + UV +Face 7816 +UV Count: 3 + UV + UV + UV +Face 7817 +UV Count: 3 + UV + UV + UV +Face 7818 +UV Count: 3 + UV + UV + UV +Face 7819 +UV Count: 3 + UV + UV + UV +Face 7820 +UV Count: 3 + UV + UV + UV +Face 7821 +UV Count: 3 + UV + UV + UV +Face 7822 +UV Count: 3 + UV + UV + UV +Face 7823 +UV Count: 3 + UV + UV + UV +Face 7824 +UV Count: 3 + UV + UV + UV +Face 7825 +UV Count: 3 + UV + UV + UV +Face 7826 +UV Count: 3 + UV + UV + UV +Face 7827 +UV Count: 3 + UV + UV + UV +Face 7828 +UV Count: 3 + UV + UV + UV +Face 7829 +UV Count: 3 + UV + UV + UV +Face 7830 +UV Count: 3 + UV + UV + UV +Face 7831 +UV Count: 3 + UV + UV + UV +Face 7832 +UV Count: 3 + UV + UV + UV +Face 7833 +UV Count: 3 + UV + UV + UV +Face 7834 +UV Count: 3 + UV + UV + UV +Face 7835 +UV Count: 3 + UV + UV + UV +Face 7836 +UV Count: 3 + UV + UV + UV +Face 7837 +UV Count: 3 + UV + UV + UV +Face 7838 +UV Count: 3 + UV + UV + UV +Face 7839 +UV Count: 3 + UV + UV + UV +Face 7840 +UV Count: 3 + UV + UV + UV +Face 7841 +UV Count: 3 + UV + UV + UV +Face 7842 +UV Count: 3 + UV + UV + UV +Face 7843 +UV Count: 3 + UV + UV + UV +Face 7844 +UV Count: 3 + UV + UV + UV +Face 7845 +UV Count: 3 + UV + UV + UV +Face 7846 +UV Count: 3 + UV + UV + UV +Face 7847 +UV Count: 3 + UV + UV + UV +Face 7848 +UV Count: 3 + UV + UV + UV +Face 7849 +UV Count: 3 + UV + UV + UV +Face 7850 +UV Count: 3 + UV + UV + UV +Face 7851 +UV Count: 3 + UV + UV + UV +Face 7852 +UV Count: 3 + UV + UV + UV +Face 7853 +UV Count: 3 + UV + UV + UV +Face 7854 +UV Count: 3 + UV + UV + UV +Face 7855 +UV Count: 3 + UV + UV + UV +Face 7856 +UV Count: 3 + UV + UV + UV +Face 7857 +UV Count: 3 + UV + UV + UV +Face 7858 +UV Count: 3 + UV + UV + UV +Face 7859 +UV Count: 3 + UV + UV + UV +Face 7860 +UV Count: 3 + UV + UV + UV +Face 7861 +UV Count: 3 + UV + UV + UV +Face 7862 +UV Count: 3 + UV + UV + UV +Face 7863 +UV Count: 3 + UV + UV + UV +Face 7864 +UV Count: 3 + UV + UV + UV +Face 7865 +UV Count: 3 + UV + UV + UV +Face 7866 +UV Count: 3 + UV + UV + UV +Face 7867 +UV Count: 3 + UV + UV + UV +Face 7868 +UV Count: 3 + UV + UV + UV +Face 7869 +UV Count: 3 + UV + UV + UV +Face 7870 +UV Count: 3 + UV + UV + UV +Face 7871 +UV Count: 3 + UV + UV + UV +Face 7872 +UV Count: 3 + UV + UV + UV +Face 7873 +UV Count: 3 + UV + UV + UV +Face 7874 +UV Count: 3 + UV + UV + UV +Face 7875 +UV Count: 3 + UV + UV + UV +Face 7876 +UV Count: 3 + UV + UV + UV +Face 7877 +UV Count: 3 + UV + UV + UV +Face 7878 +UV Count: 3 + UV + UV + UV +Face 7879 +UV Count: 3 + UV + UV + UV +Face 7880 +UV Count: 3 + UV + UV + UV +Face 7881 +UV Count: 3 + UV + UV + UV +Face 7882 +UV Count: 3 + UV + UV + UV +Face 7883 +UV Count: 3 + UV + UV + UV +Face 7884 +UV Count: 3 + UV + UV + UV +Face 7885 +UV Count: 3 + UV + UV + UV +Face 7886 +UV Count: 3 + UV + UV + UV +Face 7887 +UV Count: 3 + UV + UV + UV +Face 7888 +UV Count: 3 + UV + UV + UV +Face 7889 +UV Count: 3 + UV + UV + UV +Face 7890 +UV Count: 3 + UV + UV + UV +Face 7891 +UV Count: 3 + UV + UV + UV +Face 7892 +UV Count: 3 + UV + UV + UV +Face 7893 +UV Count: 3 + UV + UV + UV +Face 7894 +UV Count: 3 + UV + UV + UV +Face 7895 +UV Count: 3 + UV + UV + UV +Face 7896 +UV Count: 3 + UV + UV + UV +Face 7897 +UV Count: 3 + UV + UV + UV +Face 7898 +UV Count: 3 + UV + UV + UV +Face 7899 +UV Count: 3 + UV + UV + UV +Face 7900 +UV Count: 3 + UV + UV + UV +Face 7901 +UV Count: 3 + UV + UV + UV +Face 7902 +UV Count: 3 + UV + UV + UV +Face 7903 +UV Count: 3 + UV + UV + UV +Face 7904 +UV Count: 3 + UV + UV + UV +Face 7905 +UV Count: 3 + UV + UV + UV +Face 7906 +UV Count: 3 + UV + UV + UV +Face 7907 +UV Count: 3 + UV + UV + UV +Face 7908 +UV Count: 3 + UV + UV + UV +Face 7909 +UV Count: 3 + UV + UV + UV +Face 7910 +UV Count: 3 + UV + UV + UV +Face 7911 +UV Count: 3 + UV + UV + UV +Face 7912 +UV Count: 3 + UV + UV + UV +Face 7913 +UV Count: 3 + UV + UV + UV +Face 7914 +UV Count: 3 + UV + UV + UV +Face 7915 +UV Count: 3 + UV + UV + UV +Face 7916 +UV Count: 3 + UV + UV + UV +Face 7917 +UV Count: 3 + UV + UV + UV +Face 7918 +UV Count: 3 + UV + UV + UV +Face 7919 +UV Count: 3 + UV + UV + UV +Face 7920 +UV Count: 3 + UV + UV + UV +Face 7921 +UV Count: 3 + UV + UV + UV +Face 7922 +UV Count: 3 + UV + UV + UV +Face 7923 +UV Count: 3 + UV + UV + UV +Face 7924 +UV Count: 3 + UV + UV + UV +Face 7925 +UV Count: 3 + UV + UV + UV +Face 7926 +UV Count: 3 + UV + UV + UV +Face 7927 +UV Count: 3 + UV + UV + UV +Face 7928 +UV Count: 3 + UV + UV + UV +Face 7929 +UV Count: 3 + UV + UV + UV +Face 7930 +UV Count: 3 + UV + UV + UV +Face 7931 +UV Count: 3 + UV + UV + UV +Face 7932 +UV Count: 3 + UV + UV + UV +Face 7933 +UV Count: 3 + UV + UV + UV +Face 7934 +UV Count: 3 + UV + UV + UV +Face 7935 +UV Count: 3 + UV + UV + UV +Face 7936 +UV Count: 3 + UV + UV + UV +Face 7937 +UV Count: 3 + UV + UV + UV +Face 7938 +UV Count: 3 + UV + UV + UV +Face 7939 +UV Count: 3 + UV + UV + UV +Face 7940 +UV Count: 3 + UV + UV + UV +Face 7941 +UV Count: 3 + UV + UV + UV +Face 7942 +UV Count: 3 + UV + UV + UV +Face 7943 +UV Count: 3 + UV + UV + UV +Face 7944 +UV Count: 3 + UV + UV + UV +Face 7945 +UV Count: 3 + UV + UV + UV +Face 7946 +UV Count: 3 + UV + UV + UV +Face 7947 +UV Count: 3 + UV + UV + UV +Face 7948 +UV Count: 3 + UV + UV + UV +Face 7949 +UV Count: 3 + UV + UV + UV +Face 7950 +UV Count: 3 + UV + UV + UV +Face 7951 +UV Count: 3 + UV + UV + UV +Face 7952 +UV Count: 3 + UV + UV + UV +Face 7953 +UV Count: 3 + UV + UV + UV +Face 7954 +UV Count: 3 + UV + UV + UV +Face 7955 +UV Count: 3 + UV + UV + UV +Face 7956 +UV Count: 3 + UV + UV + UV +Face 7957 +UV Count: 3 + UV + UV + UV +Face 7958 +UV Count: 3 + UV + UV + UV +Face 7959 +UV Count: 3 + UV + UV + UV +Face 7960 +UV Count: 3 + UV + UV + UV +Face 7961 +UV Count: 3 + UV + UV + UV +Face 7962 +UV Count: 3 + UV + UV + UV +Face 7963 +UV Count: 3 + UV + UV + UV +Face 7964 +UV Count: 3 + UV + UV + UV +Face 7965 +UV Count: 3 + UV + UV + UV +Face 7966 +UV Count: 3 + UV + UV + UV +Face 7967 +UV Count: 3 + UV + UV + UV +Face 7968 +UV Count: 3 + UV + UV + UV +Face 7969 +UV Count: 3 + UV + UV + UV +Face 7970 +UV Count: 3 + UV + UV + UV +Face 7971 +UV Count: 3 + UV + UV + UV +Face 7972 +UV Count: 3 + UV + UV + UV +Face 7973 +UV Count: 3 + UV + UV + UV +Face 7974 +UV Count: 3 + UV + UV + UV +Face 7975 +UV Count: 3 + UV + UV + UV +Face 7976 +UV Count: 3 + UV + UV + UV +Face 7977 +UV Count: 3 + UV + UV + UV +Face 7978 +UV Count: 3 + UV + UV + UV +Face 7979 +UV Count: 3 + UV + UV + UV +Face 7980 +UV Count: 3 + UV + UV + UV +Face 7981 +UV Count: 3 + UV + UV + UV +Face 7982 +UV Count: 3 + UV + UV + UV +Face 7983 +UV Count: 3 + UV + UV + UV +Face 7984 +UV Count: 3 + UV + UV + UV +Face 7985 +UV Count: 3 + UV + UV + UV +Face 7986 +UV Count: 3 + UV + UV + UV +Face 7987 +UV Count: 3 + UV + UV + UV +Face 7988 +UV Count: 3 + UV + UV + UV +Face 7989 +UV Count: 3 + UV + UV + UV +Face 7990 +UV Count: 3 + UV + UV + UV +Face 7991 +UV Count: 3 + UV + UV + UV +Face 7992 +UV Count: 3 + UV + UV + UV +Face 7993 +UV Count: 3 + UV + UV + UV +Face 7994 +UV Count: 3 + UV + UV + UV +Face 7995 +UV Count: 3 + UV + UV + UV +Face 7996 +UV Count: 3 + UV + UV + UV +Face 7997 +UV Count: 3 + UV + UV + UV +Face 7998 +UV Count: 3 + UV + UV + UV +Face 7999 +UV Count: 3 + UV + UV + UV +Face 8000 +UV Count: 3 + UV + UV + UV +Face 8001 +UV Count: 3 + UV + UV + UV +Face 8002 +UV Count: 3 + UV + UV + UV +Face 8003 +UV Count: 3 + UV + UV + UV +Face 8004 +UV Count: 3 + UV + UV + UV +Face 8005 +UV Count: 3 + UV + UV + UV +Face 8006 +UV Count: 3 + UV + UV + UV +Face 8007 +UV Count: 3 + UV + UV + UV +Face 8008 +UV Count: 3 + UV + UV + UV +Face 8009 +UV Count: 3 + UV + UV + UV +Face 8010 +UV Count: 3 + UV + UV + UV +Face 8011 +UV Count: 3 + UV + UV + UV +Face 8012 +UV Count: 3 + UV + UV + UV +Face 8013 +UV Count: 3 + UV + UV + UV +Face 8014 +UV Count: 3 + UV + UV + UV +Face 8015 +UV Count: 3 + UV + UV + UV +Face 8016 +UV Count: 3 + UV + UV + UV +Face 8017 +UV Count: 3 + UV + UV + UV +Face 8018 +UV Count: 3 + UV + UV + UV +Face 8019 +UV Count: 3 + UV + UV + UV +Face 8020 +UV Count: 3 + UV + UV + UV +Face 8021 +UV Count: 3 + UV + UV + UV +Face 8022 +UV Count: 3 + UV + UV + UV +Face 8023 +UV Count: 3 + UV + UV + UV +Face 8024 +UV Count: 3 + UV + UV + UV +Face 8025 +UV Count: 3 + UV + UV + UV +Face 8026 +UV Count: 3 + UV + UV + UV +Face 8027 +UV Count: 3 + UV + UV + UV +Face 8028 +UV Count: 3 + UV + UV + UV +Face 8029 +UV Count: 3 + UV + UV + UV +Face 8030 +UV Count: 3 + UV + UV + UV +Face 8031 +UV Count: 3 + UV + UV + UV +Face 8032 +UV Count: 3 + UV + UV + UV +Face 8033 +UV Count: 3 + UV + UV + UV +Face 8034 +UV Count: 3 + UV + UV + UV +Face 8035 +UV Count: 3 + UV + UV + UV +Face 8036 +UV Count: 3 + UV + UV + UV +Face 8037 +UV Count: 3 + UV + UV + UV +Face 8038 +UV Count: 3 + UV + UV + UV +Face 8039 +UV Count: 3 + UV + UV + UV +Face 8040 +UV Count: 3 + UV + UV + UV +Face 8041 +UV Count: 3 + UV + UV + UV +Face 8042 +UV Count: 3 + UV + UV + UV +Face 8043 +UV Count: 3 + UV + UV + UV +Face 8044 +UV Count: 3 + UV + UV + UV +Face 8045 +UV Count: 3 + UV + UV + UV +Face 8046 +UV Count: 3 + UV + UV + UV +Face 8047 +UV Count: 3 + UV + UV + UV +Face 8048 +UV Count: 3 + UV + UV + UV +Face 8049 +UV Count: 3 + UV + UV + UV +Face 8050 +UV Count: 3 + UV + UV + UV +Face 8051 +UV Count: 3 + UV + UV + UV +Face 8052 +UV Count: 3 + UV + UV + UV +Face 8053 +UV Count: 3 + UV + UV + UV +Face 8054 +UV Count: 3 + UV + UV + UV +Face 8055 +UV Count: 3 + UV + UV + UV +Face 8056 +UV Count: 3 + UV + UV + UV +Face 8057 +UV Count: 3 + UV + UV + UV +Face 8058 +UV Count: 3 + UV + UV + UV +Face 8059 +UV Count: 3 + UV + UV + UV +Face 8060 +UV Count: 3 + UV + UV + UV +Face 8061 +UV Count: 3 + UV + UV + UV +Face 8062 +UV Count: 3 + UV + UV + UV +Face 8063 +UV Count: 3 + UV + UV + UV +Face 8064 +UV Count: 3 + UV + UV + UV +Face 8065 +UV Count: 3 + UV + UV + UV +Face 8066 +UV Count: 3 + UV + UV + UV +Face 8067 +UV Count: 3 + UV + UV + UV +Face 8068 +UV Count: 3 + UV + UV + UV +Face 8069 +UV Count: 3 + UV + UV + UV +Face 8070 +UV Count: 3 + UV + UV + UV +Face 8071 +UV Count: 3 + UV + UV + UV +Face 8072 +UV Count: 3 + UV + UV + UV +Face 8073 +UV Count: 3 + UV + UV + UV +Face 8074 +UV Count: 3 + UV + UV + UV +Face 8075 +UV Count: 3 + UV + UV + UV +Face 8076 +UV Count: 3 + UV + UV + UV +Face 8077 +UV Count: 3 + UV + UV + UV +Face 8078 +UV Count: 3 + UV + UV + UV +Face 8079 +UV Count: 3 + UV + UV + UV +Face 8080 +UV Count: 3 + UV + UV + UV +Face 8081 +UV Count: 3 + UV + UV + UV +Face 8082 +UV Count: 3 + UV + UV + UV +Face 8083 +UV Count: 3 + UV + UV + UV +Face 8084 +UV Count: 3 + UV + UV + UV +Face 8085 +UV Count: 3 + UV + UV + UV +Face 8086 +UV Count: 3 + UV + UV + UV +Face 8087 +UV Count: 3 + UV + UV + UV +Face 8088 +UV Count: 3 + UV + UV + UV +Face 8089 +UV Count: 3 + UV + UV + UV +Face 8090 +UV Count: 3 + UV + UV + UV +Face 8091 +UV Count: 3 + UV + UV + UV +Face 8092 +UV Count: 3 + UV + UV + UV +Face 8093 +UV Count: 3 + UV + UV + UV +Face 8094 +UV Count: 3 + UV + UV + UV +Face 8095 +UV Count: 3 + UV + UV + UV +Face 8096 +UV Count: 3 + UV + UV + UV +Face 8097 +UV Count: 3 + UV + UV + UV +Face 8098 +UV Count: 3 + UV + UV + UV +Face 8099 +UV Count: 3 + UV + UV + UV +Face 8100 +UV Count: 3 + UV + UV + UV +Face 8101 +UV Count: 3 + UV + UV + UV +Face 8102 +UV Count: 3 + UV + UV + UV +Face 8103 +UV Count: 3 + UV + UV + UV +Face 8104 +UV Count: 3 + UV + UV + UV +Face 8105 +UV Count: 3 + UV + UV + UV +Face 8106 +UV Count: 3 + UV + UV + UV +Face 8107 +UV Count: 3 + UV + UV + UV +Face 8108 +UV Count: 3 + UV + UV + UV +Face 8109 +UV Count: 3 + UV + UV + UV +Face 8110 +UV Count: 3 + UV + UV + UV +Face 8111 +UV Count: 3 + UV + UV + UV +Face 8112 +UV Count: 3 + UV + UV + UV +Face 8113 +UV Count: 3 + UV + UV + UV +Face 8114 +UV Count: 3 + UV + UV + UV +Face 8115 +UV Count: 3 + UV + UV + UV +Face 8116 +UV Count: 3 + UV + UV + UV +Face 8117 +UV Count: 3 + UV + UV + UV +Face 8118 +UV Count: 3 + UV + UV + UV +Face 8119 +UV Count: 3 + UV + UV + UV +Face 8120 +UV Count: 3 + UV + UV + UV +Face 8121 +UV Count: 3 + UV + UV + UV +Face 8122 +UV Count: 3 + UV + UV + UV +Face 8123 +UV Count: 3 + UV + UV + UV +Face 8124 +UV Count: 3 + UV + UV + UV +Face 8125 +UV Count: 3 + UV + UV + UV +Face 8126 +UV Count: 3 + UV + UV + UV +Face 8127 +UV Count: 3 + UV + UV + UV +Face 8128 +UV Count: 3 + UV + UV + UV +Face 8129 +UV Count: 3 + UV + UV + UV +Face 8130 +UV Count: 3 + UV + UV + UV +Face 8131 +UV Count: 3 + UV + UV + UV +Face 8132 +UV Count: 3 + UV + UV + UV +Face 8133 +UV Count: 3 + UV + UV + UV +Face 8134 +UV Count: 3 + UV + UV + UV +Face 8135 +UV Count: 3 + UV + UV + UV +Face 8136 +UV Count: 3 + UV + UV + UV +Face 8137 +UV Count: 3 + UV + UV + UV +Face 8138 +UV Count: 3 + UV + UV + UV +Face 8139 +UV Count: 3 + UV + UV + UV +Face 8140 +UV Count: 3 + UV + UV + UV +Face 8141 +UV Count: 3 + UV + UV + UV +Face 8142 +UV Count: 3 + UV + UV + UV +Face 8143 +UV Count: 3 + UV + UV + UV +Face 8144 +UV Count: 3 + UV + UV + UV +Face 8145 +UV Count: 3 + UV + UV + UV +Face 8146 +UV Count: 3 + UV + UV + UV +Face 8147 +UV Count: 3 + UV + UV + UV +Face 8148 +UV Count: 3 + UV + UV + UV +Face 8149 +UV Count: 3 + UV + UV + UV +Face 8150 +UV Count: 3 + UV + UV + UV +Face 8151 +UV Count: 3 + UV + UV + UV +Face 8152 +UV Count: 3 + UV + UV + UV +Face 8153 +UV Count: 3 + UV + UV + UV +Face 8154 +UV Count: 3 + UV + UV + UV +Face 8155 +UV Count: 3 + UV + UV + UV +Face 8156 +UV Count: 3 + UV + UV + UV +Face 8157 +UV Count: 3 + UV + UV + UV +Face 8158 +UV Count: 3 + UV + UV + UV +Face 8159 +UV Count: 3 + UV + UV + UV +Face 8160 +UV Count: 3 + UV + UV + UV +Face 8161 +UV Count: 3 + UV + UV + UV +Face 8162 +UV Count: 3 + UV + UV + UV +Face 8163 +UV Count: 3 + UV + UV + UV +Face 8164 +UV Count: 3 + UV + UV + UV +Face 8165 +UV Count: 3 + UV + UV + UV +Face 8166 +UV Count: 3 + UV + UV + UV +Face 8167 +UV Count: 3 + UV + UV + UV +Face 8168 +UV Count: 3 + UV + UV + UV +Face 8169 +UV Count: 3 + UV + UV + UV +Face 8170 +UV Count: 3 + UV + UV + UV +Face 8171 +UV Count: 3 + UV + UV + UV +Face 8172 +UV Count: 3 + UV + UV + UV +Face 8173 +UV Count: 3 + UV + UV + UV +Face 8174 +UV Count: 3 + UV + UV + UV +Face 8175 +UV Count: 3 + UV + UV + UV +Face 8176 +UV Count: 3 + UV + UV + UV +Face 8177 +UV Count: 3 + UV + UV + UV +Face 8178 +UV Count: 3 + UV + UV + UV +Face 8179 +UV Count: 3 + UV + UV + UV +Face 8180 +UV Count: 3 + UV + UV + UV +Face 8181 +UV Count: 3 + UV + UV + UV +Face 8182 +UV Count: 3 + UV + UV + UV +Face 8183 +UV Count: 3 + UV + UV + UV +Face 8184 +UV Count: 3 + UV + UV + UV +Face 8185 +UV Count: 3 + UV + UV + UV +Face 8186 +UV Count: 3 + UV + UV + UV +Face 8187 +UV Count: 3 + UV + UV + UV +Face 8188 +UV Count: 3 + UV + UV + UV +Face 8189 +UV Count: 3 + UV + UV + UV +Face 8190 +UV Count: 3 + UV + UV + UV +Face 8191 +UV Count: 3 + UV + UV + UV +Face 8192 +UV Count: 3 + UV + UV + UV +Face 8193 +UV Count: 3 + UV + UV + UV +Face 8194 +UV Count: 3 + UV + UV + UV +Face 8195 +UV Count: 3 + UV + UV + UV +Face 8196 +UV Count: 3 + UV + UV + UV +Face 8197 +UV Count: 3 + UV + UV + UV +Face 8198 +UV Count: 3 + UV + UV + UV +Face 8199 +UV Count: 3 + UV + UV + UV +Face 8200 +UV Count: 3 + UV + UV + UV +Face 8201 +UV Count: 3 + UV + UV + UV +Face 8202 +UV Count: 3 + UV + UV + UV +Face 8203 +UV Count: 3 + UV + UV + UV +Face 8204 +UV Count: 3 + UV + UV + UV +Face 8205 +UV Count: 3 + UV + UV + UV +Face 8206 +UV Count: 3 + UV + UV + UV +Face 8207 +UV Count: 3 + UV + UV + UV +Face 8208 +UV Count: 3 + UV + UV + UV +Face 8209 +UV Count: 3 + UV + UV + UV +Face 8210 +UV Count: 3 + UV + UV + UV +Face 8211 +UV Count: 3 + UV + UV + UV +Face 8212 +UV Count: 3 + UV + UV + UV +Face 8213 +UV Count: 3 + UV + UV + UV +Face 8214 +UV Count: 3 + UV + UV + UV +Face 8215 +UV Count: 3 + UV + UV + UV +Face 8216 +UV Count: 3 + UV + UV + UV +Face 8217 +UV Count: 3 + UV + UV + UV +Face 8218 +UV Count: 3 + UV + UV + UV +Face 8219 +UV Count: 3 + UV + UV + UV +Face 8220 +UV Count: 3 + UV + UV + UV +Face 8221 +UV Count: 3 + UV + UV + UV +Face 8222 +UV Count: 3 + UV + UV + UV +Face 8223 +UV Count: 3 + UV + UV + UV +Face 8224 +UV Count: 3 + UV + UV + UV +Face 8225 +UV Count: 3 + UV + UV + UV +Face 8226 +UV Count: 3 + UV + UV + UV +Face 8227 +UV Count: 3 + UV + UV + UV +Face 8228 +UV Count: 3 + UV + UV + UV +Face 8229 +UV Count: 3 + UV + UV + UV +Face 8230 +UV Count: 3 + UV + UV + UV +Face 8231 +UV Count: 3 + UV + UV + UV +Face 8232 +UV Count: 3 + UV + UV + UV +Face 8233 +UV Count: 3 + UV + UV + UV +Face 8234 +UV Count: 3 + UV + UV + UV +Face 8235 +UV Count: 3 + UV + UV + UV +Face 8236 +UV Count: 3 + UV + UV + UV +Face 8237 +UV Count: 3 + UV + UV + UV +Face 8238 +UV Count: 3 + UV + UV + UV +Face 8239 +UV Count: 3 + UV + UV + UV +Face 8240 +UV Count: 3 + UV + UV + UV +Face 8241 +UV Count: 3 + UV + UV + UV +Face 8242 +UV Count: 3 + UV + UV + UV +Face 8243 +UV Count: 3 + UV + UV + UV +Face 8244 +UV Count: 3 + UV + UV + UV +Face 8245 +UV Count: 3 + UV + UV + UV +Face 8246 +UV Count: 3 + UV + UV + UV +Face 8247 +UV Count: 3 + UV + UV + UV +Face 8248 +UV Count: 3 + UV + UV + UV +Face 8249 +UV Count: 3 + UV + UV + UV +Face 8250 +UV Count: 3 + UV + UV + UV +Face 8251 +UV Count: 3 + UV + UV + UV +Face 8252 +UV Count: 3 + UV + UV + UV +Face 8253 +UV Count: 3 + UV + UV + UV +Face 8254 +UV Count: 3 + UV + UV + UV +Face 8255 +UV Count: 3 + UV + UV + UV +Face 8256 +UV Count: 3 + UV + UV + UV +Face 8257 +UV Count: 3 + UV + UV + UV +Face 8258 +UV Count: 3 + UV + UV + UV +Face 8259 +UV Count: 3 + UV + UV + UV +Face 8260 +UV Count: 3 + UV + UV + UV +Face 8261 +UV Count: 3 + UV + UV + UV +Face 8262 +UV Count: 3 + UV + UV + UV +Face 8263 +UV Count: 3 + UV + UV + UV +Face 8264 +UV Count: 3 + UV + UV + UV +Face 8265 +UV Count: 3 + UV + UV + UV +Face 8266 +UV Count: 3 + UV + UV + UV +Face 8267 +UV Count: 3 + UV + UV + UV +Face 8268 +UV Count: 3 + UV + UV + UV +Face 8269 +UV Count: 3 + UV + UV + UV +Face 8270 +UV Count: 3 + UV + UV + UV +Face 8271 +UV Count: 3 + UV + UV + UV +Face 8272 +UV Count: 3 + UV + UV + UV +Face 8273 +UV Count: 3 + UV + UV + UV +Face 8274 +UV Count: 3 + UV + UV + UV +Face 8275 +UV Count: 3 + UV + UV + UV +Face 8276 +UV Count: 3 + UV + UV + UV +Face 8277 +UV Count: 3 + UV + UV + UV +Face 8278 +UV Count: 3 + UV + UV + UV +Face 8279 +UV Count: 3 + UV + UV + UV +Face 8280 +UV Count: 3 + UV + UV + UV +Face 8281 +UV Count: 3 + UV + UV + UV +Face 8282 +UV Count: 3 + UV + UV + UV +Face 8283 +UV Count: 3 + UV + UV + UV +Face 8284 +UV Count: 3 + UV + UV + UV +Face 8285 +UV Count: 3 + UV + UV + UV +Face 8286 +UV Count: 3 + UV + UV + UV +Face 8287 +UV Count: 3 + UV + UV + UV +Face 8288 +UV Count: 3 + UV + UV + UV +Face 8289 +UV Count: 3 + UV + UV + UV +Face 8290 +UV Count: 3 + UV + UV + UV +Face 8291 +UV Count: 3 + UV + UV + UV +Face 8292 +UV Count: 3 + UV + UV + UV +Face 8293 +UV Count: 3 + UV + UV + UV +Face 8294 +UV Count: 3 + UV + UV + UV +Face 8295 +UV Count: 3 + UV + UV + UV +Face 8296 +UV Count: 3 + UV + UV + UV +Face 8297 +UV Count: 3 + UV + UV + UV +Face 8298 +UV Count: 3 + UV + UV + UV +Face 8299 +UV Count: 3 + UV + UV + UV +Face 8300 +UV Count: 3 + UV + UV + UV +Face 8301 +UV Count: 3 + UV + UV + UV +Face 8302 +UV Count: 3 + UV + UV + UV +Face 8303 +UV Count: 3 + UV + UV + UV +Face 8304 +UV Count: 3 + UV + UV + UV +Face 8305 +UV Count: 3 + UV + UV + UV +Face 8306 +UV Count: 3 + UV + UV + UV +Face 8307 +UV Count: 3 + UV + UV + UV +Face 8308 +UV Count: 3 + UV + UV + UV +Face 8309 +UV Count: 3 + UV + UV + UV +Face 8310 +UV Count: 3 + UV + UV + UV +Face 8311 +UV Count: 3 + UV + UV + UV +Face 8312 +UV Count: 3 + UV + UV + UV +Face 8313 +UV Count: 3 + UV + UV + UV +Face 8314 +UV Count: 3 + UV + UV + UV +Face 8315 +UV Count: 3 + UV + UV + UV +Face 8316 +UV Count: 3 + UV + UV + UV +Face 8317 +UV Count: 3 + UV + UV + UV +Face 8318 +UV Count: 3 + UV + UV + UV +Face 8319 +UV Count: 3 + UV + UV + UV +Face 8320 +UV Count: 3 + UV + UV + UV +Face 8321 +UV Count: 3 + UV + UV + UV +Face 8322 +UV Count: 3 + UV + UV + UV +Face 8323 +UV Count: 3 + UV + UV + UV +Face 8324 +UV Count: 3 + UV + UV + UV +Face 8325 +UV Count: 3 + UV + UV + UV +Face 8326 +UV Count: 3 + UV + UV + UV +Face 8327 +UV Count: 3 + UV + UV + UV +Face 8328 +UV Count: 3 + UV + UV + UV +Face 8329 +UV Count: 3 + UV + UV + UV +Face 8330 +UV Count: 3 + UV + UV + UV +Face 8331 +UV Count: 3 + UV + UV + UV +Face 8332 +UV Count: 3 + UV + UV + UV +Face 8333 +UV Count: 3 + UV + UV + UV +Face 8334 +UV Count: 3 + UV + UV + UV +Face 8335 +UV Count: 3 + UV + UV + UV +Face 8336 +UV Count: 3 + UV + UV + UV +Face 8337 +UV Count: 3 + UV + UV + UV +Face 8338 +UV Count: 3 + UV + UV + UV +Face 8339 +UV Count: 3 + UV + UV + UV +Face 8340 +UV Count: 3 + UV + UV + UV +Face 8341 +UV Count: 3 + UV + UV + UV +Face 8342 +UV Count: 3 + UV + UV + UV +Face 8343 +UV Count: 3 + UV + UV + UV +Face 8344 +UV Count: 3 + UV + UV + UV +Face 8345 +UV Count: 3 + UV + UV + UV +Face 8346 +UV Count: 3 + UV + UV + UV +Face 8347 +UV Count: 3 + UV + UV + UV +Face 8348 +UV Count: 3 + UV + UV + UV +Face 8349 +UV Count: 3 + UV + UV + UV +Face 8350 +UV Count: 3 + UV + UV + UV +Face 8351 +UV Count: 3 + UV + UV + UV +Face 8352 +UV Count: 3 + UV + UV + UV +Face 8353 +UV Count: 3 + UV + UV + UV +Face 8354 +UV Count: 3 + UV + UV + UV +Face 8355 +UV Count: 3 + UV + UV + UV +Face 8356 +UV Count: 3 + UV + UV + UV +Face 8357 +UV Count: 3 + UV + UV + UV +Face 8358 +UV Count: 3 + UV + UV + UV +Face 8359 +UV Count: 3 + UV + UV + UV +Face 8360 +UV Count: 3 + UV + UV + UV +Face 8361 +UV Count: 3 + UV + UV + UV +Face 8362 +UV Count: 3 + UV + UV + UV +Face 8363 +UV Count: 3 + UV + UV + UV +Face 8364 +UV Count: 3 + UV + UV + UV +Face 8365 +UV Count: 3 + UV + UV + UV +Face 8366 +UV Count: 3 + UV + UV + UV +Face 8367 +UV Count: 3 + UV + UV + UV +Face 8368 +UV Count: 3 + UV + UV + UV +Face 8369 +UV Count: 3 + UV + UV + UV +Face 8370 +UV Count: 3 + UV + UV + UV +Face 8371 +UV Count: 3 + UV + UV + UV +Face 8372 +UV Count: 3 + UV + UV + UV +Face 8373 +UV Count: 3 + UV + UV + UV +Face 8374 +UV Count: 3 + UV + UV + UV +Face 8375 +UV Count: 3 + UV + UV + UV +Face 8376 +UV Count: 3 + UV + UV + UV +Face 8377 +UV Count: 3 + UV + UV + UV +Face 8378 +UV Count: 3 + UV + UV + UV +Face 8379 +UV Count: 3 + UV + UV + UV +Face 8380 +UV Count: 3 + UV + UV + UV +Face 8381 +UV Count: 3 + UV + UV + UV +Face 8382 +UV Count: 3 + UV + UV + UV +Face 8383 +UV Count: 3 + UV + UV + UV +Face 8384 +UV Count: 3 + UV + UV + UV +Face 8385 +UV Count: 3 + UV + UV + UV +Face 8386 +UV Count: 3 + UV + UV + UV +Face 8387 +UV Count: 3 + UV + UV + UV +Face 8388 +UV Count: 3 + UV + UV + UV +Face 8389 +UV Count: 3 + UV + UV + UV +Face 8390 +UV Count: 3 + UV + UV + UV +Face 8391 +UV Count: 3 + UV + UV + UV +Face 8392 +UV Count: 3 + UV + UV + UV +Face 8393 +UV Count: 3 + UV + UV + UV +Face 8394 +UV Count: 3 + UV + UV + UV +Face 8395 +UV Count: 3 + UV + UV + UV +Face 8396 +UV Count: 3 + UV + UV + UV +Face 8397 +UV Count: 3 + UV + UV + UV +Face 8398 +UV Count: 3 + UV + UV + UV +Face 8399 +UV Count: 3 + UV + UV + UV +Face 8400 +UV Count: 3 + UV + UV + UV +Face 8401 +UV Count: 3 + UV + UV + UV +Face 8402 +UV Count: 3 + UV + UV + UV +Face 8403 +UV Count: 3 + UV + UV + UV +Face 8404 +UV Count: 3 + UV + UV + UV +Face 8405 +UV Count: 3 + UV + UV + UV +Face 8406 +UV Count: 3 + UV + UV + UV +Face 8407 +UV Count: 3 + UV + UV + UV +Face 8408 +UV Count: 3 + UV + UV + UV +Face 8409 +UV Count: 3 + UV + UV + UV +Face 8410 +UV Count: 3 + UV + UV + UV +Face 8411 +UV Count: 3 + UV + UV + UV +Face 8412 +UV Count: 3 + UV + UV + UV +Face 8413 +UV Count: 3 + UV + UV + UV +Face 8414 +UV Count: 3 + UV + UV + UV +Face 8415 +UV Count: 3 + UV + UV + UV +Face 8416 +UV Count: 3 + UV + UV + UV +Face 8417 +UV Count: 3 + UV + UV + UV +Face 8418 +UV Count: 3 + UV + UV + UV +Face 8419 +UV Count: 3 + UV + UV + UV +Face 8420 +UV Count: 3 + UV + UV + UV +Face 8421 +UV Count: 3 + UV + UV + UV +Face 8422 +UV Count: 3 + UV + UV + UV +Face 8423 +UV Count: 3 + UV + UV + UV +Face 8424 +UV Count: 3 + UV + UV + UV +Face 8425 +UV Count: 3 + UV + UV + UV +Face 8426 +UV Count: 3 + UV + UV + UV +Face 8427 +UV Count: 3 + UV + UV + UV +Face 8428 +UV Count: 3 + UV + UV + UV +Face 8429 +UV Count: 3 + UV + UV + UV +Face 8430 +UV Count: 3 + UV + UV + UV +Face 8431 +UV Count: 3 + UV + UV + UV +Face 8432 +UV Count: 3 + UV + UV + UV +Face 8433 +UV Count: 3 + UV + UV + UV +Face 8434 +UV Count: 3 + UV + UV + UV +Face 8435 +UV Count: 3 + UV + UV + UV +Face 8436 +UV Count: 3 + UV + UV + UV +Face 8437 +UV Count: 3 + UV + UV + UV +Face 8438 +UV Count: 3 + UV + UV + UV +Face 8439 +UV Count: 3 + UV + UV + UV +Face 8440 +UV Count: 3 + UV + UV + UV +Face 8441 +UV Count: 3 + UV + UV + UV +Face 8442 +UV Count: 3 + UV + UV + UV +Face 8443 +UV Count: 3 + UV + UV + UV +Face 8444 +UV Count: 3 + UV + UV + UV +Face 8445 +UV Count: 3 + UV + UV + UV +Face 8446 +UV Count: 3 + UV + UV + UV +Face 8447 +UV Count: 3 + UV + UV + UV +Face 8448 +UV Count: 3 + UV + UV + UV +Face 8449 +UV Count: 3 + UV + UV + UV +Face 8450 +UV Count: 3 + UV + UV + UV +Face 8451 +UV Count: 3 + UV + UV + UV +Face 8452 +UV Count: 3 + UV + UV + UV +Face 8453 +UV Count: 3 + UV + UV + UV +Face 8454 +UV Count: 3 + UV + UV + UV +Face 8455 +UV Count: 3 + UV + UV + UV +Face 8456 +UV Count: 3 + UV + UV + UV +Face 8457 +UV Count: 3 + UV + UV + UV +Face 8458 +UV Count: 3 + UV + UV + UV +Face 8459 +UV Count: 3 + UV + UV + UV +Face 8460 +UV Count: 3 + UV + UV + UV +Face 8461 +UV Count: 3 + UV + UV + UV +Face 8462 +UV Count: 3 + UV + UV + UV +Face 8463 +UV Count: 3 + UV + UV + UV +Face 8464 +UV Count: 3 + UV + UV + UV +Face 8465 +UV Count: 3 + UV + UV + UV +Face 8466 +UV Count: 3 + UV + UV + UV +Face 8467 +UV Count: 3 + UV + UV + UV +Face 8468 +UV Count: 3 + UV + UV + UV +Face 8469 +UV Count: 3 + UV + UV + UV +Face 8470 +UV Count: 3 + UV + UV + UV +Face 8471 +UV Count: 3 + UV + UV + UV +Face 8472 +UV Count: 3 + UV + UV + UV +Face 8473 +UV Count: 3 + UV + UV + UV +Face 8474 +UV Count: 3 + UV + UV + UV +Face 8475 +UV Count: 3 + UV + UV + UV +Face 8476 +UV Count: 3 + UV + UV + UV +Face 8477 +UV Count: 3 + UV + UV + UV +Face 8478 +UV Count: 3 + UV + UV + UV +Face 8479 +UV Count: 3 + UV + UV + UV +Face 8480 +UV Count: 3 + UV + UV + UV +Face 8481 +UV Count: 3 + UV + UV + UV +Face 8482 +UV Count: 3 + UV + UV + UV +Face 8483 +UV Count: 3 + UV + UV + UV +Face 8484 +UV Count: 3 + UV + UV + UV +Face 8485 +UV Count: 3 + UV + UV + UV +Face 8486 +UV Count: 3 + UV + UV + UV +Face 8487 +UV Count: 3 + UV + UV + UV +Face 8488 +UV Count: 3 + UV + UV + UV +Face 8489 +UV Count: 3 + UV + UV + UV +Face 8490 +UV Count: 3 + UV + UV + UV +Face 8491 +UV Count: 3 + UV + UV + UV +Face 8492 +UV Count: 3 + UV + UV + UV +Face 8493 +UV Count: 3 + UV + UV + UV +Face 8494 +UV Count: 3 + UV + UV + UV +Face 8495 +UV Count: 3 + UV + UV + UV +Face 8496 +UV Count: 3 + UV + UV + UV +Face 8497 +UV Count: 3 + UV + UV + UV +Face 8498 +UV Count: 3 + UV + UV + UV +Face 8499 +UV Count: 3 + UV + UV + UV +Face 8500 +UV Count: 3 + UV + UV + UV +Face 8501 +UV Count: 3 + UV + UV + UV +Face 8502 +UV Count: 3 + UV + UV + UV +Face 8503 +UV Count: 3 + UV + UV + UV +Face 8504 +UV Count: 3 + UV + UV + UV +Face 8505 +UV Count: 3 + UV + UV + UV +Face 8506 +UV Count: 3 + UV + UV + UV +Face 8507 +UV Count: 3 + UV + UV + UV +Face 8508 +UV Count: 3 + UV + UV + UV +Face 8509 +UV Count: 3 + UV + UV + UV +Face 8510 +UV Count: 3 + UV + UV + UV +Face 8511 +UV Count: 3 + UV + UV + UV +Face 8512 +UV Count: 3 + UV + UV + UV +Face 8513 +UV Count: 3 + UV + UV + UV +Face 8514 +UV Count: 3 + UV + UV + UV +Face 8515 +UV Count: 3 + UV + UV + UV +Face 8516 +UV Count: 3 + UV + UV + UV +Face 8517 +UV Count: 3 + UV + UV + UV +Face 8518 +UV Count: 3 + UV + UV + UV +Face 8519 +UV Count: 3 + UV + UV + UV +Face 8520 +UV Count: 3 + UV + UV + UV +Face 8521 +UV Count: 3 + UV + UV + UV +Face 8522 +UV Count: 3 + UV + UV + UV +Face 8523 +UV Count: 3 + UV + UV + UV +Face 8524 +UV Count: 3 + UV + UV + UV +Face 8525 +UV Count: 3 + UV + UV + UV +Face 8526 +UV Count: 3 + UV + UV + UV +Face 8527 +UV Count: 3 + UV + UV + UV +Face 8528 +UV Count: 3 + UV + UV + UV +Face 8529 +UV Count: 3 + UV + UV + UV +Face 8530 +UV Count: 3 + UV + UV + UV +Face 8531 +UV Count: 3 + UV + UV + UV +Face 8532 +UV Count: 3 + UV + UV + UV +Face 8533 +UV Count: 3 + UV + UV + UV +Face 8534 +UV Count: 3 + UV + UV + UV +Face 8535 +UV Count: 3 + UV + UV + UV +Face 8536 +UV Count: 3 + UV + UV + UV +Face 8537 +UV Count: 3 + UV + UV + UV +Face 8538 +UV Count: 3 + UV + UV + UV +Face 8539 +UV Count: 3 + UV + UV + UV +Face 8540 +UV Count: 3 + UV + UV + UV +Face 8541 +UV Count: 3 + UV + UV + UV +Face 8542 +UV Count: 3 + UV + UV + UV +Face 8543 +UV Count: 3 + UV + UV + UV +Face 8544 +UV Count: 3 + UV + UV + UV +Face 8545 +UV Count: 3 + UV + UV + UV +Face 8546 +UV Count: 3 + UV + UV + UV +Face 8547 +UV Count: 3 + UV + UV + UV +Face 8548 +UV Count: 3 + UV + UV + UV +Face 8549 +UV Count: 3 + UV + UV + UV +Face 8550 +UV Count: 3 + UV + UV + UV +Face 8551 +UV Count: 3 + UV + UV + UV +Face 8552 +UV Count: 3 + UV + UV + UV +Face 8553 +UV Count: 3 + UV + UV + UV +Face 8554 +UV Count: 3 + UV + UV + UV +Face 8555 +UV Count: 3 + UV + UV + UV +Face 8556 +UV Count: 3 + UV + UV + UV +Face 8557 +UV Count: 3 + UV + UV + UV +Face 8558 +UV Count: 3 + UV + UV + UV +Face 8559 +UV Count: 3 + UV + UV + UV +Face 8560 +UV Count: 3 + UV + UV + UV +Face 8561 +UV Count: 3 + UV + UV + UV +Face 8562 +UV Count: 3 + UV + UV + UV +Face 8563 +UV Count: 3 + UV + UV + UV +Face 8564 +UV Count: 3 + UV + UV + UV +Face 8565 +UV Count: 3 + UV + UV + UV +Face 8566 +UV Count: 3 + UV + UV + UV +Face 8567 +UV Count: 3 + UV + UV + UV +Face 8568 +UV Count: 3 + UV + UV + UV +Face 8569 +UV Count: 3 + UV + UV + UV +Face 8570 +UV Count: 3 + UV + UV + UV +Face 8571 +UV Count: 3 + UV + UV + UV +Face 8572 +UV Count: 3 + UV + UV + UV +Face 8573 +UV Count: 3 + UV + UV + UV +Face 8574 +UV Count: 3 + UV + UV + UV +Face 8575 +UV Count: 3 + UV + UV + UV +Face 8576 +UV Count: 3 + UV + UV + UV +Face 8577 +UV Count: 3 + UV + UV + UV +Face 8578 +UV Count: 3 + UV + UV + UV +Face 8579 +UV Count: 3 + UV + UV + UV +Face 8580 +UV Count: 3 + UV + UV + UV +Face 8581 +UV Count: 3 + UV + UV + UV +Face 8582 +UV Count: 3 + UV + UV + UV +Face 8583 +UV Count: 3 + UV + UV + UV +Face 8584 +UV Count: 3 + UV + UV + UV +Face 8585 +UV Count: 3 + UV + UV + UV +Face 8586 +UV Count: 3 + UV + UV + UV +Face 8587 +UV Count: 3 + UV + UV + UV +Face 8588 +UV Count: 3 + UV + UV + UV +Face 8589 +UV Count: 3 + UV + UV + UV +Face 8590 +UV Count: 3 + UV + UV + UV +Face 8591 +UV Count: 3 + UV + UV + UV +Face 8592 +UV Count: 3 + UV + UV + UV +Face 8593 +UV Count: 3 + UV + UV + UV +Face 8594 +UV Count: 3 + UV + UV + UV +Face 8595 +UV Count: 3 + UV + UV + UV +Face 8596 +UV Count: 3 + UV + UV + UV +Face 8597 +UV Count: 3 + UV + UV + UV +Face 8598 +UV Count: 3 + UV + UV + UV +Face 8599 +UV Count: 3 + UV + UV + UV +Face 8600 +UV Count: 3 + UV + UV + UV +Face 8601 +UV Count: 3 + UV + UV + UV +Face 8602 +UV Count: 3 + UV + UV + UV +Face 8603 +UV Count: 3 + UV + UV + UV +Face 8604 +UV Count: 3 + UV + UV + UV +Face 8605 +UV Count: 3 + UV + UV + UV +Face 8606 +UV Count: 3 + UV + UV + UV +Face 8607 +UV Count: 3 + UV + UV + UV +Face 8608 +UV Count: 3 + UV + UV + UV +Face 8609 +UV Count: 3 + UV + UV + UV +Face 8610 +UV Count: 3 + UV + UV + UV +Face 8611 +UV Count: 3 + UV + UV + UV +Face 8612 +UV Count: 3 + UV + UV + UV +Face 8613 +UV Count: 3 + UV + UV + UV +Face 8614 +UV Count: 3 + UV + UV + UV +Face 8615 +UV Count: 3 + UV + UV + UV +Face 8616 +UV Count: 3 + UV + UV + UV +Face 8617 +UV Count: 3 + UV + UV + UV +Face 8618 +UV Count: 3 + UV + UV + UV +Face 8619 +UV Count: 3 + UV + UV + UV +Face 8620 +UV Count: 3 + UV + UV + UV +Face 8621 +UV Count: 3 + UV + UV + UV +Face 8622 +UV Count: 3 + UV + UV + UV +Face 8623 +UV Count: 3 + UV + UV + UV +Face 8624 +UV Count: 3 + UV + UV + UV +Face 8625 +UV Count: 3 + UV + UV + UV +Face 8626 +UV Count: 3 + UV + UV + UV +Face 8627 +UV Count: 3 + UV + UV + UV +Face 8628 +UV Count: 3 + UV + UV + UV +Face 8629 +UV Count: 3 + UV + UV + UV +Face 8630 +UV Count: 3 + UV + UV + UV +Face 8631 +UV Count: 3 + UV + UV + UV +Face 8632 +UV Count: 3 + UV + UV + UV +Face 8633 +UV Count: 3 + UV + UV + UV +Face 8634 +UV Count: 3 + UV + UV + UV +Face 8635 +UV Count: 3 + UV + UV + UV +Face 8636 +UV Count: 3 + UV + UV + UV +Face 8637 +UV Count: 3 + UV + UV + UV +Face 8638 +UV Count: 3 + UV + UV + UV +Face 8639 +UV Count: 3 + UV + UV + UV +Face 8640 +UV Count: 3 + UV + UV + UV +Face 8641 +UV Count: 3 + UV + UV + UV +Face 8642 +UV Count: 3 + UV + UV + UV +Face 8643 +UV Count: 3 + UV + UV + UV +Face 8644 +UV Count: 3 + UV + UV + UV +Face 8645 +UV Count: 3 + UV + UV + UV +Face 8646 +UV Count: 3 + UV + UV + UV +Face 8647 +UV Count: 3 + UV + UV + UV +Face 8648 +UV Count: 3 + UV + UV + UV +Face 8649 +UV Count: 3 + UV + UV + UV +Face 8650 +UV Count: 3 + UV + UV + UV +Face 8651 +UV Count: 3 + UV + UV + UV +Face 8652 +UV Count: 3 + UV + UV + UV +Face 8653 +UV Count: 3 + UV + UV + UV +Face 8654 +UV Count: 3 + UV + UV + UV +Face 8655 +UV Count: 3 + UV + UV + UV +Face 8656 +UV Count: 3 + UV + UV + UV +Face 8657 +UV Count: 3 + UV + UV + UV +Face 8658 +UV Count: 3 + UV + UV + UV +Face 8659 +UV Count: 3 + UV + UV + UV +Face 8660 +UV Count: 3 + UV + UV + UV +Face 8661 +UV Count: 3 + UV + UV + UV +Face 8662 +UV Count: 3 + UV + UV + UV +Face 8663 +UV Count: 3 + UV + UV + UV +Face 8664 +UV Count: 3 + UV + UV + UV +Face 8665 +UV Count: 3 + UV + UV + UV +Face 8666 +UV Count: 3 + UV + UV + UV +Face 8667 +UV Count: 3 + UV + UV + UV +Face 8668 +UV Count: 3 + UV + UV + UV +Face 8669 +UV Count: 3 + UV + UV + UV +Face 8670 +UV Count: 3 + UV + UV + UV +Face 8671 +UV Count: 3 + UV + UV + UV +Face 8672 +UV Count: 3 + UV + UV + UV +Face 8673 +UV Count: 3 + UV + UV + UV +Face 8674 +UV Count: 3 + UV + UV + UV +Face 8675 +UV Count: 3 + UV + UV + UV +Face 8676 +UV Count: 3 + UV + UV + UV +Face 8677 +UV Count: 3 + UV + UV + UV +Face 8678 +UV Count: 3 + UV + UV + UV +Face 8679 +UV Count: 3 + UV + UV + UV +Face 8680 +UV Count: 3 + UV + UV + UV +Face 8681 +UV Count: 3 + UV + UV + UV +Face 8682 +UV Count: 3 + UV + UV + UV +Face 8683 +UV Count: 3 + UV + UV + UV +Face 8684 +UV Count: 3 + UV + UV + UV +Face 8685 +UV Count: 3 + UV + UV + UV +Face 8686 +UV Count: 3 + UV + UV + UV +Face 8687 +UV Count: 3 + UV + UV + UV +Face 8688 +UV Count: 3 + UV + UV + UV +Face 8689 +UV Count: 3 + UV + UV + UV +Face 8690 +UV Count: 3 + UV + UV + UV +Face 8691 +UV Count: 3 + UV + UV + UV +Face 8692 +UV Count: 3 + UV + UV + UV +Face 8693 +UV Count: 3 + UV + UV + UV +Face 8694 +UV Count: 3 + UV + UV + UV +Face 8695 +UV Count: 3 + UV + UV + UV +Face 8696 +UV Count: 3 + UV + UV + UV +Face 8697 +UV Count: 3 + UV + UV + UV +Face 8698 +UV Count: 3 + UV + UV + UV +Face 8699 +UV Count: 3 + UV + UV + UV +Face 8700 +UV Count: 3 + UV + UV + UV +Face 8701 +UV Count: 3 + UV + UV + UV +Face 8702 +UV Count: 3 + UV + UV + UV +Face 8703 +UV Count: 3 + UV + UV + UV +Face 8704 +UV Count: 3 + UV + UV + UV +Face 8705 +UV Count: 3 + UV + UV + UV +Face 8706 +UV Count: 3 + UV + UV + UV +Face 8707 +UV Count: 3 + UV + UV + UV +Face 8708 +UV Count: 3 + UV + UV + UV +Face 8709 +UV Count: 3 + UV + UV + UV +Face 8710 +UV Count: 3 + UV + UV + UV +Face 8711 +UV Count: 3 + UV + UV + UV +Face 8712 +UV Count: 3 + UV + UV + UV +Face 8713 +UV Count: 3 + UV + UV + UV +Face 8714 +UV Count: 3 + UV + UV + UV +Face 8715 +UV Count: 3 + UV + UV + UV +Face 8716 +UV Count: 3 + UV + UV + UV +Face 8717 +UV Count: 3 + UV + UV + UV +Face 8718 +UV Count: 3 + UV + UV + UV +Face 8719 +UV Count: 3 + UV + UV + UV +Face 8720 +UV Count: 3 + UV + UV + UV +Face 8721 +UV Count: 3 + UV + UV + UV +Face 8722 +UV Count: 3 + UV + UV + UV +Face 8723 +UV Count: 3 + UV + UV + UV +Face 8724 +UV Count: 3 + UV + UV + UV +Face 8725 +UV Count: 3 + UV + UV + UV +Face 8726 +UV Count: 3 + UV + UV + UV +Face 8727 +UV Count: 3 + UV + UV + UV +Face 8728 +UV Count: 3 + UV + UV + UV +Face 8729 +UV Count: 3 + UV + UV + UV +Face 8730 +UV Count: 3 + UV + UV + UV +Face 8731 +UV Count: 3 + UV + UV + UV +Face 8732 +UV Count: 3 + UV + UV + UV +Face 8733 +UV Count: 3 + UV + UV + UV +Face 8734 +UV Count: 3 + UV + UV + UV +Face 8735 +UV Count: 3 + UV + UV + UV +Face 8736 +UV Count: 3 + UV + UV + UV +Face 8737 +UV Count: 3 + UV + UV + UV +Face 8738 +UV Count: 3 + UV + UV + UV +Face 8739 +UV Count: 3 + UV + UV + UV +Face 8740 +UV Count: 3 + UV + UV + UV +Face 8741 +UV Count: 3 + UV + UV + UV +Face 8742 +UV Count: 3 + UV + UV + UV +Face 8743 +UV Count: 3 + UV + UV + UV +Face 8744 +UV Count: 3 + UV + UV + UV +Face 8745 +UV Count: 3 + UV + UV + UV +Face 8746 +UV Count: 3 + UV + UV + UV +Face 8747 +UV Count: 3 + UV + UV + UV +Face 8748 +UV Count: 3 + UV + UV + UV +Face 8749 +UV Count: 3 + UV + UV + UV +Face 8750 +UV Count: 3 + UV + UV + UV +Face 8751 +UV Count: 3 + UV + UV + UV +Face 8752 +UV Count: 3 + UV + UV + UV +Face 8753 +UV Count: 3 + UV + UV + UV +Face 8754 +UV Count: 3 + UV + UV + UV +Face 8755 +UV Count: 3 + UV + UV + UV +Face 8756 +UV Count: 3 + UV + UV + UV +Face 8757 +UV Count: 3 + UV + UV + UV +Face 8758 +UV Count: 3 + UV + UV + UV +Face 8759 +UV Count: 3 + UV + UV + UV +Face 8760 +UV Count: 3 + UV + UV + UV +Face 8761 +UV Count: 3 + UV + UV + UV +Face 8762 +UV Count: 3 + UV + UV + UV +Face 8763 +UV Count: 3 + UV + UV + UV +Face 8764 +UV Count: 3 + UV + UV + UV +Face 8765 +UV Count: 3 + UV + UV + UV +Face 8766 +UV Count: 3 + UV + UV + UV +Face 8767 +UV Count: 3 + UV + UV + UV +Face 8768 +UV Count: 3 + UV + UV + UV +Face 8769 +UV Count: 3 + UV + UV + UV +Face 8770 +UV Count: 3 + UV + UV + UV +Face 8771 +UV Count: 3 + UV + UV + UV +Face 8772 +UV Count: 3 + UV + UV + UV +Face 8773 +UV Count: 3 + UV + UV + UV +Face 8774 +UV Count: 3 + UV + UV + UV +Face 8775 +UV Count: 3 + UV + UV + UV +Face 8776 +UV Count: 3 + UV + UV + UV +Face 8777 +UV Count: 3 + UV + UV + UV +Face 8778 +UV Count: 3 + UV + UV + UV +Face 8779 +UV Count: 3 + UV + UV + UV +Face 8780 +UV Count: 3 + UV + UV + UV +Face 8781 +UV Count: 3 + UV + UV + UV +Face 8782 +UV Count: 3 + UV + UV + UV +Face 8783 +UV Count: 3 + UV + UV + UV +Face 8784 +UV Count: 3 + UV + UV + UV +Face 8785 +UV Count: 3 + UV + UV + UV +Face 8786 +UV Count: 3 + UV + UV + UV +Face 8787 +UV Count: 3 + UV + UV + UV +Face 8788 +UV Count: 3 + UV + UV + UV +Face 8789 +UV Count: 3 + UV + UV + UV +Face 8790 +UV Count: 3 + UV + UV + UV +Face 8791 +UV Count: 3 + UV + UV + UV +Face 8792 +UV Count: 3 + UV + UV + UV +Face 8793 +UV Count: 3 + UV + UV + UV +Face 8794 +UV Count: 3 + UV + UV + UV +Face 8795 +UV Count: 3 + UV + UV + UV +Face 8796 +UV Count: 3 + UV + UV + UV +Face 8797 +UV Count: 3 + UV + UV + UV +Face 8798 +UV Count: 3 + UV + UV + UV +Face 8799 +UV Count: 3 + UV + UV + UV +Face 8800 +UV Count: 3 + UV + UV + UV +Face 8801 +UV Count: 3 + UV + UV + UV +Face 8802 +UV Count: 3 + UV + UV + UV +Face 8803 +UV Count: 3 + UV + UV + UV +Face 8804 +UV Count: 3 + UV + UV + UV +Face 8805 +UV Count: 3 + UV + UV + UV +Face 8806 +UV Count: 3 + UV + UV + UV +Face 8807 +UV Count: 3 + UV + UV + UV +Face 8808 +UV Count: 3 + UV + UV + UV +Face 8809 +UV Count: 3 + UV + UV + UV +Face 8810 +UV Count: 3 + UV + UV + UV +Face 8811 +UV Count: 3 + UV + UV + UV +Face 8812 +UV Count: 3 + UV + UV + UV +Face 8813 +UV Count: 3 + UV + UV + UV +Face 8814 +UV Count: 3 + UV + UV + UV +Face 8815 +UV Count: 3 + UV + UV + UV +Face 8816 +UV Count: 3 + UV + UV + UV +Face 8817 +UV Count: 3 + UV + UV + UV +Face 8818 +UV Count: 3 + UV + UV + UV +Face 8819 +UV Count: 3 + UV + UV + UV +Face 8820 +UV Count: 3 + UV + UV + UV +Face 8821 +UV Count: 3 + UV + UV + UV +Face 8822 +UV Count: 3 + UV + UV + UV +Face 8823 +UV Count: 3 + UV + UV + UV +Face 8824 +UV Count: 3 + UV + UV + UV +Face 8825 +UV Count: 3 + UV + UV + UV +Face 8826 +UV Count: 3 + UV + UV + UV +Face 8827 +UV Count: 3 + UV + UV + UV +Face 8828 +UV Count: 3 + UV + UV + UV +Face 8829 +UV Count: 3 + UV + UV + UV +Face 8830 +UV Count: 3 + UV + UV + UV +Face 8831 +UV Count: 3 + UV + UV + UV +Face 8832 +UV Count: 3 + UV + UV + UV +Face 8833 +UV Count: 3 + UV + UV + UV +Face 8834 +UV Count: 3 + UV + UV + UV +Face 8835 +UV Count: 3 + UV + UV + UV +Face 8836 +UV Count: 3 + UV + UV + UV +Face 8837 +UV Count: 3 + UV + UV + UV +Face 8838 +UV Count: 3 + UV + UV + UV +Face 8839 +UV Count: 3 + UV + UV + UV +Face 8840 +UV Count: 3 + UV + UV + UV +Face 8841 +UV Count: 3 + UV + UV + UV +Face 8842 +UV Count: 3 + UV + UV + UV +Face 8843 +UV Count: 3 + UV + UV + UV +Face 8844 +UV Count: 3 + UV + UV + UV +Face 8845 +UV Count: 3 + UV + UV + UV +Face 8846 +UV Count: 3 + UV + UV + UV +Face 8847 +UV Count: 3 + UV + UV + UV +Face 8848 +UV Count: 3 + UV + UV + UV +Face 8849 +UV Count: 3 + UV + UV + UV +Face 8850 +UV Count: 3 + UV + UV + UV +Face 8851 +UV Count: 3 + UV + UV + UV +Face 8852 +UV Count: 3 + UV + UV + UV +Face 8853 +UV Count: 3 + UV + UV + UV +Face 8854 +UV Count: 3 + UV + UV + UV +Face 8855 +UV Count: 3 + UV + UV + UV +Face 8856 +UV Count: 3 + UV + UV + UV +Face 8857 +UV Count: 3 + UV + UV + UV +Face 8858 +UV Count: 3 + UV + UV + UV +Face 8859 +UV Count: 3 + UV + UV + UV +Face 8860 +UV Count: 3 + UV + UV + UV +Face 8861 +UV Count: 3 + UV + UV + UV +Face 8862 +UV Count: 3 + UV + UV + UV +Face 8863 +UV Count: 3 + UV + UV + UV +Face 8864 +UV Count: 3 + UV + UV + UV +Face 8865 +UV Count: 3 + UV + UV + UV +Face 8866 +UV Count: 3 + UV + UV + UV +Face 8867 +UV Count: 3 + UV + UV + UV +Face 8868 +UV Count: 3 + UV + UV + UV +Face 8869 +UV Count: 3 + UV + UV + UV +Face 8870 +UV Count: 3 + UV + UV + UV +Face 8871 +UV Count: 3 + UV + UV + UV +Face 8872 +UV Count: 3 + UV + UV + UV +Face 8873 +UV Count: 3 + UV + UV + UV +Face 8874 +UV Count: 3 + UV + UV + UV +Face 8875 +UV Count: 3 + UV + UV + UV +Face 8876 +UV Count: 3 + UV + UV + UV +Face 8877 +UV Count: 3 + UV + UV + UV +Face 8878 +UV Count: 3 + UV + UV + UV +Face 8879 +UV Count: 3 + UV + UV + UV +Face 8880 +UV Count: 3 + UV + UV + UV +Face 8881 +UV Count: 3 + UV + UV + UV +Face 8882 +UV Count: 3 + UV + UV + UV +Face 8883 +UV Count: 3 + UV + UV + UV +Face 8884 +UV Count: 3 + UV + UV + UV +Face 8885 +UV Count: 3 + UV + UV + UV +Face 8886 +UV Count: 3 + UV + UV + UV +Face 8887 +UV Count: 3 + UV + UV + UV +Face 8888 +UV Count: 3 + UV + UV + UV +Face 8889 +UV Count: 3 + UV + UV + UV +Face 8890 +UV Count: 3 + UV + UV + UV +Face 8891 +UV Count: 3 + UV + UV + UV +Face 8892 +UV Count: 3 + UV + UV + UV +Face 8893 +UV Count: 3 + UV + UV + UV +Face 8894 +UV Count: 3 + UV + UV + UV +Face 8895 +UV Count: 3 + UV + UV + UV +Face 8896 +UV Count: 3 + UV + UV + UV +Face 8897 +UV Count: 3 + UV + UV + UV +Face 8898 +UV Count: 3 + UV + UV + UV +Face 8899 +UV Count: 3 + UV + UV + UV +Face 8900 +UV Count: 3 + UV + UV + UV +Face 8901 +UV Count: 3 + UV + UV + UV +Face 8902 +UV Count: 3 + UV + UV + UV +Face 8903 +UV Count: 3 + UV + UV + UV +Face 8904 +UV Count: 3 + UV + UV + UV +Face 8905 +UV Count: 3 + UV + UV + UV +Face 8906 +UV Count: 3 + UV + UV + UV +Face 8907 +UV Count: 3 + UV + UV + UV +Face 8908 +UV Count: 3 + UV + UV + UV +Face 8909 +UV Count: 3 + UV + UV + UV +Face 8910 +UV Count: 3 + UV + UV + UV +Face 8911 +UV Count: 3 + UV + UV + UV +Face 8912 +UV Count: 3 + UV + UV + UV +Face 8913 +UV Count: 3 + UV + UV + UV +Face 8914 +UV Count: 3 + UV + UV + UV +Face 8915 +UV Count: 3 + UV + UV + UV +Face 8916 +UV Count: 3 + UV + UV + UV +Face 8917 +UV Count: 3 + UV + UV + UV +Face 8918 +UV Count: 3 + UV + UV + UV +Face 8919 +UV Count: 3 + UV + UV + UV +Face 8920 +UV Count: 3 + UV + UV + UV +Face 8921 +UV Count: 3 + UV + UV + UV +Face 8922 +UV Count: 3 + UV + UV + UV +Face 8923 +UV Count: 3 + UV + UV + UV +Face 8924 +UV Count: 3 + UV + UV + UV +Face 8925 +UV Count: 3 + UV + UV + UV +Face 8926 +UV Count: 3 + UV + UV + UV +Face 8927 +UV Count: 3 + UV + UV + UV +Face 8928 +UV Count: 3 + UV + UV + UV +Face 8929 +UV Count: 3 + UV + UV + UV +Face 8930 +UV Count: 3 + UV + UV + UV +Face 8931 +UV Count: 3 + UV + UV + UV +Face 8932 +UV Count: 3 + UV + UV + UV +Face 8933 +UV Count: 3 + UV + UV + UV +Face 8934 +UV Count: 3 + UV + UV + UV +Face 8935 +UV Count: 3 + UV + UV + UV +Face 8936 +UV Count: 3 + UV + UV + UV +Face 8937 +UV Count: 3 + UV + UV + UV +Face 8938 +UV Count: 3 + UV + UV + UV +Face 8939 +UV Count: 3 + UV + UV + UV +Face 8940 +UV Count: 3 + UV + UV + UV +Face 8941 +UV Count: 3 + UV + UV + UV +Face 8942 +UV Count: 3 + UV + UV + UV +Face 8943 +UV Count: 3 + UV + UV + UV +Face 8944 +UV Count: 3 + UV + UV + UV +Face 8945 +UV Count: 3 + UV + UV + UV +Face 8946 +UV Count: 3 + UV + UV + UV +Face 8947 +UV Count: 3 + UV + UV + UV +Face 8948 +UV Count: 3 + UV + UV + UV +Face 8949 +UV Count: 3 + UV + UV + UV +Face 8950 +UV Count: 3 + UV + UV + UV +Face 8951 +UV Count: 3 + UV + UV + UV +Face 8952 +UV Count: 3 + UV + UV + UV +Face 8953 +UV Count: 3 + UV + UV + UV +Face 8954 +UV Count: 3 + UV + UV + UV +Face 8955 +UV Count: 3 + UV + UV + UV +Face 8956 +UV Count: 3 + UV + UV + UV +Face 8957 +UV Count: 3 + UV + UV + UV +Face 8958 +UV Count: 3 + UV + UV + UV +Face 8959 +UV Count: 3 + UV + UV + UV +Face 8960 +UV Count: 3 + UV + UV + UV +Face 8961 +UV Count: 3 + UV + UV + UV +Face 8962 +UV Count: 3 + UV + UV + UV +Face 8963 +UV Count: 3 + UV + UV + UV +Face 8964 +UV Count: 3 + UV + UV + UV +Face 8965 +UV Count: 3 + UV + UV + UV +Face 8966 +UV Count: 3 + UV + UV + UV +Face 8967 +UV Count: 3 + UV + UV + UV +Face 8968 +UV Count: 3 + UV + UV + UV +Face 8969 +UV Count: 3 + UV + UV + UV +Face 8970 +UV Count: 3 + UV + UV + UV +Face 8971 +UV Count: 3 + UV + UV + UV +Face 8972 +UV Count: 3 + UV + UV + UV +Face 8973 +UV Count: 3 + UV + UV + UV +Face 8974 +UV Count: 3 + UV + UV + UV +Face 8975 +UV Count: 3 + UV + UV + UV +Face 8976 +UV Count: 3 + UV + UV + UV +Face 8977 +UV Count: 3 + UV + UV + UV +Face 8978 +UV Count: 3 + UV + UV + UV +Face 8979 +UV Count: 3 + UV + UV + UV +Face 8980 +UV Count: 3 + UV + UV + UV +Face 8981 +UV Count: 3 + UV + UV + UV +Face 8982 +UV Count: 3 + UV + UV + UV +Face 8983 +UV Count: 3 + UV + UV + UV +Face 8984 +UV Count: 3 + UV + UV + UV +Face 8985 +UV Count: 3 + UV + UV + UV +Face 8986 +UV Count: 3 + UV + UV + UV +Face 8987 +UV Count: 3 + UV + UV + UV +Face 8988 +UV Count: 3 + UV + UV + UV +Face 8989 +UV Count: 3 + UV + UV + UV +Face 8990 +UV Count: 3 + UV + UV + UV +Face 8991 +UV Count: 3 + UV + UV + UV +Face 8992 +UV Count: 3 + UV + UV + UV +Face 8993 +UV Count: 3 + UV + UV + UV +Face 8994 +UV Count: 3 + UV + UV + UV +Face 8995 +UV Count: 3 + UV + UV + UV +Face 8996 +UV Count: 3 + UV + UV + UV +Face 8997 +UV Count: 3 + UV + UV + UV +Face 8998 +UV Count: 3 + UV + UV + UV +Face 8999 +UV Count: 3 + UV + UV + UV +Face 9000 +UV Count: 3 + UV + UV + UV +Face 9001 +UV Count: 3 + UV + UV + UV +Face 9002 +UV Count: 3 + UV + UV + UV +Face 9003 +UV Count: 3 + UV + UV + UV +Face 9004 +UV Count: 3 + UV + UV + UV +Face 9005 +UV Count: 3 + UV + UV + UV +Face 9006 +UV Count: 3 + UV + UV + UV +Face 9007 +UV Count: 3 + UV + UV + UV +Face 9008 +UV Count: 3 + UV + UV + UV +Face 9009 +UV Count: 3 + UV + UV + UV +Face 9010 +UV Count: 3 + UV + UV + UV +Face 9011 +UV Count: 3 + UV + UV + UV +Face 9012 +UV Count: 3 + UV + UV + UV +Face 9013 +UV Count: 3 + UV + UV + UV +Face 9014 +UV Count: 3 + UV + UV + UV +Face 9015 +UV Count: 3 + UV + UV + UV +Face 9016 +UV Count: 3 + UV + UV + UV +Face 9017 +UV Count: 3 + UV + UV + UV +Face 9018 +UV Count: 3 + UV + UV + UV +Face 9019 +UV Count: 3 + UV + UV + UV +Face 9020 +UV Count: 3 + UV + UV + UV +Face 9021 +UV Count: 3 + UV + UV + UV +Face 9022 +UV Count: 3 + UV + UV + UV +Face 9023 +UV Count: 3 + UV + UV + UV +Face 9024 +UV Count: 3 + UV + UV + UV +Face 9025 +UV Count: 3 + UV + UV + UV +Face 9026 +UV Count: 3 + UV + UV + UV +Face 9027 +UV Count: 3 + UV + UV + UV +Face 9028 +UV Count: 3 + UV + UV + UV +Face 9029 +UV Count: 3 + UV + UV + UV +Face 9030 +UV Count: 3 + UV + UV + UV +Face 9031 +UV Count: 3 + UV + UV + UV +Face 9032 +UV Count: 3 + UV + UV + UV +Face 9033 +UV Count: 3 + UV + UV + UV +Face 9034 +UV Count: 3 + UV + UV + UV +Face 9035 +UV Count: 3 + UV + UV + UV +Face 9036 +UV Count: 3 + UV + UV + UV +Face 9037 +UV Count: 3 + UV + UV + UV +Face 9038 +UV Count: 3 + UV + UV + UV +Face 9039 +UV Count: 3 + UV + UV + UV +Face 9040 +UV Count: 3 + UV + UV + UV +Face 9041 +UV Count: 3 + UV + UV + UV +Face 9042 +UV Count: 3 + UV + UV + UV +Face 9043 +UV Count: 3 + UV + UV + UV +Face 9044 +UV Count: 3 + UV + UV + UV +Face 9045 +UV Count: 3 + UV + UV + UV +Face 9046 +UV Count: 3 + UV + UV + UV +Face 9047 +UV Count: 3 + UV + UV + UV +Face 9048 +UV Count: 3 + UV + UV + UV +Face 9049 +UV Count: 3 + UV + UV + UV +Face 9050 +UV Count: 3 + UV + UV + UV +Face 9051 +UV Count: 3 + UV + UV + UV +Face 9052 +UV Count: 3 + UV + UV + UV +Face 9053 +UV Count: 3 + UV + UV + UV +Face 9054 +UV Count: 3 + UV + UV + UV +Face 9055 +UV Count: 3 + UV + UV + UV +Face 9056 +UV Count: 3 + UV + UV + UV +Face 9057 +UV Count: 3 + UV + UV + UV +Face 9058 +UV Count: 3 + UV + UV + UV +Face 9059 +UV Count: 3 + UV + UV + UV +Face 9060 +UV Count: 3 + UV + UV + UV +Face 9061 +UV Count: 3 + UV + UV + UV +Face 9062 +UV Count: 3 + UV + UV + UV +Face 9063 +UV Count: 3 + UV + UV + UV +Face 9064 +UV Count: 3 + UV + UV + UV +Face 9065 +UV Count: 3 + UV + UV + UV +Face 9066 +UV Count: 3 + UV + UV + UV +Face 9067 +UV Count: 3 + UV + UV + UV +Face 9068 +UV Count: 3 + UV + UV + UV +Face 9069 +UV Count: 3 + UV + UV + UV +Face 9070 +UV Count: 3 + UV + UV + UV +Face 9071 +UV Count: 3 + UV + UV + UV +Face 9072 +UV Count: 3 + UV + UV + UV +Face 9073 +UV Count: 3 + UV + UV + UV +Face 9074 +UV Count: 3 + UV + UV + UV +Face 9075 +UV Count: 3 + UV + UV + UV +Face 9076 +UV Count: 3 + UV + UV + UV +Face 9077 +UV Count: 3 + UV + UV + UV +Face 9078 +UV Count: 3 + UV + UV + UV +Face 9079 +UV Count: 3 + UV + UV + UV +Face 9080 +UV Count: 3 + UV + UV + UV +Face 9081 +UV Count: 3 + UV + UV + UV +Face 9082 +UV Count: 3 + UV + UV + UV +Face 9083 +UV Count: 3 + UV + UV + UV +Face 9084 +UV Count: 3 + UV + UV + UV +Face 9085 +UV Count: 3 + UV + UV + UV +Face 9086 +UV Count: 3 + UV + UV + UV +Face 9087 +UV Count: 3 + UV + UV + UV +Face 9088 +UV Count: 3 + UV + UV + UV +Face 9089 +UV Count: 3 + UV + UV + UV +Face 9090 +UV Count: 3 + UV + UV + UV +Face 9091 +UV Count: 3 + UV + UV + UV +Face 9092 +UV Count: 3 + UV + UV + UV +Face 9093 +UV Count: 3 + UV + UV + UV +Face 9094 +UV Count: 3 + UV + UV + UV +Face 9095 +UV Count: 3 + UV + UV + UV +Face 9096 +UV Count: 3 + UV + UV + UV +Face 9097 +UV Count: 3 + UV + UV + UV +Face 9098 +UV Count: 3 + UV + UV + UV +Face 9099 +UV Count: 3 + UV + UV + UV +Face 9100 +UV Count: 3 + UV + UV + UV +Face 9101 +UV Count: 3 + UV + UV + UV +Face 9102 +UV Count: 3 + UV + UV + UV +Face 9103 +UV Count: 3 + UV + UV + UV +Face 9104 +UV Count: 3 + UV + UV + UV +Face 9105 +UV Count: 3 + UV + UV + UV +Face 9106 +UV Count: 3 + UV + UV + UV +Face 9107 +UV Count: 3 + UV + UV + UV +Face 9108 +UV Count: 3 + UV + UV + UV +Face 9109 +UV Count: 3 + UV + UV + UV +Face 9110 +UV Count: 3 + UV + UV + UV +Face 9111 +UV Count: 3 + UV + UV + UV +Face 9112 +UV Count: 3 + UV + UV + UV +Face 9113 +UV Count: 3 + UV + UV + UV +Face 9114 +UV Count: 3 + UV + UV + UV +Face 9115 +UV Count: 3 + UV + UV + UV +Face 9116 +UV Count: 3 + UV + UV + UV +Face 9117 +UV Count: 3 + UV + UV + UV +Face 9118 +UV Count: 3 + UV + UV + UV +Face 9119 +UV Count: 3 + UV + UV + UV +Face 9120 +UV Count: 3 + UV + UV + UV +Face 9121 +UV Count: 3 + UV + UV + UV +Face 9122 +UV Count: 3 + UV + UV + UV +Face 9123 +UV Count: 3 + UV + UV + UV +Face 9124 +UV Count: 3 + UV + UV + UV +Face 9125 +UV Count: 3 + UV + UV + UV +Face 9126 +UV Count: 3 + UV + UV + UV +Face 9127 +UV Count: 3 + UV + UV + UV +Face 9128 +UV Count: 3 + UV + UV + UV +Face 9129 +UV Count: 3 + UV + UV + UV +Face 9130 +UV Count: 3 + UV + UV + UV +Face 9131 +UV Count: 3 + UV + UV + UV +Face 9132 +UV Count: 3 + UV + UV + UV +Face 9133 +UV Count: 3 + UV + UV + UV +Face 9134 +UV Count: 3 + UV + UV + UV +Face 9135 +UV Count: 3 + UV + UV + UV +Face 9136 +UV Count: 3 + UV + UV + UV +Face 9137 +UV Count: 3 + UV + UV + UV +Face 9138 +UV Count: 3 + UV + UV + UV +Face 9139 +UV Count: 3 + UV + UV + UV +Face 9140 +UV Count: 3 + UV + UV + UV +Face 9141 +UV Count: 3 + UV + UV + UV +Face 9142 +UV Count: 3 + UV + UV + UV +Face 9143 +UV Count: 3 + UV + UV + UV +Face 9144 +UV Count: 3 + UV + UV + UV +Face 9145 +UV Count: 3 + UV + UV + UV +Face 9146 +UV Count: 3 + UV + UV + UV +Face 9147 +UV Count: 3 + UV + UV + UV +Face 9148 +UV Count: 3 + UV + UV + UV +Face 9149 +UV Count: 3 + UV + UV + UV +Face 9150 +UV Count: 3 + UV + UV + UV +Face 9151 +UV Count: 3 + UV + UV + UV +Face 9152 +UV Count: 3 + UV + UV + UV +Face 9153 +UV Count: 3 + UV + UV + UV +Face 9154 +UV Count: 3 + UV + UV + UV +Face 9155 +UV Count: 3 + UV + UV + UV +Face 9156 +UV Count: 3 + UV + UV + UV +Face 9157 +UV Count: 3 + UV + UV + UV +Face 9158 +UV Count: 3 + UV + UV + UV +Face 9159 +UV Count: 3 + UV + UV + UV +Face 9160 +UV Count: 3 + UV + UV + UV +Face 9161 +UV Count: 3 + UV + UV + UV +Face 9162 +UV Count: 3 + UV + UV + UV +Face 9163 +UV Count: 3 + UV + UV + UV +Face 9164 +UV Count: 3 + UV + UV + UV +Face 9165 +UV Count: 3 + UV + UV + UV +Face 9166 +UV Count: 3 + UV + UV + UV +Face 9167 +UV Count: 3 + UV + UV + UV +Face 9168 +UV Count: 3 + UV + UV + UV +Face 9169 +UV Count: 3 + UV + UV + UV +Face 9170 +UV Count: 3 + UV + UV + UV +Face 9171 +UV Count: 3 + UV + UV + UV +Face 9172 +UV Count: 3 + UV + UV + UV +Face 9173 +UV Count: 3 + UV + UV + UV +Face 9174 +UV Count: 3 + UV + UV + UV +Face 9175 +UV Count: 3 + UV + UV + UV +Face 9176 +UV Count: 3 + UV + UV + UV +Face 9177 +UV Count: 3 + UV + UV + UV +Face 9178 +UV Count: 3 + UV + UV + UV +Face 9179 +UV Count: 3 + UV + UV + UV +Face 9180 +UV Count: 3 + UV + UV + UV +Face 9181 +UV Count: 3 + UV + UV + UV +Face 9182 +UV Count: 3 + UV + UV + UV +Face 9183 +UV Count: 3 + UV + UV + UV +Face 9184 +UV Count: 3 + UV + UV + UV +Face 9185 +UV Count: 3 + UV + UV + UV +Face 9186 +UV Count: 3 + UV + UV + UV +Face 9187 +UV Count: 3 + UV + UV + UV +Face 9188 +UV Count: 3 + UV + UV + UV +Face 9189 +UV Count: 3 + UV + UV + UV +Face 9190 +UV Count: 3 + UV + UV + UV +Face 9191 +UV Count: 3 + UV + UV + UV +Face 9192 +UV Count: 3 + UV + UV + UV +Face 9193 +UV Count: 3 + UV + UV + UV +Face 9194 +UV Count: 3 + UV + UV + UV +Face 9195 +UV Count: 3 + UV + UV + UV +Face 9196 +UV Count: 3 + UV + UV + UV +Face 9197 +UV Count: 3 + UV + UV + UV +Face 9198 +UV Count: 3 + UV + UV + UV +Face 9199 +UV Count: 3 + UV + UV + UV +Face 9200 +UV Count: 3 + UV + UV + UV +Face 9201 +UV Count: 3 + UV + UV + UV +Face 9202 +UV Count: 3 + UV + UV + UV +Face 9203 +UV Count: 3 + UV + UV + UV +Face 9204 +UV Count: 3 + UV + UV + UV +Face 9205 +UV Count: 3 + UV + UV + UV +Face 9206 +UV Count: 3 + UV + UV + UV +Face 9207 +UV Count: 3 + UV + UV + UV +Face 9208 +UV Count: 3 + UV + UV + UV +Face 9209 +UV Count: 3 + UV + UV + UV +Face 9210 +UV Count: 3 + UV + UV + UV +Face 9211 +UV Count: 3 + UV + UV + UV +Face 9212 +UV Count: 3 + UV + UV + UV +Face 9213 +UV Count: 3 + UV + UV + UV +Face 9214 +UV Count: 3 + UV + UV + UV +Face 9215 +UV Count: 3 + UV + UV + UV +Face 9216 +UV Count: 3 + UV + UV + UV +Face 9217 +UV Count: 3 + UV + UV + UV +Face 9218 +UV Count: 3 + UV + UV + UV +Face 9219 +UV Count: 3 + UV + UV + UV +Face 9220 +UV Count: 3 + UV + UV + UV +Face 9221 +UV Count: 3 + UV + UV + UV +Face 9222 +UV Count: 3 + UV + UV + UV +Face 9223 +UV Count: 3 + UV + UV + UV +Face 9224 +UV Count: 3 + UV + UV + UV +Face 9225 +UV Count: 3 + UV + UV + UV +Face 9226 +UV Count: 3 + UV + UV + UV +Face 9227 +UV Count: 3 + UV + UV + UV +Face 9228 +UV Count: 3 + UV + UV + UV +Face 9229 +UV Count: 3 + UV + UV + UV +Face 9230 +UV Count: 3 + UV + UV + UV +Face 9231 +UV Count: 3 + UV + UV + UV +Face 9232 +UV Count: 3 + UV + UV + UV +Face 9233 +UV Count: 3 + UV + UV + UV +Face 9234 +UV Count: 3 + UV + UV + UV +Face 9235 +UV Count: 3 + UV + UV + UV +Face 9236 +UV Count: 3 + UV + UV + UV +Face 9237 +UV Count: 3 + UV + UV + UV +Face 9238 +UV Count: 3 + UV + UV + UV +Face 9239 +UV Count: 3 + UV + UV + UV +Face 9240 +UV Count: 3 + UV + UV + UV +Face 9241 +UV Count: 3 + UV + UV + UV +Face 9242 +UV Count: 3 + UV + UV + UV +Face 9243 +UV Count: 3 + UV + UV + UV +Face 9244 +UV Count: 3 + UV + UV + UV +Face 9245 +UV Count: 3 + UV + UV + UV +Face 9246 +UV Count: 3 + UV + UV + UV +Face 9247 +UV Count: 3 + UV + UV + UV +Face 9248 +UV Count: 3 + UV + UV + UV +Face 9249 +UV Count: 3 + UV + UV + UV +Face 9250 +UV Count: 3 + UV + UV + UV +Face 9251 +UV Count: 3 + UV + UV + UV +Face 9252 +UV Count: 3 + UV + UV + UV +Face 9253 +UV Count: 3 + UV + UV + UV +Face 9254 +UV Count: 3 + UV + UV + UV +Face 9255 +UV Count: 3 + UV + UV + UV +Face 9256 +UV Count: 3 + UV + UV + UV +Face 9257 +UV Count: 3 + UV + UV + UV +Face 9258 +UV Count: 3 + UV + UV + UV +Face 9259 +UV Count: 3 + UV + UV + UV +Face 9260 +UV Count: 3 + UV + UV + UV +Face 9261 +UV Count: 3 + UV + UV + UV +Face 9262 +UV Count: 3 + UV + UV + UV +Face 9263 +UV Count: 3 + UV + UV + UV +Face 9264 +UV Count: 3 + UV + UV + UV +Face 9265 +UV Count: 3 + UV + UV + UV +Face 9266 +UV Count: 3 + UV + UV + UV +Face 9267 +UV Count: 3 + UV + UV + UV +Face 9268 +UV Count: 3 + UV + UV + UV +Face 9269 +UV Count: 3 + UV + UV + UV +Face 9270 +UV Count: 3 + UV + UV + UV +Face 9271 +UV Count: 3 + UV + UV + UV +Face 9272 +UV Count: 3 + UV + UV + UV +Face 9273 +UV Count: 3 + UV + UV + UV +Face 9274 +UV Count: 3 + UV + UV + UV +Face 9275 +UV Count: 3 + UV + UV + UV +Face 9276 +UV Count: 3 + UV + UV + UV +Face 9277 +UV Count: 3 + UV + UV + UV +Face 9278 +UV Count: 3 + UV + UV + UV +Face 9279 +UV Count: 3 + UV + UV + UV +Face 9280 +UV Count: 3 + UV + UV + UV +Face 9281 +UV Count: 3 + UV + UV + UV +Face 9282 +UV Count: 3 + UV + UV + UV +Face 9283 +UV Count: 3 + UV + UV + UV +Face 9284 +UV Count: 3 + UV + UV + UV +Face 9285 +UV Count: 3 + UV + UV + UV +Face 9286 +UV Count: 3 + UV + UV + UV +Face 9287 +UV Count: 3 + UV + UV + UV +Face 9288 +UV Count: 3 + UV + UV + UV +Face 9289 +UV Count: 3 + UV + UV + UV +Face 9290 +UV Count: 3 + UV + UV + UV +Face 9291 +UV Count: 3 + UV + UV + UV +Face 9292 +UV Count: 3 + UV + UV + UV +Face 9293 +UV Count: 3 + UV + UV + UV +Face 9294 +UV Count: 3 + UV + UV + UV +Face 9295 +UV Count: 3 + UV + UV + UV +Face 9296 +UV Count: 3 + UV + UV + UV +Face 9297 +UV Count: 3 + UV + UV + UV +Face 9298 +UV Count: 3 + UV + UV + UV +Face 9299 +UV Count: 3 + UV + UV + UV +Face 9300 +UV Count: 3 + UV + UV + UV +Face 9301 +UV Count: 3 + UV + UV + UV +Face 9302 +UV Count: 3 + UV + UV + UV +Face 9303 +UV Count: 3 + UV + UV + UV +Face 9304 +UV Count: 3 + UV + UV + UV +Face 9305 +UV Count: 3 + UV + UV + UV +Face 9306 +UV Count: 3 + UV + UV + UV +Face 9307 +UV Count: 3 + UV + UV + UV +Face 9308 +UV Count: 3 + UV + UV + UV +Face 9309 +UV Count: 3 + UV + UV + UV +Face 9310 +UV Count: 3 + UV + UV + UV +Face 9311 +UV Count: 3 + UV + UV + UV +Face 9312 +UV Count: 3 + UV + UV + UV +Face 9313 +UV Count: 3 + UV + UV + UV +Face 9314 +UV Count: 3 + UV + UV + UV +Face 9315 +UV Count: 3 + UV + UV + UV +Face 9316 +UV Count: 3 + UV + UV + UV +Face 9317 +UV Count: 3 + UV + UV + UV +Face 9318 +UV Count: 3 + UV + UV + UV +Face 9319 +UV Count: 3 + UV + UV + UV +Face 9320 +UV Count: 3 + UV + UV + UV +Face 9321 +UV Count: 3 + UV + UV + UV +Face 9322 +UV Count: 3 + UV + UV + UV +Face 9323 +UV Count: 3 + UV + UV + UV +Face 9324 +UV Count: 3 + UV + UV + UV +Face 9325 +UV Count: 3 + UV + UV + UV +Face 9326 +UV Count: 3 + UV + UV + UV +Face 9327 +UV Count: 3 + UV + UV + UV +Face 9328 +UV Count: 3 + UV + UV + UV +Face 9329 +UV Count: 3 + UV + UV + UV +Face 9330 +UV Count: 3 + UV + UV + UV +Face 9331 +UV Count: 3 + UV + UV + UV +Face 9332 +UV Count: 3 + UV + UV + UV +Face 9333 +UV Count: 3 + UV + UV + UV +Face 9334 +UV Count: 3 + UV + UV + UV +Face 9335 +UV Count: 3 + UV + UV + UV +Face 9336 +UV Count: 3 + UV + UV + UV +Face 9337 +UV Count: 3 + UV + UV + UV +Face 9338 +UV Count: 3 + UV + UV + UV +Face 9339 +UV Count: 3 + UV + UV + UV +Face 9340 +UV Count: 3 + UV + UV + UV +Face 9341 +UV Count: 3 + UV + UV + UV +Face 9342 +UV Count: 3 + UV + UV + UV +Face 9343 +UV Count: 3 + UV + UV + UV +Face 9344 +UV Count: 3 + UV + UV + UV +Face 9345 +UV Count: 3 + UV + UV + UV +Face 9346 +UV Count: 3 + UV + UV + UV +Face 9347 +UV Count: 3 + UV + UV + UV +Face 9348 +UV Count: 3 + UV + UV + UV +Face 9349 +UV Count: 3 + UV + UV + UV +Face 9350 +UV Count: 3 + UV + UV + UV +Face 9351 +UV Count: 3 + UV + UV + UV +Face 9352 +UV Count: 3 + UV + UV + UV +Face 9353 +UV Count: 3 + UV + UV + UV +Face 9354 +UV Count: 3 + UV + UV + UV +Face 9355 +UV Count: 3 + UV + UV + UV +Face 9356 +UV Count: 3 + UV + UV + UV +Face 9357 +UV Count: 3 + UV + UV + UV +Face 9358 +UV Count: 3 + UV + UV + UV +Face 9359 +UV Count: 3 + UV + UV + UV +Face 9360 +UV Count: 3 + UV + UV + UV +Face 9361 +UV Count: 3 + UV + UV + UV +Face 9362 +UV Count: 3 + UV + UV + UV +Face 9363 +UV Count: 3 + UV + UV + UV +Face 9364 +UV Count: 3 + UV + UV + UV +Face 9365 +UV Count: 3 + UV + UV + UV +Face 9366 +UV Count: 3 + UV + UV + UV +Face 9367 +UV Count: 3 + UV + UV + UV +Face 9368 +UV Count: 3 + UV + UV + UV +Face 9369 +UV Count: 3 + UV + UV + UV +Face 9370 +UV Count: 3 + UV + UV + UV +Face 9371 +UV Count: 3 + UV + UV + UV +Face 9372 +UV Count: 3 + UV + UV + UV +Face 9373 +UV Count: 3 + UV + UV + UV +Face 9374 +UV Count: 3 + UV + UV + UV +Face 9375 +UV Count: 3 + UV + UV + UV +Face 9376 +UV Count: 3 + UV + UV + UV +Face 9377 +UV Count: 3 + UV + UV + UV +Face 9378 +UV Count: 3 + UV + UV + UV +Face 9379 +UV Count: 3 + UV + UV + UV +Face 9380 +UV Count: 3 + UV + UV + UV +Face 9381 +UV Count: 3 + UV + UV + UV +Face 9382 +UV Count: 3 + UV + UV + UV +Face 9383 +UV Count: 3 + UV + UV + UV +Face 9384 +UV Count: 3 + UV + UV + UV +Face 9385 +UV Count: 3 + UV + UV + UV +Face 9386 +UV Count: 3 + UV + UV + UV +Face 9387 +UV Count: 3 + UV + UV + UV +Face 9388 +UV Count: 3 + UV + UV + UV +Face 9389 +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 +Vertex 2660: Normal +Vertex 2661: Normal +Vertex 2662: Normal +Vertex 2663: Normal +Vertex 2664: Normal +Vertex 2665: Normal +Vertex 2666: Normal +Vertex 2667: Normal +Vertex 2668: Normal +Vertex 2669: Normal +Vertex 2670: Normal +Vertex 2671: Normal +Vertex 2672: Normal +Vertex 2673: Normal +Vertex 2674: Normal +Vertex 2675: Normal +Vertex 2676: Normal +Vertex 2677: Normal +Vertex 2678: Normal +Vertex 2679: Normal +Vertex 2680: Normal +Vertex 2681: Normal +Vertex 2682: Normal +Vertex 2683: Normal +Vertex 2684: Normal +Vertex 2685: Normal +Vertex 2686: Normal +Vertex 2687: Normal +Vertex 2688: Normal +Vertex 2689: Normal +Vertex 2690: Normal +Vertex 2691: Normal +Vertex 2692: Normal +Vertex 2693: Normal +Vertex 2694: Normal +Vertex 2695: Normal +Vertex 2696: Normal +Vertex 2697: Normal +Vertex 2698: Normal +Vertex 2699: Normal +Vertex 2700: Normal +Vertex 2701: Normal +Vertex 2702: Normal +Vertex 2703: Normal +Vertex 2704: Normal +Vertex 2705: Normal +Vertex 2706: Normal +Vertex 2707: Normal +Vertex 2708: Normal +Vertex 2709: Normal +Vertex 2710: Normal +Vertex 2711: Normal +Vertex 2712: Normal +Vertex 2713: Normal +Vertex 2714: Normal +Vertex 2715: Normal +Vertex 2716: Normal +Vertex 2717: Normal +Vertex 2718: Normal +Vertex 2719: Normal +Vertex 2720: Normal +Vertex 2721: Normal +Vertex 2722: Normal +Vertex 2723: Normal +Vertex 2724: Normal +Vertex 2725: Normal +Vertex 2726: Normal +Vertex 2727: Normal +Vertex 2728: Normal +Vertex 2729: Normal +Vertex 2730: Normal +Vertex 2731: Normal +Vertex 2732: Normal +Vertex 2733: Normal +Vertex 2734: Normal +Vertex 2735: Normal +Vertex 2736: Normal +Vertex 2737: Normal +Vertex 2738: Normal +Vertex 2739: Normal +Vertex 2740: Normal +Vertex 2741: Normal +Vertex 2742: Normal +Vertex 2743: Normal +Vertex 2744: Normal +Vertex 2745: Normal +Vertex 2746: Normal +Vertex 2747: Normal +Vertex 2748: Normal +Vertex 2749: Normal +Vertex 2750: Normal +Vertex 2751: Normal +Vertex 2752: Normal +Vertex 2753: Normal +Vertex 2754: Normal +Vertex 2755: Normal +Vertex 2756: Normal +Vertex 2757: Normal +Vertex 2758: Normal +Vertex 2759: Normal +Vertex 2760: Normal +Vertex 2761: Normal +Vertex 2762: Normal +Vertex 2763: Normal +Vertex 2764: Normal +Vertex 2765: Normal +Vertex 2766: Normal +Vertex 2767: Normal +Vertex 2768: Normal +Vertex 2769: Normal +Vertex 2770: Normal +Vertex 2771: Normal +Vertex 2772: Normal +Vertex 2773: Normal +Vertex 2774: Normal +Vertex 2775: Normal +Vertex 2776: Normal +Vertex 2777: Normal +Vertex 2778: Normal +Vertex 2779: Normal +Vertex 2780: Normal +Vertex 2781: Normal +Vertex 2782: Normal +Vertex 2783: Normal +Vertex 2784: Normal +Vertex 2785: Normal +Vertex 2786: Normal +Vertex 2787: Normal +Vertex 2788: Normal +Vertex 2789: Normal +Vertex 2790: Normal +Vertex 2791: Normal +Vertex 2792: Normal +Vertex 2793: Normal +Vertex 2794: Normal +Vertex 2795: Normal +Vertex 2796: Normal +Vertex 2797: Normal +Vertex 2798: Normal +Vertex 2799: Normal +Vertex 2800: Normal +Vertex 2801: Normal +Vertex 2802: Normal +Vertex 2803: Normal +Vertex 2804: Normal +Vertex 2805: Normal +Vertex 2806: Normal +Vertex 2807: Normal +Vertex 2808: Normal +Vertex 2809: Normal +Vertex 2810: Normal +Vertex 2811: Normal +Vertex 2812: Normal +Vertex 2813: Normal +Vertex 2814: Normal +Vertex 2815: Normal +Vertex 2816: Normal +Vertex 2817: Normal +Vertex 2818: Normal +Vertex 2819: Normal +Vertex 2820: Normal +Vertex 2821: Normal +Vertex 2822: Normal +Vertex 2823: Normal +Vertex 2824: Normal +Vertex 2825: Normal +Vertex 2826: Normal +Vertex 2827: Normal +Vertex 2828: Normal +Vertex 2829: Normal +Vertex 2830: Normal +Vertex 2831: Normal +Vertex 2832: Normal +Vertex 2833: Normal +Vertex 2834: Normal +Vertex 2835: Normal +Vertex 2836: Normal +Vertex 2837: Normal +Vertex 2838: Normal +Vertex 2839: Normal +Vertex 2840: Normal +Vertex 2841: Normal +Vertex 2842: Normal +Vertex 2843: Normal +Vertex 2844: Normal +Vertex 2845: Normal +Vertex 2846: Normal +Vertex 2847: Normal +Vertex 2848: Normal +Vertex 2849: Normal +Vertex 2850: Normal +Vertex 2851: Normal +Vertex 2852: Normal +Vertex 2853: Normal +Vertex 2854: Normal +Vertex 2855: Normal +Vertex 2856: Normal +Vertex 2857: Normal +Vertex 2858: Normal +Vertex 2859: Normal +Vertex 2860: Normal +Vertex 2861: Normal +Vertex 2862: Normal +Vertex 2863: Normal +Vertex 2864: Normal +Vertex 2865: Normal +Vertex 2866: Normal +Vertex 2867: Normal +Vertex 2868: Normal +Vertex 2869: Normal +Vertex 2870: Normal +Vertex 2871: Normal +Vertex 2872: Normal +Vertex 2873: Normal +Vertex 2874: Normal +Vertex 2875: Normal +Vertex 2876: Normal +Vertex 2877: Normal +Vertex 2878: Normal +Vertex 2879: Normal +Vertex 2880: Normal +Vertex 2881: Normal +Vertex 2882: Normal +Vertex 2883: Normal +Vertex 2884: Normal +Vertex 2885: Normal +Vertex 2886: Normal +Vertex 2887: Normal +Vertex 2888: Normal +Vertex 2889: Normal +Vertex 2890: Normal +Vertex 2891: Normal +Vertex 2892: Normal +Vertex 2893: Normal +Vertex 2894: Normal +Vertex 2895: Normal +Vertex 2896: Normal +Vertex 2897: Normal +Vertex 2898: Normal +Vertex 2899: Normal +Vertex 2900: Normal +Vertex 2901: Normal +Vertex 2902: Normal +Vertex 2903: Normal +Vertex 2904: Normal +Vertex 2905: Normal +Vertex 2906: Normal +Vertex 2907: Normal +Vertex 2908: Normal +Vertex 2909: Normal +Vertex 2910: Normal +Vertex 2911: Normal +Vertex 2912: Normal +Vertex 2913: Normal +Vertex 2914: Normal +Vertex 2915: Normal +Vertex 2916: Normal +Vertex 2917: Normal +Vertex 2918: Normal +Vertex 2919: Normal +Vertex 2920: Normal +Vertex 2921: Normal +Vertex 2922: Normal +Vertex 2923: Normal +Vertex 2924: Normal +Vertex 2925: Normal +Vertex 2926: Normal +Vertex 2927: Normal +Vertex 2928: Normal +Vertex 2929: Normal +Vertex 2930: Normal +Vertex 2931: Normal +Vertex 2932: Normal +Vertex 2933: Normal +Vertex 2934: Normal +Vertex 2935: Normal +Vertex 2936: Normal +Vertex 2937: Normal +Vertex 2938: Normal +Vertex 2939: Normal +Vertex 2940: Normal +Vertex 2941: Normal +Vertex 2942: Normal +Vertex 2943: Normal +Vertex 2944: Normal +Vertex 2945: Normal +Vertex 2946: Normal +Vertex 2947: Normal +Vertex 2948: Normal +Vertex 2949: Normal +Vertex 2950: Normal +Vertex 2951: Normal +Vertex 2952: Normal +Vertex 2953: Normal +Vertex 2954: Normal +Vertex 2955: Normal +Vertex 2956: Normal +Vertex 2957: Normal +Vertex 2958: Normal +Vertex 2959: Normal +Vertex 2960: Normal +Vertex 2961: Normal +Vertex 2962: Normal +Vertex 2963: Normal +Vertex 2964: Normal +Vertex 2965: Normal +Vertex 2966: Normal +Vertex 2967: Normal +Vertex 2968: Normal +Vertex 2969: Normal +Vertex 2970: Normal +Vertex 2971: Normal +Vertex 2972: Normal +Vertex 2973: Normal +Vertex 2974: Normal +Vertex 2975: Normal +Vertex 2976: Normal +Vertex 2977: Normal +Vertex 2978: Normal +Vertex 2979: Normal +Vertex 2980: Normal +Vertex 2981: Normal +Vertex 2982: Normal +Vertex 2983: Normal +Vertex 2984: Normal +Vertex 2985: Normal +Vertex 2986: Normal +Vertex 2987: Normal +Vertex 2988: Normal +Vertex 2989: Normal +Vertex 2990: Normal +Vertex 2991: Normal +Vertex 2992: Normal +Vertex 2993: Normal +Vertex 2994: Normal +Vertex 2995: Normal +Vertex 2996: Normal +Vertex 2997: Normal +Vertex 2998: Normal +Vertex 2999: Normal +Vertex 3000: Normal +Vertex 3001: Normal +Vertex 3002: Normal +Vertex 3003: Normal +Vertex 3004: Normal +Vertex 3005: Normal +Vertex 3006: Normal +Vertex 3007: Normal +Vertex 3008: Normal +Vertex 3009: Normal +Vertex 3010: Normal +Vertex 3011: Normal +Vertex 3012: Normal +Vertex 3013: Normal +Vertex 3014: Normal +Vertex 3015: Normal +Vertex 3016: Normal +Vertex 3017: Normal +Vertex 3018: Normal +Vertex 3019: Normal +Vertex 3020: Normal +Vertex 3021: Normal +Vertex 3022: Normal +Vertex 3023: Normal +Vertex 3024: Normal +Vertex 3025: Normal +Vertex 3026: Normal +Vertex 3027: Normal +Vertex 3028: Normal +Vertex 3029: Normal +Vertex 3030: Normal +Vertex 3031: Normal +Vertex 3032: Normal +Vertex 3033: Normal +Vertex 3034: Normal +Vertex 3035: Normal +Vertex 3036: Normal +Vertex 3037: Normal +Vertex 3038: Normal +Vertex 3039: Normal +Vertex 3040: Normal +Vertex 3041: Normal +Vertex 3042: Normal +Vertex 3043: Normal +Vertex 3044: Normal +Vertex 3045: Normal +Vertex 3046: Normal +Vertex 3047: Normal +Vertex 3048: Normal +Vertex 3049: Normal +Vertex 3050: Normal +Vertex 3051: Normal +Vertex 3052: Normal +Vertex 3053: Normal +Vertex 3054: Normal +Vertex 3055: Normal +Vertex 3056: Normal +Vertex 3057: Normal +Vertex 3058: Normal +Vertex 3059: Normal +Vertex 3060: Normal +Vertex 3061: Normal +Vertex 3062: Normal +Vertex 3063: Normal +Vertex 3064: Normal +Vertex 3065: Normal +Vertex 3066: Normal +Vertex 3067: Normal +Vertex 3068: Normal +Vertex 3069: Normal +Vertex 3070: Normal +Vertex 3071: Normal +Vertex 3072: Normal +Vertex 3073: Normal +Vertex 3074: Normal +Vertex 3075: Normal +Vertex 3076: Normal +Vertex 3077: Normal +Vertex 3078: Normal +Vertex 3079: Normal +Vertex 3080: Normal +Vertex 3081: Normal +Vertex 3082: Normal +Vertex 3083: Normal +Vertex 3084: Normal +Vertex 3085: Normal +Vertex 3086: Normal +Vertex 3087: Normal +Vertex 3088: Normal +Vertex 3089: Normal +Vertex 3090: Normal +Vertex 3091: Normal +Vertex 3092: Normal +Vertex 3093: Normal +Vertex 3094: Normal +Vertex 3095: Normal +Vertex 3096: Normal +Vertex 3097: Normal +Vertex 3098: Normal +Vertex 3099: Normal +Vertex 3100: Normal +Vertex 3101: Normal +Vertex 3102: Normal +Vertex 3103: Normal +Vertex 3104: Normal +Vertex 3105: Normal +Vertex 3106: Normal +Vertex 3107: Normal +Vertex 3108: Normal +Vertex 3109: Normal +Vertex 3110: Normal +Vertex 3111: Normal +Vertex 3112: Normal +Vertex 3113: Normal +Vertex 3114: Normal +Vertex 3115: Normal +Vertex 3116: Normal +Vertex 3117: Normal +Vertex 3118: Normal +Vertex 3119: Normal +Vertex 3120: Normal +Vertex 3121: Normal +Vertex 3122: Normal +Vertex 3123: Normal +Vertex 3124: Normal +Vertex 3125: Normal +Vertex 3126: Normal +Vertex 3127: Normal +Vertex 3128: Normal +Vertex 3129: Normal +Vertex 3130: Normal +Vertex 3131: Normal +Vertex 3132: Normal +Vertex 3133: Normal +Vertex 3134: Normal +Vertex 3135: Normal +Vertex 3136: Normal +Vertex 3137: Normal +Vertex 3138: Normal +Vertex 3139: Normal +Vertex 3140: Normal +Vertex 3141: Normal +Vertex 3142: Normal +Vertex 3143: Normal +Vertex 3144: Normal +Vertex 3145: Normal +Vertex 3146: Normal +Vertex 3147: Normal +Vertex 3148: Normal +Vertex 3149: Normal +Vertex 3150: Normal +Vertex 3151: Normal +Vertex 3152: Normal +Vertex 3153: Normal +Vertex 3154: Normal +Vertex 3155: Normal +Vertex 3156: Normal +Vertex 3157: Normal +Vertex 3158: Normal +Vertex 3159: Normal +Vertex 3160: Normal +Vertex 3161: Normal +Vertex 3162: Normal +Vertex 3163: Normal +Vertex 3164: Normal +Vertex 3165: Normal +Vertex 3166: Normal +Vertex 3167: Normal +Vertex 3168: Normal +Vertex 3169: Normal +Vertex 3170: Normal +Vertex 3171: Normal +Vertex 3172: Normal +Vertex 3173: Normal +Vertex 3174: Normal +Vertex 3175: Normal +Vertex 3176: Normal +Vertex 3177: Normal +Vertex 3178: Normal +Vertex 3179: Normal +Vertex 3180: Normal +Vertex 3181: Normal +Vertex 3182: Normal +Vertex 3183: Normal +Vertex 3184: Normal +Vertex 3185: Normal +Vertex 3186: Normal +Vertex 3187: Normal +Vertex 3188: Normal +Vertex 3189: Normal +Vertex 3190: Normal +Vertex 3191: Normal +Vertex 3192: Normal +Vertex 3193: Normal +Vertex 3194: Normal +Vertex 3195: Normal +Vertex 3196: Normal +Vertex 3197: Normal +Vertex 3198: Normal +Vertex 3199: Normal +Vertex 3200: Normal +Vertex 3201: Normal +Vertex 3202: Normal +Vertex 3203: Normal +Vertex 3204: Normal +Vertex 3205: Normal +Vertex 3206: Normal +Vertex 3207: Normal +Vertex 3208: Normal +Vertex 3209: Normal +Vertex 3210: Normal +Vertex 3211: Normal +Vertex 3212: Normal +Vertex 3213: Normal +Vertex 3214: Normal +Vertex 3215: Normal +Vertex 3216: Normal +Vertex 3217: Normal +Vertex 3218: Normal +Vertex 3219: Normal +Vertex 3220: Normal +Vertex 3221: Normal +Vertex 3222: Normal +Vertex 3223: Normal +Vertex 3224: Normal +Vertex 3225: Normal +Vertex 3226: Normal +Vertex 3227: Normal +Vertex 3228: Normal +Vertex 3229: Normal +Vertex 3230: Normal +Vertex 3231: Normal +Vertex 3232: Normal +Vertex 3233: Normal +Vertex 3234: Normal +Vertex 3235: Normal +Vertex 3236: Normal +Vertex 3237: Normal +Vertex 3238: Normal +Vertex 3239: Normal +Vertex 3240: Normal +Vertex 3241: Normal +Vertex 3242: Normal +Vertex 3243: Normal +Vertex 3244: Normal +Vertex 3245: Normal +Vertex 3246: Normal +Vertex 3247: Normal +Vertex 3248: Normal +Vertex 3249: Normal +Vertex 3250: Normal +Vertex 3251: Normal +Vertex 3252: Normal +Vertex 3253: Normal +Vertex 3254: Normal +Vertex 3255: Normal +Vertex 3256: Normal +Vertex 3257: Normal +Vertex 3258: Normal +Vertex 3259: Normal +Vertex 3260: Normal +Vertex 3261: Normal +Vertex 3262: Normal +Vertex 3263: Normal +Vertex 3264: Normal +Vertex 3265: Normal +Vertex 3266: Normal +Vertex 3267: Normal +Vertex 3268: Normal +Vertex 3269: Normal +Vertex 3270: Normal +Vertex 3271: Normal +Vertex 3272: Normal +Vertex 3273: Normal +Vertex 3274: Normal +Vertex 3275: Normal +Vertex 3276: Normal +Vertex 3277: Normal +Vertex 3278: Normal +Vertex 3279: Normal +Vertex 3280: Normal +Vertex 3281: Normal +Vertex 3282: Normal +Vertex 3283: Normal +Vertex 3284: Normal +Vertex 3285: Normal +Vertex 3286: Normal +Vertex 3287: Normal +Vertex 3288: Normal +Vertex 3289: Normal +Vertex 3290: Normal +Vertex 3291: Normal +Vertex 3292: Normal +Vertex 3293: Normal +Vertex 3294: Normal +Vertex 3295: Normal +Vertex 3296: Normal +Vertex 3297: Normal +Vertex 3298: Normal +Vertex 3299: Normal +Vertex 3300: Normal +Vertex 3301: Normal +Vertex 3302: Normal +Vertex 3303: Normal +Vertex 3304: Normal +Vertex 3305: Normal +Vertex 3306: Normal +Vertex 3307: Normal +Vertex 3308: Normal +Vertex 3309: Normal +Vertex 3310: Normal +Vertex 3311: Normal +Vertex 3312: Normal +Vertex 3313: Normal +Vertex 3314: Normal +Vertex 3315: Normal +Vertex 3316: Normal +Vertex 3317: Normal +Vertex 3318: Normal +Vertex 3319: Normal +Vertex 3320: Normal +Vertex 3321: Normal +Vertex 3322: Normal +Vertex 3323: Normal +Vertex 3324: Normal +Vertex 3325: Normal +Vertex 3326: Normal +Vertex 3327: Normal +Vertex 3328: Normal +Vertex 3329: Normal +Vertex 3330: Normal +Vertex 3331: Normal +Vertex 3332: Normal +Vertex 3333: Normal +Vertex 3334: Normal +Vertex 3335: Normal +Vertex 3336: Normal +Vertex 3337: Normal +Vertex 3338: Normal +Vertex 3339: Normal +Vertex 3340: Normal +Vertex 3341: Normal +Vertex 3342: Normal +Vertex 3343: Normal +Vertex 3344: Normal +Vertex 3345: Normal +Vertex 3346: Normal +Vertex 3347: Normal +Vertex 3348: Normal +Vertex 3349: Normal +Vertex 3350: Normal +Vertex 3351: Normal +Vertex 3352: Normal +Vertex 3353: Normal +Vertex 3354: Normal +Vertex 3355: Normal +Vertex 3356: Normal +Vertex 3357: Normal +Vertex 3358: Normal +Vertex 3359: Normal +Vertex 3360: Normal +Vertex 3361: Normal +Vertex 3362: Normal +Vertex 3363: Normal +Vertex 3364: Normal +Vertex 3365: Normal +Vertex 3366: Normal +Vertex 3367: Normal +Vertex 3368: Normal +Vertex 3369: Normal +Vertex 3370: Normal +Vertex 3371: Normal +Vertex 3372: Normal +Vertex 3373: Normal +Vertex 3374: Normal +Vertex 3375: Normal +Vertex 3376: Normal +Vertex 3377: Normal +Vertex 3378: Normal +Vertex 3379: Normal +Vertex 3380: Normal +Vertex 3381: Normal +Vertex 3382: Normal +Vertex 3383: Normal +Vertex 3384: Normal +Vertex 3385: Normal +Vertex 3386: Normal +Vertex 3387: Normal +Vertex 3388: Normal +Vertex 3389: Normal +Vertex 3390: Normal +Vertex 3391: Normal +Vertex 3392: Normal +Vertex 3393: Normal +Vertex 3394: Normal +Vertex 3395: Normal +Vertex 3396: Normal +Vertex 3397: Normal +Vertex 3398: Normal +Vertex 3399: Normal +Vertex 3400: Normal +Vertex 3401: Normal +Vertex 3402: Normal +Vertex 3403: Normal +Vertex 3404: Normal +Vertex 3405: Normal +Vertex 3406: Normal +Vertex 3407: Normal +Vertex 3408: Normal +Vertex 3409: Normal +Vertex 3410: Normal +Vertex 3411: Normal +Vertex 3412: Normal +Vertex 3413: Normal +Vertex 3414: Normal +Vertex 3415: Normal +Vertex 3416: Normal +Vertex 3417: Normal +Vertex 3418: Normal +Vertex 3419: Normal +Vertex 3420: Normal +Vertex 3421: Normal +Vertex 3422: Normal +Vertex 3423: Normal +Vertex 3424: Normal +Vertex 3425: Normal +Vertex 3426: Normal +Vertex 3427: Normal +Vertex 3428: Normal +Vertex 3429: Normal +Vertex 3430: Normal +Vertex 3431: Normal +Vertex 3432: Normal +Vertex 3433: Normal +Vertex 3434: Normal +Vertex 3435: Normal +Vertex 3436: Normal +Vertex 3437: Normal +Vertex 3438: Normal +Vertex 3439: Normal +Vertex 3440: Normal +Vertex 3441: Normal +Vertex 3442: Normal +Vertex 3443: Normal +Vertex 3444: Normal +Vertex 3445: Normal +Vertex 3446: Normal +Vertex 3447: Normal +Vertex 3448: Normal +Vertex 3449: Normal +Vertex 3450: Normal +Vertex 3451: Normal +Vertex 3452: Normal +Vertex 3453: Normal +Vertex 3454: Normal +Vertex 3455: Normal +Vertex 3456: Normal +Vertex 3457: Normal +Vertex 3458: Normal +Vertex 3459: Normal +Vertex 3460: Normal +Vertex 3461: Normal +Vertex 3462: Normal +Vertex 3463: Normal +Vertex 3464: Normal +Vertex 3465: Normal +Vertex 3466: Normal +Vertex 3467: Normal +Vertex 3468: Normal +Vertex 3469: Normal +Vertex 3470: Normal +Vertex 3471: Normal +Vertex 3472: Normal +Vertex 3473: Normal +Vertex 3474: Normal +Vertex 3475: Normal +Vertex 3476: Normal +Vertex 3477: Normal +Vertex 3478: Normal +Vertex 3479: Normal +Vertex 3480: Normal +Vertex 3481: Normal +Vertex 3482: Normal +Vertex 3483: Normal +Vertex 3484: Normal +Vertex 3485: Normal +Vertex 3486: Normal +Vertex 3487: Normal +Vertex 3488: Normal +Vertex 3489: Normal +Vertex 3490: Normal +Vertex 3491: Normal +Vertex 3492: Normal +Vertex 3493: Normal +Vertex 3494: Normal +Vertex 3495: Normal +Vertex 3496: Normal +Vertex 3497: Normal +Vertex 3498: Normal +Vertex 3499: Normal +Vertex 3500: Normal +Vertex 3501: Normal +Vertex 3502: Normal +Vertex 3503: Normal +Vertex 3504: Normal +Vertex 3505: Normal +Vertex 3506: Normal +Vertex 3507: Normal +Vertex 3508: Normal +Vertex 3509: Normal +Vertex 3510: Normal +Vertex 3511: Normal +Vertex 3512: Normal +Vertex 3513: Normal +Vertex 3514: Normal +Vertex 3515: Normal +Vertex 3516: Normal +Vertex 3517: Normal +Vertex 3518: Normal +Vertex 3519: Normal +Vertex 3520: Normal +Vertex 3521: Normal +Vertex 3522: Normal +Vertex 3523: Normal +Vertex 3524: Normal +Vertex 3525: Normal +Vertex 3526: Normal +Vertex 3527: Normal +Vertex 3528: Normal +Vertex 3529: Normal +Vertex 3530: Normal +Vertex 3531: Normal +Vertex 3532: Normal +Vertex 3533: Normal +Vertex 3534: Normal +Vertex 3535: Normal +Vertex 3536: Normal +Vertex 3537: Normal +Vertex 3538: Normal +Vertex 3539: Normal +Vertex 3540: Normal +Vertex 3541: Normal +Vertex 3542: Normal +Vertex 3543: Normal +Vertex 3544: Normal +Vertex 3545: Normal +Vertex 3546: Normal +Vertex 3547: Normal +Vertex 3548: Normal +Vertex 3549: Normal +Vertex 3550: Normal +Vertex 3551: Normal +Vertex 3552: Normal +Vertex 3553: Normal +Vertex 3554: Normal +Vertex 3555: Normal +Vertex 3556: Normal +Vertex 3557: Normal +Vertex 3558: Normal +Vertex 3559: Normal +Vertex 3560: Normal +Vertex 3561: Normal +Vertex 3562: Normal +Vertex 3563: Normal +Vertex 3564: Normal +Vertex 3565: Normal +Vertex 3566: Normal +Vertex 3567: Normal +Vertex 3568: Normal +Vertex 3569: Normal +Vertex 3570: Normal +Vertex 3571: Normal +Vertex 3572: Normal +Vertex 3573: Normal +Vertex 3574: Normal +Vertex 3575: Normal +Vertex 3576: Normal +Vertex 3577: Normal +Vertex 3578: Normal +Vertex 3579: Normal +Vertex 3580: Normal +Vertex 3581: Normal +Vertex 3582: Normal +Vertex 3583: Normal +Vertex 3584: Normal +Vertex 3585: Normal +Vertex 3586: Normal +Vertex 3587: Normal +Vertex 3588: Normal +Vertex 3589: Normal +Vertex 3590: Normal +Vertex 3591: Normal +Vertex 3592: Normal +Vertex 3593: Normal +Vertex 3594: Normal +Vertex 3595: Normal +Vertex 3596: Normal +Vertex 3597: Normal +Vertex 3598: Normal +Vertex 3599: Normal +Vertex 3600: Normal +Vertex 3601: Normal +Vertex 3602: Normal +Vertex 3603: Normal +Vertex 3604: Normal +Vertex 3605: Normal +Vertex 3606: Normal +Vertex 3607: Normal +Vertex 3608: Normal +Vertex 3609: Normal +Vertex 3610: Normal +Vertex 3611: Normal +Vertex 3612: Normal +Vertex 3613: Normal +Vertex 3614: Normal +Vertex 3615: Normal +Vertex 3616: Normal +Vertex 3617: Normal +Vertex 3618: Normal +Vertex 3619: Normal +Vertex 3620: Normal +Vertex 3621: Normal +Vertex 3622: Normal +Vertex 3623: Normal +Vertex 3624: Normal +Vertex 3625: Normal +Vertex 3626: Normal +Vertex 3627: Normal +Vertex 3628: Normal +Vertex 3629: Normal +Vertex 3630: Normal +Vertex 3631: Normal +Vertex 3632: Normal +Vertex 3633: Normal +Vertex 3634: Normal +Vertex 3635: Normal +Vertex 3636: Normal +Vertex 3637: Normal +Vertex 3638: Normal +Vertex 3639: Normal +Vertex 3640: Normal +Vertex 3641: Normal +Vertex 3642: Normal +Vertex 3643: Normal +Vertex 3644: Normal +Vertex 3645: Normal +Vertex 3646: Normal +Vertex 3647: Normal +Vertex 3648: Normal +Vertex 3649: Normal +Vertex 3650: Normal +Vertex 3651: Normal +Vertex 3652: Normal +Vertex 3653: Normal +Vertex 3654: Normal +Vertex 3655: Normal +Vertex 3656: Normal +Vertex 3657: Normal +Vertex 3658: Normal +Vertex 3659: Normal +Vertex 3660: Normal +Vertex 3661: Normal +Vertex 3662: Normal +Vertex 3663: Normal +Vertex 3664: Normal +Vertex 3665: Normal +Vertex 3666: Normal +Vertex 3667: Normal +Vertex 3668: Normal +Vertex 3669: Normal +Vertex 3670: Normal +Vertex 3671: Normal +Vertex 3672: Normal +Vertex 3673: Normal +Vertex 3674: Normal +Vertex 3675: Normal +Vertex 3676: Normal +Vertex 3677: Normal +Vertex 3678: Normal +Vertex 3679: Normal +Vertex 3680: Normal +Vertex 3681: Normal +Vertex 3682: Normal +Vertex 3683: Normal +Vertex 3684: Normal +Vertex 3685: Normal +Vertex 3686: Normal +Vertex 3687: Normal +Vertex 3688: Normal +Vertex 3689: Normal +Vertex 3690: Normal +Vertex 3691: Normal +Vertex 3692: Normal +Vertex 3693: Normal +Vertex 3694: Normal +Vertex 3695: Normal +Vertex 3696: Normal +Vertex 3697: Normal +Vertex 3698: Normal +Vertex 3699: Normal +Vertex 3700: Normal +Vertex 3701: Normal +Vertex 3702: Normal +Vertex 3703: Normal +Vertex 3704: Normal +Vertex 3705: Normal +Vertex 3706: Normal +Vertex 3707: Normal +Vertex 3708: Normal +Vertex 3709: Normal +Vertex 3710: Normal +Vertex 3711: Normal +Vertex 3712: Normal +Vertex 3713: Normal +Vertex 3714: Normal +Vertex 3715: Normal +Vertex 3716: Normal +Vertex 3717: Normal +Vertex 3718: Normal +Vertex 3719: Normal +Vertex 3720: Normal +Vertex 3721: Normal +Vertex 3722: Normal +Vertex 3723: Normal +Vertex 3724: Normal +Vertex 3725: Normal +Vertex 3726: Normal +Vertex 3727: Normal +Vertex 3728: Normal +Vertex 3729: Normal +Vertex 3730: Normal +Vertex 3731: Normal +Vertex 3732: Normal +Vertex 3733: Normal +Vertex 3734: Normal +Vertex 3735: Normal +Vertex 3736: Normal +Vertex 3737: Normal +Vertex 3738: Normal +Vertex 3739: Normal +Vertex 3740: Normal +Vertex 3741: Normal +Vertex 3742: Normal +Vertex 3743: Normal +Vertex 3744: Normal +Vertex 3745: Normal +Vertex 3746: Normal +Vertex 3747: Normal +Vertex 3748: Normal +Vertex 3749: Normal +Vertex 3750: Normal +Vertex 3751: Normal +Vertex 3752: Normal +Vertex 3753: Normal +Vertex 3754: Normal +Vertex 3755: Normal +Vertex 3756: Normal +Vertex 3757: Normal +Vertex 3758: Normal +Vertex 3759: Normal +Vertex 3760: Normal +Vertex 3761: Normal +Vertex 3762: Normal +Vertex 3763: Normal +Vertex 3764: Normal +Vertex 3765: Normal +Vertex 3766: Normal +Vertex 3767: Normal +Vertex 3768: Normal +Vertex 3769: Normal +Vertex 3770: Normal +Vertex 3771: Normal +Vertex 3772: Normal +Vertex 3773: Normal +Vertex 3774: Normal +Vertex 3775: Normal +Vertex 3776: Normal +Vertex 3777: Normal +Vertex 3778: Normal +Vertex 3779: Normal +Vertex 3780: Normal +Vertex 3781: Normal +Vertex 3782: Normal +Vertex 3783: Normal +Vertex 3784: Normal +Vertex 3785: Normal +Vertex 3786: Normal +Vertex 3787: Normal +Vertex 3788: Normal +Vertex 3789: Normal +Vertex 3790: Normal +Vertex 3791: Normal +Vertex 3792: Normal +Vertex 3793: Normal +Vertex 3794: Normal +Vertex 3795: Normal +Vertex 3796: Normal +Vertex 3797: Normal +Vertex 3798: Normal +Vertex 3799: Normal +Vertex 3800: Normal +Vertex 3801: Normal +Vertex 3802: Normal +Vertex 3803: Normal +Vertex 3804: Normal +Vertex 3805: Normal +Vertex 3806: Normal +Vertex 3807: Normal +Vertex 3808: Normal +Vertex 3809: Normal +Vertex 3810: Normal +Vertex 3811: Normal +Vertex 3812: Normal +Vertex 3813: Normal +Vertex 3814: Normal +Vertex 3815: Normal +Vertex 3816: Normal +Vertex 3817: Normal +Vertex 3818: Normal +Vertex 3819: Normal +Vertex 3820: Normal +Vertex 3821: Normal +Vertex 3822: Normal +Vertex 3823: Normal +Vertex 3824: Normal +Vertex 3825: Normal +Vertex 3826: Normal +Vertex 3827: Normal +Vertex 3828: Normal +Vertex 3829: Normal +Vertex 3830: Normal +Vertex 3831: Normal +Vertex 3832: Normal +Vertex 3833: Normal +Vertex 3834: Normal +Vertex 3835: Normal +Vertex 3836: Normal +Vertex 3837: Normal +Vertex 3838: Normal +Vertex 3839: Normal +Vertex 3840: Normal +Vertex 3841: Normal +Vertex 3842: Normal +Vertex 3843: Normal +Vertex 3844: Normal +Vertex 3845: Normal +Vertex 3846: Normal +Vertex 3847: Normal +Vertex 3848: Normal +Vertex 3849: Normal +Vertex 3850: Normal +Vertex 3851: Normal +Vertex 3852: Normal +Vertex 3853: Normal +Vertex 3854: Normal +Vertex 3855: Normal +Vertex 3856: Normal +Vertex 3857: Normal +Vertex 3858: Normal +Vertex 3859: Normal +Vertex 3860: Normal +Vertex 3861: Normal +Vertex 3862: Normal +Vertex 3863: Normal +Vertex 3864: Normal +Vertex 3865: Normal +Vertex 3866: Normal +Vertex 3867: Normal +Vertex 3868: Normal +Vertex 3869: Normal +Vertex 3870: Normal +Vertex 3871: Normal +Vertex 3872: Normal +Vertex 3873: Normal +Vertex 3874: Normal +Vertex 3875: Normal +Vertex 3876: Normal +Vertex 3877: Normal +Vertex 3878: Normal +Vertex 3879: Normal +Vertex 3880: Normal +Vertex 3881: Normal +Vertex 3882: Normal +Vertex 3883: Normal +Vertex 3884: Normal +Vertex 3885: Normal +Vertex 3886: Normal +Vertex 3887: Normal +Vertex 3888: Normal +Vertex 3889: Normal +Vertex 3890: Normal +Vertex 3891: Normal +Vertex 3892: Normal +Vertex 3893: Normal +Vertex 3894: Normal +Vertex 3895: Normal +Vertex 3896: Normal +Vertex 3897: Normal +Vertex 3898: Normal +Vertex 3899: Normal +Vertex 3900: Normal +Vertex 3901: Normal +Vertex 3902: Normal +Vertex 3903: Normal +Vertex 3904: Normal +Vertex 3905: Normal +Vertex 3906: Normal +Vertex 3907: Normal +Vertex 3908: Normal +Vertex 3909: Normal +Vertex 3910: Normal +Vertex 3911: Normal +Vertex 3912: Normal +Vertex 3913: Normal +Vertex 3914: Normal +Vertex 3915: Normal +Vertex 3916: Normal +Vertex 3917: Normal +Vertex 3918: Normal +Vertex 3919: Normal +Vertex 3920: Normal +Vertex 3921: Normal +Vertex 3922: Normal +Vertex 3923: Normal +Vertex 3924: Normal +Vertex 3925: Normal +Vertex 3926: Normal +Vertex 3927: Normal +Vertex 3928: Normal +Vertex 3929: Normal +Vertex 3930: Normal +Vertex 3931: Normal +Vertex 3932: Normal +Vertex 3933: Normal +Vertex 3934: Normal +Vertex 3935: Normal +Vertex 3936: Normal +Vertex 3937: Normal +Vertex 3938: Normal +Vertex 3939: Normal +Vertex 3940: Normal +Vertex 3941: Normal +Vertex 3942: Normal +Vertex 3943: Normal +Vertex 3944: Normal +Vertex 3945: Normal +Vertex 3946: Normal +Vertex 3947: Normal +Vertex 3948: Normal +Vertex 3949: Normal +Vertex 3950: Normal +Vertex 3951: Normal +Vertex 3952: Normal +Vertex 3953: Normal +Vertex 3954: Normal +Vertex 3955: Normal +Vertex 3956: Normal +Vertex 3957: Normal +Vertex 3958: Normal +Vertex 3959: Normal +Vertex 3960: Normal +Vertex 3961: Normal +Vertex 3962: Normal +Vertex 3963: Normal +Vertex 3964: Normal +Vertex 3965: Normal +Vertex 3966: Normal +Vertex 3967: Normal +Vertex 3968: Normal +Vertex 3969: Normal +Vertex 3970: Normal +Vertex 3971: Normal +Vertex 3972: Normal +Vertex 3973: Normal +Vertex 3974: Normal +Vertex 3975: Normal +Vertex 3976: Normal +Vertex 3977: Normal +Vertex 3978: Normal +Vertex 3979: Normal +Vertex 3980: Normal +Vertex 3981: Normal +Vertex 3982: Normal +Vertex 3983: Normal +Vertex 3984: Normal +Vertex 3985: Normal +Vertex 3986: Normal +Vertex 3987: Normal +Vertex 3988: Normal +Vertex 3989: Normal +Vertex 3990: Normal +Vertex 3991: Normal +Vertex 3992: Normal +Vertex 3993: Normal +Vertex 3994: Normal +Vertex 3995: Normal +Vertex 3996: Normal +Vertex 3997: Normal +Vertex 3998: Normal +Vertex 3999: Normal +Vertex 4000: Normal +Vertex 4001: Normal +Vertex 4002: Normal +Vertex 4003: Normal +Vertex 4004: Normal +Vertex 4005: Normal +Vertex 4006: Normal +Vertex 4007: Normal +Vertex 4008: Normal +Vertex 4009: Normal +Vertex 4010: Normal +Vertex 4011: Normal +Vertex 4012: Normal +Vertex 4013: Normal +Vertex 4014: Normal +Vertex 4015: Normal +Vertex 4016: Normal +Vertex 4017: Normal +Vertex 4018: Normal +Vertex 4019: Normal +Vertex 4020: Normal +Vertex 4021: Normal +Vertex 4022: Normal +Vertex 4023: Normal +Vertex 4024: Normal +Vertex 4025: Normal +Vertex 4026: Normal +Vertex 4027: Normal +Vertex 4028: Normal +Vertex 4029: Normal +Vertex 4030: Normal +Vertex 4031: Normal +Vertex 4032: Normal +Vertex 4033: Normal +Vertex 4034: Normal +Vertex 4035: Normal +Vertex 4036: Normal +Vertex 4037: Normal +Vertex 4038: Normal +Vertex 4039: Normal +Vertex 4040: Normal +Vertex 4041: Normal +Vertex 4042: Normal +Vertex 4043: Normal +Vertex 4044: Normal +Vertex 4045: Normal +Vertex 4046: Normal +Vertex 4047: Normal +Vertex 4048: Normal +Vertex 4049: Normal +Vertex 4050: Normal +Vertex 4051: Normal +Vertex 4052: Normal +Vertex 4053: Normal +Vertex 4054: Normal +Vertex 4055: Normal +Vertex 4056: Normal +Vertex 4057: Normal +Vertex 4058: Normal +Vertex 4059: Normal +Vertex 4060: Normal +Vertex 4061: Normal +Vertex 4062: Normal +Vertex 4063: Normal +Vertex 4064: Normal +Vertex 4065: Normal +Vertex 4066: Normal +Vertex 4067: Normal +Vertex 4068: Normal +Vertex 4069: Normal +Vertex 4070: Normal +Vertex 4071: Normal +Vertex 4072: Normal +Vertex 4073: Normal +Vertex 4074: Normal +Vertex 4075: Normal +Vertex 4076: Normal +Vertex 4077: Normal +Vertex 4078: Normal +Vertex 4079: Normal +Vertex 4080: Normal +Vertex 4081: Normal +Vertex 4082: Normal +Vertex 4083: Normal +Vertex 4084: Normal +Vertex 4085: Normal +Vertex 4086: Normal +Vertex 4087: Normal +Vertex 4088: Normal +Vertex 4089: Normal +Vertex 4090: Normal +Vertex 4091: Normal +Vertex 4092: Normal +Vertex 4093: Normal +Vertex 4094: Normal +Vertex 4095: Normal +Vertex 4096: Normal +Vertex 4097: Normal +Vertex 4098: Normal +Vertex 4099: Normal +Vertex 4100: Normal +Vertex 4101: Normal +Vertex 4102: Normal +Vertex 4103: Normal +Vertex 4104: Normal +Vertex 4105: Normal +Vertex 4106: Normal +Vertex 4107: Normal +Vertex 4108: Normal +Vertex 4109: Normal +Vertex 4110: Normal +Vertex 4111: Normal +Vertex 4112: Normal +Vertex 4113: Normal +Vertex 4114: Normal +Vertex 4115: Normal +Vertex 4116: Normal +Vertex 4117: Normal +Vertex 4118: Normal +Vertex 4119: Normal +Vertex 4120: Normal +Vertex 4121: Normal +Vertex 4122: Normal +Vertex 4123: Normal +Vertex 4124: Normal +Vertex 4125: Normal +Vertex 4126: Normal +Vertex 4127: Normal +Vertex 4128: Normal +Vertex 4129: Normal +Vertex 4130: Normal +Vertex 4131: Normal +Vertex 4132: Normal +Vertex 4133: Normal +Vertex 4134: Normal +Vertex 4135: Normal +Vertex 4136: Normal +Vertex 4137: Normal +Vertex 4138: Normal +Vertex 4139: Normal +Vertex 4140: Normal +Vertex 4141: Normal +Vertex 4142: Normal +Vertex 4143: Normal +Vertex 4144: Normal +Vertex 4145: Normal +Vertex 4146: Normal +Vertex 4147: Normal +Vertex 4148: Normal +Vertex 4149: Normal +Vertex 4150: Normal +Vertex 4151: Normal +Vertex 4152: Normal +Vertex 4153: Normal +Vertex 4154: Normal +Vertex 4155: Normal +Vertex 4156: Normal +Vertex 4157: Normal +Vertex 4158: Normal +Vertex 4159: Normal +Vertex 4160: Normal +Vertex 4161: Normal +Vertex 4162: Normal +Vertex 4163: Normal +Vertex 4164: Normal +Vertex 4165: Normal +Vertex 4166: Normal +Vertex 4167: Normal +Vertex 4168: Normal +Vertex 4169: Normal +Vertex 4170: Normal +Vertex 4171: Normal +Vertex 4172: Normal +Vertex 4173: Normal +Vertex 4174: Normal +Vertex 4175: Normal +Vertex 4176: Normal +Vertex 4177: Normal +Vertex 4178: Normal +Vertex 4179: Normal +Vertex 4180: Normal +Vertex 4181: Normal +Vertex 4182: Normal +Vertex 4183: Normal +Vertex 4184: Normal +Vertex 4185: Normal +Vertex 4186: Normal +Vertex 4187: Normal +Vertex 4188: Normal +Vertex 4189: Normal +Vertex 4190: Normal +Vertex 4191: Normal +Vertex 4192: Normal +Vertex 4193: Normal +Vertex 4194: Normal +Vertex 4195: Normal +Vertex 4196: Normal +Vertex 4197: Normal +Vertex 4198: Normal +Vertex 4199: Normal +Vertex 4200: Normal +Vertex 4201: Normal +Vertex 4202: Normal +Vertex 4203: Normal +Vertex 4204: Normal +Vertex 4205: Normal +Vertex 4206: Normal +Vertex 4207: Normal +Vertex 4208: Normal +Vertex 4209: Normal +Vertex 4210: Normal +Vertex 4211: Normal +Vertex 4212: Normal +Vertex 4213: Normal +Vertex 4214: Normal +Vertex 4215: Normal +Vertex 4216: Normal +Vertex 4217: Normal +Vertex 4218: Normal +Vertex 4219: Normal +Vertex 4220: Normal +Vertex 4221: Normal +Vertex 4222: Normal +Vertex 4223: Normal +Vertex 4224: Normal +Vertex 4225: Normal +Vertex 4226: Normal +Vertex 4227: Normal +Vertex 4228: Normal +Vertex 4229: Normal +Vertex 4230: Normal +Vertex 4231: Normal +Vertex 4232: Normal +Vertex 4233: Normal +Vertex 4234: Normal +Vertex 4235: Normal +Vertex 4236: Normal +Vertex 4237: Normal +Vertex 4238: Normal +Vertex 4239: Normal +Vertex 4240: Normal +Vertex 4241: Normal +Vertex 4242: Normal +Vertex 4243: Normal +Vertex 4244: Normal +Vertex 4245: Normal +Vertex 4246: Normal +Vertex 4247: Normal +Vertex 4248: Normal +Vertex 4249: Normal +Vertex 4250: Normal +Vertex 4251: Normal +Vertex 4252: Normal +Vertex 4253: Normal +Vertex 4254: Normal +Vertex 4255: Normal +Vertex 4256: Normal +Vertex 4257: Normal +Vertex 4258: Normal +Vertex 4259: Normal +Vertex 4260: Normal +Vertex 4261: Normal +Vertex 4262: Normal +Vertex 4263: Normal +Vertex 4264: Normal +Vertex 4265: Normal +Vertex 4266: Normal +Vertex 4267: Normal +Vertex 4268: Normal +Vertex 4269: Normal +Vertex 4270: Normal +Vertex 4271: Normal +Vertex 4272: Normal +Vertex 4273: Normal +Vertex 4274: Normal +Vertex 4275: Normal +Vertex 4276: Normal +Vertex 4277: Normal +Vertex 4278: Normal +Vertex 4279: Normal +Vertex 4280: Normal +Vertex 4281: Normal +Vertex 4282: Normal +Vertex 4283: Normal +Vertex 4284: Normal +Vertex 4285: Normal +Vertex 4286: Normal +Vertex 4287: Normal +Vertex 4288: Normal +Vertex 4289: Normal +Vertex 4290: Normal +Vertex 4291: Normal +Vertex 4292: Normal +Vertex 4293: Normal +Vertex 4294: Normal +Vertex 4295: Normal +Vertex 4296: Normal +Vertex 4297: Normal +Vertex 4298: Normal +Vertex 4299: Normal +Vertex 4300: Normal +Vertex 4301: Normal +Vertex 4302: Normal +Vertex 4303: Normal +Vertex 4304: Normal +Vertex 4305: Normal +Vertex 4306: Normal +Vertex 4307: Normal +Vertex 4308: Normal +Vertex 4309: Normal +Vertex 4310: Normal +Vertex 4311: Normal +Vertex 4312: Normal +Vertex 4313: Normal +Vertex 4314: Normal +Vertex 4315: Normal +Vertex 4316: Normal +Vertex 4317: Normal +Vertex 4318: Normal +Vertex 4319: Normal +Vertex 4320: Normal +Vertex 4321: Normal +Vertex 4322: Normal +Vertex 4323: Normal +Vertex 4324: Normal +Vertex 4325: Normal +Vertex 4326: Normal +Vertex 4327: Normal +Vertex 4328: Normal +Vertex 4329: Normal +Vertex 4330: Normal +Vertex 4331: Normal +Vertex 4332: Normal +Vertex 4333: Normal +Vertex 4334: Normal +Vertex 4335: Normal +Vertex 4336: Normal +Vertex 4337: Normal +Vertex 4338: Normal +Vertex 4339: Normal +Vertex 4340: Normal +Vertex 4341: Normal +Vertex 4342: Normal +Vertex 4343: Normal +Vertex 4344: Normal +Vertex 4345: Normal +Vertex 4346: Normal +Vertex 4347: Normal +Vertex 4348: Normal +Vertex 4349: Normal +Vertex 4350: Normal +Vertex 4351: Normal +Vertex 4352: Normal +Vertex 4353: Normal +Vertex 4354: Normal +Vertex 4355: Normal +Vertex 4356: Normal +Vertex 4357: Normal +Vertex 4358: Normal +Vertex 4359: Normal +Vertex 4360: Normal +Vertex 4361: Normal +Vertex 4362: Normal +Vertex 4363: Normal +Vertex 4364: Normal +Vertex 4365: Normal +Vertex 4366: Normal +Vertex 4367: Normal +Vertex 4368: Normal +Vertex 4369: Normal +Vertex 4370: Normal +Vertex 4371: Normal +Vertex 4372: Normal +Vertex 4373: Normal +Vertex 4374: Normal +Vertex 4375: Normal +Vertex 4376: Normal +Vertex 4377: Normal +Vertex 4378: Normal +Vertex 4379: Normal +Vertex 4380: Normal +Vertex 4381: Normal +Vertex 4382: Normal +Vertex 4383: Normal +Vertex 4384: Normal +Vertex 4385: Normal +Vertex 4386: Normal +Vertex 4387: Normal +Vertex 4388: Normal +Vertex 4389: Normal +Vertex 4390: Normal +Vertex 4391: Normal +Vertex 4392: Normal +Vertex 4393: Normal +Vertex 4394: Normal +Vertex 4395: Normal +Vertex 4396: Normal +Vertex 4397: Normal +Vertex 4398: Normal +Vertex 4399: Normal +Vertex 4400: Normal +Vertex 4401: Normal +Vertex 4402: Normal +Vertex 4403: Normal +Vertex 4404: Normal +Vertex 4405: Normal +Vertex 4406: Normal +Vertex 4407: Normal +Vertex 4408: Normal +Vertex 4409: Normal +Vertex 4410: Normal +Vertex 4411: Normal +Vertex 4412: Normal +Vertex 4413: Normal +Vertex 4414: Normal +Vertex 4415: Normal +Vertex 4416: Normal +Vertex 4417: Normal +Vertex 4418: Normal +Vertex 4419: Normal +Vertex 4420: Normal +Vertex 4421: Normal +Vertex 4422: Normal +Vertex 4423: Normal +Vertex 4424: Normal +Vertex 4425: Normal +Vertex 4426: Normal +Vertex 4427: Normal +Vertex 4428: Normal +Vertex 4429: Normal +Vertex 4430: Normal +Vertex 4431: Normal +Vertex 4432: Normal +Vertex 4433: Normal +Vertex 4434: Normal +Vertex 4435: Normal +Vertex 4436: Normal +Vertex 4437: Normal +Vertex 4438: Normal +Vertex 4439: Normal +Vertex 4440: Normal +Vertex 4441: Normal +Vertex 4442: Normal +Vertex 4443: Normal +Vertex 4444: Normal +Vertex 4445: Normal +Vertex 4446: Normal +Vertex 4447: Normal +Vertex 4448: Normal +Vertex 4449: Normal +Vertex 4450: Normal +Vertex 4451: Normal +Vertex 4452: Normal +Vertex 4453: Normal +Vertex 4454: Normal +Vertex 4455: Normal +Vertex 4456: Normal +Vertex 4457: Normal +Vertex 4458: Normal +Vertex 4459: Normal +Vertex 4460: Normal +Vertex 4461: Normal +Vertex 4462: Normal +Vertex 4463: Normal +Vertex 4464: Normal +Vertex 4465: Normal +Vertex 4466: Normal +Vertex 4467: Normal +Vertex 4468: Normal +Vertex 4469: Normal +Vertex 4470: Normal +Vertex 4471: Normal +Vertex 4472: Normal +Vertex 4473: Normal +Vertex 4474: Normal +Vertex 4475: Normal +Vertex 4476: Normal +Vertex 4477: Normal +Vertex 4478: Normal +Vertex 4479: Normal +Vertex 4480: Normal +Vertex 4481: Normal +Vertex 4482: Normal +Vertex 4483: Normal +Vertex 4484: Normal +Vertex 4485: Normal +Vertex 4486: Normal +Vertex 4487: Normal +Vertex 4488: Normal +Vertex 4489: Normal +Vertex 4490: Normal +Vertex 4491: Normal +Vertex 4492: Normal +Vertex 4493: Normal +Vertex 4494: Normal +Vertex 4495: Normal +Vertex 4496: Normal +Vertex 4497: Normal +Vertex 4498: Normal +Vertex 4499: Normal +Vertex 4500: Normal +Vertex 4501: Normal +Vertex 4502: Normal +Vertex 4503: Normal +Vertex 4504: Normal +Vertex 4505: Normal +Vertex 4506: Normal +Vertex 4507: Normal +Vertex 4508: Normal +Vertex 4509: Normal +Vertex 4510: Normal +Vertex 4511: Normal +Vertex 4512: Normal +Vertex 4513: Normal +Vertex 4514: Normal +Vertex 4515: Normal +Vertex 4516: Normal +Vertex 4517: Normal +Vertex 4518: Normal +Vertex 4519: Normal +Vertex 4520: Normal +Vertex 4521: Normal +Vertex 4522: Normal +Vertex 4523: Normal +Vertex 4524: Normal +Vertex 4525: Normal +Vertex 4526: Normal +Vertex 4527: Normal +Vertex 4528: Normal +Vertex 4529: Normal +Vertex 4530: Normal +Vertex 4531: Normal +Vertex 4532: Normal +Vertex 4533: Normal +Vertex 4534: Normal +Vertex 4535: Normal +Vertex 4536: Normal +Vertex 4537: Normal +Vertex 4538: Normal +Vertex 4539: Normal +Vertex 4540: Normal +Vertex 4541: Normal +Vertex 4542: Normal +Vertex 4543: Normal +Vertex 4544: Normal +Vertex 4545: Normal +Vertex 4546: Normal +Vertex 4547: Normal +Vertex 4548: Normal +Vertex 4549: Normal +Vertex 4550: Normal +Vertex 4551: Normal +Vertex 4552: Normal +Vertex 4553: Normal +Vertex 4554: Normal +Vertex 4555: Normal +Vertex 4556: Normal +Vertex 4557: Normal +Vertex 4558: Normal +Vertex 4559: Normal +Vertex 4560: Normal +Vertex 4561: Normal +Vertex 4562: Normal +Vertex 4563: Normal +Vertex 4564: Normal +Vertex 4565: Normal +Vertex 4566: Normal +Vertex 4567: Normal +Vertex 4568: Normal +Vertex 4569: Normal +Vertex 4570: Normal +Vertex 4571: Normal +Vertex 4572: Normal +Vertex 4573: Normal +Vertex 4574: Normal +Vertex 4575: Normal +Vertex 4576: Normal +Vertex 4577: Normal +Vertex 4578: Normal +Vertex 4579: Normal +Vertex 4580: Normal +Vertex 4581: Normal +Vertex 4582: Normal +Vertex 4583: Normal +Vertex 4584: Normal +Vertex 4585: Normal +Vertex 4586: Normal +Vertex 4587: Normal +Vertex 4588: Normal +Vertex 4589: Normal +Vertex 4590: Normal +Vertex 4591: Normal +Vertex 4592: Normal +Vertex 4593: Normal +Vertex 4594: Normal +Vertex 4595: Normal +Vertex 4596: Normal +Vertex 4597: Normal +Vertex 4598: Normal +Vertex 4599: Normal +Vertex 4600: Normal +Vertex 4601: Normal +Vertex 4602: Normal +Vertex 4603: Normal +Vertex 4604: Normal +Vertex 4605: Normal +Vertex 4606: Normal +Vertex 4607: Normal +Vertex 4608: Normal +Vertex 4609: Normal +Vertex 4610: Normal +Vertex 4611: Normal +Vertex 4612: Normal +Vertex 4613: Normal +Vertex 4614: Normal +Vertex 4615: Normal +Vertex 4616: Normal +Vertex 4617: Normal +Vertex 4618: Normal +Vertex 4619: Normal +Vertex 4620: Normal +Vertex 4621: Normal +Vertex 4622: Normal +Vertex 4623: Normal +Vertex 4624: Normal +Vertex 4625: Normal +Vertex 4626: Normal +Vertex 4627: Normal +Vertex 4628: Normal +Vertex 4629: Normal +Vertex 4630: Normal +Vertex 4631: Normal +Vertex 4632: Normal +Vertex 4633: Normal +Vertex 4634: Normal +Vertex 4635: Normal +Vertex 4636: Normal +Vertex 4637: Normal +Vertex 4638: Normal +Vertex 4639: Normal +Vertex 4640: Normal +Vertex 4641: Normal +Vertex 4642: Normal +Vertex 4643: Normal +Vertex 4644: Normal +Vertex 4645: Normal +Vertex 4646: Normal +Vertex 4647: Normal +Vertex 4648: Normal +Vertex 4649: Normal +Vertex 4650: Normal +Vertex 4651: Normal +Vertex 4652: Normal +Vertex 4653: Normal +Vertex 4654: Normal +Vertex 4655: Normal +Vertex 4656: Normal +Vertex 4657: Normal +Vertex 4658: Normal +Vertex 4659: Normal +Vertex 4660: Normal +Vertex 4661: Normal +Vertex 4662: Normal +Vertex 4663: Normal +Vertex 4664: Normal +Vertex 4665: Normal +Vertex 4666: Normal +Vertex 4667: Normal +Vertex 4668: Normal +Vertex 4669: Normal +Vertex 4670: Normal +Vertex 4671: Normal +Vertex 4672: Normal +Vertex 4673: Normal +Vertex 4674: Normal +Vertex 4675: Normal +Vertex 4676: Normal +Vertex 4677: Normal +Vertex 4678: Normal +Vertex 4679: Normal +Vertex 4680: Normal +Vertex 4681: Normal +Vertex 4682: Normal +Vertex 4683: Normal +Vertex 4684: Normal +Vertex 4685: Normal +Vertex 4686: Normal +Vertex 4687: Normal +Vertex 4688: Normal +Vertex 4689: Normal +Vertex 4690: Normal +Vertex 4691: Normal +Vertex 4692: Normal +Vertex 4693: Normal +Vertex 4694: Normal +Vertex 4695: Normal +Vertex 4696: Normal +Vertex 4697: Normal +Vertex 4698: Normal +Vertex 4699: Normal +Vertex 4700: Normal +Vertex 4701: Normal +Vertex 4702: Normal +Vertex 4703: Normal +Vertex 4704: Normal +Vertex 4705: Normal +Vertex 4706: Normal +Vertex 4707: Normal +Vertex 4708: Normal +Vertex 4709: Normal +Vertex 4710: Normal +Vertex 4711: Normal +Vertex 4712: Normal +Vertex 4713: Normal +Vertex 4714: Normal +Vertex 4715: Normal +Vertex 4716: Normal +Vertex 4717: Normal +Vertex 4718: Normal +Vertex 4719: Normal +Vertex 4720: Normal +Vertex 4721: Normal +Vertex 4722: Normal +Vertex 4723: Normal +Vertex 4724: Normal +Vertex 4725: Normal +Vertex 4726: Normal +Vertex 4727: Normal +Vertex 4728: Normal +Vertex 4729: Normal +Vertex 4730: Normal +Vertex 4731: Normal +Vertex 4732: Normal +Vertex 4733: Normal +Vertex 4734: Normal +Vertex 4735: Normal +Vertex 4736: Normal +Vertex 4737: Normal +Vertex 4738: Normal +Vertex 4739: Normal +Vertex 4740: Normal +Vertex 4741: Normal +Vertex 4742: Normal +Vertex 4743: Normal +Vertex 4744: Normal +Vertex 4745: Normal +Vertex 4746: Normal +Vertex 4747: Normal +Vertex 4748: Normal +Vertex 4749: Normal +Vertex 4750: Normal +Vertex 4751: Normal +Vertex 4752: Normal +Vertex 4753: Normal +Vertex 4754: Normal +Vertex 4755: Normal +Vertex 4756: Normal +Vertex 4757: Normal +Vertex 4758: Normal +Vertex 4759: Normal +Vertex 4760: Normal +Vertex 4761: Normal +Vertex 4762: Normal +Vertex 4763: Normal +Vertex 4764: Normal +Vertex 4765: Normal +Vertex 4766: Normal +Vertex 4767: Normal +Vertex 4768: Normal +Vertex 4769: Normal +Vertex 4770: Normal +Vertex 4771: Normal +Vertex 4772: Normal +Vertex 4773: Normal +Vertex 4774: Normal +Vertex 4775: Normal +Vertex 4776: Normal +Vertex 4777: Normal +Vertex 4778: Normal +Vertex 4779: Normal +Vertex 4780: Normal +Vertex 4781: Normal +Vertex 4782: Normal +Vertex 4783: Normal +Vertex 4784: Normal +Vertex 4785: Normal +Vertex 4786: Normal +Vertex 4787: Normal +Vertex 4788: Normal +Vertex 4789: Normal +Vertex 4790: Normal +Vertex 4791: Normal +Vertex 4792: Normal +Vertex 4793: Normal +Vertex 4794: Normal +Vertex 4795: Normal +Vertex 4796: Normal +Vertex 4797: Normal +Vertex 4798: Normal +Vertex 4799: Normal +Vertex 4800: Normal +Vertex 4801: Normal +Vertex 4802: Normal +Vertex 4803: Normal +Vertex 4804: Normal +Vertex 4805: Normal +Vertex 4806: Normal +Vertex 4807: Normal +Vertex 4808: Normal +Vertex 4809: Normal +Vertex 4810: Normal +Vertex 4811: Normal +Vertex 4812: Normal +Vertex 4813: Normal +Vertex 4814: Normal +Vertex 4815: Normal +Vertex 4816: Normal +Vertex 4817: Normal +Vertex 4818: Normal +Vertex 4819: Normal +Vertex 4820: Normal +Vertex 4821: Normal +Vertex 4822: Normal +Vertex 4823: Normal +Vertex 4824: Normal +Vertex 4825: Normal +Vertex 4826: Normal +Vertex 4827: Normal +Vertex 4828: Normal +Vertex 4829: Normal +Vertex 4830: Normal +Vertex 4831: Normal +Vertex 4832: Normal +Vertex 4833: Normal +Vertex 4834: Normal +Vertex 4835: Normal +Vertex 4836: Normal +Vertex 4837: Normal +Vertex 4838: Normal +Vertex 4839: Normal +Vertex 4840: Normal +Vertex 4841: Normal +Vertex 4842: Normal +Vertex 4843: Normal +Vertex 4844: Normal +Vertex 4845: Normal +Vertex 4846: Normal +Vertex 4847: Normal +Vertex 4848: Normal +Vertex 4849: Normal +Vertex 4850: Normal +Vertex 4851: Normal +Vertex 4852: Normal +Vertex 4853: Normal +Vertex 4854: Normal +Vertex 4855: Normal +Vertex 4856: Normal +Vertex 4857: Normal +Vertex 4858: Normal +Vertex 4859: Normal +Vertex 4860: Normal +Vertex 4861: Normal +Vertex 4862: Normal +Vertex 4863: Normal +Vertex 4864: Normal +Vertex 4865: Normal +Vertex 4866: Normal +Vertex 4867: Normal +Vertex 4868: Normal +Vertex 4869: Normal +Vertex 4870: Normal +Vertex 4871: Normal +Vertex 4872: Normal +Vertex 4873: Normal +Vertex 4874: Normal +Vertex 4875: Normal +Vertex 4876: Normal +Vertex 4877: Normal +Vertex 4878: Normal +Vertex 4879: Normal +Vertex 4880: Normal +Vertex 4881: Normal +Vertex 4882: Normal +Vertex 4883: Normal +Vertex 4884: Normal +Vertex 4885: Normal +Vertex 4886: Normal +Vertex 4887: Normal +Vertex 4888: Normal +Vertex 4889: Normal +Vertex 4890: Normal +Vertex 4891: Normal +Vertex 4892: Normal +Vertex 4893: Normal +Vertex 4894: Normal +Vertex 4895: Normal +Vertex 4896: Normal +Vertex 4897: Normal +Vertex 4898: Normal +Vertex 4899: Normal +Vertex 4900: Normal +Vertex 4901: Normal +Vertex 4902: Normal +Vertex 4903: Normal +Vertex 4904: Normal +Vertex 4905: Normal +Vertex 4906: Normal +Vertex 4907: Normal +Vertex 4908: Normal +Vertex 4909: Normal +Vertex 4910: Normal +Vertex 4911: Normal +Vertex 4912: Normal +Vertex 4913: Normal +Vertex 4914: Normal +Vertex 4915: Normal +Vertex 4916: Normal +Vertex 4917: Normal +Vertex 4918: Normal +Vertex 4919: Normal +Vertex 4920: Normal +Vertex 4921: Normal +Vertex 4922: Normal +Vertex 4923: Normal +Vertex 4924: Normal +Vertex 4925: Normal +Vertex 4926: Normal +Vertex 4927: Normal +Vertex 4928: Normal +Vertex 4929: Normal +Vertex 4930: Normal +Vertex 4931: Normal +Vertex 4932: Normal +Vertex 4933: Normal +Vertex 4934: Normal +Vertex 4935: Normal +Vertex 4936: Normal +Vertex 4937: Normal +Vertex 4938: Normal +Vertex 4939: Normal +Vertex 4940: Normal +Vertex 4941: Normal +Vertex 4942: Normal +Vertex 4943: Normal +Vertex 4944: Normal +Vertex 4945: Normal +Vertex 4946: Normal +Vertex 4947: Normal +Vertex 4948: Normal +Vertex 4949: Normal +Vertex 4950: Normal +Vertex 4951: Normal +Vertex 4952: Normal +Vertex 4953: Normal +Vertex 4954: Normal +Vertex 4955: Normal +Vertex 4956: Normal +Vertex 4957: Normal +Vertex 4958: Normal +Vertex 4959: Normal +Vertex 4960: Normal +Vertex 4961: Normal +Vertex 4962: Normal +Vertex 4963: Normal +Vertex 4964: Normal +Vertex 4965: Normal +Vertex 4966: Normal +Vertex 4967: Normal +Vertex 4968: Normal +Vertex 4969: Normal +Vertex 4970: Normal +Vertex 4971: Normal +Vertex 4972: Normal +Vertex 4973: Normal +Vertex 4974: Normal +Vertex 4975: Normal +Vertex 4976: Normal +Vertex 4977: Normal +Vertex 4978: Normal +Vertex 4979: Normal +Vertex 4980: Normal +Vertex 4981: Normal +Vertex 4982: Normal +Vertex 4983: Normal +Vertex 4984: Normal +Vertex 4985: Normal +Vertex 4986: Normal +Vertex 4987: Normal +Vertex 4988: Normal +Vertex 4989: Normal +Vertex 4990: Normal +Vertex 4991: Normal +Vertex 4992: Normal +Vertex 4993: Normal +Vertex 4994: Normal +Vertex 4995: Normal +Vertex 4996: Normal +Vertex 4997: Normal +Vertex 4998: Normal +Vertex 4999: Normal +Vertex 5000: Normal +Vertex 5001: Normal +Vertex 5002: Normal +Vertex 5003: Normal +Vertex 5004: Normal +Vertex 5005: Normal +Vertex 5006: Normal +Vertex 5007: Normal +Vertex 5008: Normal +Vertex 5009: Normal +Vertex 5010: Normal +Vertex 5011: Normal +Vertex 5012: Normal +Vertex 5013: Normal +Vertex 5014: Normal +Vertex 5015: Normal +Vertex 5016: Normal +Vertex 5017: Normal +Vertex 5018: Normal +Vertex 5019: Normal +Vertex 5020: Normal +Vertex 5021: Normal +Vertex 5022: Normal +Vertex 5023: Normal +Vertex 5024: Normal +Vertex 5025: Normal +Vertex 5026: Normal +Vertex 5027: Normal +Vertex 5028: Normal +Vertex 5029: Normal +Vertex 5030: Normal +Vertex 5031: Normal +Vertex 5032: Normal +Vertex 5033: Normal +Vertex 5034: Normal +Vertex 5035: Normal +Vertex 5036: Normal +Vertex 5037: Normal +Vertex 5038: Normal +Vertex 5039: Normal +Vertex 5040: Normal +Vertex 5041: Normal +Vertex 5042: Normal +Vertex 5043: Normal +Vertex 5044: Normal +Vertex 5045: Normal +Vertex 5046: Normal +Vertex 5047: Normal +Vertex 5048: Normal +Vertex 5049: Normal +Vertex 5050: Normal +Vertex 5051: Normal +Vertex 5052: Normal +Vertex 5053: Normal +Vertex 5054: Normal +Vertex 5055: Normal +Vertex 5056: Normal +Vertex 5057: Normal +Vertex 5058: Normal +Vertex 5059: Normal +Vertex 5060: Normal +Vertex 5061: Normal +Vertex 5062: Normal +Vertex 5063: Normal +Vertex 5064: Normal +Vertex 5065: Normal +Vertex 5066: Normal +Vertex 5067: Normal +Vertex 5068: Normal +Vertex 5069: Normal +Vertex 5070: Normal +Vertex 5071: Normal +Vertex 5072: Normal +Vertex 5073: Normal +Vertex 5074: Normal +Vertex 5075: Normal +Vertex 5076: Normal +Vertex 5077: Normal +Vertex 5078: Normal +Vertex 5079: Normal +Vertex 5080: Normal +Vertex 5081: Normal +Vertex 5082: Normal +Vertex 5083: Normal +Vertex 5084: Normal +Vertex 5085: Normal +Vertex 5086: Normal +Vertex 5087: Normal +Vertex 5088: Normal +Vertex 5089: Normal +Vertex 5090: Normal +Vertex 5091: Normal +Vertex 5092: Normal +Vertex 5093: Normal +Vertex 5094: Normal +Vertex 5095: Normal +Vertex 5096: Normal +Vertex 5097: Normal +Vertex 5098: Normal +Vertex 5099: Normal +Vertex 5100: Normal +Vertex 5101: Normal +Vertex 5102: Normal +Vertex 5103: Normal +Vertex 5104: Normal +Vertex 5105: Normal +Vertex 5106: Normal +Vertex 5107: Normal +Vertex 5108: Normal +Vertex 5109: Normal +Vertex 5110: Normal +Vertex 5111: Normal +Vertex 5112: Normal +Vertex 5113: Normal +Vertex 5114: Normal +Vertex 5115: Normal +Vertex 5116: Normal +Vertex 5117: Normal +Vertex 5118: Normal +Vertex 5119: Normal +Vertex 5120: Normal +Vertex 5121: Normal +Vertex 5122: Normal +Vertex 5123: Normal +Vertex 5124: Normal +Vertex 5125: Normal +Vertex 5126: Normal +Vertex 5127: Normal +Vertex 5128: Normal +Vertex 5129: Normal +Vertex 5130: Normal +Vertex 5131: Normal +Vertex 5132: Normal +Vertex 5133: Normal +Vertex 5134: Normal +Vertex 5135: Normal +Vertex 5136: Normal +Vertex 5137: Normal +Vertex 5138: Normal +Vertex 5139: Normal +Vertex 5140: Normal +Vertex 5141: Normal +Vertex 5142: Normal +Vertex 5143: Normal +Vertex 5144: Normal +Vertex 5145: Normal +Vertex 5146: Normal +Vertex 5147: Normal +Vertex 5148: Normal +Vertex 5149: Normal +Vertex 5150: Normal +Vertex 5151: Normal +Vertex 5152: Normal +Vertex 5153: Normal +Vertex 5154: Normal +Vertex 5155: Normal +Vertex 5156: Normal +Vertex 5157: Normal +Vertex 5158: Normal +Vertex 5159: Normal +Vertex 5160: Normal +Vertex 5161: Normal +Vertex 5162: Normal +Vertex 5163: Normal +Vertex 5164: Normal +Vertex 5165: Normal +Vertex 5166: Normal +Vertex 5167: Normal +Vertex 5168: Normal +Vertex 5169: Normal +Vertex 5170: Normal +Vertex 5171: Normal +Vertex 5172: Normal +Vertex 5173: Normal +Vertex 5174: Normal +Vertex 5175: Normal +Vertex 5176: Normal +Vertex 5177: Normal +Vertex 5178: Normal +Vertex 5179: Normal +Vertex 5180: Normal +Vertex 5181: Normal +Vertex 5182: Normal +Vertex 5183: Normal +Vertex 5184: Normal +Vertex 5185: Normal +Vertex 5186: Normal +Vertex 5187: Normal +Vertex 5188: Normal +Vertex 5189: Normal +Vertex 5190: Normal +Vertex 5191: Normal +Vertex 5192: Normal +Vertex 5193: Normal +Vertex 5194: Normal +Vertex 5195: Normal +Vertex 5196: Normal +Vertex 5197: Normal +Vertex 5198: Normal +Vertex 5199: Normal +Vertex 5200: Normal +Vertex 5201: Normal +Vertex 5202: Normal +Vertex 5203: Normal +Vertex 5204: Normal +Vertex 5205: Normal +Vertex 5206: Normal +Vertex 5207: Normal +Vertex 5208: Normal +Vertex 5209: Normal +Vertex 5210: Normal +Vertex 5211: Normal +Vertex 5212: Normal +Vertex 5213: Normal +Vertex 5214: Normal +Vertex 5215: Normal +Vertex 5216: Normal +Vertex 5217: Normal +Vertex 5218: Normal +Vertex 5219: Normal +Vertex 5220: Normal +Vertex 5221: Normal +Vertex 5222: Normal +Vertex 5223: Normal +Vertex 5224: Normal +Vertex 5225: Normal +Vertex 5226: Normal +Vertex 5227: Normal +Vertex 5228: Normal +Vertex 5229: Normal +Vertex 5230: Normal +Vertex 5231: Normal +Vertex 5232: Normal +Vertex 5233: Normal +Vertex 5234: Normal +Vertex 5235: Normal +Vertex 5236: Normal +Vertex 5237: Normal +Vertex 5238: Normal +Vertex 5239: Normal +Vertex 5240: Normal +Vertex 5241: Normal +Vertex 5242: Normal +Vertex 5243: Normal +Vertex 5244: Normal +Vertex 5245: Normal +Vertex 5246: Normal +Vertex 5247: Normal +Vertex 5248: Normal +Vertex 5249: Normal +Vertex 5250: Normal +Vertex 5251: Normal +Vertex 5252: Normal +Vertex 5253: Normal +Vertex 5254: Normal +Vertex 5255: Normal +Vertex 5256: Normal +Vertex 5257: Normal +Vertex 5258: Normal +Vertex 5259: Normal +Vertex 5260: Normal +Vertex 5261: Normal +Vertex 5262: Normal +Vertex 5263: Normal +Vertex 5264: Normal +Vertex 5265: Normal +Vertex 5266: Normal +Vertex 5267: Normal +Vertex 5268: Normal +Vertex 5269: Normal +Vertex 5270: Normal +Vertex 5271: Normal +Vertex 5272: Normal +Vertex 5273: Normal +Vertex 5274: Normal +Vertex 5275: Normal +Vertex 5276: Normal +Vertex 5277: Normal +Vertex 5278: Normal +Vertex 5279: Normal +Vertex 5280: Normal +Vertex 5281: Normal +Vertex 5282: Normal +Vertex 5283: Normal +Vertex 5284: Normal +Vertex 5285: Normal +Vertex 5286: Normal +Vertex 5287: Normal +Vertex 5288: Normal +Vertex 5289: Normal +Vertex 5290: Normal +Vertex 5291: Normal +Vertex 5292: Normal +Vertex 5293: Normal +Vertex 5294: Normal +Vertex 5295: Normal +Vertex 5296: Normal +Vertex 5297: Normal +Vertex 5298: Normal +Vertex 5299: Normal +Vertex 5300: Normal +Vertex 5301: Normal +Vertex 5302: Normal +Vertex 5303: Normal +Vertex 5304: Normal +Vertex 5305: Normal +Vertex 5306: Normal +Vertex 5307: Normal +Vertex 5308: Normal +Vertex 5309: Normal +Vertex 5310: Normal +Vertex 5311: Normal +Vertex 5312: Normal +Vertex 5313: Normal +Vertex 5314: Normal +Vertex 5315: Normal +Vertex 5316: Normal +Vertex 5317: Normal +Vertex 5318: Normal +Vertex 5319: Normal +Vertex 5320: Normal +Vertex 5321: Normal +Vertex 5322: Normal +Vertex 5323: Normal +Vertex 5324: Normal +Vertex 5325: Normal +Vertex 5326: Normal +Vertex 5327: Normal +Vertex 5328: Normal +Vertex 5329: Normal +Vertex 5330: Normal +Vertex 5331: Normal +Vertex 5332: Normal +Vertex 5333: Normal +Vertex 5334: Normal +Vertex 5335: Normal +Vertex 5336: Normal +Vertex 5337: Normal +Vertex 5338: Normal +Vertex 5339: Normal +Vertex 5340: Normal +Vertex 5341: Normal +Vertex 5342: Normal +Vertex 5343: Normal +Vertex 5344: Normal +Vertex 5345: Normal +Vertex 5346: Normal +Vertex 5347: Normal +Vertex 5348: Normal +Vertex 5349: Normal +Vertex 5350: Normal +Vertex 5351: Normal +Vertex 5352: Normal +Vertex 5353: Normal +Vertex 5354: Normal +Vertex 5355: Normal +Vertex 5356: Normal +Vertex 5357: Normal +Vertex 5358: Normal +Vertex 5359: Normal +Vertex 5360: Normal +Vertex 5361: Normal +Vertex 5362: Normal +Vertex 5363: Normal +Vertex 5364: Normal +Vertex 5365: Normal +Vertex 5366: Normal +Vertex 5367: Normal +Vertex 5368: Normal +Vertex 5369: Normal +Vertex 5370: Normal +Vertex 5371: Normal +Vertex 5372: Normal +Vertex 5373: Normal +Vertex 5374: Normal +Vertex 5375: Normal +Vertex 5376: Normal +Vertex 5377: Normal +Vertex 5378: Normal +Vertex 5379: Normal +Vertex 5380: Normal +Vertex 5381: Normal +Vertex 5382: Normal +Vertex 5383: Normal +Vertex 5384: Normal +Vertex 5385: Normal +Vertex 5386: Normal +Vertex 5387: Normal +Vertex 5388: Normal +Vertex 5389: Normal +Vertex 5390: Normal +Vertex 5391: Normal +Vertex 5392: Normal +Vertex 5393: Normal +Vertex 5394: Normal +Vertex 5395: Normal +Vertex 5396: Normal +Vertex 5397: Normal +Vertex 5398: Normal +Vertex 5399: Normal +===Triangles: 9390 +Triangle: [1235, 33, 1236] +Triangle: [1237, 706, 705] +Triangle: [1238, 705, 704] +Triangle: [702, 27, 701] +Triangle: [1240, 35, 1235] +Triangle: [703, 26, 702] +Triangle: [1240, 704, 36] +Triangle: [1244, 707, 706] +Triangle: [1236, 32, 1242] +Triangle: [701, 38, 698] +Triangle: [1243, 32, 31] +Triangle: [1241, 31, 30] +Triangle: [1222, 48, 1228] +Triangle: [1229, 41, 50] +Triangle: [1223, 47, 41] +Triangle: [1230, 40, 39] +Triangle: [1231, 48, 49] +Triangle: [1230, 42, 1232] +Triangle: [1224, 49, 47] +Triangle: [1232, 43, 1233] +Triangle: [1234, 50, 51] +Triangle: [1279, 46, 1222] +Triangle: [1278, 51, 40] +Triangle: [1281, 45, 1279] +Triangle: [1233, 44, 1281] +Triangle: [18, 61, 64] +Triangle: [18, 63, 19] +Triangle: [25, 57, 14] +Triangle: [19, 52, 20] +Triangle: [25, 55, 62] +Triangle: [16, 61, 17] +Triangle: [23, 56, 21] +Triangle: [16, 58, 60] +Triangle: [22, 59, 23] +Triangle: [14, 58, 13] +Triangle: [15, 56, 54] +Triangle: [24, 54, 55] +Triangle: [22, 52, 53] +Triangle: [10, 1210, 1211] +Triangle: [1220, 1, 1219] +Triangle: [7, 1212, 1213] +Triangle: [1, 1218, 1219] +Triangle: [9, 1211, 1212] +Triangle: [1218, 3, 1217] +Triangle: [1209, 11, 1221] +Triangle: [5, 1214, 1215] +Triangle: [1221, 12, 1220] +Triangle: [4, 1215, 1216] +Triangle: [3, 1216, 1217] +Triangle: [6, 1213, 1214] +Triangle: [1253, 70, 1287] +Triangle: [1259, 70, 69] +Triangle: [1254, 1275, 1274] +Triangle: [1255, 1277, 65] +Triangle: [1249, 77, 1254] +Triangle: [1252, 76, 1253] +Triangle: [1257, 74, 67] +Triangle: [1250, 75, 1252] +Triangle: [1251, 71, 74] +Triangle: [1258, 73, 1250] +Triangle: [1256, 67, 66] +Triangle: [1249, 66, 72] +Triangle: [1255, 71, 1248] +Triangle: [82, 712, 713] +Triangle: [712, 80, 714] +Triangle: [80, 711, 714] +Triangle: [715, 35, 711] +Triangle: [82, 86, 81] +Triangle: [88, 94, 86] +Triangle: [130, 162, 161] +Triangle: [83, 92, 88] +Triangle: [106, 104, 100] +Triangle: [160, 92, 91] +Triangle: [86, 95, 81] +Triangle: [80, 95, 96] +Triangle: [78, 96, 97] +Triangle: [79, 97, 98] +Triangle: [99, 713, 716] +Triangle: [82, 100, 85] +Triangle: [95, 170, 96] +Triangle: [94, 171, 95] +Triangle: [85, 104, 87] +Triangle: [107, 716, 717] +Triangle: [99, 106, 100] +Triangle: [173, 94, 92] +Triangle: [83, 109, 84] +Triangle: [109, 87, 110] +Triangle: [103, 109, 111] +Triangle: [111, 110, 108] +Triangle: [112, 87, 104] +Triangle: [108, 112, 113] +Triangle: [115, 104, 105] +Triangle: [112, 114, 113] +Triangle: [98, 116, 117] +Triangle: [139, 119, 140] +Triangle: [118, 121, 119] +Triangle: [174, 123, 175] +Triangle: [174, 124, 176] +Triangle: [89, 177, 179] +Triangle: [177, 128, 178] +Triangle: [126, 137, 128] +Triangle: [124, 166, 89] +Triangle: [124, 163, 165] +Triangle: [164, 120, 118] +Triangle: [116, 140, 117] +Triangle: [139, 164, 118] +Triangle: [116, 167, 139] +Triangle: [169, 116, 97] +Triangle: [169, 96, 170] +Triangle: [86, 87, 88] +Triangle: [131, 161, 159] +Triangle: [132, 159, 158] +Triangle: [160, 132, 158] +Triangle: [89, 162, 126] +Triangle: [176, 89, 179] +Triangle: [101, 155, 102] +Triangle: [152, 144, 145] +Triangle: [134, 151, 133] +Triangle: [135, 151, 154] +Triangle: [157, 153, 156] +Triangle: [152, 146, 155] +Triangle: [150, 152, 153] +Triangle: [151, 153, 154] +Triangle: [141, 149, 150] +Triangle: [149, 142, 144] +Triangle: [136, 157, 93] +Triangle: [93, 156, 101] +Triangle: [138, 150, 151] +Triangle: [148, 154, 157] +Triangle: [153, 155, 156] +Triangle: [155, 147, 102] +Triangle: [102, 159, 101] +Triangle: [147, 158, 102] +Triangle: [136, 161, 162] +Triangle: [93, 159, 161] +Triangle: [134, 163, 164] +Triangle: [133, 165, 163] +Triangle: [136, 166, 148] +Triangle: [134, 167, 138] +Triangle: [138, 168, 141] +Triangle: [142, 169, 170] +Triangle: [143, 168, 169] +Triangle: [142, 171, 144] +Triangle: [145, 171, 172] +Triangle: [146, 172, 173] +Triangle: [147, 173, 160] +Triangle: [148, 165, 135] +Triangle: [125, 179, 90] +Triangle: [127, 178, 129] +Triangle: [90, 177, 127] +Triangle: [122, 176, 125] +Triangle: [120, 175, 121] +Triangle: [107, 180, 106] +Triangle: [180, 183, 182] +Triangle: [183, 186, 182] +Triangle: [181, 717, 718] +Triangle: [183, 718, 719] +Triangle: [720, 183, 719] +Triangle: [192, 720, 721] +Triangle: [722, 192, 721] +Triangle: [723, 191, 722] +Triangle: [715, 190, 723] +Triangle: [184, 193, 186] +Triangle: [198, 193, 199] +Triangle: [192, 187, 184] +Triangle: [191, 188, 192] +Triangle: [195, 190, 189] +Triangle: [79, 189, 190] +Triangle: [204, 196, 205] +Triangle: [201, 186, 198] +Triangle: [202, 201, 198] +Triangle: [182, 200, 180] +Triangle: [202, 199, 203] +Triangle: [180, 105, 106] +Triangle: [115, 200, 208] +Triangle: [210, 207, 208] +Triangle: [185, 203, 194] +Triangle: [197, 202, 185] +Triangle: [201, 205, 200] +Triangle: [114, 208, 207] +Triangle: [696, 196, 206] +Triangle: [696, 200, 205] +Triangle: [189, 217, 195] +Triangle: [218, 211, 212] +Triangle: [219, 212, 213] +Triangle: [220, 213, 214] +Triangle: [221, 214, 215] +Triangle: [222, 215, 216] +Triangle: [117, 189, 98] +Triangle: [140, 211, 117] +Triangle: [119, 212, 140] +Triangle: [214, 119, 121] +Triangle: [215, 121, 175] +Triangle: [216, 175, 123] +Triangle: [223, 188, 195] +Triangle: [187, 227, 193] +Triangle: [193, 226, 199] +Triangle: [203, 226, 224] +Triangle: [228, 195, 217] +Triangle: [223, 229, 227] +Triangle: [226, 229, 230] +Triangle: [250, 249, 224] +Triangle: [229, 233, 234] +Triangle: [234, 230, 229] +Triangle: [233, 217, 218] +Triangle: [233, 236, 234] +Triangle: [235, 238, 236] +Triangle: [238, 239, 240] +Triangle: [240, 241, 242] +Triangle: [231, 244, 243] +Triangle: [243, 246, 245] +Triangle: [242, 262, 248] +Triangle: [234, 244, 232] +Triangle: [238, 244, 236] +Triangle: [247, 264, 240] +Triangle: [235, 218, 219] +Triangle: [237, 219, 220] +Triangle: [221, 237, 220] +Triangle: [222, 239, 221] +Triangle: [194, 224, 249] +Triangle: [226, 250, 224] +Triangle: [225, 250, 230] +Triangle: [225, 232, 231] +Triangle: [129, 256, 127] +Triangle: [122, 267, 123] +Triangle: [90, 255, 125] +Triangle: [216, 268, 222] +Triangle: [241, 261, 242] +Triangle: [125, 265, 122] +Triangle: [90, 256, 252] +Triangle: [264, 238, 240] +Triangle: [264, 245, 246] +Triangle: [123, 266, 216] +Triangle: [242, 247, 240] +Triangle: [265, 255, 253] +Triangle: [259, 266, 258] +Triangle: [265, 254, 267] +Triangle: [267, 258, 266] +Triangle: [241, 268, 260] +Triangle: [260, 268, 259] +Triangle: [8, 1209, 1210] +Triangle: [111, 269, 103] +Triangle: [302, 272, 271] +Triangle: [277, 274, 278] +Triangle: [270, 275, 269] +Triangle: [276, 278, 275] +Triangle: [277, 280, 281] +Triangle: [273, 281, 279] +Triangle: [281, 283, 284] +Triangle: [279, 284, 282] +Triangle: [284, 286, 287] +Triangle: [282, 287, 285] +Triangle: [287, 289, 290] +Triangle: [287, 288, 285] +Triangle: [289, 293, 290] +Triangle: [290, 291, 288] +Triangle: [294, 276, 270] +Triangle: [280, 295, 283] +Triangle: [283, 694, 286] +Triangle: [286, 296, 289] +Triangle: [292, 296, 297] +Triangle: [108, 270, 111] +Triangle: [295, 108, 113] +Triangle: [694, 113, 114] +Triangle: [296, 114, 207] +Triangle: [297, 207, 209] +Triangle: [273, 302, 274] +Triangle: [303, 273, 279] +Triangle: [303, 305, 304] +Triangle: [301, 304, 272] +Triangle: [305, 282, 306] +Triangle: [285, 306, 282] +Triangle: [300, 309, 285] +Triangle: [307, 309, 308] +Triangle: [300, 288, 299] +Triangle: [299, 291, 298] +Triangle: [323, 317, 315] +Triangle: [310, 328, 329] +Triangle: [326, 329, 325] +Triangle: [312, 325, 329] +Triangle: [325, 316, 326] +Triangle: [330, 315, 316] +Triangle: [313, 330, 312] +Triangle: [323, 318, 314] +Triangle: [317, 321, 322] +Triangle: [314, 320, 321] +Triangle: [320, 313, 319] +Triangle: [319, 312, 311] +Triangle: [329, 311, 312] +Triangle: [316, 331, 332] +Triangle: [331, 317, 324] +Triangle: [333, 317, 322] +Triangle: [340, 331, 324] +Triangle: [340, 333, 339] +Triangle: [322, 339, 333] +Triangle: [342, 345, 341] +Triangle: [342, 338, 339] +Triangle: [337, 339, 338] +Triangle: [336, 340, 337] +Triangle: [346, 343, 344] +Triangle: [321, 342, 322] +Triangle: [320, 343, 321] +Triangle: [308, 328, 307] +Triangle: [319, 308, 347] +Triangle: [319, 344, 320] +Triangle: [347, 300, 348] +Triangle: [344, 348, 346] +Triangle: [350, 345, 346] +Triangle: [634, 631, 632] +Triangle: [356, 681, 679] +Triangle: [352, 346, 348] +Triangle: [352, 300, 299] +Triangle: [680, 352, 299] +Triangle: [358, 353, 354] +Triangle: [350, 682, 679] +Triangle: [587, 634, 635] +Triangle: [683, 353, 680] +Triangle: [341, 362, 338] +Triangle: [685, 359, 684] +Triangle: [361, 363, 360] +Triangle: [341, 349, 359] +Triangle: [684, 349, 681] +Triangle: [351, 360, 355] +Triangle: [366, 338, 365] +Triangle: [367, 338, 362] +Triangle: [686, 362, 685] +Triangle: [369, 363, 364] +Triangle: [327, 332, 336] +Triangle: [326, 327, 334] +Triangle: [335, 326, 334] +Triangle: [310, 371, 307] +Triangle: [371, 306, 307] +Triangle: [376, 379, 377] +Triangle: [271, 379, 378] +Triangle: [375, 379, 380] +Triangle: [272, 380, 271] +Triangle: [374, 380, 381] +Triangle: [382, 272, 304] +Triangle: [383, 304, 305] +Triangle: [305, 370, 383] +Triangle: [406, 393, 401] +Triangle: [394, 406, 402] +Triangle: [395, 402, 403] +Triangle: [404, 395, 403] +Triangle: [404, 389, 405] +Triangle: [397, 405, 396] +Triangle: [398, 403, 392] +Triangle: [403, 390, 392] +Triangle: [390, 406, 400] +Triangle: [400, 401, 391] +Triangle: [415, 405, 389] +Triangle: [415, 389, 412] +Triangle: [396, 415, 388] +Triangle: [413, 415, 412] +Triangle: [414, 412, 411] +Triangle: [398, 412, 389] +Triangle: [411, 392, 410] +Triangle: [409, 392, 390] +Triangle: [409, 400, 408] +Triangle: [400, 407, 408] +Triangle: [411, 416, 414] +Triangle: [417, 410, 409] +Triangle: [408, 417, 409] +Triangle: [419, 408, 407] +Triangle: [418, 422, 421] +Triangle: [421, 417, 418] +Triangle: [426, 416, 417] +Triangle: [428, 430, 439] +Triangle: [429, 385, 447] +Triangle: [373, 381, 382] +Triangle: [372, 382, 383] +Triangle: [424, 429, 447] +Triangle: [447, 423, 444] +Triangle: [425, 374, 373] +Triangle: [420, 422, 387] +Triangle: [413, 441, 388] +Triangle: [428, 414, 416] +Triangle: [427, 413, 414] +Triangle: [426, 420, 430] +Triangle: [387, 432, 420] +Triangle: [420, 386, 430] +Triangle: [432, 433, 434] +Triangle: [433, 436, 434] +Triangle: [435, 438, 436] +Triangle: [376, 438, 437] +Triangle: [385, 428, 439] +Triangle: [439, 386, 440] +Triangle: [386, 434, 440] +Triangle: [385, 440, 423] +Triangle: [423, 443, 442] +Triangle: [445, 384, 425] +Triangle: [444, 442, 384] +Triangle: [443, 434, 436] +Triangle: [446, 436, 438] +Triangle: [446, 377, 375] +Triangle: [446, 442, 443] +Triangle: [374, 442, 375] +Triangle: [444, 424, 447] +Triangle: [399, 461, 393] +Triangle: [461, 463, 460] +Triangle: [394, 462, 399] +Triangle: [463, 465, 464] +Triangle: [463, 466, 460] +Triangle: [448, 464, 467] +Triangle: [474, 448, 467] +Triangle: [475, 468, 459] +Triangle: [465, 476, 464] +Triangle: [477, 478, 479] +Triangle: [476, 467, 464] +Triangle: [485, 468, 469] +Triangle: [469, 449, 485] +Triangle: [470, 484, 469] +Triangle: [470, 482, 483] +Triangle: [471, 481, 482] +Triangle: [480, 472, 473] +Triangle: [498, 484, 483] +Triangle: [450, 486, 488] +Triangle: [484, 487, 449] +Triangle: [495, 488, 496] +Triangle: [458, 489, 490] +Triangle: [525, 490, 526] +Triangle: [456, 491, 492] +Triangle: [619, 492, 620] +Triangle: [452, 494, 453] +Triangle: [495, 489, 451] +Triangle: [486, 499, 488] +Triangle: [497, 488, 499] +Triangle: [489, 497, 500] +Triangle: [490, 500, 501] +Triangle: [526, 501, 527] +Triangle: [492, 502, 503] +Triangle: [480, 476, 477] +Triangle: [473, 509, 510] +Triangle: [471, 507, 508] +Triangle: [469, 505, 506] +Triangle: [473, 504, 467] +Triangle: [472, 508, 509] +Triangle: [470, 506, 507] +Triangle: [474, 505, 468] +Triangle: [474, 504, 511] +Triangle: [512, 508, 507] +Triangle: [512, 506, 505] +Triangle: [510, 512, 504] +Triangle: [511, 512, 505] +Triangle: [519, 483, 482] +Triangle: [498, 520, 499] +Triangle: [521, 499, 520] +Triangle: [481, 513, 516] +Triangle: [514, 516, 513] +Triangle: [515, 517, 514] +Triangle: [482, 516, 519] +Triangle: [517, 519, 516] +Triangle: [521, 517, 518] +Triangle: [500, 521, 522] +Triangle: [518, 522, 521] +Triangle: [524, 518, 515] +Triangle: [501, 522, 523] +Triangle: [491, 527, 502] +Triangle: [457, 526, 491] +Triangle: [527, 523, 524] +Triangle: [527, 528, 502] +Triangle: [503, 528, 529] +Triangle: [528, 530, 532] +Triangle: [531, 524, 515] +Triangle: [533, 515, 514] +Triangle: [513, 533, 514] +Triangle: [477, 513, 480] +Triangle: [479, 534, 477] +Triangle: [531, 537, 536] +Triangle: [530, 536, 532] +Triangle: [532, 539, 540] +Triangle: [542, 539, 541] +Triangle: [544, 541, 543] +Triangle: [546, 543, 545] +Triangle: [547, 546, 545] +Triangle: [549, 548, 547] +Triangle: [552, 549, 551] +Triangle: [552, 553, 554] +Triangle: [554, 555, 556] +Triangle: [560, 557, 558] +Triangle: [556, 559, 560] +Triangle: [558, 561, 562] +Triangle: [562, 563, 564] +Triangle: [564, 565, 566] +Triangle: [492, 621, 620] +Triangle: [493, 568, 494] +Triangle: [621, 565, 567] +Triangle: [563, 567, 565] +Triangle: [529, 623, 622] +Triangle: [528, 538, 529] +Triangle: [538, 540, 569] +Triangle: [538, 624, 623] +Triangle: [566, 581, 564] +Triangle: [564, 580, 562] +Triangle: [562, 579, 558] +Triangle: [558, 578, 560] +Triangle: [578, 556, 560] +Triangle: [556, 576, 554] +Triangle: [554, 575, 552] +Triangle: [575, 550, 552] +Triangle: [574, 548, 550] +Triangle: [548, 572, 546] +Triangle: [546, 571, 544] +Triangle: [571, 542, 544] +Triangle: [570, 540, 542] +Triangle: [534, 537, 533] +Triangle: [583, 536, 537] +Triangle: [541, 583, 585] +Triangle: [541, 584, 543] +Triangle: [543, 586, 545] +Triangle: [545, 587, 547] +Triangle: [549, 587, 588] +Triangle: [551, 588, 589] +Triangle: [551, 590, 553] +Triangle: [605, 597, 606] +Triangle: [607, 598, 605] +Triangle: [608, 591, 609] +Triangle: [610, 599, 607] +Triangle: [608, 593, 592] +Triangle: [612, 600, 610] +Triangle: [611, 594, 593] +Triangle: [612, 602, 601] +Triangle: [613, 595, 594] +Triangle: [614, 603, 602] +Triangle: [615, 596, 595] +Triangle: [618, 603, 616] +Triangle: [617, 597, 596] +Triangle: [609, 625, 626] +Triangle: [569, 626, 624] +Triangle: [574, 606, 617] +Triangle: [582, 616, 581] +Triangle: [573, 617, 615] +Triangle: [580, 616, 614] +Triangle: [572, 615, 613] +Triangle: [579, 614, 612] +Triangle: [571, 613, 611] +Triangle: [579, 610, 578] +Triangle: [570, 611, 608] +Triangle: [578, 607, 577] +Triangle: [570, 609, 569] +Triangle: [577, 605, 576] +Triangle: [576, 606, 575] +Triangle: [582, 626, 618] +Triangle: [618, 625, 604] +Triangle: [623, 582, 566] +Triangle: [622, 566, 565] +Triangle: [529, 621, 503] +Triangle: [620, 567, 493] +Triangle: [452, 620, 493] +Triangle: [478, 394, 395] +Triangle: [583, 535, 628] +Triangle: [479, 628, 535] +Triangle: [478, 627, 479] +Triangle: [627, 631, 628] +Triangle: [632, 629, 630] +Triangle: [397, 627, 395] +Triangle: [396, 629, 397] +Triangle: [633, 584, 585] +Triangle: [631, 633, 628] +Triangle: [588, 635, 636] +Triangle: [388, 630, 396] +Triangle: [441, 638, 388] +Triangle: [424, 637, 441] +Triangle: [630, 640, 632] +Triangle: [637, 640, 638] +Triangle: [639, 445, 425] +Triangle: [634, 640, 643] +Triangle: [640, 642, 643] +Triangle: [639, 641, 642] +Triangle: [641, 373, 372] +Triangle: [644, 383, 370] +Triangle: [641, 644, 645] +Triangle: [371, 644, 370] +Triangle: [335, 645, 371] +Triangle: [334, 646, 335] +Triangle: [642, 645, 646] +Triangle: [642, 647, 643] +Triangle: [635, 643, 647] +Triangle: [636, 647, 648] +Triangle: [648, 334, 327] +Triangle: [650, 327, 336] +Triangle: [648, 649, 636] +Triangle: [589, 636, 649] +Triangle: [652, 336, 337] +Triangle: [650, 651, 649] +Triangle: [590, 649, 651] +Triangle: [654, 337, 366] +Triangle: [653, 652, 654] +Triangle: [655, 651, 653] +Triangle: [553, 655, 555] +Triangle: [453, 659, 455] +Triangle: [568, 659, 494] +Triangle: [658, 563, 561] +Triangle: [561, 657, 658] +Triangle: [657, 559, 656] +Triangle: [555, 656, 559] +Triangle: [663, 655, 653] +Triangle: [656, 662, 657] +Triangle: [657, 661, 658] +Triangle: [661, 659, 658] +Triangle: [455, 660, 454] +Triangle: [454, 665, 664] +Triangle: [669, 366, 365] +Triangle: [654, 670, 653] +Triangle: [670, 663, 653] +Triangle: [668, 662, 663] +Triangle: [662, 666, 661] +Triangle: [661, 665, 660] +Triangle: [669, 674, 670] +Triangle: [677, 674, 671] +Triangle: [673, 675, 672] +Triangle: [672, 678, 677] +Triangle: [671, 365, 367] +Triangle: [368, 685, 363] +Triangle: [355, 684, 681] +Triangle: [363, 684, 360] +Triangle: [298, 680, 299] +Triangle: [679, 357, 356] +Triangle: [353, 682, 680] +Triangle: [679, 349, 350] +Triangle: [677, 367, 686] +Triangle: [672, 686, 368] +Triangle: [369, 672, 368] +Triangle: [668, 690, 667] +Triangle: [667, 689, 666] +Triangle: [664, 687, 688] +Triangle: [687, 666, 689] +Triangle: [670, 691, 668] +Triangle: [678, 691, 674] +Triangle: [675, 690, 678] +Triangle: [689, 692, 687] +Triangle: [687, 693, 688] +Triangle: [676, 692, 675] +Triangle: [583, 633, 585] +Triangle: [358, 356, 357] +Triangle: [355, 695, 351] +Triangle: [696, 210, 208] +Triangle: [710, 702, 709] +Triangle: [697, 38, 37] +Triangle: [699, 28, 34] +Triangle: [700, 37, 28] +Triangle: [709, 701, 708] +Triangle: [708, 698, 707] +Triangle: [36, 699, 34] +Triangle: [706, 698, 697] +Triangle: [704, 700, 699] +Triangle: [705, 697, 700] +Triangle: [1247, 709, 1246] +Triangle: [1246, 708, 1239] +Triangle: [1239, 707, 1245] +Triangle: [1241, 710, 1247] +Triangle: [30, 703, 710] +Triangle: [33, 723, 32] +Triangle: [32, 722, 31] +Triangle: [31, 721, 30] +Triangle: [721, 29, 30] +Triangle: [29, 719, 26] +Triangle: [719, 27, 26] +Triangle: [718, 38, 27] +Triangle: [717, 37, 38] +Triangle: [716, 28, 37] +Triangle: [79, 711, 78] +Triangle: [714, 35, 36] +Triangle: [712, 36, 34] +Triangle: [713, 34, 28] +Triangle: [733, 262, 261] +Triangle: [734, 261, 260] +Triangle: [260, 731, 734] +Triangle: [259, 730, 731] +Triangle: [258, 729, 730] +Triangle: [729, 253, 728] +Triangle: [728, 255, 727] +Triangle: [727, 252, 726] +Triangle: [726, 256, 725] +Triangle: [725, 257, 724] +Triangle: [732, 5216, 5217] +Triangle: [743, 5196, 5198] +Triangle: [5218, 731, 5219] +Triangle: [5219, 730, 5215] +Triangle: [730, 5214, 5215] +Triangle: [729, 5213, 5214] +Triangle: [728, 5212, 5213] +Triangle: [727, 5211, 5212] +Triangle: [5211, 725, 5210] +Triangle: [5210, 724, 5220] +Triangle: [1195, 747, 759] +Triangle: [1197, 760, 797] +Triangle: [1133, 770, 1136] +Triangle: [785, 779, 778] +Triangle: [791, 773, 790] +Triangle: [784, 780, 779] +Triangle: [1096, 751, 750] +Triangle: [1204, 762, 1200] +Triangle: [1201, 800, 1202] +Triangle: [1102, 804, 1100] +Triangle: [796, 776, 767] +Triangle: [1194, 766, 765] +Triangle: [1202, 746, 1196] +Triangle: [1093, 750, 752] +Triangle: [1006, 1008, 1007] +Triangle: [891, 786, 787] +Triangle: [786, 778, 777] +Triangle: [805, 837, 807] +Triangle: [893, 783, 784] +Triangle: [888, 788, 896] +Triangle: [887, 785, 786] +Triangle: [1147, 767, 776] +Triangle: [894, 792, 899] +Triangle: [795, 767, 768] +Triangle: [783, 781, 780] +Triangle: [896, 789, 895] +Triangle: [897, 793, 894] +Triangle: [895, 782, 886] +Triangle: [885, 794, 897] +Triangle: [788, 773, 775] +Triangle: [885, 796, 795] +Triangle: [793, 771, 792] +Triangle: [898, 790, 888] +Triangle: [782, 774, 781] +Triangle: [892, 784, 785] +Triangle: [795, 769, 794] +Triangle: [789, 775, 774] +Triangle: [787, 777, 776] +Triangle: [886, 783, 890] +Triangle: [794, 770, 793] +Triangle: [889, 787, 796] +Triangle: [1090, 802, 801] +Triangle: [1097, 758, 1101] +Triangle: [1094, 755, 1095] +Triangle: [1104, 757, 1097] +Triangle: [1095, 756, 1104] +Triangle: [1205, 798, 766] +Triangle: [1200, 761, 1206] +Triangle: [1207, 763, 1204] +Triangle: [1100, 803, 1092] +Triangle: [1091, 748, 1102] +Triangle: [1098, 803, 802] +Triangle: [1103, 752, 753] +Triangle: [1196, 747, 1199] +Triangle: [805, 808, 806] +Triangle: [806, 809, 805] +Triangle: [868, 810, 813] +Triangle: [869, 813, 816] +Triangle: [806, 813, 810] +Triangle: [812, 806, 808] +Triangle: [867, 816, 818] +Triangle: [814, 813, 811] +Triangle: [812, 814, 811] +Triangle: [817, 814, 815] +Triangle: [818, 816, 817] +Triangle: [862, 822, 821] +Triangle: [861, 822, 855] +Triangle: [864, 871, 857] +Triangle: [819, 833, 820] +Triangle: [820, 866, 819] +Triangle: [820, 835, 822] +Triangle: [824, 807, 823] +Triangle: [823, 826, 824] +Triangle: [826, 897, 828] +Triangle: [828, 894, 830] +Triangle: [824, 828, 827] +Triangle: [808, 827, 812] +Triangle: [899, 830, 894] +Triangle: [827, 830, 829] +Triangle: [812, 829, 815] +Triangle: [829, 817, 815] +Triangle: [835, 895, 834] +Triangle: [833, 896, 835] +Triangle: [807, 847, 823] +Triangle: [888, 832, 898] +Triangle: [838, 805, 809] +Triangle: [823, 848, 825] +Triangle: [838, 865, 841] +Triangle: [863, 841, 865] +Triangle: [838, 839, 836] +Triangle: [837, 839, 840] +Triangle: [839, 842, 840] +Triangle: [843, 842, 841] +Triangle: [863, 844, 843] +Triangle: [821, 835, 834] +Triangle: [843, 852, 851] +Triangle: [856, 821, 846] +Triangle: [859, 846, 845] +Triangle: [853, 844, 845] +Triangle: [844, 859, 845] +Triangle: [846, 853, 845] +Triangle: [857, 809, 864] +Triangle: [891, 825, 848] +Triangle: [887, 848, 850] +Triangle: [892, 850, 851] +Triangle: [849, 848, 847] +Triangle: [837, 849, 847] +Triangle: [842, 849, 840] +Triangle: [851, 850, 842] +Triangle: [893, 851, 852] +Triangle: [886, 834, 895] +Triangle: [890, 854, 886] +Triangle: [864, 810, 858] +Triangle: [890, 852, 853] +Triangle: [851, 842, 843] +Triangle: [1198, 797, 798] +Triangle: [1203, 759, 760] +Triangle: [862, 870, 879] +Triangle: [1101, 749, 1091] +Triangle: [866, 873, 883] +Triangle: [859, 872, 878] +Triangle: [857, 882, 865] +Triangle: [860, 880, 872] +Triangle: [868, 875, 884] +Triangle: [858, 884, 877] +Triangle: [869, 874, 875] +Triangle: [858, 881, 864] +Triangle: [856, 878, 870] +Triangle: [855, 873, 861] +Triangle: [865, 880, 863] +Triangle: [855, 879, 876] +Triangle: [909, 1018, 900] +Triangle: [1049, 1138, 1144] +Triangle: [1139, 1042, 1142] +Triangle: [1145, 1054, 1141] +Triangle: [1045, 1140, 1135] +Triangle: [1141, 1044, 1143] +Triangle: [1144, 1048, 1049] +Triangle: [1146, 1053, 1145] +Triangle: [1042, 1134, 1142] +Triangle: [1043, 1136, 1134] +Triangle: [1050, 1146, 1138] +Triangle: [1143, 1045, 1135] +Triangle: [1042, 1108, 1043] +Triangle: [1044, 1112, 1045] +Triangle: [1046, 1108, 1109] +Triangle: [818, 832, 819] +Triangle: [1050, 1118, 1117] +Triangle: [881, 1091, 871] +Triangle: [1051, 1119, 1042] +Triangle: [1045, 1107, 1052] +Triangle: [1053, 1114, 1054] +Triangle: [1044, 1114, 1113] +Triangle: [1048, 1155, 1049] +Triangle: [1055, 1115, 1053] +Triangle: [1047, 1109, 1121] +Triangle: [1055, 1117, 1116] +Triangle: [747, 917, 759] +Triangle: [916, 746, 915] +Triangle: [759, 920, 918] +Triangle: [760, 918, 919] +Triangle: [920, 919, 918] +Triangle: [1047, 1137, 1133] +Triangle: [971, 1065, 1064] +Triangle: [981, 930, 985] +Triangle: [1001, 1021, 984] +Triangle: [1067, 932, 930] +Triangle: [1068, 934, 932] +Triangle: [1070, 936, 1029] +Triangle: [1148, 989, 1061] +Triangle: [1073, 940, 938] +Triangle: [952, 1059, 1058] +Triangle: [994, 950, 995] +Triangle: [1075, 944, 942] +Triangle: [1076, 946, 944] +Triangle: [1077, 948, 946] +Triangle: [948, 1079, 950] +Triangle: [1058, 1081, 952] +Triangle: [1082, 954, 1040] +Triangle: [952, 1084, 957] +Triangle: [1083, 958, 954] +Triangle: [1085, 960, 958] +Triangle: [960, 1087, 962] +Triangle: [962, 1088, 964] +Triangle: [979, 966, 983] +Triangle: [966, 1065, 924] +Triangle: [977, 980, 928] +Triangle: [925, 1064, 1066] +Triangle: [1208, 753, 1194] +Triangle: [974, 952, 957] +Triangle: [1075, 940, 1074] +Triangle: [946, 994, 993] +Triangle: [944, 993, 992] +Triangle: [992, 942, 944] +Triangle: [991, 940, 942] +Triangle: [1151, 989, 938] +Triangle: [1041, 957, 1040] +Triangle: [1031, 934, 1029] +Triangle: [987, 932, 934] +Triangle: [932, 985, 930] +Triangle: [1001, 983, 996] +Triangle: [964, 1089, 966] +Triangle: [925, 982, 971] +Triangle: [982, 924, 971] +Triangle: [924, 983, 966] +Triangle: [984, 979, 983] +Triangle: [978, 929, 980] +Triangle: [964, 978, 962] +Triangle: [962, 977, 960] +Triangle: [960, 976, 958] +Triangle: [976, 954, 958] +Triangle: [902, 997, 998] +Triangle: [969, 1000, 968] +Triangle: [1012, 1002, 1013] +Triangle: [982, 1001, 996] +Triangle: [1032, 1004, 1005] +Triangle: [1126, 915, 746] +Triangle: [754, 1103, 753] +Triangle: [1103, 874, 883] +Triangle: [883, 867, 866] +Triangle: [1208, 764, 1207] +Triangle: [866, 818, 819] +Triangle: [898, 831, 899] +Triangle: [1099, 801, 751] +Triangle: [834, 846, 821] +Triangle: [889, 826, 825] +Triangle: [1000, 1012, 1013] +Triangle: [903, 998, 1017] +Triangle: [1005, 1034, 1032] +Triangle: [968, 1015, 1025] +Triangle: [1000, 1014, 1015] +Triangle: [1012, 1020, 1021] +Triangle: [969, 1019, 1026] +Triangle: [1033, 1111, 1035] +Triangle: [900, 997, 901] +Triangle: [1003, 1013, 1002] +Triangle: [1014, 1022, 1015] +Triangle: [1015, 1027, 1025] +Triangle: [1016, 1036, 1034] +Triangle: [981, 1002, 982] +Triangle: [1066, 930, 925] +Triangle: [929, 1021, 1020] +Triangle: [1025, 1023, 1016] +Triangle: [999, 1026, 1020] +Triangle: [968, 1016, 1005] +Triangle: [1005, 969, 968] +Triangle: [1020, 980, 929] +Triangle: [1026, 928, 980] +Triangle: [985, 1003, 981] +Triangle: [1027, 985, 986] +Triangle: [1023, 986, 987] +Triangle: [1036, 987, 1031] +Triangle: [1024, 1128, 988] +Triangle: [1129, 1024, 1017] +Triangle: [1004, 1035, 1019] +Triangle: [1130, 1017, 998] +Triangle: [998, 1127, 1130] +Triangle: [988, 1132, 936] +Triangle: [1069, 1029, 934] +Triangle: [1028, 1019, 1035] +Triangle: [976, 928, 1028] +Triangle: [1037, 1035, 1111] +Triangle: [975, 1028, 1037] +Triangle: [1056, 1110, 1051] +Triangle: [975, 1040, 954] +Triangle: [1084, 1040, 957] +Triangle: [1041, 1037, 1038] +Triangle: [1038, 974, 1041] +Triangle: [1052, 1106, 1056] +Triangle: [907, 991, 992] +Triangle: [906, 991, 908] +Triangle: [904, 1017, 1024] +Triangle: [1072, 938, 1148] +Triangle: [1152, 990, 906] +Triangle: [791, 899, 792] +Triangle: [904, 1063, 1121] +Triangle: [909, 970, 974] +Triangle: [907, 993, 914] +Triangle: [914, 994, 913] +Triangle: [950, 1080, 1058] +Triangle: [1058, 995, 950] +Triangle: [911, 970, 910] +Triangle: [912, 1059, 911] +Triangle: [913, 995, 912] +Triangle: [1071, 1148, 936] +Triangle: [936, 1061, 988] +Triangle: [949, 945, 943] +Triangle: [926, 1064, 1065] +Triangle: [931, 1066, 927] +Triangle: [933, 1067, 931] +Triangle: [935, 1068, 933] +Triangle: [937, 1070, 1030] +Triangle: [939, 1072, 1060] +Triangle: [941, 1073, 939] +Triangle: [943, 1074, 941] +Triangle: [945, 1075, 943] +Triangle: [945, 1077, 1076] +Triangle: [947, 1078, 1077] +Triangle: [951, 1078, 949] +Triangle: [953, 1080, 1057] +Triangle: [1039, 1083, 1082] +Triangle: [956, 1081, 953] +Triangle: [955, 1085, 1083] +Triangle: [959, 1086, 1085] +Triangle: [961, 1087, 1086] +Triangle: [963, 1088, 1087] +Triangle: [926, 1089, 967] +Triangle: [967, 1088, 965] +Triangle: [927, 1064, 972] +Triangle: [1030, 1069, 935] +Triangle: [956, 1082, 1084] +Triangle: [1057, 1079, 951] +Triangle: [1060, 1071, 937] +Triangle: [941, 949, 943] +Triangle: [939, 951, 941] +Triangle: [1060, 1057, 939] +Triangle: [1060, 956, 953] +Triangle: [1039, 937, 1030] +Triangle: [1030, 955, 1039] +Triangle: [959, 935, 933] +Triangle: [961, 933, 931] +Triangle: [963, 931, 927] +Triangle: [965, 927, 972] +Triangle: [972, 967, 965] +Triangle: [879, 1090, 1099] +Triangle: [900, 1106, 909] +Triangle: [883, 1093, 1103] +Triangle: [878, 1092, 1098] +Triangle: [871, 1102, 882] +Triangle: [880, 1092, 872] +Triangle: [884, 1095, 1104] +Triangle: [884, 1097, 877] +Triangle: [875, 1094, 1095] +Triangle: [877, 1101, 881] +Triangle: [870, 1098, 1090] +Triangle: [1133, 772, 771] +Triangle: [876, 1093, 873] +Triangle: [882, 1100, 880] +Triangle: [876, 1099, 1096] +Triangle: [1052, 1147, 1140] +Triangle: [1118, 1152, 906] +Triangle: [1118, 908, 1117] +Triangle: [1117, 907, 1116] +Triangle: [907, 1115, 1116] +Triangle: [914, 1114, 1115] +Triangle: [913, 1113, 1114] +Triangle: [912, 1112, 1113] +Triangle: [1112, 910, 1107] +Triangle: [1107, 909, 1106] +Triangle: [1018, 1037, 1111] +Triangle: [1110, 901, 1119] +Triangle: [1119, 902, 1108] +Triangle: [1109, 902, 903] +Triangle: [1121, 903, 904] +Triangle: [1062, 1120, 1063] +Triangle: [1007, 1123, 1124] +Triangle: [1122, 1124, 1123] +Triangle: [988, 1149, 1024] +Triangle: [1062, 1024, 1149] +Triangle: [1206, 799, 1201] +Triangle: [1029, 936, 1132] +Triangle: [1129, 1032, 1034] +Triangle: [1130, 1033, 1032] +Triangle: [1128, 1036, 1031] +Triangle: [1111, 997, 1018] +Triangle: [1132, 1031, 1029] +Triangle: [1131, 1034, 1036] +Triangle: [1140, 776, 777] +Triangle: [1154, 1048, 1047] +Triangle: [1143, 778, 779] +Triangle: [1138, 774, 775] +Triangle: [769, 1136, 770] +Triangle: [768, 1134, 769] +Triangle: [1146, 781, 774] +Triangle: [772, 1144, 773] +Triangle: [1141, 779, 780] +Triangle: [1135, 777, 778] +Triangle: [781, 1141, 780] +Triangle: [767, 1142, 768] +Triangle: [1144, 775, 773] +Triangle: [1051, 1147, 1056] +Triangle: [1046, 1133, 1136] +Triangle: [772, 792, 771] +Triangle: [1118, 1155, 1150] +Triangle: [1150, 905, 1152] +Triangle: [1153, 1063, 1120] +Triangle: [1155, 1120, 1150] +Triangle: [1152, 989, 1151] +Triangle: [1121, 1154, 1047] +Triangle: [1149, 905, 1062] +Triangle: [989, 1149, 1061] +Triangle: [1166, 1164, 1165] +Triangle: [1009, 1166, 922] +Triangle: [1191, 1163, 1164] +Triangle: [1169, 1163, 1168] +Triangle: [921, 1171, 919] +Triangle: [1170, 1166, 1171] +Triangle: [1165, 1171, 1166] +Triangle: [919, 1172, 760] +Triangle: [1173, 1165, 1164] +Triangle: [797, 1172, 1173] +Triangle: [1174, 1164, 1163] +Triangle: [1175, 1163, 1162] +Triangle: [798, 1173, 1174] +Triangle: [766, 1174, 1175] +Triangle: [1176, 1162, 1161] +Triangle: [1160, 1176, 1161] +Triangle: [1159, 1177, 1160] +Triangle: [1158, 1178, 1159] +Triangle: [1179, 1157, 1180] +Triangle: [766, 1176, 765] +Triangle: [765, 1177, 1011] +Triangle: [1011, 1178, 764] +Triangle: [764, 1179, 763] +Triangle: [763, 1180, 762] +Triangle: [1182, 1157, 1156] +Triangle: [762, 1182, 761] +Triangle: [1181, 1182, 1156] +Triangle: [1182, 1183, 761] +Triangle: [799, 1183, 1184] +Triangle: [1123, 1183, 1122] +Triangle: [1184, 1008, 1185] +Triangle: [799, 1185, 800] +Triangle: [1008, 1126, 1185] +Triangle: [800, 1126, 746] +Triangle: [1125, 1181, 973] +Triangle: [1186, 1181, 1156] +Triangle: [735, 1186, 1156] +Triangle: [736, 1156, 1157] +Triangle: [737, 1157, 1158] +Triangle: [737, 1159, 738] +Triangle: [739, 1159, 1160] +Triangle: [740, 1160, 1161] +Triangle: [740, 1187, 744] +Triangle: [1162, 1187, 1161] +Triangle: [1188, 744, 1187] +Triangle: [1189, 1187, 1169] +Triangle: [1189, 1168, 1190] +Triangle: [1191, 1167, 1192] +Triangle: [1192, 1009, 1010] +Triangle: [1192, 1168, 1191] +Triangle: [741, 1188, 1193] +Triangle: [1193, 742, 741] +Triangle: [1193, 1189, 1190] +Triangle: [1190, 923, 1193] +Triangle: [1105, 1192, 1010] +Triangle: [758, 1201, 749] +Triangle: [754, 1207, 755] +Triangle: [1011, 1194, 765] +Triangle: [801, 1195, 1203] +Triangle: [750, 1197, 1198] +Triangle: [804, 1199, 803] +Triangle: [755, 1204, 756] +Triangle: [757, 1206, 758] +Triangle: [752, 1198, 1205] +Triangle: [748, 1196, 804] +Triangle: [753, 1205, 1194] +Triangle: [749, 1202, 748] +Triangle: [756, 1200, 757] +Triangle: [751, 1203, 1197] +Triangle: [802, 1199, 1195] +Triangle: [1210, 50, 41] +Triangle: [1214, 48, 46] +Triangle: [43, 1216, 44] +Triangle: [44, 1215, 45] +Triangle: [51, 1220, 40] +Triangle: [45, 1214, 46] +Triangle: [50, 1221, 51] +Triangle: [42, 1217, 43] +Triangle: [1212, 47, 49] +Triangle: [1219, 42, 39] +Triangle: [1213, 49, 48] +Triangle: [40, 1219, 39] +Triangle: [1211, 41, 47] +Triangle: [76, 1227, 70] +Triangle: [70, 1226, 69] +Triangle: [77, 1278, 1275] +Triangle: [65, 1279, 1222] +Triangle: [72, 1234, 77] +Triangle: [75, 1280, 76] +Triangle: [67, 1231, 1224] +Triangle: [75, 1283, 1282] +Triangle: [74, 1228, 1231] +Triangle: [73, 1225, 1283] +Triangle: [66, 1224, 1223] +Triangle: [66, 1229, 72] +Triangle: [65, 1228, 71] +Triangle: [1269, 1247, 1273] +Triangle: [1264, 1245, 1271] +Triangle: [1272, 1239, 1264] +Triangle: [1273, 1246, 1272] +Triangle: [1269, 1243, 1241] +Triangle: [1266, 1242, 1243] +Triangle: [1261, 1242, 1265] +Triangle: [1270, 1245, 1244] +Triangle: [1268, 1238, 1240] +Triangle: [1268, 1235, 1267] +Triangle: [1263, 1237, 1238] +Triangle: [1262, 1244, 1237] +Triangle: [1267, 1236, 1261] +Triangle: [52, 1248, 53] +Triangle: [55, 1256, 1249] +Triangle: [54, 1257, 1256] +Triangle: [57, 1284, 58] +Triangle: [59, 1248, 1251] +Triangle: [58, 1285, 60] +Triangle: [56, 1251, 1257] +Triangle: [60, 1286, 61] +Triangle: [55, 1254, 62] +Triangle: [63, 1255, 52] +Triangle: [62, 1274, 57] +Triangle: [63, 1260, 1276] +Triangle: [64, 1286, 1260] +Triangle: [20, 1267, 1261] +Triangle: [15, 1270, 1262] +Triangle: [21, 1262, 1263] +Triangle: [23, 1267, 22] +Triangle: [21, 1268, 23] +Triangle: [24, 1271, 1270] +Triangle: [20, 1265, 19] +Triangle: [19, 1266, 18] +Triangle: [18, 1269, 17] +Triangle: [13, 1273, 1272] +Triangle: [14, 1272, 1264] +Triangle: [25, 1264, 1271] +Triangle: [17, 1273, 16] +Triangle: [1258, 1275, 68] +Triangle: [1259, 1277, 1276] +Triangle: [1225, 1275, 1278] +Triangle: [1226, 1277, 69] +Triangle: [1280, 1281, 1227] +Triangle: [1227, 1279, 1226] +Triangle: [1280, 1232, 1233] +Triangle: [1282, 1230, 1232] +Triangle: [1283, 1278, 1230] +Triangle: [1250, 1274, 1258] +Triangle: [1252, 1284, 1250] +Triangle: [1253, 1285, 1252] +Triangle: [1259, 1260, 1287] +Triangle: [1253, 1260, 1286] +Triangle: [1321, 2415, 2416] +Triangle: [2417, 1907, 2424] +Triangle: [2418, 1906, 2417] +Triangle: [1315, 1903, 1902] +Triangle: [1323, 2420, 2415] +Triangle: [1314, 1904, 1903] +Triangle: [2420, 1905, 2418] +Triangle: [2424, 1908, 2425] +Triangle: [1320, 2416, 2422] +Triangle: [1326, 1902, 1899] +Triangle: [2423, 1320, 2422] +Triangle: [2421, 1319, 2423] +Triangle: [1336, 2402, 2408] +Triangle: [2409, 1329, 2403] +Triangle: [2403, 1335, 2404] +Triangle: [2410, 1328, 2458] +Triangle: [2411, 1336, 2408] +Triangle: [1330, 2410, 2412] +Triangle: [2404, 1337, 2411] +Triangle: [1331, 2412, 2413] +Triangle: [2414, 1338, 2409] +Triangle: [1334, 2459, 2402] +Triangle: [2458, 1339, 2414] +Triangle: [1333, 2461, 2459] +Triangle: [1332, 2413, 2461] +Triangle: [1306, 1349, 1305] +Triangle: [1351, 1306, 1307] +Triangle: [1345, 1313, 1302] +Triangle: [1340, 1307, 1308] +Triangle: [1313, 1343, 1312] +Triangle: [1349, 1304, 1305] +Triangle: [1344, 1311, 1309] +Triangle: [1304, 1346, 1301] +Triangle: [1347, 1310, 1311] +Triangle: [1346, 1302, 1301] +Triangle: [1303, 1344, 1309] +Triangle: [1312, 1342, 1303] +Triangle: [1310, 1340, 1308] +Triangle: [2390, 1298, 2391] +Triangle: [2400, 1289, 1300] +Triangle: [2392, 1295, 2393] +Triangle: [2398, 1289, 2399] +Triangle: [2391, 1297, 2392] +Triangle: [2398, 1291, 1288] +Triangle: [2389, 1299, 1290] +Triangle: [2394, 1293, 2395] +Triangle: [2401, 1300, 1299] +Triangle: [2395, 1292, 2396] +Triangle: [2396, 1291, 2397] +Triangle: [2393, 1294, 2394] +Triangle: [1358, 2433, 2467] +Triangle: [2439, 1358, 2467] +Triangle: [2455, 2434, 2454] +Triangle: [2435, 2457, 2456] +Triangle: [1365, 2429, 2434] +Triangle: [1364, 2432, 2433] +Triangle: [2437, 1362, 2431] +Triangle: [1363, 2430, 2432] +Triangle: [2431, 1359, 2428] +Triangle: [1361, 2438, 2430] +Triangle: [2436, 1355, 2437] +Triangle: [2429, 1354, 2436] +Triangle: [1359, 2435, 2428] +Triangle: [1913, 1370, 1914] +Triangle: [1913, 1368, 1369] +Triangle: [1912, 1368, 1915] +Triangle: [1916, 1323, 1321] +Triangle: [1372, 1370, 1369] +Triangle: [1379, 1374, 1372] +Triangle: [130, 1440, 137] +Triangle: [1377, 83, 1374] +Triangle: [1388, 1390, 1385] +Triangle: [1438, 1377, 1451] +Triangle: [1380, 1372, 1369] +Triangle: [1368, 1380, 1369] +Triangle: [1381, 1366, 1382] +Triangle: [1367, 1382, 1366] +Triangle: [1914, 1384, 1917] +Triangle: [1385, 1370, 1371] +Triangle: [1380, 1448, 1449] +Triangle: [1379, 1449, 1450] +Triangle: [1388, 1371, 1373] +Triangle: [1917, 1391, 1918] +Triangle: [1384, 1390, 1391] +Triangle: [1451, 1379, 1450] +Triangle: [1393, 83, 84] +Triangle: [1373, 1393, 1394] +Triangle: [103, 1393, 84] +Triangle: [1394, 1395, 1392] +Triangle: [1373, 1396, 1388] +Triangle: [1392, 1396, 1394] +Triangle: [1388, 1399, 1389] +Triangle: [1398, 1396, 1397] +Triangle: [1383, 1400, 1382] +Triangle: [1403, 1417, 1418] +Triangle: [1405, 1402, 1403] +Triangle: [1407, 1452, 1453] +Triangle: [1452, 1408, 1404] +Triangle: [1455, 1375, 1456] +Triangle: [1455, 128, 1410] +Triangle: [137, 1410, 128] +Triangle: [1444, 1408, 1375] +Triangle: [1408, 1441, 1404] +Triangle: [1442, 1404, 1441] +Triangle: [1418, 1400, 1401] +Triangle: [1417, 1442, 1445] +Triangle: [1400, 1445, 1446] +Triangle: [1400, 1447, 1382] +Triangle: [1381, 1447, 1448] +Triangle: [1372, 1373, 1371] +Triangle: [131, 1439, 130] +Triangle: [1437, 132, 1436] +Triangle: [132, 1438, 1436] +Triangle: [1440, 1375, 1410] +Triangle: [1454, 1375, 1408] +Triangle: [1386, 1433, 1434] +Triangle: [1430, 1422, 1427] +Triangle: [1429, 1413, 1412] +Triangle: [1414, 1429, 1412] +Triangle: [1435, 1431, 1432] +Triangle: [1424, 1430, 1433] +Triangle: [1430, 1428, 1431] +Triangle: [1431, 1429, 1432] +Triangle: [1427, 1419, 1428] +Triangle: [1427, 1420, 1421] +Triangle: [1415, 1435, 1426] +Triangle: [1378, 1434, 1435] +Triangle: [1428, 1416, 1429] +Triangle: [1426, 1432, 1414] +Triangle: [1433, 1431, 1434] +Triangle: [1425, 1433, 1387] +Triangle: [1437, 1387, 1386] +Triangle: [1436, 1425, 1387] +Triangle: [1415, 1439, 1378] +Triangle: [1378, 1437, 1386] +Triangle: [1413, 1441, 1412] +Triangle: [1412, 1443, 1414] +Triangle: [1444, 1415, 1426] +Triangle: [1445, 1413, 1416] +Triangle: [1446, 1416, 1419] +Triangle: [1420, 1447, 1421] +Triangle: [1421, 1446, 1419] +Triangle: [1449, 1420, 1422] +Triangle: [1423, 1449, 1422] +Triangle: [1424, 1450, 1423] +Triangle: [1425, 1451, 1424] +Triangle: [1443, 1426, 1414] +Triangle: [1409, 1456, 1454] +Triangle: [1411, 178, 1455] +Triangle: [1376, 1455, 1456] +Triangle: [1406, 1454, 1452] +Triangle: [1453, 1404, 1405] +Triangle: [1457, 1391, 1390] +Triangle: [1457, 1460, 1458] +Triangle: [1462, 1460, 1459] +Triangle: [1918, 1458, 1919] +Triangle: [1919, 1460, 1920] +Triangle: [1921, 1460, 1461] +Triangle: [1921, 1468, 1922] +Triangle: [1468, 1923, 1922] +Triangle: [1467, 1924, 1923] +Triangle: [1466, 1916, 1924] +Triangle: [1469, 1461, 1462] +Triangle: [1471, 1469, 1462] +Triangle: [1463, 1468, 1461] +Triangle: [1467, 1464, 1470] +Triangle: [1470, 1466, 1467] +Triangle: [1367, 1465, 1383] +Triangle: [196, 1477, 1478] +Triangle: [1462, 1474, 1471] +Triangle: [1475, 1474, 1477] +Triangle: [1473, 1459, 1457] +Triangle: [1475, 1472, 1471] +Triangle: [1389, 1457, 1390] +Triangle: [1399, 1473, 1389] +Triangle: [1479, 210, 1480] +Triangle: [185, 1476, 1475] +Triangle: [1475, 197, 185] +Triangle: [1478, 1474, 1473] +Triangle: [1398, 1480, 1399] +Triangle: [196, 1897, 206] +Triangle: [1897, 1473, 1480] +Triangle: [1487, 1465, 1470] +Triangle: [1481, 1488, 1482] +Triangle: [1482, 1489, 1483] +Triangle: [1483, 1490, 1484] +Triangle: [1484, 1491, 1485] +Triangle: [1485, 1492, 1486] +Triangle: [1401, 1465, 1481] +Triangle: [1418, 1481, 1482] +Triangle: [1403, 1482, 1483] +Triangle: [1403, 1484, 1405] +Triangle: [1405, 1485, 1453] +Triangle: [1453, 1486, 1407] +Triangle: [1493, 1464, 1463] +Triangle: [1496, 1463, 1469] +Triangle: [1469, 1495, 1496] +Triangle: [1476, 1495, 1472] +Triangle: [1470, 1497, 1487] +Triangle: [1498, 1493, 1496] +Triangle: [1495, 1498, 1496] +Triangle: [1513, 249, 251] +Triangle: [1498, 1501, 1497] +Triangle: [1499, 1502, 1498] +Triangle: [1487, 1501, 1488] +Triangle: [1504, 1501, 1502] +Triangle: [1506, 1503, 1504] +Triangle: [1506, 1507, 1505] +Triangle: [1508, 1509, 1507] +Triangle: [231, 1511, 1500] +Triangle: [243, 1512, 1511] +Triangle: [262, 1510, 248] +Triangle: [1511, 1502, 1500] +Triangle: [1506, 1511, 1512] +Triangle: [1523, 247, 1508] +Triangle: [1488, 1503, 1489] +Triangle: [1489, 1505, 1490] +Triangle: [1491, 1505, 1507] +Triangle: [1492, 1507, 1509] +Triangle: [194, 1494, 1476] +Triangle: [1495, 1513, 1499] +Triangle: [225, 1513, 251] +Triangle: [225, 1500, 1499] +Triangle: [1518, 129, 1411] +Triangle: [1526, 1406, 1407] +Triangle: [1517, 1376, 1409] +Triangle: [1527, 1486, 1492] +Triangle: [1522, 1509, 1510] +Triangle: [1524, 1409, 1406] +Triangle: [1376, 1518, 1411] +Triangle: [1506, 1523, 1508] +Triangle: [245, 1523, 1512] +Triangle: [1525, 1407, 1486] +Triangle: [1510, 247, 248] +Triangle: [1524, 1515, 1517] +Triangle: [1520, 1525, 1527] +Triangle: [1516, 1524, 1526] +Triangle: [1519, 1526, 1525] +Triangle: [1509, 1527, 1492] +Triangle: [1521, 1520, 1527] +Triangle: [2389, 1296, 2390] +Triangle: [269, 1395, 103] +Triangle: [302, 1529, 1550] +Triangle: [274, 1532, 278] +Triangle: [275, 1528, 269] +Triangle: [278, 1531, 275] +Triangle: [1532, 1534, 1531] +Triangle: [1530, 1535, 1532] +Triangle: [1535, 1537, 1534] +Triangle: [1533, 1538, 1535] +Triangle: [1538, 1540, 1537] +Triangle: [1536, 1541, 1538] +Triangle: [1541, 1543, 1540] +Triangle: [1542, 1541, 1539] +Triangle: [293, 1543, 1544] +Triangle: [291, 1544, 1542] +Triangle: [1531, 1545, 1528] +Triangle: [1546, 1534, 1537] +Triangle: [1896, 1537, 1540] +Triangle: [1547, 1540, 1543] +Triangle: [292, 1547, 1543] +Triangle: [1392, 1528, 1545] +Triangle: [1392, 1546, 1397] +Triangle: [1397, 1896, 1398] +Triangle: [1398, 1547, 1479] +Triangle: [1479, 297, 209] +Triangle: [302, 1530, 274] +Triangle: [1530, 1551, 1533] +Triangle: [1551, 1553, 1533] +Triangle: [1552, 1550, 1529] +Triangle: [1536, 1553, 1554] +Triangle: [1539, 1554, 1557] +Triangle: [1549, 1557, 1556] +Triangle: [1555, 1557, 1554] +Triangle: [1549, 1542, 1539] +Triangle: [1548, 291, 1542] +Triangle: [1565, 1571, 1563] +Triangle: [1576, 1558, 1577] +Triangle: [1577, 1574, 1573] +Triangle: [1560, 1573, 1578] +Triangle: [1573, 1564, 1578] +Triangle: [1563, 1578, 1564] +Triangle: [1578, 1561, 1560] +Triangle: [1566, 1571, 1562] +Triangle: [1565, 1569, 1562] +Triangle: [1568, 1562, 1569] +Triangle: [1568, 1561, 1566] +Triangle: [1560, 1567, 1559] +Triangle: [1559, 1577, 1560] +Triangle: [1564, 1579, 1563] +Triangle: [1579, 1565, 1563] +Triangle: [1565, 1581, 1570] +Triangle: [1579, 1588, 1572] +Triangle: [1581, 1588, 1587] +Triangle: [1570, 1587, 1590] +Triangle: [1593, 1590, 1589] +Triangle: [1586, 1590, 1587] +Triangle: [1585, 1587, 1588] +Triangle: [1588, 1584, 1585] +Triangle: [1591, 1594, 1592] +Triangle: [1569, 1590, 1591] +Triangle: [1568, 1591, 1592] +Triangle: [1576, 1556, 1555] +Triangle: [1556, 1567, 1595] +Triangle: [1567, 1592, 1595] +Triangle: [1549, 1595, 1596] +Triangle: [1596, 1592, 1594] +Triangle: [1593, 1598, 1594] +Triangle: [1842, 1839, 1795] +Triangle: [1886, 1602, 1884] +Triangle: [1594, 1599, 1596] +Triangle: [1549, 1599, 1548] +Triangle: [1885, 1599, 1887] +Triangle: [1600, 358, 354] +Triangle: [1887, 1598, 1884] +Triangle: [1842, 1796, 1843] +Triangle: [683, 1600, 354] +Triangle: [1606, 1589, 1586] +Triangle: [1604, 1889, 1888] +Triangle: [361, 1607, 364] +Triangle: [1589, 1597, 1593] +Triangle: [1597, 1888, 1886] +Triangle: [351, 1605, 361] +Triangle: [1609, 1586, 1585] +Triangle: [1586, 1610, 1606] +Triangle: [1606, 1890, 1889] +Triangle: [1607, 369, 364] +Triangle: [1580, 1575, 1584] +Triangle: [1575, 1574, 1582] +Triangle: [1574, 1583, 1582] +Triangle: [1613, 1558, 1555] +Triangle: [1613, 1554, 1612] +Triangle: [376, 1619, 378] +Triangle: [271, 1619, 1620] +Triangle: [1617, 1619, 1618] +Triangle: [1529, 1620, 1621] +Triangle: [1616, 1620, 1617] +Triangle: [1529, 1622, 1552] +Triangle: [1552, 1623, 1553] +Triangle: [1553, 1612, 1554] +Triangle: [1642, 393, 1636] +Triangle: [1642, 1631, 1638] +Triangle: [1638, 1632, 1639] +Triangle: [1640, 1632, 1634] +Triangle: [1628, 1640, 1641] +Triangle: [1641, 1634, 1633] +Triangle: [1635, 1639, 1640] +Triangle: [1629, 1639, 1630] +Triangle: [1629, 1642, 1638] +Triangle: [1637, 401, 1642] +Triangle: [1650, 1628, 1641] +Triangle: [1650, 1647, 1628] +Triangle: [1650, 1633, 1627] +Triangle: [1650, 1648, 1647] +Triangle: [1647, 1649, 1646] +Triangle: [1635, 1647, 1646] +Triangle: [1630, 1646, 1645] +Triangle: [1644, 1630, 1645] +Triangle: [1637, 1644, 1643] +Triangle: [1637, 407, 391] +Triangle: [1651, 1646, 1649] +Triangle: [1645, 1652, 1644] +Triangle: [1643, 1652, 1653] +Triangle: [419, 1643, 1653] +Triangle: [422, 1653, 1655] +Triangle: [1652, 1655, 1653] +Triangle: [1651, 1659, 1652] +Triangle: [1661, 1663, 1659] +Triangle: [1662, 1625, 1660] +Triangle: [1615, 1621, 1616] +Triangle: [1614, 1622, 1615] +Triangle: [1657, 1662, 1670] +Triangle: [1656, 1676, 1673] +Triangle: [1616, 1658, 1615] +Triangle: [422, 1654, 387] +Triangle: [1670, 1648, 1627] +Triangle: [1661, 1649, 1660] +Triangle: [1660, 1648, 1662] +Triangle: [1659, 1654, 1655] +Triangle: [1664, 387, 1654] +Triangle: [1654, 1626, 1664] +Triangle: [1664, 433, 431] +Triangle: [1666, 433, 1665] +Triangle: [1667, 435, 1666] +Triangle: [376, 1667, 1618] +Triangle: [1661, 1625, 1668] +Triangle: [1668, 1626, 1663] +Triangle: [1626, 1665, 1664] +Triangle: [1625, 1669, 1668] +Triangle: [1656, 1672, 1669] +Triangle: [1624, 1674, 1658] +Triangle: [1673, 1671, 1656] +Triangle: [1665, 1672, 1666] +Triangle: [1675, 1666, 1672] +Triangle: [1618, 1675, 1617] +Triangle: [1671, 1675, 1672] +Triangle: [1616, 1671, 1624] +Triangle: [1657, 1673, 1676] +Triangle: [1636, 461, 1677] +Triangle: [1678, 461, 460] +Triangle: [1631, 1677, 1680] +Triangle: [1680, 1678, 1679] +Triangle: [466, 1678, 460] +Triangle: [448, 1679, 466] +Triangle: [1688, 448, 475] +Triangle: [1682, 475, 459] +Triangle: [1680, 1689, 1691] +Triangle: [1690, 1691, 1689] +Triangle: [1681, 1689, 1679] +Triangle: [1682, 485, 1683] +Triangle: [449, 1683, 485] +Triangle: [1697, 1684, 1683] +Triangle: [1684, 1695, 1685] +Triangle: [1685, 1694, 1686] +Triangle: [1693, 1686, 1694] +Triangle: [1697, 1708, 1696] +Triangle: [450, 1698, 487] +Triangle: [487, 1697, 449] +Triangle: [495, 1699, 450] +Triangle: [458, 1700, 451] +Triangle: [525, 1701, 458] +Triangle: [456, 1702, 457] +Triangle: [619, 1703, 456] +Triangle: [1705, 452, 453] +Triangle: [1700, 495, 451] +Triangle: [1709, 1698, 1699] +Triangle: [1707, 1699, 1706] +Triangle: [1700, 1707, 1706] +Triangle: [1701, 1710, 1700] +Triangle: [1735, 1711, 1701] +Triangle: [1703, 1712, 1702] +Triangle: [1689, 1693, 1690] +Triangle: [1687, 1719, 1686] +Triangle: [1685, 1717, 1684] +Triangle: [1683, 1715, 1682] +Triangle: [1714, 1687, 1681] +Triangle: [1686, 1718, 1685] +Triangle: [1684, 1716, 1683] +Triangle: [1715, 1688, 1682] +Triangle: [1688, 1714, 1681] +Triangle: [1722, 1718, 1719] +Triangle: [1716, 1722, 1715] +Triangle: [1722, 1720, 1714] +Triangle: [1721, 1722, 1714] +Triangle: [1696, 1729, 1695] +Triangle: [1730, 1708, 1709] +Triangle: [1731, 1709, 1707] +Triangle: [1694, 1723, 1693] +Triangle: [1724, 1726, 1727] +Triangle: [1725, 1727, 1728] +Triangle: [1695, 1726, 1694] +Triangle: [1727, 1729, 1730] +Triangle: [1727, 1731, 1728] +Triangle: [1710, 1731, 1707] +Triangle: [1728, 1732, 1733] +Triangle: [1734, 1728, 1733] +Triangle: [1711, 1732, 1710] +Triangle: [1702, 1736, 1735] +Triangle: [457, 1735, 525] +Triangle: [1733, 1736, 1734] +Triangle: [1737, 1736, 1712] +Triangle: [1713, 1737, 1712] +Triangle: [1737, 1739, 1734] +Triangle: [1740, 1734, 1739] +Triangle: [1725, 1742, 1724] +Triangle: [1723, 1742, 1743] +Triangle: [1690, 1723, 1743] +Triangle: [1692, 1743, 1744] +Triangle: [1740, 1746, 1742] +Triangle: [1739, 1745, 1740] +Triangle: [1741, 1748, 1745] +Triangle: [1748, 1751, 1750] +Triangle: [1750, 1753, 1752] +Triangle: [1752, 1755, 1754] +Triangle: [1756, 1755, 1757] +Triangle: [1758, 1757, 1759] +Triangle: [1758, 1761, 1760] +Triangle: [1761, 1762, 1760] +Triangle: [1763, 1764, 1762] +Triangle: [1769, 1766, 1768] +Triangle: [1765, 1768, 1764] +Triangle: [1767, 1770, 1766] +Triangle: [1771, 1772, 1770] +Triangle: [1773, 1774, 1772] +Triangle: [1829, 1703, 1828] +Triangle: [1777, 1704, 1705] +Triangle: [1829, 1774, 1830] +Triangle: [1772, 1776, 1777] +Triangle: [1831, 1738, 1830] +Triangle: [1747, 1737, 1738] +Triangle: [1747, 1749, 1741] +Triangle: [1832, 1747, 1831] +Triangle: [1775, 1790, 1791] +Triangle: [1773, 1789, 1790] +Triangle: [1771, 1788, 1789] +Triangle: [1767, 1787, 1788] +Triangle: [1765, 1787, 1769] +Triangle: [1765, 1785, 1786] +Triangle: [1763, 1784, 1785] +Triangle: [1759, 1784, 1761] +Triangle: [1757, 1783, 1759] +Triangle: [1757, 1781, 1782] +Triangle: [1755, 1780, 1781] +Triangle: [1751, 1780, 1753] +Triangle: [1749, 1779, 1751] +Triangle: [1746, 1743, 1742] +Triangle: [1745, 1792, 1746] +Triangle: [1750, 1792, 1748] +Triangle: [1793, 1750, 1752] +Triangle: [1795, 1752, 1754] +Triangle: [1796, 1754, 1756] +Triangle: [1758, 1796, 1756] +Triangle: [1760, 1797, 1758] +Triangle: [1799, 1760, 1762] +Triangle: [1806, 1814, 1815] +Triangle: [1807, 1816, 1814] +Triangle: [1800, 1817, 1818] +Triangle: [1808, 1819, 1816] +Triangle: [1817, 1802, 1820] +Triangle: [1809, 1821, 1819] +Triangle: [1820, 1803, 1822] +Triangle: [1821, 1811, 1823] +Triangle: [1822, 1804, 1824] +Triangle: [1823, 1812, 1825] +Triangle: [1824, 1805, 1826] +Triangle: [1812, 1827, 1825] +Triangle: [1826, 1806, 1815] +Triangle: [1833, 1818, 1834] +Triangle: [1834, 1778, 1832] +Triangle: [1783, 1815, 1784] +Triangle: [1825, 1791, 1790] +Triangle: [1782, 1826, 1783] +Triangle: [1789, 1825, 1790] +Triangle: [1781, 1824, 1782] +Triangle: [1788, 1823, 1789] +Triangle: [1780, 1822, 1781] +Triangle: [1819, 1788, 1787] +Triangle: [1779, 1820, 1780] +Triangle: [1816, 1787, 1786] +Triangle: [1818, 1779, 1778] +Triangle: [1814, 1786, 1785] +Triangle: [1815, 1785, 1784] +Triangle: [1791, 1834, 1832] +Triangle: [1827, 1833, 1834] +Triangle: [1791, 1831, 1775] +Triangle: [1775, 1830, 1774] +Triangle: [1829, 1738, 1713] +Triangle: [1776, 1828, 1704] +Triangle: [452, 1828, 619] +Triangle: [1631, 1691, 1632] +Triangle: [1792, 1744, 1746] +Triangle: [1836, 1692, 1744] +Triangle: [1835, 1691, 1692] +Triangle: [1839, 1835, 1836] +Triangle: [1837, 1840, 1838] +Triangle: [1634, 1835, 1837] +Triangle: [1633, 1837, 1838] +Triangle: [1793, 1841, 1794] +Triangle: [1841, 1839, 1836] +Triangle: [1797, 1843, 1796] +Triangle: [1627, 1838, 1846] +Triangle: [1846, 1670, 1627] +Triangle: [1845, 1657, 1670] +Triangle: [1848, 1838, 1840] +Triangle: [1848, 1845, 1846] +Triangle: [1674, 1847, 1658] +Triangle: [1842, 1848, 1840] +Triangle: [1848, 1850, 1847] +Triangle: [1849, 1847, 1850] +Triangle: [1615, 1849, 1614] +Triangle: [1623, 1852, 1612] +Triangle: [1849, 1852, 1614] +Triangle: [1613, 1852, 1853] +Triangle: [1583, 1853, 1854] +Triangle: [1582, 1854, 1855] +Triangle: [1850, 1853, 1849] +Triangle: [1855, 1850, 1851] +Triangle: [1843, 1851, 1842] +Triangle: [1844, 1855, 1843] +Triangle: [1582, 1856, 1575] +Triangle: [1575, 1858, 1584] +Triangle: [1856, 1857, 1858] +Triangle: [1798, 1844, 1797] +Triangle: [1584, 1860, 1585] +Triangle: [1858, 1859, 1860] +Triangle: [1799, 1857, 1798] +Triangle: [1585, 1862, 1609] +Triangle: [1860, 1861, 1862] +Triangle: [1863, 1859, 1799] +Triangle: [1863, 1762, 1764] +Triangle: [1867, 453, 455] +Triangle: [1867, 1777, 1705] +Triangle: [1772, 1866, 1770] +Triangle: [1770, 1865, 1766] +Triangle: [1865, 1768, 1766] +Triangle: [1864, 1764, 1768] +Triangle: [1863, 1871, 1861] +Triangle: [1864, 1870, 1871] +Triangle: [1865, 1869, 1870] +Triangle: [1867, 1869, 1866] +Triangle: [1868, 455, 454] +Triangle: [454, 1872, 1868] +Triangle: [1609, 1876, 1608] +Triangle: [1862, 1877, 1876] +Triangle: [1871, 1877, 1861] +Triangle: [1870, 1875, 1871] +Triangle: [1870, 1873, 1874] +Triangle: [1869, 1872, 1873] +Triangle: [1880, 1876, 1877] +Triangle: [1882, 1880, 1883] +Triangle: [673, 1881, 676] +Triangle: [1879, 1883, 1881] +Triangle: [1608, 1878, 1610] +Triangle: [1889, 1611, 1607] +Triangle: [1601, 1888, 1605] +Triangle: [1888, 1607, 1605] +Triangle: [298, 1885, 683] +Triangle: [1603, 1884, 1602] +Triangle: [1600, 1887, 1603] +Triangle: [1597, 1884, 1598] +Triangle: [1882, 1610, 1878] +Triangle: [1890, 1879, 1611] +Triangle: [369, 1879, 673] +Triangle: [1875, 1893, 1894] +Triangle: [1874, 1892, 1893] +Triangle: [1891, 664, 688] +Triangle: [1873, 1891, 1892] +Triangle: [1894, 1877, 1875] +Triangle: [1894, 1883, 1880] +Triangle: [1893, 1881, 1883] +Triangle: [1895, 1892, 1891] +Triangle: [693, 1891, 688] +Triangle: [676, 1895, 693] +Triangle: [1841, 1792, 1794] +Triangle: [358, 1602, 695] +Triangle: [695, 1601, 351] +Triangle: [210, 1897, 1480] +Triangle: [1903, 1911, 1910] +Triangle: [1898, 1326, 1899] +Triangle: [1900, 1316, 1901] +Triangle: [1901, 1325, 1898] +Triangle: [1902, 1910, 1909] +Triangle: [1899, 1909, 1908] +Triangle: [1324, 1900, 1905] +Triangle: [1907, 1899, 1908] +Triangle: [1905, 1901, 1906] +Triangle: [1906, 1898, 1907] +Triangle: [1910, 2427, 2426] +Triangle: [1909, 2426, 2419] +Triangle: [1908, 2419, 2425] +Triangle: [1911, 2421, 2427] +Triangle: [1904, 1318, 1911] +Triangle: [1924, 1321, 1320] +Triangle: [1923, 1320, 1319] +Triangle: [1922, 1319, 1318] +Triangle: [1317, 1922, 1318] +Triangle: [1317, 1920, 1921] +Triangle: [1315, 1920, 1314] +Triangle: [1326, 1919, 1315] +Triangle: [1325, 1918, 1326] +Triangle: [1316, 1917, 1325] +Triangle: [1367, 1912, 1916] +Triangle: [1323, 1915, 1324] +Triangle: [1324, 1913, 1322] +Triangle: [1322, 1914, 1316] +Triangle: [1932, 262, 732] +Triangle: [1933, 1522, 1932] +Triangle: [1931, 1521, 1933] +Triangle: [1930, 1520, 1931] +Triangle: [1929, 1519, 1930] +Triangle: [1929, 1515, 1516] +Triangle: [1928, 1517, 1515] +Triangle: [1927, 1514, 1517] +Triangle: [1926, 1518, 1514] +Triangle: [1925, 257, 1518] +Triangle: [5227, 732, 5217] +Triangle: [5207, 1941, 5208] +Triangle: [1931, 5228, 5229] +Triangle: [5229, 1930, 1931] +Triangle: [5225, 1930, 5226] +Triangle: [5224, 1929, 5225] +Triangle: [5223, 1928, 5224] +Triangle: [5222, 1927, 5223] +Triangle: [5222, 1925, 1926] +Triangle: [724, 5221, 5220] +Triangle: [2375, 1944, 2379] +Triangle: [2377, 1957, 2383] +Triangle: [1967, 2315, 2318] +Triangle: [1982, 1976, 1981] +Triangle: [1970, 1988, 1987] +Triangle: [1981, 1977, 1980] +Triangle: [2281, 1948, 2284] +Triangle: [1959, 2384, 2380] +Triangle: [1997, 2381, 2382] +Triangle: [2001, 2287, 2285] +Triangle: [1993, 1973, 1984] +Triangle: [2374, 1963, 2385] +Triangle: [1943, 2382, 2376] +Triangle: [2278, 1947, 2281] +Triangle: [2195, 1006, 1007] +Triangle: [2088, 1983, 2084] +Triangle: [1983, 1975, 1982] +Triangle: [2002, 2034, 2033] +Triangle: [2090, 1980, 2087] +Triangle: [1985, 2085, 2093] +Triangle: [2084, 1982, 2089] +Triangle: [2329, 1964, 2321] +Triangle: [1989, 2091, 2096] +Triangle: [1992, 1964, 1993] +Triangle: [1980, 1978, 1979] +Triangle: [1986, 2093, 2092] +Triangle: [1990, 2094, 2091] +Triangle: [1979, 2092, 2083] +Triangle: [1991, 2082, 2094] +Triangle: [1985, 1970, 1987] +Triangle: [2082, 1993, 2086] +Triangle: [1968, 1990, 1989] +Triangle: [1987, 2095, 2085] +Triangle: [1979, 1971, 1986] +Triangle: [2089, 1981, 2090] +Triangle: [1966, 1992, 1991] +Triangle: [1986, 1972, 1985] +Triangle: [1984, 1974, 1983] +Triangle: [1980, 2083, 2087] +Triangle: [1967, 1991, 1990] +Triangle: [2086, 1984, 2088] +Triangle: [2275, 1999, 2283] +Triangle: [1955, 2282, 2286] +Triangle: [1952, 2279, 2280] +Triangle: [1954, 2289, 2282] +Triangle: [1953, 2280, 2289] +Triangle: [2385, 1995, 2378] +Triangle: [1958, 2380, 2386] +Triangle: [1960, 2387, 2384] +Triangle: [2000, 2285, 2277] +Triangle: [1945, 2276, 2287] +Triangle: [2283, 2000, 2277] +Triangle: [2288, 1949, 2278] +Triangle: [1944, 2376, 2379] +Triangle: [2002, 2005, 2004] +Triangle: [2003, 2006, 2007] +Triangle: [2065, 2007, 2055] +Triangle: [2010, 2066, 2013] +Triangle: [2003, 2010, 2008] +Triangle: [2003, 2009, 2005] +Triangle: [2013, 2064, 2015] +Triangle: [2010, 2011, 2008] +Triangle: [2009, 2011, 2012] +Triangle: [2011, 2014, 2012] +Triangle: [2015, 2014, 2013] +Triangle: [2059, 2019, 2052] +Triangle: [2019, 2058, 2052] +Triangle: [2068, 2061, 2054] +Triangle: [2030, 2016, 2017] +Triangle: [2017, 2063, 2058] +Triangle: [2032, 2017, 2019] +Triangle: [2004, 2021, 2020] +Triangle: [2023, 2020, 2021] +Triangle: [2023, 2094, 2082] +Triangle: [2025, 2091, 2094] +Triangle: [2021, 2025, 2023] +Triangle: [2005, 2024, 2021] +Triangle: [2027, 2096, 2091] +Triangle: [2024, 2027, 2025] +Triangle: [2009, 2026, 2024] +Triangle: [2014, 2026, 2012] +Triangle: [831, 817, 830] +Triangle: [2032, 2092, 2093] +Triangle: [2030, 2093, 2085] +Triangle: [2004, 2044, 2034] +Triangle: [2029, 2085, 2095] +Triangle: [2002, 2035, 2006] +Triangle: [2020, 2045, 2044] +Triangle: [2035, 2062, 2054] +Triangle: [2038, 2060, 2062] +Triangle: [2036, 2035, 2033] +Triangle: [2034, 2036, 2033] +Triangle: [2039, 2036, 2037] +Triangle: [2040, 2038, 2039] +Triangle: [2060, 2041, 2057] +Triangle: [2018, 2032, 2019] +Triangle: [2049, 2040, 2048] +Triangle: [2018, 2053, 2043] +Triangle: [2056, 2043, 2053] +Triangle: [2041, 2050, 2042] +Triangle: [2041, 2056, 2057] +Triangle: [2043, 2050, 2051] +Triangle: [2006, 2054, 2061] +Triangle: [2022, 2088, 2045] +Triangle: [2084, 2045, 2088] +Triangle: [2047, 2089, 2048] +Triangle: [2045, 2046, 2044] +Triangle: [2034, 2046, 2037] +Triangle: [2046, 2039, 2037] +Triangle: [2048, 2039, 2047] +Triangle: [2090, 2048, 2089] +Triangle: [2031, 2083, 2092] +Triangle: [2051, 2087, 2083] +Triangle: [2007, 2061, 2055] +Triangle: [2049, 2087, 2050] +Triangle: [2048, 2040, 2039] +Triangle: [2378, 1994, 2377] +Triangle: [2383, 1956, 2375] +Triangle: [2059, 2067, 2053] +Triangle: [2286, 1946, 1955] +Triangle: [2063, 2070, 2058] +Triangle: [2056, 2069, 2057] +Triangle: [2079, 2054, 2062] +Triangle: [2057, 2077, 2060] +Triangle: [2065, 2072, 2066] +Triangle: [2055, 2081, 2065] +Triangle: [2066, 2071, 2064] +Triangle: [2078, 2055, 2061] +Triangle: [2053, 2075, 2056] +Triangle: [2070, 2052, 2058] +Triangle: [2077, 2062, 2060] +Triangle: [2052, 2076, 2059] +Triangle: [2106, 2203, 2223] +Triangle: [2320, 2234, 2326] +Triangle: [2321, 2227, 2236] +Triangle: [2327, 2239, 2238] +Triangle: [2322, 2230, 2317] +Triangle: [2323, 2229, 2239] +Triangle: [2326, 2233, 2319] +Triangle: [2328, 2238, 2240] +Triangle: [2316, 2227, 2324] +Triangle: [2318, 2228, 2316] +Triangle: [2328, 2235, 2320] +Triangle: [2325, 2230, 2229] +Triangle: [2292, 2227, 2228] +Triangle: [2296, 2229, 2230] +Triangle: [2231, 2292, 2228] +Triangle: [2029, 2015, 2016] +Triangle: [2235, 2302, 2234] +Triangle: [2276, 2078, 2068] +Triangle: [2303, 2236, 2227] +Triangle: [2291, 2230, 2237] +Triangle: [2298, 2238, 2239] +Triangle: [2229, 2298, 2239] +Triangle: [2337, 2233, 2234] +Triangle: [2299, 2240, 2238] +Triangle: [2232, 2293, 2231] +Triangle: [2240, 2301, 2235] +Triangle: [917, 1944, 1956] +Triangle: [916, 1943, 1944] +Triangle: [920, 1956, 2112] +Triangle: [2112, 1957, 2113] +Triangle: [920, 2113, 921] +Triangle: [2232, 2319, 2233] +Triangle: [2161, 2250, 2114] +Triangle: [2170, 2120, 2115] +Triangle: [2206, 2190, 2173] +Triangle: [2122, 2252, 2120] +Triangle: [2124, 2253, 2122] +Triangle: [2126, 2255, 2214] +Triangle: [2178, 2330, 2246] +Triangle: [2130, 2258, 2128] +Triangle: [2244, 2142, 2243] +Triangle: [2183, 2140, 2138] +Triangle: [2134, 2260, 2132] +Triangle: [2136, 2261, 2134] +Triangle: [2138, 2262, 2136] +Triangle: [2138, 2264, 2263] +Triangle: [2243, 2266, 2265] +Triangle: [2144, 2267, 2225] +Triangle: [2142, 2269, 2266] +Triangle: [2148, 2268, 2144] +Triangle: [2150, 2270, 2148] +Triangle: [2150, 2272, 2271] +Triangle: [2152, 2273, 2272] +Triangle: [2168, 2156, 2154] +Triangle: [2250, 2156, 2114] +Triangle: [2169, 2166, 2118] +Triangle: [2115, 2249, 2161] +Triangle: [1950, 2388, 2374] +Triangle: [2163, 2142, 2160] +Triangle: [2130, 2260, 2259] +Triangle: [2183, 2136, 2182] +Triangle: [2182, 2134, 2181] +Triangle: [2181, 2132, 2180] +Triangle: [2130, 2180, 2132] +Triangle: [2128, 2178, 2333] +Triangle: [2147, 2226, 2225] +Triangle: [2124, 2216, 2214] +Triangle: [2122, 2176, 2124] +Triangle: [2122, 2174, 2175] +Triangle: [2190, 2172, 2173] +Triangle: [2274, 2154, 2156] +Triangle: [2115, 2171, 2170] +Triangle: [2114, 2171, 2161] +Triangle: [2114, 2172, 2185] +Triangle: [2173, 2168, 2119] +Triangle: [2167, 2119, 2168] +Triangle: [2154, 2167, 2168] +Triangle: [2152, 2166, 2167] +Triangle: [2150, 2165, 2166] +Triangle: [2144, 2165, 2148] +Triangle: [2099, 2186, 2098] +Triangle: [2189, 2159, 2158] +Triangle: [2191, 2197, 2198] +Triangle: [2171, 2190, 2191] +Triangle: [2217, 2193, 2218] +Triangle: [2308, 915, 1006] +Triangle: [2288, 1951, 1950] +Triangle: [2288, 2071, 2279] +Triangle: [2080, 2064, 2071] +Triangle: [2388, 1961, 2196] +Triangle: [2063, 2015, 2064] +Triangle: [2028, 2095, 2096] +Triangle: [2284, 1998, 2275] +Triangle: [2043, 2031, 2018] +Triangle: [2086, 2023, 2082] +Triangle: [2189, 2197, 2188] +Triangle: [2100, 2187, 2099] +Triangle: [2219, 2194, 2217] +Triangle: [2158, 2200, 2189] +Triangle: [2199, 2189, 2200] +Triangle: [2197, 2205, 2188] +Triangle: [2159, 2204, 2193] +Triangle: [2218, 2295, 2309] +Triangle: [2097, 2186, 2203] +Triangle: [2192, 2198, 2199] +Triangle: [2207, 2199, 2200] +Triangle: [2212, 2200, 2210] +Triangle: [2221, 2201, 2219] +Triangle: [2170, 2191, 2192] +Triangle: [2251, 2120, 2252] +Triangle: [2206, 2119, 2205] +Triangle: [2208, 2210, 2201] +Triangle: [2188, 2211, 2159] +Triangle: [2201, 2158, 2194] +Triangle: [2194, 2159, 2193] +Triangle: [2205, 2169, 2211] +Triangle: [2118, 2211, 2169] +Triangle: [2174, 2192, 2207] +Triangle: [2174, 2212, 2175] +Triangle: [2175, 2208, 2176] +Triangle: [2176, 2221, 2216] +Triangle: [2310, 2209, 2177] +Triangle: [2209, 2311, 2202] +Triangle: [2193, 2220, 2218] +Triangle: [2202, 2312, 2187] +Triangle: [2187, 2309, 2186] +Triangle: [2314, 2177, 2126] +Triangle: [2214, 2254, 2124] +Triangle: [2213, 2204, 2118] +Triangle: [2165, 2118, 2166] +Triangle: [2222, 2220, 2213] +Triangle: [2164, 2213, 2165] +Triangle: [2241, 2294, 2290] +Triangle: [2225, 2164, 2144] +Triangle: [2225, 2269, 2147] +Triangle: [2226, 2222, 2164] +Triangle: [2223, 2163, 2106] +Triangle: [2290, 2237, 2241] +Triangle: [2104, 2180, 2105] +Triangle: [2180, 2103, 2105] +Triangle: [2101, 2202, 2100] +Triangle: [2128, 2257, 2330] +Triangle: [2179, 2334, 2103] +Triangle: [2096, 1988, 1989] +Triangle: [2248, 2101, 2305] +Triangle: [2106, 2160, 2107] +Triangle: [2182, 2104, 2111] +Triangle: [2183, 2111, 2110] +Triangle: [2140, 2265, 2264] +Triangle: [2184, 2243, 2140] +Triangle: [2108, 2160, 2244] +Triangle: [2109, 2244, 2184] +Triangle: [2184, 2110, 2109] +Triangle: [2330, 2256, 2126] +Triangle: [2246, 2126, 2177] +Triangle: [2135, 2139, 2133] +Triangle: [2116, 2249, 2162] +Triangle: [2251, 2121, 2117] +Triangle: [2252, 2123, 2121] +Triangle: [2253, 2125, 2123] +Triangle: [2255, 2127, 2215] +Triangle: [2257, 2129, 2245] +Triangle: [2258, 2131, 2129] +Triangle: [2259, 2133, 2131] +Triangle: [2260, 2135, 2133] +Triangle: [2135, 2262, 2137] +Triangle: [2137, 2263, 2139] +Triangle: [2263, 2141, 2139] +Triangle: [2265, 2143, 2242] +Triangle: [2224, 2268, 2145] +Triangle: [2266, 2146, 2143] +Triangle: [2145, 2270, 2149] +Triangle: [2149, 2271, 2151] +Triangle: [2151, 2272, 2153] +Triangle: [2153, 2273, 2155] +Triangle: [2274, 2116, 2157] +Triangle: [2273, 2157, 2155] +Triangle: [2249, 2117, 2162] +Triangle: [2254, 2215, 2125] +Triangle: [2146, 2267, 2224] +Triangle: [2264, 2242, 2141] +Triangle: [2256, 2245, 2127] +Triangle: [2131, 2139, 2141] +Triangle: [2129, 2141, 2242] +Triangle: [2245, 2242, 2143] +Triangle: [2146, 2245, 2143] +Triangle: [2127, 2224, 2215] +Triangle: [2145, 2215, 2224] +Triangle: [2125, 2149, 2123] +Triangle: [2123, 2151, 2121] +Triangle: [2121, 2153, 2117] +Triangle: [2155, 2117, 2153] +Triangle: [2162, 2157, 2116] +Triangle: [2076, 2275, 2067] +Triangle: [2290, 2097, 2106] +Triangle: [2080, 2278, 2070] +Triangle: [2075, 2277, 2069] +Triangle: [2287, 2068, 2079] +Triangle: [2277, 2077, 2069] +Triangle: [2081, 2280, 2072] +Triangle: [2282, 2081, 2074] +Triangle: [2072, 2279, 2071] +Triangle: [2286, 2074, 2078] +Triangle: [2067, 2283, 2075] +Triangle: [2315, 1969, 2319] +Triangle: [2278, 2073, 2070] +Triangle: [2285, 2079, 2077] +Triangle: [2073, 2284, 2076] +Triangle: [2329, 2237, 2322] +Triangle: [2302, 2334, 2332] +Triangle: [2105, 2302, 2301] +Triangle: [2104, 2301, 2300] +Triangle: [2299, 2104, 2300] +Triangle: [2298, 2111, 2299] +Triangle: [2297, 2110, 2298] +Triangle: [2296, 2109, 2297] +Triangle: [2296, 2107, 2108] +Triangle: [2291, 2106, 2107] +Triangle: [2203, 2222, 2223] +Triangle: [2098, 2294, 2303] +Triangle: [2099, 2303, 2292] +Triangle: [2293, 2099, 2292] +Triangle: [2305, 2100, 2293] +Triangle: [2304, 2247, 2248] +Triangle: [1007, 2307, 2195] +Triangle: [2306, 1124, 1125] +Triangle: [2331, 2177, 2209] +Triangle: [2247, 2209, 2101] +Triangle: [1996, 2386, 2381] +Triangle: [2214, 2314, 2126] +Triangle: [2311, 2217, 2312] +Triangle: [2312, 2218, 2309] +Triangle: [2310, 2221, 2313] +Triangle: [2295, 2186, 2309] +Triangle: [2216, 2314, 2214] +Triangle: [2313, 2219, 2311] +Triangle: [1973, 2322, 1974] +Triangle: [2233, 2336, 2232] +Triangle: [1975, 2325, 1976] +Triangle: [1971, 2320, 1972] +Triangle: [1966, 2318, 2316] +Triangle: [1965, 2316, 2324] +Triangle: [1978, 2328, 1971] +Triangle: [2326, 1969, 1970] +Triangle: [1976, 2323, 1977] +Triangle: [1974, 2317, 1975] +Triangle: [1978, 2323, 2327] +Triangle: [1964, 2324, 2321] +Triangle: [1972, 2326, 1970] +Triangle: [2329, 2236, 2241] +Triangle: [2231, 2315, 2232] +Triangle: [1989, 1969, 1968] +Triangle: [2302, 2337, 2234] +Triangle: [2102, 2332, 2334] +Triangle: [2335, 2248, 2336] +Triangle: [2304, 2337, 2332] +Triangle: [2178, 2334, 2333] +Triangle: [2305, 2336, 2248] +Triangle: [2102, 2331, 2247] +Triangle: [2178, 2246, 2331] +Triangle: [2348, 2346, 2349] +Triangle: [2348, 1009, 922] +Triangle: [2345, 2371, 2346] +Triangle: [2351, 2345, 2344] +Triangle: [2352, 921, 2113] +Triangle: [1170, 2348, 922] +Triangle: [2347, 2352, 2353] +Triangle: [2353, 2113, 1957] +Triangle: [2354, 2347, 2353] +Triangle: [1994, 2353, 1957] +Triangle: [2346, 2355, 2345] +Triangle: [2356, 2345, 2355] +Triangle: [1995, 2354, 1994] +Triangle: [1963, 2355, 1995] +Triangle: [2344, 2357, 2343] +Triangle: [2342, 2357, 2358] +Triangle: [2341, 2358, 2359] +Triangle: [2340, 2359, 2360] +Triangle: [2339, 2360, 2361] +Triangle: [2357, 1963, 1962] +Triangle: [2358, 1962, 2196] +Triangle: [2359, 2196, 1961] +Triangle: [2360, 1961, 1960] +Triangle: [2361, 1960, 1959] +Triangle: [2363, 2339, 2361] +Triangle: [2363, 1959, 1958] +Triangle: [2362, 2363, 2306] +Triangle: [2364, 2363, 1958] +Triangle: [1996, 2364, 1958] +Triangle: [2307, 2364, 2365] +Triangle: [2195, 2365, 2366] +Triangle: [2366, 1996, 1997] +Triangle: [2195, 2366, 2308] +Triangle: [1997, 2308, 2366] +Triangle: [2362, 1125, 973] +Triangle: [1186, 2362, 973] +Triangle: [1934, 1186, 745] +Triangle: [1935, 2338, 1934] +Triangle: [1936, 2339, 1935] +Triangle: [2341, 1936, 1937] +Triangle: [1938, 2341, 1937] +Triangle: [1939, 2342, 1938] +Triangle: [2367, 1939, 1942] +Triangle: [2367, 2344, 2343] +Triangle: [2368, 1942, 1941] +Triangle: [2369, 2367, 2368] +Triangle: [2350, 2369, 2370] +Triangle: [2349, 2371, 2372] +Triangle: [1009, 2372, 1010] +Triangle: [2350, 2372, 2371] +Triangle: [2368, 1940, 2373] +Triangle: [742, 2373, 1940] +Triangle: [2369, 2373, 2370] +Triangle: [923, 2370, 2373] +Triangle: [2372, 1105, 1010] +Triangle: [2381, 1955, 1946] +Triangle: [1951, 2387, 2388] +Triangle: [2374, 2196, 1962] +Triangle: [1998, 2375, 1999] +Triangle: [1947, 2377, 1948] +Triangle: [2379, 2001, 2000] +Triangle: [2384, 1952, 1953] +Triangle: [2386, 1954, 1955] +Triangle: [1949, 2378, 1947] +Triangle: [2376, 1945, 2001] +Triangle: [1950, 2385, 1949] +Triangle: [2382, 1946, 1945] +Triangle: [2380, 1953, 1954] +Triangle: [1948, 2383, 1998] +Triangle: [1999, 2379, 2000] +Triangle: [1338, 2390, 1329] +Triangle: [1336, 2394, 1334] +Triangle: [1331, 2396, 2397] +Triangle: [1332, 2395, 2396] +Triangle: [1339, 2400, 2401] +Triangle: [1333, 2394, 2395] +Triangle: [1338, 2401, 2389] +Triangle: [1330, 2397, 2398] +Triangle: [1335, 2392, 1337] +Triangle: [1330, 2399, 1327] +Triangle: [1337, 2393, 1336] +Triangle: [1328, 2399, 2400] +Triangle: [1329, 2391, 1335] +Triangle: [2407, 1364, 1358] +Triangle: [2406, 1358, 1357] +Triangle: [2458, 1365, 2455] +Triangle: [1353, 2459, 2457] +Triangle: [2414, 1360, 1365] +Triangle: [2460, 1363, 1364] +Triangle: [1355, 2411, 1362] +Triangle: [1363, 2463, 1361] +Triangle: [1362, 2408, 1359] +Triangle: [1361, 2405, 1356] +Triangle: [1354, 2404, 1355] +Triangle: [2409, 1354, 1360] +Triangle: [2408, 1353, 1359] +Triangle: [2427, 2449, 2453] +Triangle: [2425, 2444, 2451] +Triangle: [2419, 2452, 2444] +Triangle: [2426, 2453, 2452] +Triangle: [2449, 2423, 2446] +Triangle: [2446, 2422, 2445] +Triangle: [2422, 2441, 2445] +Triangle: [2450, 2425, 2451] +Triangle: [2448, 2418, 2443] +Triangle: [2415, 2448, 2447] +Triangle: [2443, 2417, 2442] +Triangle: [2442, 2424, 2450] +Triangle: [2416, 2447, 2441] +Triangle: [2428, 1340, 1341] +Triangle: [1343, 2436, 1342] +Triangle: [1342, 2437, 1344] +Triangle: [2464, 1345, 1346] +Triangle: [1347, 2428, 1341] +Triangle: [2465, 1346, 1348] +Triangle: [1344, 2431, 1347] +Triangle: [2466, 1348, 1349] +Triangle: [2434, 1343, 1350] +Triangle: [2435, 1351, 1340] +Triangle: [2454, 1350, 1345] +Triangle: [1351, 2440, 1352] +Triangle: [1352, 2466, 1349] +Triangle: [1308, 2447, 1310] +Triangle: [1303, 2450, 1312] +Triangle: [1309, 2442, 1303] +Triangle: [2447, 1311, 1310] +Triangle: [2448, 1309, 1311] +Triangle: [1312, 2451, 1313] +Triangle: [2445, 1308, 1307] +Triangle: [2446, 1307, 1306] +Triangle: [2449, 1306, 1305] +Triangle: [1301, 2453, 1304] +Triangle: [1302, 2452, 1301] +Triangle: [1313, 2444, 1302] +Triangle: [2453, 1305, 1304] +Triangle: [2455, 2438, 1356] +Triangle: [2439, 2457, 1357] +Triangle: [2405, 2455, 1356] +Triangle: [2457, 2406, 1357] +Triangle: [2461, 2460, 2407] +Triangle: [2459, 2407, 2406] +Triangle: [2460, 2412, 2462] +Triangle: [2462, 2410, 2463] +Triangle: [2463, 2458, 2405] +Triangle: [2454, 2430, 2438] +Triangle: [2464, 2432, 2430] +Triangle: [2465, 2433, 2432] +Triangle: [2440, 2439, 2467] +Triangle: [2433, 2440, 2467] +Triangle: [2515, 2514, 2513] +Triangle: [2511, 2809, 2496] +Triangle: [2559, 2538, 2564] +Triangle: [2560, 2536, 2565] +Triangle: [2566, 2541, 2561] +Triangle: [2559, 2540, 2539] +Triangle: [2566, 2536, 2535] +Triangle: [2560, 2538, 2537] +Triangle: [2563, 2540, 2562] +Triangle: [2561, 2542, 2563] +Triangle: [2543, 2538, 2539] +Triangle: [2533, 2551, 2534] +Triangle: [2534, 2550, 2532] +Triangle: [2536, 2543, 2535] +Triangle: [2542, 2539, 2540] +Triangle: [2541, 2543, 2542] +Triangle: [2530, 2546, 2529] +Triangle: [2470, 2547, 2549] +Triangle: [2532, 2544, 2531] +Triangle: [2549, 2533, 2470] +Triangle: [2528, 2546, 2547] +Triangle: [2531, 2545, 2530] +Triangle: [2521, 2529, 2528] +Triangle: [2523, 2529, 2522] +Triangle: [2524, 2530, 2523] +Triangle: [2525, 2531, 2524] +Triangle: [2525, 2534, 2532] +Triangle: [2526, 2534, 2527] +Triangle: [2526, 2470, 2533] +Triangle: [2521, 2470, 2519] +Triangle: [2522, 2552, 2553] +Triangle: [2524, 2556, 2525] +Triangle: [2522, 2554, 2523] +Triangle: [2527, 2556, 2558] +Triangle: [2527, 2557, 2526] +Triangle: [2524, 2554, 2555] +Triangle: [2519, 2557, 2517] +Triangle: [2552, 2519, 2517] +Triangle: [2548, 2563, 2551] +Triangle: [2551, 2562, 2550] +Triangle: [2546, 2564, 2560] +Triangle: [2549, 2565, 2566] +Triangle: [2544, 2562, 2559] +Triangle: [2549, 2561, 2548] +Triangle: [2547, 2560, 2565] +Triangle: [2545, 2559, 2564] +Triangle: [2567, 2517, 2557] +Triangle: [2569, 2517, 2520] +Triangle: [2552, 2571, 2553] +Triangle: [2553, 2572, 2554] +Triangle: [2554, 2574, 2555] +Triangle: [2555, 2575, 2556] +Triangle: [2558, 2575, 2576] +Triangle: [2567, 2558, 2576] +Triangle: [2520, 2585, 2569] +Triangle: [2494, 2520, 2567] +Triangle: [2567, 2590, 2494] +Triangle: [2576, 2589, 2590] +Triangle: [2574, 2589, 2575] +Triangle: [2572, 2588, 2574] +Triangle: [2586, 2572, 2571] +Triangle: [2569, 2586, 2571] +Triangle: [2568, 2586, 2585] +Triangle: [2480, 2570, 2568] +Triangle: [2586, 2573, 2587] +Triangle: [2516, 2570, 2514] +Triangle: [2581, 2598, 2582] +Triangle: [2597, 2600, 2598] +Triangle: [2646, 2625, 2651] +Triangle: [2647, 2623, 2652] +Triangle: [2653, 2628, 2648] +Triangle: [2646, 2627, 2626] +Triangle: [2653, 2623, 2622] +Triangle: [2647, 2625, 2624] +Triangle: [2650, 2627, 2649] +Triangle: [2648, 2629, 2650] +Triangle: [2630, 2625, 2626] +Triangle: [2620, 2638, 2621] +Triangle: [2621, 2637, 2619] +Triangle: [2623, 2630, 2622] +Triangle: [2629, 2626, 2627] +Triangle: [2628, 2630, 2629] +Triangle: [2617, 2633, 2616] +Triangle: [2604, 2634, 2636] +Triangle: [2618, 2637, 2631] +Triangle: [2604, 2635, 2620] +Triangle: [2615, 2633, 2634] +Triangle: [2618, 2632, 2617] +Triangle: [2609, 2615, 2608] +Triangle: [2610, 2616, 2609] +Triangle: [2611, 2617, 2610] +Triangle: [2612, 2618, 2611] +Triangle: [2612, 2621, 2619] +Triangle: [2614, 2620, 2621] +Triangle: [2613, 2604, 2620] +Triangle: [2608, 2604, 2606] +Triangle: [2608, 2640, 2609] +Triangle: [2612, 2642, 2643] +Triangle: [2609, 2641, 2610] +Triangle: [2614, 2643, 2645] +Triangle: [2613, 2645, 2644] +Triangle: [2611, 2641, 2642] +Triangle: [2606, 2644, 2605] +Triangle: [2639, 2606, 2605] +Triangle: [2635, 2650, 2638] +Triangle: [2638, 2649, 2637] +Triangle: [2633, 2651, 2647] +Triangle: [2636, 2652, 2653] +Triangle: [2631, 2649, 2646] +Triangle: [2636, 2648, 2635] +Triangle: [2634, 2647, 2652] +Triangle: [2632, 2646, 2651] +Triangle: [2708, 2806, 2714] +Triangle: [2793, 2605, 2791] +Triangle: [2655, 2791, 2607] +Triangle: [2798, 2655, 2583] +Triangle: [2794, 2583, 2657] +Triangle: [2794, 2658, 2795] +Triangle: [2796, 2658, 2659] +Triangle: [2792, 2645, 2797] +Triangle: [2700, 2679, 2705] +Triangle: [2701, 2677, 2706] +Triangle: [2707, 2682, 2702] +Triangle: [2700, 2681, 2680] +Triangle: [2707, 2677, 2676] +Triangle: [2701, 2679, 2678] +Triangle: [2704, 2681, 2703] +Triangle: [2702, 2683, 2704] +Triangle: [2684, 2679, 2680] +Triangle: [2675, 2689, 2692] +Triangle: [2675, 2691, 2673] +Triangle: [2676, 2678, 2684] +Triangle: [2683, 2680, 2681] +Triangle: [2682, 2684, 2683] +Triangle: [2671, 2687, 2670] +Triangle: [2473, 2688, 2690] +Triangle: [2673, 2685, 2672] +Triangle: [2690, 2674, 2473] +Triangle: [2670, 2688, 2669] +Triangle: [2672, 2686, 2671] +Triangle: [2663, 2669, 2662] +Triangle: [2664, 2670, 2663] +Triangle: [2665, 2671, 2664] +Triangle: [2665, 2673, 2672] +Triangle: [2666, 2675, 2673] +Triangle: [2668, 2674, 2675] +Triangle: [2667, 2473, 2674] +Triangle: [2662, 2473, 2468] +Triangle: [2662, 2694, 2663] +Triangle: [2666, 2696, 2697] +Triangle: [2663, 2695, 2664] +Triangle: [2668, 2697, 2699] +Triangle: [2667, 2699, 2698] +Triangle: [2665, 2695, 2696] +Triangle: [2468, 2698, 2471] +Triangle: [2693, 2468, 2471] +Triangle: [2689, 2704, 2692] +Triangle: [2692, 2703, 2691] +Triangle: [2686, 2701, 2687] +Triangle: [2690, 2706, 2707] +Triangle: [2685, 2703, 2700] +Triangle: [2690, 2702, 2689] +Triangle: [2688, 2701, 2706] +Triangle: [2685, 2705, 2686] +Triangle: [2768, 2602, 2603] +Triangle: [2801, 2471, 2799] +Triangle: [2709, 2799, 2661] +Triangle: [2801, 2710, 2802] +Triangle: [2802, 2711, 2803] +Triangle: [2803, 2712, 2804] +Triangle: [2805, 2712, 2713] +Triangle: [2800, 2699, 2806] +Triangle: [2756, 2735, 2761] +Triangle: [2757, 2733, 2762] +Triangle: [2763, 2738, 2758] +Triangle: [2756, 2737, 2736] +Triangle: [2763, 2733, 2732] +Triangle: [2757, 2735, 2734] +Triangle: [2760, 2737, 2759] +Triangle: [2758, 2739, 2760] +Triangle: [2734, 2736, 2740] +Triangle: [2730, 2748, 2731] +Triangle: [2729, 2748, 2747] +Triangle: [2733, 2740, 2732] +Triangle: [2739, 2736, 2737] +Triangle: [2739, 2732, 2740] +Triangle: [2727, 2743, 2726] +Triangle: [2725, 2746, 2717] +Triangle: [2729, 2741, 2728] +Triangle: [2717, 2745, 2730] +Triangle: [2726, 2744, 2725] +Triangle: [2728, 2742, 2727] +Triangle: [2719, 2725, 2718] +Triangle: [2720, 2726, 2719] +Triangle: [2721, 2727, 2720] +Triangle: [2721, 2729, 2728] +Triangle: [2722, 2731, 2729] +Triangle: [2724, 2730, 2731] +Triangle: [2723, 2717, 2730] +Triangle: [2718, 2717, 2715] +Triangle: [2718, 2750, 2719] +Triangle: [2722, 2752, 2753] +Triangle: [2719, 2751, 2720] +Triangle: [2724, 2753, 2755] +Triangle: [2723, 2755, 2754] +Triangle: [2720, 2752, 2721] +Triangle: [2715, 2754, 2716] +Triangle: [2749, 2715, 2716] +Triangle: [2745, 2760, 2748] +Triangle: [2747, 2760, 2759] +Triangle: [2743, 2761, 2757] +Triangle: [2746, 2762, 2763] +Triangle: [2741, 2759, 2756] +Triangle: [2746, 2758, 2745] +Triangle: [2743, 2762, 2744] +Triangle: [2742, 2756, 2761] +Triangle: [2809, 2716, 2807] +Triangle: [2495, 2807, 2808] +Triangle: [2496, 2807, 2497] +Triangle: [2810, 2511, 2782] +Triangle: [2812, 2817, 2813] +Triangle: [2817, 2814, 2813] +Triangle: [2754, 2814, 2808] +Triangle: [2582, 2580, 2579] +Triangle: [2582, 2583, 2655] +Triangle: [2657, 2598, 2600] +Triangle: [2494, 2597, 2581] +Triangle: [2578, 2582, 2579] +Triangle: [2581, 2577, 2494] +Triangle: [2577, 2518, 2494] +Triangle: [2518, 2568, 2585] +Triangle: [2580, 2607, 2764] +Triangle: [2656, 2607, 2654] +Triangle: [2481, 2568, 2584] +Triangle: [2584, 2479, 2481] +Triangle: [2472, 2483, 2484] +Triangle: [2480, 2477, 2478] +Triangle: [2504, 2578, 2579] +Triangle: [2475, 2505, 2506] +Triangle: [2502, 2577, 2578] +Triangle: [2503, 2483, 2469] +Triangle: [2504, 2580, 2483] +Triangle: [2503, 2502, 2504] +Triangle: [2483, 2764, 2484] +Triangle: [2488, 2486, 2490] +Triangle: [2477, 2479, 2476] +Triangle: [2484, 2656, 2482] +Triangle: [2601, 2597, 2590] +Triangle: [2589, 2601, 2590] +Triangle: [2588, 2594, 2589] +Triangle: [2591, 2587, 2573] +Triangle: [2599, 2772, 2600] +Triangle: [2772, 2657, 2600] +Triangle: [2601, 2771, 2599] +Triangle: [2771, 2767, 2772] +Triangle: [2776, 2777, 2775] +Triangle: [2773, 2780, 2774] +Triangle: [2774, 2777, 2711] +Triangle: [2659, 2779, 2773] +Triangle: [2779, 2777, 2780] +Triangle: [2784, 2785, 2783] +Triangle: [2785, 2782, 2781] +Triangle: [2815, 2785, 2781] +Triangle: [2496, 2512, 2511] +Triangle: [2485, 2507, 2489] +Triangle: [2482, 2765, 2505] +Triangle: [2505, 2766, 2507] +Triangle: [2796, 2660, 2797] +Triangle: [2792, 2607, 2791] +Triangle: [2806, 2713, 2714] +Triangle: [2708, 2799, 2800] +Triangle: [2816, 2808, 2814] +Triangle: [2811, 2820, 2812] +Triangle: [2513, 2480, 2478] +Triangle: [2509, 2487, 2488] +Triangle: [2479, 2501, 2476] +Triangle: [2485, 2490, 2486] +Triangle: [2511, 2510, 2509] +Triangle: [2506, 2507, 2508] +Triangle: [2497, 2491, 2496] +Triangle: [2492, 2495, 2493] +Triangle: [2816, 2493, 2495] +Triangle: [2788, 2490, 2489] +Triangle: [2507, 2788, 2489] +Triangle: [2661, 2788, 2709] +Triangle: [2766, 2709, 2788] +Triangle: [2789, 2490, 2787] +Triangle: [2708, 2787, 2661] +Triangle: [2488, 2790, 2509] +Triangle: [2714, 2789, 2708] +Triangle: [2644, 2791, 2605] +Triangle: [2640, 2793, 2798] +Triangle: [2641, 2798, 2794] +Triangle: [2641, 2795, 2642] +Triangle: [2643, 2795, 2796] +Triangle: [2645, 2796, 2797] +Triangle: [2698, 2799, 2471] +Triangle: [2694, 2801, 2802] +Triangle: [2694, 2803, 2695] +Triangle: [2696, 2803, 2804] +Triangle: [2697, 2804, 2805] +Triangle: [2697, 2806, 2699] +Triangle: [2808, 2716, 2754] +Triangle: [2749, 2810, 2750] +Triangle: [2750, 2811, 2751] +Triangle: [2751, 2812, 2752] +Triangle: [2753, 2812, 2813] +Triangle: [2755, 2813, 2814] +Triangle: [2781, 2790, 2815] +Triangle: [2815, 2714, 2713] +Triangle: [2781, 2511, 2509] +Triangle: [2817, 2818, 2816] +Triangle: [2819, 2820, 2821] +Triangle: [2770, 2775, 2769] +Triangle: [2654, 2797, 2660] +Triangle: [2769, 2659, 2658] +Triangle: [2657, 2769, 2658] +Triangle: [2770, 2767, 2768] +Triangle: [2826, 2778, 2827] +Triangle: [2822, 2766, 2765] +Triangle: [2825, 2822, 2824] +Triangle: [2656, 2822, 2765] +Triangle: [2774, 2824, 2773] +Triangle: [2654, 2824, 2822] +Triangle: [2773, 2660, 2659] +Triangle: [2710, 2774, 2711] +Triangle: [2823, 2710, 2709] +Triangle: [2712, 2777, 2826] +Triangle: [2783, 2826, 2827] +Triangle: [2713, 2826, 2785] +Triangle: [2593, 2516, 2515] +Triangle: [2810, 2786, 2811] +Triangle: [2836, 2472, 2498] +Triangle: [2830, 2476, 2501] +Triangle: [2831, 2469, 2836] +Triangle: [2498, 2475, 2837] +Triangle: [2831, 2501, 2503] +Triangle: [2477, 2829, 2474] +Triangle: [2508, 2832, 2506] +Triangle: [2838, 2486, 2499] +Triangle: [2485, 2833, 2508] +Triangle: [2832, 2475, 2506] +Triangle: [2512, 2834, 2510] +Triangle: [2840, 2492, 2500] +Triangle: [2491, 2835, 2512] +Triangle: [2834, 2487, 2510] +Triangle: [2499, 2487, 2839] +Triangle: [2500, 2493, 2844] +Triangle: [2818, 2844, 2493] +Triangle: [2828, 2513, 2478] +Triangle: [2835, 2839, 2834] +Triangle: [2838, 2832, 2833] +Triangle: [2836, 2830, 2831] +Triangle: [2513, 2842, 2515] +Triangle: [2819, 2845, 2818] +Triangle: [2592, 2573, 2516] +Triangle: [2596, 2592, 2593] +Triangle: [2595, 2591, 2592] +Triangle: [2603, 2595, 2596] +Triangle: [2602, 2594, 2595] +Triangle: [2811, 2784, 2843] +Triangle: [2482, 2472, 2484] +Triangle: [2821, 2846, 2819] +Triangle: [2868, 2596, 2593] +Triangle: [2852, 2853, 2854] +Triangle: [2, 2850, 2849] +Triangle: [10, 2850, 8] +Triangle: [9, 2851, 10] +Triangle: [2829, 2856, 2855] +Triangle: [2853, 7, 2857] +Triangle: [2858, 2853, 2857] +Triangle: [2859, 2857, 2860] +Triangle: [2862, 2860, 2861] +Triangle: [2863, 2861, 2864] +Triangle: [2863, 3018, 3019] +Triangle: [2865, 2868, 2867] +Triangle: [2868, 2515, 2842] +Triangle: [2867, 2842, 2869] +Triangle: [2870, 2842, 2841] +Triangle: [2841, 2874, 2875] +Triangle: [2875, 2870, 2841] +Triangle: [2891, 2872, 2890] +Triangle: [2872, 2877, 2873] +Triangle: [2854, 2878, 2852] +Triangle: [2894, 2879, 2895] +Triangle: [2474, 2874, 2828] +Triangle: [2829, 2881, 2474] +Triangle: [2882, 2836, 2498] +Triangle: [2837, 2882, 2498] +Triangle: [2838, 2883, 2837] +Triangle: [2499, 2886, 2885] +Triangle: [2885, 2838, 2499] +Triangle: [2840, 2886, 2839] +Triangle: [2500, 2887, 2840] +Triangle: [2478, 2474, 2828] +Triangle: [2871, 2891, 2890] +Triangle: [2875, 2848, 2891] +Triangle: [2889, 2891, 2848] +Triangle: [2877, 2894, 2895] +Triangle: [2889, 2894, 2876] +Triangle: [2881, 2848, 2874] +Triangle: [2889, 2892, 2893] +Triangle: [2855, 2892, 2881] +Triangle: [2892, 2898, 2893] +Triangle: [2878, 2893, 2898] +Triangle: [2852, 2898, 2899] +Triangle: [2899, 2851, 2852] +Triangle: [2897, 2898, 2896] +Triangle: [2899, 2849, 2850] +Triangle: [2856, 2883, 2884] +Triangle: [2884, 2900, 2856] +Triangle: [2900, 2855, 2856] +Triangle: [2849, 2903, 2902] +Triangle: [2902, 2905, 2904] +Triangle: [2897, 2900, 2903] +Triangle: [2901, 2903, 2900] +Triangle: [2902, 2, 2849] +Triangle: [11, 2904, 12] +Triangle: [2885, 2887, 2888] +Triangle: [2885, 2901, 2884] +Triangle: [2905, 2908, 2909] +Triangle: [2910, 2905, 2909] +Triangle: [2888, 2908, 2885] +Triangle: [2909, 2906, 2907] +Triangle: [2909, 2911, 2910] +Triangle: [12, 2910, 1] +Triangle: [0, 2910, 2911] +Triangle: [2844, 2888, 2500] +Triangle: [2888, 2917, 2906] +Triangle: [2906, 2918, 2907] +Triangle: [2907, 2919, 2911] +Triangle: [2911, 2920, 0] +Triangle: [3, 2920, 2921] +Triangle: [2922, 3, 2921] +Triangle: [2845, 2916, 2844] +Triangle: [2917, 2915, 2914] +Triangle: [2918, 2914, 2913] +Triangle: [2919, 2913, 2912] +Triangle: [2920, 2912, 2921] +Triangle: [2912, 2922, 2921] +Triangle: [2924, 2912, 2913] +Triangle: [2925, 2913, 2914] +Triangle: [2915, 2925, 2914] +Triangle: [2846, 2915, 2845] +Triangle: [2929, 2922, 2923] +Triangle: [2924, 2929, 2923] +Triangle: [2925, 2928, 2924] +Triangle: [2926, 2927, 2925] +Triangle: [2930, 2846, 2847] +Triangle: [4, 2931, 5] +Triangle: [5, 2932, 6] +Triangle: [6, 2857, 7] +Triangle: [2931, 2934, 2932] +Triangle: [2935, 2934, 2933] +Triangle: [2932, 2860, 2857] +Triangle: [2860, 2936, 2861] +Triangle: [2928, 2931, 2929] +Triangle: [2927, 2933, 2928] +Triangle: [2877, 2937, 2873] +Triangle: [2939, 2877, 2895] +Triangle: [2880, 2895, 2879] +Triangle: [2858, 2879, 2854] +Triangle: [2940, 2858, 2859] +Triangle: [2941, 2859, 2862] +Triangle: [2939, 2940, 2942] +Triangle: [2941, 2942, 2940] +Triangle: [2938, 2942, 2943] +Triangle: [2944, 2938, 2943] +Triangle: [2978, 2964, 2983] +Triangle: [2984, 2963, 2962] +Triangle: [2985, 2967, 2980] +Triangle: [2978, 2966, 2965] +Triangle: [2985, 2962, 2961] +Triangle: [2979, 2964, 2963] +Triangle: [2982, 2966, 2981] +Triangle: [2980, 2968, 2982] +Triangle: [2969, 2964, 2965] +Triangle: [2959, 2977, 2960] +Triangle: [2960, 2976, 2958] +Triangle: [2962, 2969, 2961] +Triangle: [2966, 2969, 2965] +Triangle: [2967, 2969, 2968] +Triangle: [2956, 2972, 2955] +Triangle: [2954, 2975, 2952] +Triangle: [2958, 2970, 2957] +Triangle: [2952, 2974, 2959] +Triangle: [2954, 2972, 2973] +Triangle: [2957, 2971, 2956] +Triangle: [2986, 2955, 2954] +Triangle: [2988, 2955, 2987] +Triangle: [2989, 2956, 2988] +Triangle: [2990, 2957, 2989] +Triangle: [2990, 2960, 2958] +Triangle: [2992, 2960, 2991] +Triangle: [2992, 2952, 2959] +Triangle: [2986, 2952, 2993] +Triangle: [2974, 2982, 2977] +Triangle: [2977, 2981, 2976] +Triangle: [2972, 2983, 2979] +Triangle: [2975, 2984, 2985] +Triangle: [2970, 2981, 2978] +Triangle: [2975, 2980, 2974] +Triangle: [2973, 2979, 2984] +Triangle: [2971, 2978, 2983] +Triangle: [2950, 2993, 2951] +Triangle: [2945, 2993, 2992] +Triangle: [2945, 2991, 2953] +Triangle: [2946, 2991, 2990] +Triangle: [2946, 2989, 2947] +Triangle: [2947, 2988, 2948] +Triangle: [2948, 2987, 2949] +Triangle: [2950, 2987, 2986] +Triangle: [2946, 3001, 2953] +Triangle: [2951, 2994, 3000] +Triangle: [2948, 2998, 2997] +Triangle: [2947, 2995, 2946] +Triangle: [2953, 2994, 2945] +Triangle: [2951, 2999, 2950] +Triangle: [2949, 2999, 2998] +Triangle: [2947, 2997, 2996] +Triangle: [2869, 3003, 2867] +Triangle: [3010, 2869, 2870] +Triangle: [2871, 3010, 2870] +Triangle: [3002, 3010, 3011] +Triangle: [2890, 3011, 2871] +Triangle: [3008, 3011, 3012] +Triangle: [2872, 3012, 2890] +Triangle: [3013, 3008, 3012] +Triangle: [3013, 2873, 2937] +Triangle: [2867, 3017, 2865] +Triangle: [3019, 2866, 2865] +Triangle: [3004, 3017, 3003] +Triangle: [3004, 3015, 3016] +Triangle: [3005, 3014, 3015] +Triangle: [3006, 3013, 3014] +Triangle: [3014, 2937, 2944] +Triangle: [3015, 2944, 3020] +Triangle: [3020, 2943, 2941] +Triangle: [3009, 2995, 3003] +Triangle: [3002, 3001, 3009] +Triangle: [3008, 2994, 3002] +Triangle: [3007, 3000, 3008] +Triangle: [3007, 2998, 2999] +Triangle: [3006, 2997, 2998] +Triangle: [3004, 2997, 3005] +Triangle: [3003, 2996, 3004] +Triangle: [3017, 3019, 2865] +Triangle: [3016, 3020, 3021] +Triangle: [3020, 2941, 3021] +Triangle: [3021, 2862, 2863] +Triangle: [3019, 3021, 2863] +Triangle: [2936, 2864, 2861] +Triangle: [2596, 3023, 2603] +Triangle: [3024, 2866, 3018] +Triangle: [3018, 3022, 3024] +Triangle: [3026, 3027, 3028] +Triangle: [3025, 3024, 3022] +Triangle: [2768, 3027, 2770] +Triangle: [3023, 3026, 3028] +Triangle: [2603, 3028, 2768] +Triangle: [2776, 3027, 3029] +Triangle: [2776, 3031, 2778] +Triangle: [3031, 2827, 2778] +Triangle: [3025, 3029, 3027] +Triangle: [3034, 3025, 3022] +Triangle: [3034, 3035, 3033] +Triangle: [3035, 2936, 2935] +Triangle: [2930, 2935, 2927] +Triangle: [3036, 3035, 2930] +Triangle: [3036, 2847, 3037] +Triangle: [2784, 3040, 2843] +Triangle: [2783, 3030, 3038] +Triangle: [2783, 3039, 2784] +Triangle: [2843, 2821, 2820] +Triangle: [2821, 3037, 2847] +Triangle: [3029, 3030, 3031] +Triangle: [3041, 3034, 3033] +Triangle: [3033, 3037, 3041] +Triangle: [3032, 3038, 3029] +Triangle: [3038, 3042, 3039] +Triangle: [3042, 3040, 3039] +Triangle: [3041, 3037, 3042] +Triangle: [3089, 3090, 3088] +Triangle: [3383, 3086, 3071] +Triangle: [3113, 3134, 3139] +Triangle: [3111, 3135, 3140] +Triangle: [3141, 3116, 3110] +Triangle: [3134, 3115, 3137] +Triangle: [3141, 3111, 3140] +Triangle: [3135, 3113, 3139] +Triangle: [3115, 3138, 3137] +Triangle: [3117, 3136, 3138] +Triangle: [3118, 3113, 3112] +Triangle: [3126, 3108, 3109] +Triangle: [3125, 3109, 3107] +Triangle: [3118, 3111, 3110] +Triangle: [3114, 3117, 3115] +Triangle: [3118, 3116, 3117] +Triangle: [3121, 3105, 3104] +Triangle: [3045, 3122, 3103] +Triangle: [3119, 3107, 3106] +Triangle: [3108, 3124, 3045] +Triangle: [3103, 3121, 3104] +Triangle: [3120, 3106, 3105] +Triangle: [3096, 3104, 3097] +Triangle: [3104, 3098, 3097] +Triangle: [3105, 3099, 3098] +Triangle: [3106, 3100, 3099] +Triangle: [3100, 3109, 3102] +Triangle: [3109, 3101, 3102] +Triangle: [3101, 3045, 3094] +Triangle: [3045, 3096, 3094] +Triangle: [3097, 3127, 3096] +Triangle: [3131, 3099, 3100] +Triangle: [3129, 3097, 3098] +Triangle: [3102, 3131, 3100] +Triangle: [3132, 3102, 3101] +Triangle: [3099, 3129, 3098] +Triangle: [3094, 3132, 3101] +Triangle: [3094, 3127, 3092] +Triangle: [3138, 3123, 3126] +Triangle: [3137, 3126, 3125] +Triangle: [3121, 3139, 3120] +Triangle: [3124, 3140, 3122] +Triangle: [3119, 3137, 3125] +Triangle: [3124, 3136, 3141] +Triangle: [3122, 3135, 3121] +Triangle: [3120, 3134, 3119] +Triangle: [3092, 3142, 3132] +Triangle: [3092, 3144, 3095] +Triangle: [3146, 3127, 3128] +Triangle: [3147, 3128, 3129] +Triangle: [3149, 3129, 3130] +Triangle: [3150, 3130, 3131] +Triangle: [3133, 3150, 3131] +Triangle: [3142, 3133, 3132] +Triangle: [3095, 3160, 3093] +Triangle: [3095, 3069, 3142] +Triangle: [3165, 3142, 3069] +Triangle: [3151, 3164, 3150] +Triangle: [3164, 3149, 3150] +Triangle: [3163, 3147, 3149] +Triangle: [3161, 3147, 3162] +Triangle: [3144, 3161, 3160] +Triangle: [3161, 3143, 3160] +Triangle: [3145, 3055, 3143] +Triangle: [3148, 3161, 3162] +Triangle: [3145, 3091, 3089] +Triangle: [3156, 3173, 3172] +Triangle: [3172, 3175, 3174] +Triangle: [3200, 3221, 3226] +Triangle: [3198, 3222, 3227] +Triangle: [3228, 3203, 3197] +Triangle: [3221, 3202, 3224] +Triangle: [3228, 3198, 3227] +Triangle: [3222, 3200, 3226] +Triangle: [3202, 3225, 3224] +Triangle: [3204, 3223, 3225] +Triangle: [3205, 3200, 3199] +Triangle: [3213, 3195, 3196] +Triangle: [3212, 3196, 3194] +Triangle: [3205, 3198, 3197] +Triangle: [3201, 3204, 3202] +Triangle: [3205, 3203, 3204] +Triangle: [3208, 3192, 3191] +Triangle: [3179, 3209, 3190] +Triangle: [3193, 3212, 3194] +Triangle: [3179, 3210, 3211] +Triangle: [3190, 3208, 3191] +Triangle: [3207, 3193, 3192] +Triangle: [3190, 3184, 3183] +Triangle: [3191, 3185, 3184] +Triangle: [3192, 3186, 3185] +Triangle: [3193, 3187, 3186] +Triangle: [3187, 3196, 3189] +Triangle: [3189, 3195, 3188] +Triangle: [3188, 3179, 3181] +Triangle: [3179, 3183, 3181] +Triangle: [3215, 3183, 3184] +Triangle: [3187, 3217, 3186] +Triangle: [3216, 3184, 3185] +Triangle: [3189, 3218, 3187] +Triangle: [3188, 3220, 3189] +Triangle: [3186, 3216, 3185] +Triangle: [3181, 3219, 3188] +Triangle: [3181, 3214, 3180] +Triangle: [3225, 3210, 3213] +Triangle: [3224, 3213, 3212] +Triangle: [3208, 3226, 3207] +Triangle: [3211, 3227, 3209] +Triangle: [3206, 3224, 3212] +Triangle: [3211, 3223, 3228] +Triangle: [3209, 3222, 3208] +Triangle: [3207, 3221, 3206] +Triangle: [3283, 3380, 3374] +Triangle: [3180, 3367, 3365] +Triangle: [3230, 3365, 3367] +Triangle: [3372, 3230, 3367] +Triangle: [3368, 3158, 3372] +Triangle: [3233, 3368, 3369] +Triangle: [3370, 3233, 3369] +Triangle: [3366, 3220, 3219] +Triangle: [3254, 3275, 3280] +Triangle: [3252, 3276, 3281] +Triangle: [3282, 3257, 3251] +Triangle: [3275, 3256, 3278] +Triangle: [3282, 3252, 3281] +Triangle: [3276, 3254, 3280] +Triangle: [3256, 3279, 3278] +Triangle: [3258, 3277, 3279] +Triangle: [3259, 3254, 3253] +Triangle: [3250, 3264, 3249] +Triangle: [3266, 3250, 3248] +Triangle: [3251, 3253, 3252] +Triangle: [3255, 3258, 3256] +Triangle: [3259, 3257, 3258] +Triangle: [3262, 3246, 3245] +Triangle: [3048, 3263, 3244] +Triangle: [3260, 3248, 3247] +Triangle: [3249, 3265, 3048] +Triangle: [3263, 3245, 3244] +Triangle: [3261, 3247, 3246] +Triangle: [3244, 3238, 3237] +Triangle: [3245, 3239, 3238] +Triangle: [3246, 3240, 3239] +Triangle: [3240, 3248, 3241] +Triangle: [3241, 3250, 3243] +Triangle: [3243, 3249, 3242] +Triangle: [3242, 3048, 3043] +Triangle: [3048, 3237, 3043] +Triangle: [3269, 3237, 3238] +Triangle: [3241, 3271, 3240] +Triangle: [3270, 3238, 3239] +Triangle: [3243, 3272, 3241] +Triangle: [3242, 3274, 3243] +Triangle: [3240, 3270, 3239] +Triangle: [3043, 3273, 3242] +Triangle: [3043, 3268, 3046] +Triangle: [3279, 3264, 3267] +Triangle: [3278, 3267, 3266] +Triangle: [3276, 3261, 3262] +Triangle: [3265, 3281, 3263] +Triangle: [3260, 3278, 3266] +Triangle: [3265, 3277, 3282] +Triangle: [3263, 3276, 3262] +Triangle: [3280, 3260, 3261] +Triangle: [3177, 3343, 3178] +Triangle: [3046, 3375, 3373] +Triangle: [3284, 3373, 3375] +Triangle: [3285, 3375, 3376] +Triangle: [3286, 3376, 3377] +Triangle: [3287, 3377, 3378] +Triangle: [3379, 3287, 3378] +Triangle: [3374, 3274, 3273] +Triangle: [3310, 3331, 3336] +Triangle: [3308, 3332, 3337] +Triangle: [3338, 3313, 3307] +Triangle: [3331, 3312, 3334] +Triangle: [3338, 3308, 3337] +Triangle: [3332, 3310, 3336] +Triangle: [3312, 3335, 3334] +Triangle: [3314, 3333, 3335] +Triangle: [3311, 3309, 3315] +Triangle: [3323, 3305, 3306] +Triangle: [3304, 3323, 3306] +Triangle: [3315, 3308, 3307] +Triangle: [3311, 3314, 3312] +Triangle: [3314, 3307, 3313] +Triangle: [3318, 3302, 3301] +Triangle: [3321, 3300, 3292] +Triangle: [3316, 3304, 3303] +Triangle: [3292, 3320, 3321] +Triangle: [3319, 3301, 3300] +Triangle: [3317, 3303, 3302] +Triangle: [3300, 3294, 3293] +Triangle: [3301, 3295, 3294] +Triangle: [3302, 3296, 3295] +Triangle: [3296, 3304, 3297] +Triangle: [3297, 3306, 3299] +Triangle: [3299, 3305, 3298] +Triangle: [3298, 3292, 3290] +Triangle: [3292, 3293, 3290] +Triangle: [3325, 3293, 3294] +Triangle: [3297, 3327, 3296] +Triangle: [3326, 3294, 3295] +Triangle: [3299, 3328, 3297] +Triangle: [3298, 3330, 3299] +Triangle: [3327, 3295, 3296] +Triangle: [3290, 3329, 3298] +Triangle: [3290, 3324, 3291] +Triangle: [3335, 3320, 3323] +Triangle: [3322, 3335, 3323] +Triangle: [3318, 3336, 3317] +Triangle: [3321, 3337, 3319] +Triangle: [3316, 3334, 3322] +Triangle: [3321, 3333, 3338] +Triangle: [3337, 3318, 3319] +Triangle: [3317, 3331, 3316] +Triangle: [3291, 3383, 3381] +Triangle: [3070, 3381, 3072] +Triangle: [3381, 3071, 3072] +Triangle: [3384, 3356, 3086] +Triangle: [3386, 3391, 3394] +Triangle: [3388, 3391, 3387] +Triangle: [3388, 3329, 3382] +Triangle: [3155, 3157, 3154] +Triangle: [3157, 3158, 3173] +Triangle: [3173, 3232, 3175] +Triangle: [3172, 3069, 3156] +Triangle: [3157, 3153, 3154] +Triangle: [3152, 3156, 3069] +Triangle: [3093, 3152, 3069] +Triangle: [3093, 3143, 3159] +Triangle: [3155, 3182, 3230] +Triangle: [3182, 3231, 3229] +Triangle: [3056, 3143, 3055] +Triangle: [3054, 3159, 3056] +Triangle: [3047, 3058, 3044] +Triangle: [3055, 3052, 3056] +Triangle: [3079, 3153, 3077] +Triangle: [3050, 3080, 3057] +Triangle: [3077, 3152, 3054] +Triangle: [3058, 3078, 3044] +Triangle: [3155, 3079, 3058] +Triangle: [3078, 3077, 3076] +Triangle: [3339, 3058, 3059] +Triangle: [3063, 3061, 3062] +Triangle: [3052, 3054, 3056] +Triangle: [3231, 3059, 3057] +Triangle: [3172, 3176, 3165] +Triangle: [3176, 3164, 3165] +Triangle: [3169, 3163, 3164] +Triangle: [3162, 3166, 3148] +Triangle: [3174, 3346, 3345] +Triangle: [3232, 3346, 3175] +Triangle: [3176, 3345, 3177] +Triangle: [3345, 3342, 3177] +Triangle: [3350, 3351, 3352] +Triangle: [3347, 3354, 3353] +Triangle: [3348, 3351, 3354] +Triangle: [3234, 3353, 3349] +Triangle: [3353, 3351, 3349] +Triangle: [3359, 3358, 3357] +Triangle: [3356, 3359, 3355] +Triangle: [3359, 3389, 3355] +Triangle: [3087, 3071, 3086] +Triangle: [3082, 3060, 3064] +Triangle: [3340, 3057, 3080] +Triangle: [3080, 3341, 3340] +Triangle: [3235, 3370, 3371] +Triangle: [3366, 3182, 3229] +Triangle: [3380, 3288, 3379] +Triangle: [3373, 3283, 3374] +Triangle: [3382, 3390, 3388] +Triangle: [3385, 3394, 3416] +Triangle: [3055, 3088, 3053] +Triangle: [3062, 3084, 3063] +Triangle: [3076, 3054, 3051] +Triangle: [3065, 3060, 3061] +Triangle: [3085, 3086, 3084] +Triangle: [3081, 3082, 3080] +Triangle: [3072, 3066, 3067] +Triangle: [3070, 3067, 3068] +Triangle: [3068, 3390, 3070] +Triangle: [3362, 3065, 3361] +Triangle: [3362, 3082, 3064] +Triangle: [3362, 3236, 3284] +Triangle: [3341, 3284, 3397] +Triangle: [3363, 3065, 3063] +Triangle: [3283, 3361, 3363] +Triangle: [3364, 3063, 3084] +Triangle: [3289, 3363, 3364] +Triangle: [3219, 3365, 3366] +Triangle: [3215, 3367, 3214] +Triangle: [3216, 3372, 3215] +Triangle: [3369, 3216, 3217] +Triangle: [3218, 3369, 3217] +Triangle: [3220, 3370, 3218] +Triangle: [3273, 3373, 3374] +Triangle: [3269, 3375, 3268] +Triangle: [3377, 3269, 3270] +Triangle: [3271, 3377, 3270] +Triangle: [3272, 3378, 3271] +Triangle: [3380, 3272, 3274] +Triangle: [3291, 3382, 3329] +Triangle: [3384, 3324, 3325] +Triangle: [3385, 3325, 3326] +Triangle: [3386, 3326, 3327] +Triangle: [3328, 3386, 3327] +Triangle: [3330, 3387, 3328] +Triangle: [3364, 3355, 3389] +Triangle: [3289, 3389, 3288] +Triangle: [3086, 3355, 3084] +Triangle: [3391, 3392, 3393] +Triangle: [3393, 3394, 3391] +Triangle: [3229, 3371, 3366] +Triangle: [3344, 3234, 3349] +Triangle: [3344, 3232, 3233] +Triangle: [3396, 3341, 3397] +Triangle: [3396, 3399, 3398] +Triangle: [3231, 3396, 3229] +Triangle: [3398, 3348, 3347] +Triangle: [3229, 3398, 3235] +Triangle: [3347, 3235, 3398] +Triangle: [3285, 3348, 3399] +Triangle: [3285, 3397, 3284] +Triangle: [3287, 3351, 3286] +Triangle: [3400, 3288, 3359] +Triangle: [3091, 3168, 3090] +Triangle: [3384, 3360, 3356] +Triangle: [3047, 3409, 3073] +Triangle: [3051, 3403, 3076] +Triangle: [3404, 3044, 3078] +Triangle: [3073, 3050, 3047] +Triangle: [3076, 3404, 3078] +Triangle: [3402, 3052, 3049] +Triangle: [3083, 3405, 3406] +Triangle: [3061, 3411, 3074] +Triangle: [3060, 3406, 3411] +Triangle: [3050, 3405, 3081] +Triangle: [3087, 3407, 3408] +Triangle: [3067, 3413, 3075] +Triangle: [3066, 3408, 3413] +Triangle: [3062, 3407, 3085] +Triangle: [3074, 3062, 3061] +Triangle: [3075, 3068, 3067] +Triangle: [3392, 3417, 3418] +Triangle: [3401, 3088, 3414] +Triangle: [3408, 3412, 3413] +Triangle: [3405, 3411, 3406] +Triangle: [3403, 3409, 3404] +Triangle: [3088, 3415, 3414] +Triangle: [3393, 3418, 3419] +Triangle: [3148, 3167, 3091] +Triangle: [3167, 3171, 3168] +Triangle: [3166, 3170, 3167] +Triangle: [3170, 3178, 3171] +Triangle: [3169, 3177, 3170] +Triangle: [3358, 3385, 3416] +Triangle: [3057, 3047, 3050] +Triangle: [3395, 3419, 3420] +Triangle: [3171, 3441, 3168] +Triangle: [3425, 3426, 3424] +Triangle: [3423, 1290, 3422] +Triangle: [1298, 3423, 3424] +Triangle: [1297, 3424, 3426] +Triangle: [3402, 3429, 3409] +Triangle: [1295, 3426, 3430] +Triangle: [3431, 3426, 3427] +Triangle: [3432, 3430, 3431] +Triangle: [3435, 3433, 3432] +Triangle: [3436, 3434, 3435] +Triangle: [3591, 3436, 3592] +Triangle: [3441, 3438, 3440] +Triangle: [3090, 3441, 3415] +Triangle: [3440, 3415, 3441] +Triangle: [3443, 3415, 3442] +Triangle: [3414, 3447, 3401] +Triangle: [3443, 3448, 3414] +Triangle: [3445, 3464, 3463] +Triangle: [3450, 3445, 3446] +Triangle: [3427, 3451, 3452] +Triangle: [3452, 3467, 3468] +Triangle: [3049, 3447, 3454] +Triangle: [3454, 3402, 3049] +Triangle: [3409, 3455, 3073] +Triangle: [3410, 3455, 3456] +Triangle: [3411, 3456, 3457] +Triangle: [3074, 3459, 3412] +Triangle: [3411, 3458, 3074] +Triangle: [3413, 3459, 3460] +Triangle: [3075, 3460, 3461] +Triangle: [3049, 3053, 3401] +Triangle: [3444, 3464, 3448] +Triangle: [3448, 3421, 3447] +Triangle: [3464, 3462, 3421] +Triangle: [3450, 3467, 3449] +Triangle: [3467, 3462, 3449] +Triangle: [3454, 3421, 3465] +Triangle: [3462, 3465, 3421] +Triangle: [3428, 3465, 3469] +Triangle: [3471, 3465, 3466] +Triangle: [3451, 3466, 3467] +Triangle: [3425, 3471, 3451] +Triangle: [3424, 3472, 3425] +Triangle: [3470, 3471, 3472] +Triangle: [3422, 3472, 3423] +Triangle: [3429, 3456, 3455] +Triangle: [3473, 3457, 3429] +Triangle: [3428, 3473, 3429] +Triangle: [3422, 3476, 3470] +Triangle: [3475, 3478, 3476] +Triangle: [3470, 3473, 3469] +Triangle: [3474, 3476, 3478] +Triangle: [1290, 3475, 3422] +Triangle: [1299, 3477, 3475] +Triangle: [3458, 3460, 3459] +Triangle: [3458, 3474, 3481] +Triangle: [3478, 3481, 3474] +Triangle: [3483, 3478, 3477] +Triangle: [3481, 3461, 3458] +Triangle: [3479, 3482, 3480] +Triangle: [3484, 3482, 3483] +Triangle: [3483, 1300, 1289] +Triangle: [3483, 1288, 3484] +Triangle: [3417, 3461, 3489] +Triangle: [3490, 3461, 3479] +Triangle: [3491, 3479, 3480] +Triangle: [3492, 3480, 3484] +Triangle: [3493, 3484, 1288] +Triangle: [3493, 1291, 3494] +Triangle: [3495, 1291, 1292] +Triangle: [3489, 3418, 3417] +Triangle: [3488, 3490, 3487] +Triangle: [3487, 3491, 3486] +Triangle: [3486, 3492, 3485] +Triangle: [3493, 3485, 3492] +Triangle: [3485, 3495, 3496] +Triangle: [3485, 3497, 3486] +Triangle: [3486, 3498, 3487] +Triangle: [3488, 3498, 3499] +Triangle: [3419, 3488, 3499] +Triangle: [3502, 3495, 1292] +Triangle: [3502, 3497, 3496] +Triangle: [3501, 3498, 3497] +Triangle: [3500, 3499, 3498] +Triangle: [3419, 3503, 3420] +Triangle: [1292, 3504, 3502] +Triangle: [1293, 3505, 3504] +Triangle: [1294, 3430, 3505] +Triangle: [3504, 3507, 3506] +Triangle: [3507, 3508, 3506] +Triangle: [3433, 3505, 3430] +Triangle: [3433, 3509, 3507] +Triangle: [3504, 3501, 3502] +Triangle: [3506, 3500, 3501] +Triangle: [3510, 3450, 3446] +Triangle: [3450, 3512, 3468] +Triangle: [3468, 3453, 3452] +Triangle: [3431, 3452, 3453] +Triangle: [3431, 3513, 3432] +Triangle: [3432, 3514, 3435] +Triangle: [3512, 3513, 3453] +Triangle: [3514, 3515, 3516] +Triangle: [3511, 3515, 3512] +Triangle: [3517, 3511, 3510] +Triangle: [3537, 3551, 3556] +Triangle: [3557, 3536, 3552] +Triangle: [3558, 3540, 3534] +Triangle: [3551, 3539, 3554] +Triangle: [3558, 3535, 3557] +Triangle: [3552, 3537, 3556] +Triangle: [3539, 3555, 3554] +Triangle: [3541, 3553, 3555] +Triangle: [3542, 3537, 3536] +Triangle: [3550, 3532, 3533] +Triangle: [3549, 3533, 3531] +Triangle: [3542, 3535, 3534] +Triangle: [3539, 3542, 3541] +Triangle: [3542, 3540, 3541] +Triangle: [3545, 3529, 3528] +Triangle: [3548, 3527, 3525] +Triangle: [3543, 3531, 3530] +Triangle: [3525, 3547, 3548] +Triangle: [3527, 3545, 3528] +Triangle: [3544, 3530, 3529] +Triangle: [3559, 3528, 3560] +Triangle: [3528, 3561, 3560] +Triangle: [3529, 3562, 3561] +Triangle: [3530, 3563, 3562] +Triangle: [3563, 3533, 3564] +Triangle: [3533, 3565, 3564] +Triangle: [3565, 3525, 3566] +Triangle: [3525, 3559, 3566] +Triangle: [3555, 3547, 3550] +Triangle: [3554, 3550, 3549] +Triangle: [3545, 3556, 3544] +Triangle: [3548, 3557, 3546] +Triangle: [3543, 3554, 3549] +Triangle: [3548, 3553, 3558] +Triangle: [3546, 3552, 3545] +Triangle: [3544, 3551, 3543] +Triangle: [3566, 3523, 3524] +Triangle: [3518, 3566, 3524] +Triangle: [3564, 3518, 3526] +Triangle: [3519, 3564, 3526] +Triangle: [3562, 3519, 3520] +Triangle: [3561, 3520, 3521] +Triangle: [3560, 3521, 3522] +Triangle: [3523, 3560, 3522] +Triangle: [3574, 3519, 3526] +Triangle: [3524, 3567, 3518] +Triangle: [3521, 3571, 3522] +Triangle: [3568, 3520, 3519] +Triangle: [3567, 3526, 3518] +Triangle: [3572, 3524, 3523] +Triangle: [3522, 3572, 3523] +Triangle: [3520, 3570, 3521] +Triangle: [3576, 3442, 3440] +Triangle: [3442, 3583, 3443] +Triangle: [3444, 3583, 3584] +Triangle: [3575, 3583, 3582] +Triangle: [3463, 3584, 3585] +Triangle: [3581, 3584, 3575] +Triangle: [3585, 3445, 3463] +Triangle: [3586, 3581, 3580] +Triangle: [3446, 3586, 3510] +Triangle: [3440, 3590, 3576] +Triangle: [3439, 3592, 3438] +Triangle: [3590, 3577, 3576] +Triangle: [3577, 3588, 3578] +Triangle: [3578, 3587, 3579] +Triangle: [3579, 3586, 3580] +Triangle: [3510, 3587, 3517] +Triangle: [3588, 3517, 3587] +Triangle: [3516, 3593, 3514] +Triangle: [3568, 3582, 3576] +Triangle: [3574, 3575, 3582] +Triangle: [3567, 3581, 3575] +Triangle: [3573, 3580, 3581] +Triangle: [3580, 3571, 3579] +Triangle: [3579, 3570, 3578] +Triangle: [3570, 3577, 3578] +Triangle: [3569, 3576, 3577] +Triangle: [3592, 3590, 3438] +Triangle: [3589, 3593, 3588] +Triangle: [3593, 3594, 3514] +Triangle: [3435, 3594, 3436] +Triangle: [3594, 3592, 3436] +Triangle: [3437, 3509, 3434] +Triangle: [3596, 3171, 3178] +Triangle: [3439, 3597, 3591] +Triangle: [3591, 3595, 3437] +Triangle: [3600, 3599, 3601] +Triangle: [3598, 3597, 3599] +Triangle: [3596, 3599, 3597] +Triangle: [3601, 3178, 3343] +Triangle: [3604, 3350, 3352] +Triangle: [3598, 3602, 3605] +Triangle: [3598, 3607, 3595] +Triangle: [3608, 3607, 3606] +Triangle: [3509, 3608, 3508] +Triangle: [3508, 3503, 3500] +Triangle: [3609, 3608, 3606] +Triangle: [3420, 3609, 3610] +Triangle: [3613, 3358, 3416] +Triangle: [3612, 3357, 3358] +Triangle: [3395, 3416, 3394] +Triangle: [3395, 3610, 3613] +Triangle: [3602, 3603, 3611] +Triangle: [3607, 3614, 3606] +Triangle: [3606, 3610, 3609] +Triangle: [3605, 3611, 3614] +Triangle: [3615, 3611, 3612] +Triangle: [3613, 3615, 3612] +Triangle: [3614, 3615, 3610] +Triangle: [3648, 3618, 3649] +Triangle: [3644, 3624, 3623] +Triangle: [3640, 3625, 3622] +Triangle: [3639, 3621, 3636] +Triangle: [5333, 3627, 3620] +Triangle: [5334, 3628, 3631] +Triangle: [3651, 3629, 3630] +Triangle: [3626, 3633, 3621] +Triangle: [5355, 3632, 5354] +Triangle: [3622, 3638, 3637] +Triangle: [3637, 3639, 3636] +Triangle: [3623, 3642, 3641] +Triangle: [3641, 3643, 3640] +Triangle: [3616, 3646, 3645] +Triangle: [3645, 3647, 3644] +Triangle: [3629, 3649, 3630] +Triangle: [3631, 3650, 3651] +Triangle: [3679, 3691, 3693] +Triangle: [3687, 3660, 3671] +Triangle: [3681, 3677, 3690] +Triangle: [3689, 3662, 3675] +Triangle: [3683, 3673, 3688] +Triangle: [3684, 5380, 5381] +Triangle: [3685, 3697, 3699] +Triangle: [3686, 3653, 3678] +Triangle: [3687, 3670, 3686] +Triangle: [3688, 3662, 3682] +Triangle: [5364, 3675, 5363] +Triangle: [3680, 3677, 3660] +Triangle: [3676, 3680, 3659] +Triangle: [5362, 3689, 5364] +Triangle: [3672, 3682, 3657] +Triangle: [3668, 3686, 3669] +Triangle: [3652, 3686, 3678] +Triangle: [3666, 3699, 3698] +Triangle: [5382, 3684, 5381] +Triangle: [3656, 3688, 3672] +Triangle: [3674, 3682, 3689] +Triangle: [3676, 3681, 3690] +Triangle: [3659, 3687, 3668] +Triangle: [3654, 3693, 3692] +Triangle: [3692, 3696, 3694] +Triangle: [3693, 3695, 3696] +Triangle: [3696, 3665, 3685] +Triangle: [3694, 3685, 3666] +Triangle: [3667, 3699, 3684] +Triangle: [3699, 3664, 3684] +Triangle: [3700, 5373, 5371] +Triangle: [3702, 5372, 5373] +Triangle: [3744, 3706, 3742] +Triangle: [3731, 3722, 3738] +Triangle: [3732, 3728, 3741] +Triangle: [5385, 3713, 5383] +Triangle: [5341, 3714, 5337] +Triangle: [3753, 3715, 3752] +Triangle: [3750, 3716, 3748] +Triangle: [3737, 3704, 3729] +Triangle: [3738, 3721, 3737] +Triangle: [5347, 3724, 5345] +Triangle: [3740, 5396, 5397] +Triangle: [3741, 3711, 3731] +Triangle: [3710, 3741, 3731] +Triangle: [3725, 5397, 5395] +Triangle: [3723, 5347, 5342] +Triangle: [3719, 3737, 3720] +Triangle: [3703, 3737, 3729] +Triangle: [3749, 3736, 3750] +Triangle: [3751, 3735, 3753] +Triangle: [5338, 3734, 5341] +Triangle: [3708, 5385, 5384] +Triangle: [3709, 3741, 3727] +Triangle: [3710, 3738, 3719] +Triangle: [3705, 3744, 3743] +Triangle: [3743, 3747, 3745] +Triangle: [3747, 3742, 3746] +Triangle: [3736, 3746, 3716] +Triangle: [3717, 3747, 3736] +Triangle: [3718, 3750, 3735] +Triangle: [3735, 3748, 3715] +Triangle: [3707, 3753, 3734] +Triangle: [3734, 3752, 3714] +Triangle: [3795, 3757, 3793] +Triangle: [3782, 3773, 3789] +Triangle: [3783, 3779, 3792] +Triangle: [3791, 3764, 3777] +Triangle: [3790, 3765, 3775] +Triangle: [3786, 3803, 3804] +Triangle: [3801, 3767, 3799] +Triangle: [3788, 3755, 3780] +Triangle: [3789, 3772, 3788] +Triangle: [3784, 3775, 3764] +Triangle: [3783, 3777, 3763] +Triangle: [3792, 3762, 3782] +Triangle: [3778, 3782, 3761] +Triangle: [3776, 3783, 3760] +Triangle: [3759, 3790, 3784] +Triangle: [3770, 3788, 3771] +Triangle: [3754, 3788, 3780] +Triangle: [3800, 3787, 3801] +Triangle: [3769, 3804, 3802] +Triangle: [3774, 3785, 3790] +Triangle: [3776, 3784, 3791] +Triangle: [3760, 3792, 3778] +Triangle: [3761, 3789, 3770] +Triangle: [3794, 3781, 3795] +Triangle: [3796, 3795, 3798] +Triangle: [3798, 3793, 3797] +Triangle: [3787, 3797, 3767] +Triangle: [3768, 3798, 3787] +Triangle: [3769, 3801, 3786] +Triangle: [3786, 3799, 3766] +Triangle: [3802, 3785, 3758] +Triangle: [3804, 3765, 3785] +Triangle: [3846, 3808, 3844] +Triangle: [3840, 3813, 3824] +Triangle: [3834, 3830, 3843] +Triangle: [3842, 3815, 3828] +Triangle: [3841, 3816, 3826] +Triangle: [3855, 3817, 3854] +Triangle: [3838, 3850, 3852] +Triangle: [3839, 3806, 3831] +Triangle: [3840, 3823, 3839] +Triangle: [3835, 3826, 3815] +Triangle: [3834, 3828, 3814] +Triangle: [3833, 3830, 3813] +Triangle: [3812, 3843, 3833] +Triangle: [3811, 3842, 3834] +Triangle: [3810, 3841, 3835] +Triangle: [3822, 3840, 3839] +Triangle: [3805, 3839, 3831] +Triangle: [3851, 3838, 3852] +Triangle: [3853, 3837, 3855] +Triangle: [3809, 3841, 3825] +Triangle: [3827, 3835, 3842] +Triangle: [3829, 3834, 3843] +Triangle: [3821, 3833, 3840] +Triangle: [3845, 3832, 3846] +Triangle: [3847, 3846, 3849] +Triangle: [3849, 3844, 3848] +Triangle: [3849, 3818, 3838] +Triangle: [3819, 3849, 3838] +Triangle: [3820, 3852, 3837] +Triangle: [3837, 3850, 3817] +Triangle: [3853, 3836, 3809] +Triangle: [3836, 3854, 3816] +Triangle: [3897, 3859, 3895] +Triangle: [3891, 3864, 3875] +Triangle: [3885, 3916, 3918] +Triangle: [3930, 3866, 3928] +Triangle: [3924, 3867, 3922] +Triangle: [3888, 3905, 3906] +Triangle: [3903, 3869, 3901] +Triangle: [3890, 3911, 3912] +Triangle: [3891, 3908, 3909] +Triangle: [3927, 3877, 3926] +Triangle: [3893, 3920, 3921] +Triangle: [3915, 3881, 3914] +Triangle: [3913, 3894, 3915] +Triangle: [3919, 3893, 3921] +Triangle: [3925, 3892, 3927] +Triangle: [3907, 3891, 3909] +Triangle: [3910, 3890, 3912] +Triangle: [3902, 3889, 3903] +Triangle: [3871, 3906, 3904] +Triangle: [3860, 3924, 3923] +Triangle: [3929, 3886, 3930] +Triangle: [3917, 3885, 3918] +Triangle: [3872, 3884, 3891] +Triangle: [3896, 3883, 3897] +Triangle: [3898, 3897, 3900] +Triangle: [3900, 3895, 3899] +Triangle: [3889, 3899, 3869] +Triangle: [3870, 3900, 3889] +Triangle: [3902, 3888, 3871] +Triangle: [3903, 3868, 3888] +Triangle: [3904, 3887, 3860] +Triangle: [3887, 3905, 3867] +Triangle: [3873, 3909, 3890] +Triangle: [3909, 3874, 3890] +Triangle: [3856, 3912, 3882] +Triangle: [3912, 3857, 3882] +Triangle: [3863, 3915, 3884] +Triangle: [3884, 3914, 3864] +Triangle: [3880, 3918, 3894] +Triangle: [3894, 3916, 3881] +Triangle: [3862, 3921, 3885] +Triangle: [3921, 3865, 3885] +Triangle: [3923, 3892, 3876] +Triangle: [3892, 3922, 3877] +Triangle: [3861, 3927, 3886] +Triangle: [3886, 3926, 3866] +Triangle: [3878, 3930, 3893] +Triangle: [3893, 3928, 3879] +Triangle: [3958, 3970, 3972] +Triangle: [3959, 3950, 3966] +Triangle: [3960, 3991, 3993] +Triangle: [4005, 3941, 4003] +Triangle: [3999, 3942, 3997] +Triangle: [3963, 3980, 3981] +Triangle: [3964, 3976, 3978] +Triangle: [3965, 3986, 3987] +Triangle: [3966, 3983, 3984] +Triangle: [4002, 3952, 4001] +Triangle: [3968, 3995, 3996] +Triangle: [3969, 3989, 3990] +Triangle: [3988, 3969, 3990] +Triangle: [3953, 3996, 3994] +Triangle: [4000, 3967, 4002] +Triangle: [3982, 3966, 3984] +Triangle: [3985, 3965, 3987] +Triangle: [3945, 3978, 3977] +Triangle: [3946, 3981, 3979] +Triangle: [3998, 3962, 3999] +Triangle: [4004, 3961, 4005] +Triangle: [3937, 3993, 3992] +Triangle: [3947, 3959, 3966] +Triangle: [3971, 3958, 3972] +Triangle: [3973, 3972, 3975] +Triangle: [3975, 3970, 3974] +Triangle: [3964, 3974, 3944] +Triangle: [3945, 3975, 3964] +Triangle: [3977, 3963, 3946] +Triangle: [3978, 3943, 3963] +Triangle: [3979, 3962, 3935] +Triangle: [3962, 3980, 3942] +Triangle: [3948, 3984, 3965] +Triangle: [3984, 3949, 3965] +Triangle: [3931, 3987, 3957] +Triangle: [3987, 3932, 3957] +Triangle: [3938, 3990, 3959] +Triangle: [3990, 3939, 3959] +Triangle: [3955, 3993, 3969] +Triangle: [3993, 3956, 3969] +Triangle: [3994, 3960, 3937] +Triangle: [3996, 3940, 3960] +Triangle: [3951, 3999, 3967] +Triangle: [3967, 3997, 3952] +Triangle: [3936, 4002, 3961] +Triangle: [3961, 4001, 3941] +Triangle: [4004, 3968, 3953] +Triangle: [4005, 3954, 3968] +Triangle: [4047, 4009, 4045] +Triangle: [4034, 4025, 4041] +Triangle: [4044, 4015, 4031] +Triangle: [4036, 5392, 5394] +Triangle: [5353, 4017, 5349] +Triangle: [4056, 4018, 4055] +Triangle: [4039, 4051, 4053] +Triangle: [4040, 4007, 4032] +Triangle: [4041, 4024, 4040] +Triangle: [5388, 4027, 5387] +Triangle: [4035, 4029, 4015] +Triangle: [4034, 4031, 4014] +Triangle: [4013, 4044, 4034] +Triangle: [4028, 4035, 4012] +Triangle: [4026, 5388, 5386] +Triangle: [4023, 4041, 4040] +Triangle: [4006, 4040, 4032] +Triangle: [4052, 4039, 4053] +Triangle: [4021, 4056, 4054] +Triangle: [4010, 5353, 5350] +Triangle: [4011, 5394, 5393] +Triangle: [4030, 4035, 4044] +Triangle: [4022, 4034, 4041] +Triangle: [4046, 4033, 4047] +Triangle: [4048, 4047, 4050] +Triangle: [4050, 4045, 4049] +Triangle: [4050, 4019, 4039] +Triangle: [4020, 4050, 4039] +Triangle: [4052, 4038, 4021] +Triangle: [4038, 4051, 4018] +Triangle: [4054, 4037, 4010] +Triangle: [4037, 4055, 4017] +Triangle: [4084, 4096, 4098] +Triangle: [4092, 4065, 4076] +Triangle: [4095, 4066, 4082] +Triangle: [4094, 4067, 4080] +Triangle: [5367, 4068, 5365] +Triangle: [4089, 4106, 4107] +Triangle: [4090, 4102, 4104] +Triangle: [4091, 4058, 4083] +Triangle: [4092, 4075, 4091] +Triangle: [4087, 4078, 4067] +Triangle: [4086, 4080, 4066] +Triangle: [4085, 4082, 4065] +Triangle: [4064, 4095, 4085] +Triangle: [4063, 4094, 4086] +Triangle: [4077, 4087, 4062] +Triangle: [4073, 4091, 4074] +Triangle: [4057, 4091, 4083] +Triangle: [4071, 4104, 4103] +Triangle: [4105, 4089, 4107] +Triangle: [4061, 5367, 5366] +Triangle: [4079, 4087, 4094] +Triangle: [4081, 4086, 4095] +Triangle: [4064, 4092, 4073] +Triangle: [4059, 4098, 4097] +Triangle: [4097, 4101, 4099] +Triangle: [4098, 4100, 4101] +Triangle: [4101, 4070, 4090] +Triangle: [4099, 4090, 4071] +Triangle: [4072, 4104, 4089] +Triangle: [4104, 4069, 4089] +Triangle: [4105, 5370, 5368] +Triangle: [5370, 4106, 5369] +Triangle: [4135, 4147, 4149] +Triangle: [4136, 4127, 4143] +Triangle: [4137, 4133, 4146] +Triangle: [4138, 4131, 4145] +Triangle: [4144, 4119, 4129] +Triangle: [4158, 4120, 4157] +Triangle: [4141, 4153, 4155] +Triangle: [4142, 4109, 4134] +Triangle: [4143, 4126, 4142] +Triangle: [4138, 4129, 4118] +Triangle: [4145, 4117, 4137] +Triangle: [4146, 4116, 4136] +Triangle: [4115, 4146, 4136] +Triangle: [4114, 4145, 4137] +Triangle: [4128, 4138, 4113] +Triangle: [4124, 4142, 4125] +Triangle: [4108, 4142, 4134] +Triangle: [4154, 4141, 4155] +Triangle: [4123, 4158, 4156] +Triangle: [4128, 4139, 4144] +Triangle: [4130, 4138, 4145] +Triangle: [4132, 4137, 4146] +Triangle: [4124, 4136, 4143] +Triangle: [4110, 4149, 4148] +Triangle: [4150, 4149, 4152] +Triangle: [4152, 4147, 4151] +Triangle: [4141, 4151, 4121] +Triangle: [4122, 4152, 4141] +Triangle: [4154, 4140, 4123] +Triangle: [4140, 4153, 4120] +Triangle: [4112, 4158, 4139] +Triangle: [4139, 4157, 4119] +Triangle: [4186, 4198, 4200] +Triangle: [4187, 4178, 4194] +Triangle: [4188, 4184, 4197] +Triangle: [4189, 5356, 5358] +Triangle: [4195, 4170, 4180] +Triangle: [4209, 4171, 4208] +Triangle: [5378, 4172, 5377] +Triangle: [4193, 4160, 4185] +Triangle: [4194, 4177, 4193] +Triangle: [5391, 4180, 5390] +Triangle: [4196, 5360, 5361] +Triangle: [4197, 4167, 4187] +Triangle: [4183, 4187, 4166] +Triangle: [4181, 5361, 5359] +Triangle: [4179, 5391, 5389] +Triangle: [4175, 4193, 4176] +Triangle: [4159, 4193, 4185] +Triangle: [4173, 5378, 5379] +Triangle: [4174, 4209, 4207] +Triangle: [4179, 4190, 4195] +Triangle: [4164, 5358, 5357] +Triangle: [4165, 4197, 4183] +Triangle: [4175, 4187, 4194] +Triangle: [4161, 4200, 4199] +Triangle: [4201, 4200, 4203] +Triangle: [4200, 4202, 4203] +Triangle: [4203, 4172, 4192] +Triangle: [4173, 4203, 4192] +Triangle: [4205, 5376, 5374] +Triangle: [4206, 5375, 5376] +Triangle: [4163, 4209, 4190] +Triangle: [4190, 4208, 4170] +Triangle: [4242, 4212, 4243] +Triangle: [4241, 4217, 4238] +Triangle: [4234, 4219, 4216] +Triangle: [4230, 4220, 4215] +Triangle: [4226, 4221, 4214] +Triangle: [4214, 4222, 4225] +Triangle: [4245, 4223, 4224] +Triangle: [4215, 4228, 4227] +Triangle: [4227, 4229, 4226] +Triangle: [4216, 4232, 4231] +Triangle: [4231, 4233, 4230] +Triangle: [4218, 4235, 4217] +Triangle: [4236, 4234, 4235] +Triangle: [4210, 4240, 4239] +Triangle: [4240, 4238, 4239] +Triangle: [4223, 4243, 4224] +Triangle: [4225, 4244, 4245] +Triangle: [4259, 4273, 4279] +Triangle: [4281, 4254, 4274] +Triangle: [4284, 4255, 4275] +Triangle: [4269, 4276, 4283] +Triangle: [4282, 4257, 4277] +Triangle: [4277, 4258, 4278] +Triangle: [4278, 4259, 4279] +Triangle: [4272, 4264, 4280] +Triangle: [4264, 4281, 4280] +Triangle: [4256, 4282, 4276] +Triangle: [4255, 4283, 4275] +Triangle: [4274, 4271, 4284] +Triangle: [4253, 4284, 4270] +Triangle: [4275, 4268, 4252] +Triangle: [4276, 4266, 4251] +Triangle: [4263, 4281, 4262] +Triangle: [4272, 4263, 4246] +Triangle: [4261, 4279, 4260] +Triangle: [4250, 4278, 4261] +Triangle: [4266, 4277, 4250] +Triangle: [4283, 4251, 4268] +Triangle: [4270, 4275, 4252] +Triangle: [4262, 4274, 4253] +Triangle: [4260, 4273, 4248] +Triangle: [4326, 4288, 4312] +Triangle: [4304, 4313, 4320] +Triangle: [4350, 4294, 4314] +Triangle: [4342, 4315, 4344] +Triangle: [4336, 4316, 4338] +Triangle: [4335, 4297, 4317] +Triangle: [4330, 4318, 4332] +Triangle: [4286, 4319, 4311] +Triangle: [4354, 4320, 4355] +Triangle: [4341, 4306, 4321] +Triangle: [4346, 4322, 4347] +Triangle: [4359, 4310, 4323] +Triangle: [4359, 4309, 4357] +Triangle: [4347, 4307, 4345] +Triangle: [4339, 4321, 4305] +Triangle: [4356, 4320, 4301] +Triangle: [4285, 4319, 4302] +Triangle: [4331, 4318, 4299] +Triangle: [4333, 4317, 4300] +Triangle: [4338, 4289, 4337] +Triangle: [4343, 4315, 4290] +Triangle: [4349, 4314, 4291] +Triangle: [4320, 4292, 4301] +Triangle: [4326, 4287, 4325] +Triangle: [4327, 4326, 4325] +Triangle: [4329, 4324, 4326] +Triangle: [4318, 4328, 4329] +Triangle: [4299, 4329, 4327] +Triangle: [4317, 4331, 4300] +Triangle: [4297, 4332, 4317] +Triangle: [4289, 4335, 4333] +Triangle: [4316, 4334, 4335] +Triangle: [4321, 4337, 4305] +Triangle: [4321, 4336, 4338] +Triangle: [4290, 4341, 4339] +Triangle: [4315, 4340, 4341] +Triangle: [4322, 4343, 4307] +Triangle: [4308, 4344, 4322] +Triangle: [4314, 4345, 4291] +Triangle: [4314, 4346, 4347] +Triangle: [4309, 4350, 4349] +Triangle: [4323, 4348, 4350] +Triangle: [4319, 4351, 4302] +Triangle: [4303, 4353, 4319] +Triangle: [4351, 4355, 4356] +Triangle: [4353, 4354, 4355] +Triangle: [4313, 4357, 4292] +Triangle: [4293, 4359, 4313] +Triangle: [4399, 4387, 4401] +Triangle: [4395, 4368, 4388] +Triangle: [4425, 4369, 4389] +Triangle: [4419, 4370, 4390] +Triangle: [4413, 4371, 4391] +Triangle: [4410, 4372, 4392] +Triangle: [4407, 4373, 4393] +Triangle: [4361, 4394, 4386] +Triangle: [4430, 4379, 4395] +Triangle: [4415, 4396, 4416] +Triangle: [4422, 4383, 4397] +Triangle: [4434, 4385, 4398] +Triangle: [4432, 4398, 4384] +Triangle: [4420, 4397, 4382] +Triangle: [4416, 4380, 4414] +Triangle: [4431, 4395, 4376] +Triangle: [4360, 4394, 4377] +Triangle: [4406, 4393, 4374] +Triangle: [4408, 4392, 4375] +Triangle: [4412, 4391, 4364] +Triangle: [4418, 4390, 4365] +Triangle: [4424, 4389, 4366] +Triangle: [4376, 4388, 4367] +Triangle: [4400, 4387, 4362] +Triangle: [4404, 4400, 4402] +Triangle: [4404, 4399, 4401] +Triangle: [4393, 4403, 4404] +Triangle: [4374, 4404, 4402] +Triangle: [4375, 4407, 4406] +Triangle: [4392, 4405, 4407] +Triangle: [4364, 4410, 4408] +Triangle: [4391, 4409, 4410] +Triangle: [4396, 4412, 4380] +Triangle: [4381, 4413, 4396] +Triangle: [4365, 4416, 4414] +Triangle: [4370, 4416, 4390] +Triangle: [4382, 4419, 4418] +Triangle: [4397, 4417, 4419] +Triangle: [4366, 4422, 4420] +Triangle: [4389, 4421, 4422] +Triangle: [4384, 4425, 4424] +Triangle: [4398, 4423, 4425] +Triangle: [4394, 4426, 4377] +Triangle: [4378, 4428, 4394] +Triangle: [4428, 4431, 4426] +Triangle: [4428, 4429, 4430] +Triangle: [4367, 4434, 4432] +Triangle: [4368, 4434, 4388] +Triangle: [4468, 4438, 4437] +Triangle: [4463, 4443, 4442] +Triangle: [4462, 4441, 4459] +Triangle: [4455, 4445, 4440] +Triangle: [4451, 4446, 4439] +Triangle: [4439, 4447, 4450] +Triangle: [4470, 4448, 4449] +Triangle: [4440, 4453, 4452] +Triangle: [4452, 4454, 4451] +Triangle: [4444, 4456, 4441] +Triangle: [4456, 4458, 4455] +Triangle: [4442, 4461, 4460] +Triangle: [4461, 4459, 4460] +Triangle: [5331, 4464, 5330] +Triangle: [5328, 4466, 4463] +Triangle: [4449, 4467, 4468] +Triangle: [4450, 4469, 4470] +Triangle: [4504, 4474, 4503] +Triangle: [4499, 4479, 4502] +Triangle: [4495, 4480, 4498] +Triangle: [4476, 4494, 4491] +Triangle: [4475, 4490, 4487] +Triangle: [4486, 4482, 4475] +Triangle: [4506, 4484, 4505] +Triangle: [4488, 4481, 4476] +Triangle: [4487, 4489, 4488] +Triangle: [4492, 4480, 4477] +Triangle: [4491, 4493, 4492] +Triangle: [4478, 4497, 4479] +Triangle: [4496, 4498, 4497] +Triangle: [4471, 4501, 4472] +Triangle: [4500, 4502, 4501] +Triangle: [4485, 4503, 4484] +Triangle: [4506, 4483, 4486] +Triangle: [4539, 4760, 4775] +Triangle: [4538, 4761, 4774] +Triangle: [4772, 4516, 4762] +Triangle: [4770, 4517, 4763] +Triangle: [4526, 4764, 4768] +Triangle: [4518, 4765, 4764] +Triangle: [4541, 4766, 4776] +Triangle: [4763, 4525, 4767] +Triangle: [4767, 4526, 4768] +Triangle: [4762, 4529, 4769] +Triangle: [4769, 4530, 4770] +Triangle: [4761, 4533, 4771] +Triangle: [4771, 4534, 4772] +Triangle: [4759, 4537, 4773] +Triangle: [4773, 4538, 4774] +Triangle: [4520, 4775, 4766] +Triangle: [4519, 4776, 4765] +Triangle: [4575, 4545, 4576] +Triangle: [4574, 4550, 4571] +Triangle: [4570, 4549, 4567] +Triangle: [4563, 4553, 4548] +Triangle: [4562, 4547, 4559] +Triangle: [4554, 4558, 4547] +Triangle: [4577, 4557, 4578] +Triangle: [4548, 4561, 4560] +Triangle: [4561, 4559, 4560] +Triangle: [4552, 4564, 4549] +Triangle: [4564, 4566, 4563] +Triangle: [4551, 4568, 4550] +Triangle: [4569, 4567, 4568] +Triangle: [4543, 4573, 4572] +Triangle: [4573, 4571, 4572] +Triangle: [4556, 4576, 4557] +Triangle: [4555, 4578, 4558] +Triangle: [4611, 4581, 4612] +Triangle: [4610, 4586, 4607] +Triangle: [4603, 4588, 4585] +Triangle: [4599, 4589, 4584] +Triangle: [4598, 4583, 4595] +Triangle: [4583, 4591, 4594] +Triangle: [4614, 4592, 4593] +Triangle: [4584, 4597, 4596] +Triangle: [4596, 4598, 4595] +Triangle: [4585, 4601, 4600] +Triangle: [4600, 4602, 4599] +Triangle: [4586, 4605, 4604] +Triangle: [4604, 4606, 4603] +Triangle: [4579, 4609, 4608] +Triangle: [4609, 4607, 4608] +Triangle: [4592, 4612, 4593] +Triangle: [4594, 4613, 4614] +Triangle: [4617, 4647, 4648] +Triangle: [4622, 4646, 4643] +Triangle: [4621, 4642, 4639] +Triangle: [4620, 4638, 4635] +Triangle: [4631, 4626, 4634] +Triangle: [4630, 4626, 4619] +Triangle: [4650, 4628, 4649] +Triangle: [4632, 4625, 4620] +Triangle: [4632, 4634, 4633] +Triangle: [4636, 4624, 4621] +Triangle: [4635, 4637, 4636] +Triangle: [4640, 4623, 4622] +Triangle: [4639, 4641, 4640] +Triangle: [4615, 4645, 4616] +Triangle: [4644, 4646, 4645] +Triangle: [4648, 4628, 4629] +Triangle: [4650, 4627, 4630] +Triangle: [4684, 4654, 4683] +Triangle: [4658, 4682, 4679] +Triangle: [4657, 4678, 4675] +Triangle: [4671, 4661, 4674] +Triangle: [4655, 4670, 4667] +Triangle: [4655, 4663, 4662] +Triangle: [4686, 4664, 4685] +Triangle: [4656, 4669, 4661] +Triangle: [4667, 4669, 4668] +Triangle: [4672, 4660, 4657] +Triangle: [4672, 4674, 4673] +Triangle: [4676, 4659, 4658] +Triangle: [4675, 4677, 4676] +Triangle: [4651, 4681, 4652] +Triangle: [4680, 4682, 4681] +Triangle: [4665, 4683, 4664] +Triangle: [4686, 4663, 4666] +Triangle: [4720, 4690, 4719] +Triangle: [4694, 4718, 4715] +Triangle: [4693, 4714, 4711] +Triangle: [4707, 4697, 4710] +Triangle: [4691, 4706, 4703] +Triangle: [4702, 4698, 4691] +Triangle: [4701, 4721, 4722] +Triangle: [4692, 4705, 4697] +Triangle: [4704, 4706, 4705] +Triangle: [4708, 4696, 4693] +Triangle: [4707, 4709, 4708] +Triangle: [4712, 4695, 4694] +Triangle: [4711, 4713, 4712] +Triangle: [4687, 4717, 4688] +Triangle: [4716, 4718, 4717] +Triangle: [4720, 4700, 4701] +Triangle: [4722, 4699, 4702] +Triangle: [4756, 4726, 4755] +Triangle: [4751, 4731, 4754] +Triangle: [4747, 4732, 4750] +Triangle: [4728, 4746, 4743] +Triangle: [4739, 4734, 4742] +Triangle: [4738, 4734, 4727] +Triangle: [4737, 4757, 4758] +Triangle: [4728, 4741, 4733] +Triangle: [4739, 4741, 4740] +Triangle: [4744, 4732, 4729] +Triangle: [4743, 4745, 4744] +Triangle: [4730, 4749, 4731] +Triangle: [4748, 4750, 4749] +Triangle: [4723, 4753, 4724] +Triangle: [4752, 4754, 4753] +Triangle: [4756, 4736, 4737] +Triangle: [4738, 4757, 4735] +Triangle: [4765, 4542, 4522] +Triangle: [4766, 4540, 4521] +Triangle: [4536, 4774, 4535] +Triangle: [4507, 4773, 4536] +Triangle: [4532, 4772, 4531] +Triangle: [4514, 4771, 4532] +Triangle: [4528, 4770, 4527] +Triangle: [4513, 4769, 4528] +Triangle: [4524, 4768, 4523] +Triangle: [4512, 4767, 4524] +Triangle: [4776, 4521, 4542] +Triangle: [4511, 4765, 4522] +Triangle: [4523, 4764, 4511] +Triangle: [4527, 4763, 4512] +Triangle: [4531, 4762, 4513] +Triangle: [4535, 4761, 4514] +Triangle: [4775, 4509, 4540] +Triangle: [4577, 4784, 4556] +Triangle: [4566, 4781, 4553] +Triangle: [4561, 4786, 4562] +Triangle: [4562, 4782, 4554] +Triangle: [4555, 4794, 4577] +Triangle: [4573, 4777, 4791] +Triangle: [4574, 4791, 4792] +Triangle: [4569, 4779, 4789] +Triangle: [4570, 4789, 4790] +Triangle: [4565, 4780, 4787] +Triangle: [4551, 4792, 4779] +Triangle: [4554, 4783, 4555] +Triangle: [4565, 4788, 4566] +Triangle: [4556, 4793, 4575] +Triangle: [4552, 4790, 4780] +Triangle: [4553, 4785, 4561] +Triangle: [4546, 4793, 4778] +Triangle: [4834, 4822, 4836] +Triangle: [4814, 4823, 4830] +Triangle: [4820, 4824, 4833] +Triangle: [4818, 4825, 4832] +Triangle: [4831, 4806, 4826] +Triangle: [4845, 4807, 4827] +Triangle: [4842, 4808, 4828] +Triangle: [4796, 4829, 4821] +Triangle: [4813, 4830, 4829] +Triangle: [4805, 4831, 4825] +Triangle: [4804, 4832, 4824] +Triangle: [4803, 4833, 4823] +Triangle: [4823, 4819, 4802] +Triangle: [4801, 4832, 4817] +Triangle: [4825, 4815, 4800] +Triangle: [4829, 4811, 4812] +Triangle: [4795, 4829, 4812] +Triangle: [4841, 4828, 4809] +Triangle: [4845, 4810, 4843] +Triangle: [4815, 4826, 4799] +Triangle: [4832, 4800, 4817] +Triangle: [4819, 4824, 4801] +Triangle: [4830, 4802, 4811] +Triangle: [4835, 4822, 4797] +Triangle: [4837, 4836, 4835] +Triangle: [4838, 4836, 4839] +Triangle: [4808, 4839, 4828] +Triangle: [4828, 4837, 4809] +Triangle: [4810, 4842, 4841] +Triangle: [4827, 4840, 4842] +Triangle: [4826, 4843, 4799] +Triangle: [4826, 4844, 4845] +Triangle: [4879, 4849, 4873] +Triangle: [4865, 4874, 4881] +Triangle: [4884, 4855, 4875] +Triangle: [5180, 4856, 4876] +Triangle: [4867, 4877, 4882] +Triangle: [4857, 4878, 4877] +Triangle: [4858, 4879, 4878] +Triangle: [4847, 4880, 4872] +Triangle: [4864, 4881, 4880] +Triangle: [4876, 4867, 4882] +Triangle: [5176, 4883, 5177] +Triangle: [4874, 4871, 4884] +Triangle: [4853, 4884, 4870] +Triangle: [5177, 4868, 5175] +Triangle: [4851, 4882, 4866] +Triangle: [4880, 4862, 4863] +Triangle: [4846, 4880, 4863] +Triangle: [4878, 4860, 4861] +Triangle: [4877, 4861, 4850] +Triangle: [4882, 4850, 4866] +Triangle: [5179, 4876, 4851] +Triangle: [4884, 4852, 4870] +Triangle: [4881, 4853, 4862] +Triangle: [4879, 4848, 4860] +Triangle: [4898, 4887, 4899] +Triangle: [4904, 4892, 4901] +Triangle: [4909, 4894, 4891] +Triangle: [4908, 4890, 4907] +Triangle: [4905, 4896, 4889] +Triangle: [4889, 4897, 4900] +Triangle: [4900, 4898, 4899] +Triangle: [4885, 4903, 4902] +Triangle: [4902, 4904, 4901] +Triangle: [4895, 4905, 4890] +Triangle: [4894, 4907, 4891] +Triangle: [4893, 4909, 4892] +Triangle: [4924, 4938, 4944] +Triangle: [4930, 4939, 4946] +Triangle: [4949, 4920, 4940] +Triangle: [4934, 4941, 4948] +Triangle: [4947, 4922, 4942] +Triangle: [4942, 4923, 4943] +Triangle: [4923, 4944, 4943] +Triangle: [4937, 4929, 4945] +Triangle: [4945, 4930, 4946] +Triangle: [4921, 4947, 4941] +Triangle: [4920, 4948, 4940] +Triangle: [4919, 4949, 4939] +Triangle: [4939, 4935, 4918] +Triangle: [4940, 4933, 4917] +Triangle: [4941, 4931, 4916] +Triangle: [4928, 4946, 4927] +Triangle: [4911, 4945, 4928] +Triangle: [4943, 4925, 4926] +Triangle: [4915, 4943, 4926] +Triangle: [4931, 4942, 4915] +Triangle: [4948, 4916, 4933] +Triangle: [4935, 4940, 4917] +Triangle: [4946, 4918, 4927] +Triangle: [4944, 4913, 4925] +Triangle: [4963, 4977, 4983] +Triangle: [4969, 4978, 4985] +Triangle: [4988, 4959, 4979] +Triangle: [4973, 4980, 4987] +Triangle: [4986, 4961, 4981] +Triangle: [4961, 4982, 4981] +Triangle: [4962, 4983, 4982] +Triangle: [4976, 4968, 4984] +Triangle: [4968, 4985, 4984] +Triangle: [4980, 4971, 4986] +Triangle: [4959, 4987, 4979] +Triangle: [4978, 4975, 4988] +Triangle: [4957, 4988, 4974] +Triangle: [4979, 4972, 4956] +Triangle: [4955, 4986, 4970] +Triangle: [4984, 4966, 4967] +Triangle: [4950, 4984, 4967] +Triangle: [4982, 4964, 4965] +Triangle: [4981, 4965, 4954] +Triangle: [4970, 4981, 4954] +Triangle: [4987, 4955, 4972] +Triangle: [4988, 4956, 4974] +Triangle: [4985, 4957, 4966] +Triangle: [4983, 4952, 4964] +Triangle: [5028, 5016, 5030] +Triangle: [5008, 5017, 5024] +Triangle: [5052, 5018, 5054] +Triangle: [5046, 5019, 5048] +Triangle: [5040, 5020, 5042] +Triangle: [5038, 5021, 5039] +Triangle: [5036, 5002, 5022] +Triangle: [4990, 5023, 5015] +Triangle: [5007, 5024, 5023] +Triangle: [5045, 5010, 5025] +Triangle: [5050, 5026, 5051] +Triangle: [5017, 5014, 5027] +Triangle: [5017, 5013, 4996] +Triangle: [5051, 5011, 5049] +Triangle: [5045, 5009, 5043] +Triangle: [5023, 5005, 5006] +Triangle: [4989, 5023, 5006] +Triangle: [5035, 5022, 5003] +Triangle: [5037, 5021, 5004] +Triangle: [5042, 4993, 5041] +Triangle: [5047, 5019, 4994] +Triangle: [5054, 4995, 5053] +Triangle: [5024, 4996, 5005] +Triangle: [5029, 5016, 4991] +Triangle: [5033, 5029, 5031] +Triangle: [5032, 5030, 5033] +Triangle: [5002, 5033, 5022] +Triangle: [5022, 5031, 5003] +Triangle: [5004, 5036, 5035] +Triangle: [5021, 5034, 5036] +Triangle: [4993, 5039, 5037] +Triangle: [5000, 5039, 5020] +Triangle: [5025, 5041, 5009] +Triangle: [5010, 5042, 5025] +Triangle: [4994, 5045, 5043] +Triangle: [5019, 5044, 5045] +Triangle: [5026, 5047, 5011] +Triangle: [5012, 5048, 5026] +Triangle: [5018, 5049, 4995] +Triangle: [4998, 5051, 5018] +Triangle: [5027, 5053, 5013] +Triangle: [5014, 5054, 5027] +Triangle: [5088, 5078, 5090] +Triangle: [5076, 5080, 5087] +Triangle: [5074, 5081, 5086] +Triangle: [5085, 5066, 5082] +Triangle: [5099, 5067, 5083] +Triangle: [5096, 5068, 5084] +Triangle: [5056, 5079, 5077] +Triangle: [5081, 5072, 5085] +Triangle: [5064, 5086, 5080] +Triangle: [5063, 5087, 5079] +Triangle: [5079, 5075, 5062] +Triangle: [5080, 5073, 5061] +Triangle: [5060, 5085, 5071] +Triangle: [5055, 5079, 5062] +Triangle: [5095, 5084, 5069] +Triangle: [5099, 5070, 5097] +Triangle: [5085, 5059, 5071] +Triangle: [5086, 5060, 5073] +Triangle: [5087, 5061, 5075] +Triangle: [5089, 5078, 5057] +Triangle: [5093, 5089, 5091] +Triangle: [5092, 5090, 5093] +Triangle: [5084, 5092, 5093] +Triangle: [5069, 5093, 5091] +Triangle: [5070, 5096, 5095] +Triangle: [5083, 5094, 5096] +Triangle: [5082, 5097, 5059] +Triangle: [5066, 5099, 5082] +Triangle: [5141, 5103, 5127] +Triangle: [5119, 5128, 5135] +Triangle: [5163, 5129, 5165] +Triangle: [5157, 5130, 5159] +Triangle: [5153, 5111, 5131] +Triangle: [5150, 5112, 5132] +Triangle: [5145, 5133, 5147] +Triangle: [5101, 5134, 5126] +Triangle: [5169, 5135, 5170] +Triangle: [5156, 5121, 5136] +Triangle: [5161, 5137, 5162] +Triangle: [5173, 5138, 5174] +Triangle: [5174, 5124, 5172] +Triangle: [5162, 5122, 5160] +Triangle: [5154, 5136, 5120] +Triangle: [5170, 5116, 5171] +Triangle: [5100, 5134, 5117] +Triangle: [5147, 5114, 5146] +Triangle: [5148, 5132, 5115] +Triangle: [5153, 5104, 5152] +Triangle: [5158, 5130, 5105] +Triangle: [5165, 5106, 5164] +Triangle: [5135, 5107, 5116] +Triangle: [5141, 5102, 5140] +Triangle: [5142, 5141, 5140] +Triangle: [5143, 5141, 5144] +Triangle: [5113, 5144, 5133] +Triangle: [5114, 5144, 5142] +Triangle: [5115, 5147, 5146] +Triangle: [5132, 5145, 5147] +Triangle: [5104, 5150, 5148] +Triangle: [5131, 5149, 5150] +Triangle: [5136, 5152, 5120] +Triangle: [5121, 5153, 5136] +Triangle: [5105, 5156, 5154] +Triangle: [5130, 5155, 5156] +Triangle: [5137, 5158, 5122] +Triangle: [5123, 5159, 5137] +Triangle: [5129, 5160, 5106] +Triangle: [5109, 5162, 5129] +Triangle: [5138, 5164, 5124] +Triangle: [5125, 5165, 5138] +Triangle: [5134, 5166, 5117] +Triangle: [5118, 5168, 5134] +Triangle: [5168, 5171, 5166] +Triangle: [5167, 5170, 5168] +Triangle: [5128, 5172, 5107] +Triangle: [5108, 5174, 5128] +Triangle: [4875, 5175, 4852] +Triangle: [4855, 5177, 4875] +Triangle: [4868, 5180, 5179] +Triangle: [4869, 5180, 4883] +Triangle: [5189, 5186, 5187] +Triangle: [5184, 5189, 5183] +Triangle: [5189, 5188, 5181] +Triangle: [5182, 5189, 5181] +Triangle: [5200, 1934, 745] +Triangle: [1935, 5201, 5202] +Triangle: [1936, 5202, 5203] +Triangle: [1936, 5204, 1937] +Triangle: [1937, 5205, 1938] +Triangle: [1938, 5206, 1939] +Triangle: [1942, 5206, 5209] +Triangle: [1942, 5208, 1941] +Triangle: [5227, 5208, 5228] +Triangle: [1940, 5197, 742] +Triangle: [735, 5200, 745] +Triangle: [736, 5190, 735] +Triangle: [737, 5191, 736] +Triangle: [5193, 737, 738] +Triangle: [5194, 738, 739] +Triangle: [5195, 739, 740] +Triangle: [744, 5195, 740] +Triangle: [744, 5198, 5199] +Triangle: [5198, 5216, 5218] +Triangle: [5197, 741, 742] +Triangle: [5218, 733, 734] +Triangle: [1932, 5228, 1933] +Triangle: [5220, 5201, 5200] +Triangle: [5202, 5221, 5222] +Triangle: [5203, 5222, 5223] +Triangle: [5204, 5223, 5224] +Triangle: [5205, 5224, 5225] +Triangle: [5205, 5226, 5206] +Triangle: [5206, 5229, 5209] +Triangle: [5209, 5228, 5208] +Triangle: [5207, 5217, 5197] +Triangle: [5190, 5220, 5200] +Triangle: [5191, 5210, 5190] +Triangle: [5192, 5211, 5191] +Triangle: [5193, 5212, 5192] +Triangle: [5194, 5213, 5193] +Triangle: [5215, 5194, 5195] +Triangle: [5219, 5195, 5199] +Triangle: [5199, 5218, 5219] +Triangle: [5217, 5196, 5197] +Triangle: [5265, 5267, 5263] +Triangle: [5234, 5237, 5235] +Triangle: [5230, 5236, 5234] +Triangle: [5238, 5237, 5236] +Triangle: [5230, 5238, 5236] +Triangle: [5240, 5239, 5238] +Triangle: [5230, 5240, 5238] +Triangle: [5240, 5243, 5241] +Triangle: [5230, 5242, 5240] +Triangle: [5244, 5243, 5242] +Triangle: [5230, 5244, 5242] +Triangle: [5244, 5247, 5245] +Triangle: [5230, 5246, 5244] +Triangle: [5246, 5249, 5247] +Triangle: [5230, 5248, 5246] +Triangle: [5230, 5250, 5248] +Triangle: [5248, 5251, 5249] +Triangle: [5230, 5252, 5250] +Triangle: [5252, 5251, 5250] +Triangle: [5230, 5254, 5252] +Triangle: [5254, 5253, 5252] +Triangle: [5230, 5256, 5254] +Triangle: [5256, 5255, 5254] +Triangle: [5258, 5257, 5256] +Triangle: [5230, 5258, 5256] +Triangle: [5260, 5259, 5258] +Triangle: [5230, 5260, 5258] +Triangle: [5231, 5261, 5260] +Triangle: [5230, 5231, 5260] +Triangle: [5231, 5230, 5232] +Triangle: [5268, 5265, 5266] +Triangle: [5230, 5234, 5232] +Triangle: [5231, 5233, 5262] +Triangle: [5267, 5270, 5269] +Triangle: [5267, 5269, 5263] +Triangle: [5263, 5269, 5271] +Triangle: [5272, 5269, 5270] +Triangle: [5274, 5271, 5272] +Triangle: [5271, 5273, 5263] +Triangle: [5273, 5275, 5263] +Triangle: [5276, 5273, 5274] +Triangle: [5276, 5277, 5275] +Triangle: [5275, 5277, 5263] +Triangle: [5277, 5279, 5263] +Triangle: [5278, 5279, 5277] +Triangle: [5280, 5281, 5279] +Triangle: [5279, 5281, 5263] +Triangle: [5281, 5283, 5263] +Triangle: [5282, 5283, 5281] +Triangle: [5283, 5285, 5263] +Triangle: [5284, 5285, 5283] +Triangle: [5285, 5287, 5263] +Triangle: [5288, 5285, 5286] +Triangle: [5287, 5289, 5263] +Triangle: [5288, 5289, 5287] +Triangle: [5290, 5291, 5289] +Triangle: [5289, 5291, 5263] +Triangle: [5263, 5291, 5293] +Triangle: [5292, 5293, 5291] +Triangle: [5296, 5293, 5294] +Triangle: [5293, 5295, 5263] +Triangle: [5263, 5295, 5297] +Triangle: [5296, 5297, 5295] +Triangle: [5300, 5297, 5298] +Triangle: [5297, 5299, 5263] +Triangle: [5299, 5301, 5263] +Triangle: [5300, 5301, 5299] +Triangle: [5304, 5301, 5302] +Triangle: [5301, 5303, 5263] +Triangle: [5303, 5305, 5263] +Triangle: [5304, 5305, 5303] +Triangle: [5306, 5307, 5305] +Triangle: [5305, 5307, 5263] +Triangle: [5307, 5309, 5263] +Triangle: [5308, 5309, 5307] +Triangle: [5309, 5311, 5263] +Triangle: [5310, 5311, 5309] +Triangle: [5312, 5313, 5311] +Triangle: [5311, 5313, 5263] +Triangle: [5313, 5315, 5263] +Triangle: [5314, 5315, 5313] +Triangle: [5316, 5317, 5315] +Triangle: [5315, 5317, 5263] +Triangle: [5263, 5317, 5319] +Triangle: [5318, 5319, 5317] +Triangle: [5320, 5321, 5319] +Triangle: [5319, 5321, 5263] +Triangle: [5263, 5321, 5323] +Triangle: [5322, 5323, 5321] +Triangle: [5324, 5325, 5323] +Triangle: [5323, 5325, 5263] +Triangle: [5325, 5264, 5263] +Triangle: [5326, 5264, 5325] +Triangle: [5266, 5264, 5327] +Triangle: [5232, 5235, 5233] +Triangle: [5264, 5265, 5263] +Triangle: [4465, 5328, 4464] +Triangle: [4436, 5330, 4435] +Triangle: [2014, 2028, 2027] +Triangle: [3632, 5332, 5333] +Triangle: [3620, 5335, 5334] +Triangle: [3723, 5340, 3739] +Triangle: [5339, 5341, 5340] +Triangle: [3739, 5336, 3724] +Triangle: [5340, 5337, 5336] +Triangle: [3708, 5346, 3733] +Triangle: [5343, 5347, 5346] +Triangle: [3733, 5344, 3713] +Triangle: [5346, 5345, 5344] +Triangle: [5351, 4042, 4026] +Triangle: [5350, 5352, 5351] +Triangle: [5352, 4027, 4042] +Triangle: [5352, 5349, 5348] +Triangle: [3634, 5354, 3633] +Triangle: [5357, 4196, 4181] +Triangle: [5358, 4182, 4196] +Triangle: [5359, 4188, 4165] +Triangle: [5361, 4168, 4188] +Triangle: [3658, 5364, 3681] +Triangle: [5364, 3661, 3681] +Triangle: [5366, 4093, 4077] +Triangle: [4093, 5365, 4078] +Triangle: [4088, 5369, 4068] +Triangle: [4061, 5370, 4088] +Triangle: [5373, 3663, 3683] +Triangle: [3656, 5373, 3683] +Triangle: [4191, 5375, 4171] +Triangle: [5374, 4191, 4174] +Triangle: [4205, 5378, 4206] +Triangle: [5378, 4204, 4206] +Triangle: [3700, 5381, 3702] +Triangle: [3702, 5380, 3701] +Triangle: [3725, 5385, 3740] +Triangle: [3740, 5383, 3726] +Triangle: [4011, 5388, 4036] +Triangle: [4036, 5387, 4016] +Triangle: [5389, 4189, 4164] +Triangle: [5391, 4169, 4189] +Triangle: [5393, 4043, 4028] +Triangle: [4043, 5392, 4029] +Triangle: [3709, 5397, 3732] +Triangle: [5397, 3712, 3732] +Triangle: [3602, 5398, 3350] +Triangle: [5398, 3601, 3343] +Triangle: [5398, 3349, 3350] +Triangle: [3342, 5398, 3343] +Triangle: [3603, 3357, 3611] +Triangle: [3352, 3603, 3604] +Triangle: [3351, 5399, 3352] +Triangle: [3357, 3400, 3359] +Triangle: [1235, 35, 33] +Triangle: [1237, 1244, 706] +Triangle: [1238, 1237, 705] +Triangle: [702, 26, 27] +Triangle: [1240, 36, 35] +Triangle: [703, 29, 26] +Triangle: [1240, 1238, 704] +Triangle: [1244, 1245, 707] +Triangle: [1236, 33, 32] +Triangle: [701, 27, 38] +Triangle: [1243, 1242, 32] +Triangle: [1241, 1243, 31] +Triangle: [1222, 46, 48] +Triangle: [1229, 1223, 41] +Triangle: [1223, 1224, 47] +Triangle: [1230, 1278, 40] +Triangle: [1231, 1228, 48] +Triangle: [1230, 39, 42] +Triangle: [1224, 1231, 49] +Triangle: [1232, 42, 43] +Triangle: [1234, 1229, 50] +Triangle: [1279, 45, 46] +Triangle: [1278, 1234, 51] +Triangle: [1281, 44, 45] +Triangle: [1233, 43, 44] +Triangle: [18, 17, 61] +Triangle: [18, 64, 63] +Triangle: [25, 62, 57] +Triangle: [19, 63, 52] +Triangle: [25, 24, 55] +Triangle: [16, 60, 61] +Triangle: [23, 59, 56] +Triangle: [16, 13, 58] +Triangle: [22, 53, 59] +Triangle: [14, 57, 58] +Triangle: [15, 21, 56] +Triangle: [24, 15, 54] +Triangle: [22, 20, 52] +Triangle: [10, 8, 1210] +Triangle: [1220, 12, 1] +Triangle: [7, 9, 1212] +Triangle: [1, 0, 1218] +Triangle: [9, 10, 1211] +Triangle: [1218, 0, 3] +Triangle: [1209, 2, 11] +Triangle: [5, 6, 1214] +Triangle: [1221, 11, 12] +Triangle: [4, 5, 1215] +Triangle: [3, 4, 1216] +Triangle: [6, 7, 1213] +Triangle: [1253, 76, 70] +Triangle: [1259, 1287, 70] +Triangle: [1254, 77, 1275] +Triangle: [1255, 1276, 1277] +Triangle: [1249, 72, 77] +Triangle: [1252, 75, 76] +Triangle: [1257, 1251, 74] +Triangle: [1250, 73, 75] +Triangle: [1251, 1248, 71] +Triangle: [1258, 68, 73] +Triangle: [1256, 1257, 67] +Triangle: [1249, 1256, 66] +Triangle: [1255, 65, 71] +Triangle: [82, 81, 712] +Triangle: [712, 81, 80] +Triangle: [80, 78, 711] +Triangle: [715, 33, 35] +Triangle: [82, 85, 86] +Triangle: [88, 92, 94] +Triangle: [130, 137, 162] +Triangle: [83, 91, 92] +Triangle: [106, 105, 104] +Triangle: [160, 173, 92] +Triangle: [86, 94, 95] +Triangle: [80, 81, 95] +Triangle: [78, 80, 96] +Triangle: [79, 78, 97] +Triangle: [99, 82, 713] +Triangle: [82, 99, 100] +Triangle: [95, 171, 170] +Triangle: [94, 172, 171] +Triangle: [85, 100, 104] +Triangle: [107, 99, 716] +Triangle: [99, 107, 106] +Triangle: [173, 172, 94] +Triangle: [83, 88, 109] +Triangle: [109, 88, 87] +Triangle: [103, 84, 109] +Triangle: [111, 109, 110] +Triangle: [112, 110, 87] +Triangle: [108, 110, 112] +Triangle: [115, 112, 104] +Triangle: [112, 115, 114] +Triangle: [98, 97, 116] +Triangle: [139, 118, 119] +Triangle: [118, 120, 121] +Triangle: [174, 122, 123] +Triangle: [174, 120, 124] +Triangle: [89, 126, 177] +Triangle: [177, 126, 128] +Triangle: [126, 162, 137] +Triangle: [124, 165, 166] +Triangle: [124, 120, 163] +Triangle: [164, 163, 120] +Triangle: [116, 139, 140] +Triangle: [139, 167, 164] +Triangle: [116, 168, 167] +Triangle: [169, 168, 116] +Triangle: [169, 97, 96] +Triangle: [86, 85, 87] +Triangle: [131, 130, 161] +Triangle: [132, 131, 159] +Triangle: [160, 91, 132] +Triangle: [89, 166, 162] +Triangle: [176, 124, 89] +Triangle: [101, 156, 155] +Triangle: [152, 149, 144] +Triangle: [134, 138, 151] +Triangle: [135, 133, 151] +Triangle: [157, 154, 153] +Triangle: [152, 145, 146] +Triangle: [150, 149, 152] +Triangle: [151, 150, 153] +Triangle: [141, 143, 149] +Triangle: [149, 143, 142] +Triangle: [136, 148, 157] +Triangle: [93, 157, 156] +Triangle: [138, 141, 150] +Triangle: [148, 135, 154] +Triangle: [153, 152, 155] +Triangle: [155, 146, 147] +Triangle: [102, 158, 159] +Triangle: [147, 160, 158] +Triangle: [136, 93, 161] +Triangle: [93, 101, 159] +Triangle: [134, 133, 163] +Triangle: [133, 135, 165] +Triangle: [136, 162, 166] +Triangle: [134, 164, 167] +Triangle: [138, 167, 168] +Triangle: [142, 143, 169] +Triangle: [143, 141, 168] +Triangle: [142, 170, 171] +Triangle: [145, 144, 171] +Triangle: [146, 145, 172] +Triangle: [147, 146, 173] +Triangle: [148, 166, 165] +Triangle: [125, 176, 179] +Triangle: [127, 177, 178] +Triangle: [90, 179, 177] +Triangle: [122, 174, 176] +Triangle: [120, 174, 175] +Triangle: [107, 181, 180] +Triangle: [180, 181, 183] +Triangle: [183, 184, 186] +Triangle: [181, 107, 717] +Triangle: [183, 181, 718] +Triangle: [720, 184, 183] +Triangle: [192, 184, 720] +Triangle: [722, 191, 192] +Triangle: [723, 190, 191] +Triangle: [715, 79, 190] +Triangle: [184, 187, 193] +Triangle: [198, 186, 193] +Triangle: [192, 188, 187] +Triangle: [191, 195, 188] +Triangle: [195, 191, 190] +Triangle: [79, 98, 189] +Triangle: [204, 197, 196] +Triangle: [201, 182, 186] +Triangle: [202, 204, 201] +Triangle: [182, 201, 200] +Triangle: [202, 198, 199] +Triangle: [180, 200, 105] +Triangle: [115, 105, 200] +Triangle: [210, 209, 207] +Triangle: [185, 202, 203] +Triangle: [197, 204, 202] +Triangle: [201, 204, 205] +Triangle: [114, 115, 208] +Triangle: [696, 205, 196] +Triangle: [696, 208, 200] +Triangle: [189, 211, 217] +Triangle: [218, 217, 211] +Triangle: [219, 218, 212] +Triangle: [220, 219, 213] +Triangle: [221, 220, 214] +Triangle: [222, 221, 215] +Triangle: [117, 211, 189] +Triangle: [140, 212, 211] +Triangle: [119, 213, 212] +Triangle: [214, 213, 119] +Triangle: [215, 214, 121] +Triangle: [216, 215, 175] +Triangle: [223, 187, 188] +Triangle: [187, 223, 227] +Triangle: [193, 227, 226] +Triangle: [203, 199, 226] +Triangle: [228, 223, 195] +Triangle: [223, 228, 229] +Triangle: [226, 227, 229] +Triangle: [250, 251, 249] +Triangle: [229, 228, 233] +Triangle: [234, 232, 230] +Triangle: [233, 228, 217] +Triangle: [233, 235, 236] +Triangle: [235, 237, 238] +Triangle: [238, 237, 239] +Triangle: [240, 239, 241] +Triangle: [231, 232, 244] +Triangle: [243, 244, 246] +Triangle: [242, 261, 262] +Triangle: [234, 236, 244] +Triangle: [238, 246, 244] +Triangle: [247, 263, 264] +Triangle: [235, 233, 218] +Triangle: [237, 235, 219] +Triangle: [221, 239, 237] +Triangle: [222, 241, 239] +Triangle: [194, 203, 224] +Triangle: [226, 230, 250] +Triangle: [225, 251, 250] +Triangle: [225, 230, 232] +Triangle: [129, 257, 256] +Triangle: [122, 265, 267] +Triangle: [90, 252, 255] +Triangle: [216, 266, 268] +Triangle: [241, 260, 261] +Triangle: [125, 255, 265] +Triangle: [90, 127, 256] +Triangle: [264, 246, 238] +Triangle: [264, 263, 245] +Triangle: [123, 267, 266] +Triangle: [242, 248, 247] +Triangle: [259, 268, 266] +Triangle: [265, 253, 254] +Triangle: [267, 254, 258] +Triangle: [241, 222, 268] +Triangle: [8, 2, 1209] +Triangle: [111, 270, 269] +Triangle: [302, 301, 272] +Triangle: [277, 273, 274] +Triangle: [270, 276, 275] +Triangle: [276, 277, 278] +Triangle: [277, 276, 280] +Triangle: [273, 277, 281] +Triangle: [281, 280, 283] +Triangle: [279, 281, 284] +Triangle: [284, 283, 286] +Triangle: [282, 284, 287] +Triangle: [287, 286, 289] +Triangle: [287, 290, 288] +Triangle: [289, 292, 293] +Triangle: [290, 293, 291] +Triangle: [294, 280, 276] +Triangle: [280, 294, 295] +Triangle: [283, 295, 694] +Triangle: [286, 694, 296] +Triangle: [292, 289, 296] +Triangle: [108, 294, 270] +Triangle: [295, 294, 108] +Triangle: [694, 295, 113] +Triangle: [296, 694, 114] +Triangle: [297, 296, 207] +Triangle: [273, 301, 302] +Triangle: [303, 301, 273] +Triangle: [303, 279, 305] +Triangle: [301, 303, 304] +Triangle: [305, 279, 282] +Triangle: [285, 309, 306] +Triangle: [300, 308, 309] +Triangle: [307, 306, 309] +Triangle: [300, 285, 288] +Triangle: [299, 288, 291] +Triangle: [323, 314, 317] +Triangle: [310, 307, 328] +Triangle: [326, 310, 329] +Triangle: [312, 330, 325] +Triangle: [325, 330, 316] +Triangle: [330, 323, 315] +Triangle: [313, 323, 330] +Triangle: [323, 313, 318] +Triangle: [317, 314, 321] +Triangle: [314, 318, 320] +Triangle: [320, 318, 313] +Triangle: [319, 313, 312] +Triangle: [329, 328, 311] +Triangle: [316, 315, 331] +Triangle: [331, 315, 317] +Triangle: [333, 324, 317] +Triangle: [340, 332, 331] +Triangle: [340, 324, 333] +Triangle: [322, 342, 339] +Triangle: [342, 343, 345] +Triangle: [342, 341, 338] +Triangle: [337, 340, 339] +Triangle: [336, 332, 340] +Triangle: [346, 345, 343] +Triangle: [321, 343, 342] +Triangle: [320, 344, 343] +Triangle: [308, 311, 328] +Triangle: [319, 311, 308] +Triangle: [319, 347, 344] +Triangle: [347, 308, 300] +Triangle: [344, 347, 348] +Triangle: [350, 349, 345] +Triangle: [634, 586, 631] +Triangle: [356, 355, 681] +Triangle: [352, 350, 346] +Triangle: [352, 348, 300] +Triangle: [680, 682, 352] +Triangle: [358, 357, 353] +Triangle: [350, 352, 682] +Triangle: [587, 586, 634] +Triangle: [683, 354, 353] +Triangle: [341, 359, 362] +Triangle: [685, 362, 359] +Triangle: [361, 364, 363] +Triangle: [341, 345, 349] +Triangle: [684, 359, 349] +Triangle: [351, 361, 360] +Triangle: [366, 337, 338] +Triangle: [367, 365, 338] +Triangle: [686, 367, 362] +Triangle: [369, 368, 363] +Triangle: [327, 316, 332] +Triangle: [326, 316, 327] +Triangle: [335, 310, 326] +Triangle: [310, 335, 371] +Triangle: [371, 370, 306] +Triangle: [376, 378, 379] +Triangle: [271, 380, 379] +Triangle: [375, 377, 379] +Triangle: [272, 381, 380] +Triangle: [374, 375, 380] +Triangle: [382, 381, 272] +Triangle: [383, 382, 304] +Triangle: [305, 306, 370] +Triangle: [406, 399, 393] +Triangle: [394, 399, 406] +Triangle: [395, 394, 402] +Triangle: [404, 397, 395] +Triangle: [404, 398, 389] +Triangle: [397, 404, 405] +Triangle: [398, 404, 403] +Triangle: [403, 402, 390] +Triangle: [390, 402, 406] +Triangle: [400, 406, 401] +Triangle: [396, 405, 415] +Triangle: [413, 388, 415] +Triangle: [414, 413, 412] +Triangle: [398, 411, 412] +Triangle: [411, 398, 392] +Triangle: [409, 410, 392] +Triangle: [409, 390, 400] +Triangle: [400, 391, 407] +Triangle: [411, 410, 416] +Triangle: [417, 416, 410] +Triangle: [408, 418, 417] +Triangle: [419, 418, 408] +Triangle: [418, 419, 422] +Triangle: [421, 426, 417] +Triangle: [426, 428, 416] +Triangle: [428, 426, 430] +Triangle: [429, 427, 385] +Triangle: [373, 374, 381] +Triangle: [372, 373, 382] +Triangle: [424, 441, 429] +Triangle: [447, 385, 423] +Triangle: [425, 384, 374] +Triangle: [420, 421, 422] +Triangle: [413, 429, 441] +Triangle: [428, 427, 414] +Triangle: [427, 429, 413] +Triangle: [426, 421, 420] +Triangle: [387, 431, 432] +Triangle: [420, 432, 386] +Triangle: [432, 431, 433] +Triangle: [433, 435, 436] +Triangle: [435, 437, 438] +Triangle: [376, 377, 438] +Triangle: [385, 427, 428] +Triangle: [439, 430, 386] +Triangle: [386, 432, 434] +Triangle: [385, 439, 440] +Triangle: [423, 440, 443] +Triangle: [445, 444, 384] +Triangle: [444, 423, 442] +Triangle: [443, 440, 434] +Triangle: [446, 443, 436] +Triangle: [446, 438, 377] +Triangle: [446, 375, 442] +Triangle: [374, 384, 442] +Triangle: [444, 445, 424] +Triangle: [399, 462, 461] +Triangle: [461, 462, 463] +Triangle: [394, 465, 462] +Triangle: [463, 462, 465] +Triangle: [463, 464, 466] +Triangle: [448, 466, 464] +Triangle: [474, 475, 448] +Triangle: [475, 474, 468] +Triangle: [465, 478, 476] +Triangle: [477, 476, 478] +Triangle: [476, 473, 467] +Triangle: [485, 459, 468] +Triangle: [469, 484, 449] +Triangle: [470, 483, 484] +Triangle: [470, 471, 482] +Triangle: [471, 472, 481] +Triangle: [480, 481, 472] +Triangle: [498, 486, 484] +Triangle: [450, 487, 486] +Triangle: [484, 486, 487] +Triangle: [495, 450, 488] +Triangle: [458, 451, 489] +Triangle: [525, 458, 490] +Triangle: [456, 457, 491] +Triangle: [619, 456, 492] +Triangle: [452, 493, 494] +Triangle: [495, 496, 489] +Triangle: [486, 498, 499] +Triangle: [497, 496, 488] +Triangle: [489, 496, 497] +Triangle: [490, 489, 500] +Triangle: [526, 490, 501] +Triangle: [492, 491, 502] +Triangle: [480, 473, 476] +Triangle: [473, 472, 509] +Triangle: [471, 470, 507] +Triangle: [469, 468, 505] +Triangle: [473, 510, 504] +Triangle: [472, 471, 508] +Triangle: [470, 469, 506] +Triangle: [474, 511, 505] +Triangle: [474, 467, 504] +Triangle: [512, 509, 508] +Triangle: [512, 507, 506] +Triangle: [510, 509, 512] +Triangle: [511, 504, 512] +Triangle: [519, 498, 483] +Triangle: [498, 519, 520] +Triangle: [521, 497, 499] +Triangle: [481, 480, 513] +Triangle: [514, 517, 516] +Triangle: [515, 518, 517] +Triangle: [482, 481, 516] +Triangle: [517, 520, 519] +Triangle: [521, 520, 517] +Triangle: [500, 497, 521] +Triangle: [518, 523, 522] +Triangle: [524, 523, 518] +Triangle: [501, 500, 522] +Triangle: [491, 526, 527] +Triangle: [457, 525, 526] +Triangle: [527, 501, 523] +Triangle: [527, 524, 528] +Triangle: [503, 502, 528] +Triangle: [528, 524, 530] +Triangle: [531, 530, 524] +Triangle: [533, 531, 515] +Triangle: [513, 534, 533] +Triangle: [477, 534, 513] +Triangle: [479, 535, 534] +Triangle: [531, 533, 537] +Triangle: [530, 531, 536] +Triangle: [532, 536, 539] +Triangle: [542, 540, 539] +Triangle: [544, 542, 541] +Triangle: [546, 544, 543] +Triangle: [547, 548, 546] +Triangle: [549, 550, 548] +Triangle: [552, 550, 549] +Triangle: [552, 551, 553] +Triangle: [554, 553, 555] +Triangle: [560, 559, 557] +Triangle: [556, 555, 559] +Triangle: [558, 557, 561] +Triangle: [562, 561, 563] +Triangle: [564, 563, 565] +Triangle: [492, 503, 621] +Triangle: [493, 567, 568] +Triangle: [621, 622, 565] +Triangle: [563, 568, 567] +Triangle: [529, 538, 623] +Triangle: [528, 532, 538] +Triangle: [538, 532, 540] +Triangle: [538, 569, 624] +Triangle: [566, 582, 581] +Triangle: [564, 581, 580] +Triangle: [562, 580, 579] +Triangle: [558, 579, 578] +Triangle: [578, 577, 556] +Triangle: [556, 577, 576] +Triangle: [554, 576, 575] +Triangle: [575, 574, 550] +Triangle: [574, 573, 548] +Triangle: [548, 573, 572] +Triangle: [546, 572, 571] +Triangle: [571, 570, 542] +Triangle: [570, 569, 540] +Triangle: [534, 535, 537] +Triangle: [583, 539, 536] +Triangle: [541, 539, 583] +Triangle: [541, 585, 584] +Triangle: [543, 584, 586] +Triangle: [545, 586, 587] +Triangle: [549, 547, 587] +Triangle: [551, 549, 588] +Triangle: [551, 589, 590] +Triangle: [605, 598, 597] +Triangle: [607, 599, 598] +Triangle: [608, 592, 591] +Triangle: [610, 600, 599] +Triangle: [608, 611, 593] +Triangle: [612, 601, 600] +Triangle: [611, 613, 594] +Triangle: [612, 614, 602] +Triangle: [613, 615, 595] +Triangle: [614, 616, 603] +Triangle: [615, 617, 596] +Triangle: [618, 604, 603] +Triangle: [617, 606, 597] +Triangle: [609, 591, 625] +Triangle: [569, 609, 626] +Triangle: [574, 575, 606] +Triangle: [582, 618, 616] +Triangle: [573, 574, 617] +Triangle: [580, 581, 616] +Triangle: [572, 573, 615] +Triangle: [579, 580, 614] +Triangle: [571, 572, 613] +Triangle: [579, 612, 610] +Triangle: [570, 571, 611] +Triangle: [578, 610, 607] +Triangle: [570, 608, 609] +Triangle: [577, 607, 605] +Triangle: [576, 605, 606] +Triangle: [582, 624, 626] +Triangle: [618, 626, 625] +Triangle: [623, 624, 582] +Triangle: [622, 623, 566] +Triangle: [529, 622, 621] +Triangle: [620, 621, 567] +Triangle: [452, 619, 620] +Triangle: [478, 465, 394] +Triangle: [583, 537, 535] +Triangle: [479, 627, 628] +Triangle: [478, 395, 627] +Triangle: [627, 629, 631] +Triangle: [632, 631, 629] +Triangle: [397, 629, 627] +Triangle: [396, 630, 629] +Triangle: [633, 586, 584] +Triangle: [631, 586, 633] +Triangle: [588, 587, 635] +Triangle: [388, 638, 630] +Triangle: [441, 637, 638] +Triangle: [424, 445, 637] +Triangle: [630, 638, 640] +Triangle: [637, 639, 640] +Triangle: [639, 637, 445] +Triangle: [634, 632, 640] +Triangle: [640, 639, 642] +Triangle: [639, 425, 641] +Triangle: [641, 425, 373] +Triangle: [644, 372, 383] +Triangle: [641, 372, 644] +Triangle: [371, 645, 644] +Triangle: [335, 646, 645] +Triangle: [334, 647, 646] +Triangle: [642, 641, 645] +Triangle: [642, 646, 647] +Triangle: [635, 634, 643] +Triangle: [636, 635, 647] +Triangle: [648, 647, 334] +Triangle: [650, 648, 327] +Triangle: [648, 650, 649] +Triangle: [589, 588, 636] +Triangle: [652, 650, 336] +Triangle: [650, 652, 651] +Triangle: [590, 589, 649] +Triangle: [654, 652, 337] +Triangle: [653, 651, 652] +Triangle: [655, 590, 651] +Triangle: [553, 590, 655] +Triangle: [453, 494, 659] +Triangle: [568, 658, 659] +Triangle: [658, 568, 563] +Triangle: [561, 557, 657] +Triangle: [657, 557, 559] +Triangle: [555, 655, 656] +Triangle: [663, 656, 655] +Triangle: [656, 663, 662] +Triangle: [657, 662, 661] +Triangle: [661, 660, 659] +Triangle: [455, 659, 660] +Triangle: [454, 660, 665] +Triangle: [669, 654, 366] +Triangle: [654, 669, 670] +Triangle: [670, 668, 663] +Triangle: [668, 667, 662] +Triangle: [662, 667, 666] +Triangle: [661, 666, 665] +Triangle: [669, 671, 674] +Triangle: [677, 678, 674] +Triangle: [673, 676, 675] +Triangle: [672, 675, 678] +Triangle: [671, 669, 365] +Triangle: [368, 686, 685] +Triangle: [355, 360, 684] +Triangle: [363, 685, 684] +Triangle: [298, 683, 680] +Triangle: [679, 682, 357] +Triangle: [353, 357, 682] +Triangle: [679, 681, 349] +Triangle: [677, 671, 367] +Triangle: [672, 677, 686] +Triangle: [369, 673, 672] +Triangle: [668, 691, 690] +Triangle: [667, 690, 689] +Triangle: [664, 665, 687] +Triangle: [687, 665, 666] +Triangle: [670, 674, 691] +Triangle: [678, 690, 691] +Triangle: [675, 689, 690] +Triangle: [689, 675, 692] +Triangle: [687, 692, 693] +Triangle: [676, 693, 692] +Triangle: [583, 628, 633] +Triangle: [358, 695, 356] +Triangle: [355, 356, 695] +Triangle: [696, 206, 210] +Triangle: [710, 703, 702] +Triangle: [697, 698, 38] +Triangle: [699, 700, 28] +Triangle: [700, 697, 37] +Triangle: [709, 702, 701] +Triangle: [708, 701, 698] +Triangle: [36, 704, 699] +Triangle: [706, 707, 698] +Triangle: [704, 705, 700] +Triangle: [705, 706, 697] +Triangle: [1247, 710, 709] +Triangle: [1246, 709, 708] +Triangle: [1239, 708, 707] +Triangle: [1241, 30, 710] +Triangle: [30, 29, 703] +Triangle: [33, 715, 723] +Triangle: [32, 723, 722] +Triangle: [31, 722, 721] +Triangle: [721, 720, 29] +Triangle: [29, 720, 719] +Triangle: [719, 718, 27] +Triangle: [718, 717, 38] +Triangle: [717, 716, 37] +Triangle: [716, 713, 28] +Triangle: [79, 715, 711] +Triangle: [714, 711, 35] +Triangle: [712, 714, 36] +Triangle: [713, 712, 34] +Triangle: [733, 732, 262] +Triangle: [734, 733, 261] +Triangle: [260, 259, 731] +Triangle: [259, 258, 730] +Triangle: [258, 254, 729] +Triangle: [729, 254, 253] +Triangle: [728, 253, 255] +Triangle: [727, 255, 252] +Triangle: [726, 252, 256] +Triangle: [725, 256, 257] +Triangle: [732, 733, 5216] +Triangle: [743, 741, 5196] +Triangle: [5218, 734, 731] +Triangle: [5219, 731, 730] +Triangle: [730, 729, 5214] +Triangle: [729, 728, 5213] +Triangle: [728, 727, 5212] +Triangle: [727, 726, 5211] +Triangle: [5211, 726, 725] +Triangle: [5210, 725, 724] +Triangle: [1195, 1199, 747] +Triangle: [1197, 1203, 760] +Triangle: [1133, 771, 770] +Triangle: [785, 784, 779] +Triangle: [791, 772, 773] +Triangle: [784, 783, 780] +Triangle: [1096, 1099, 751] +Triangle: [1204, 763, 762] +Triangle: [1201, 799, 800] +Triangle: [1102, 748, 804] +Triangle: [796, 787, 776] +Triangle: [1194, 1205, 766] +Triangle: [1202, 800, 746] +Triangle: [1093, 1096, 750] +Triangle: [1006, 1126, 1008] +Triangle: [891, 887, 786] +Triangle: [786, 785, 778] +Triangle: [805, 836, 837] +Triangle: [893, 890, 783] +Triangle: [888, 790, 788] +Triangle: [887, 892, 785] +Triangle: [1147, 1139, 767] +Triangle: [894, 793, 792] +Triangle: [795, 796, 767] +Triangle: [783, 782, 781] +Triangle: [896, 788, 789] +Triangle: [897, 794, 793] +Triangle: [895, 789, 782] +Triangle: [885, 795, 794] +Triangle: [788, 790, 773] +Triangle: [885, 889, 796] +Triangle: [793, 770, 771] +Triangle: [898, 791, 790] +Triangle: [782, 789, 774] +Triangle: [892, 893, 784] +Triangle: [795, 768, 769] +Triangle: [789, 788, 775] +Triangle: [787, 786, 777] +Triangle: [886, 782, 783] +Triangle: [794, 769, 770] +Triangle: [889, 891, 787] +Triangle: [1090, 1098, 802] +Triangle: [1097, 757, 758] +Triangle: [1094, 754, 755] +Triangle: [1104, 756, 757] +Triangle: [1095, 755, 756] +Triangle: [1205, 1198, 798] +Triangle: [1200, 762, 761] +Triangle: [1207, 764, 763] +Triangle: [1100, 804, 803] +Triangle: [1091, 749, 748] +Triangle: [1098, 1092, 803] +Triangle: [1103, 1093, 752] +Triangle: [1196, 746, 747] +Triangle: [805, 807, 808] +Triangle: [806, 810, 809] +Triangle: [868, 858, 810] +Triangle: [869, 868, 813] +Triangle: [806, 811, 813] +Triangle: [812, 811, 806] +Triangle: [867, 869, 816] +Triangle: [814, 816, 813] +Triangle: [812, 815, 814] +Triangle: [817, 816, 814] +Triangle: [862, 855, 822] +Triangle: [861, 820, 822] +Triangle: [864, 881, 871] +Triangle: [819, 832, 833] +Triangle: [820, 861, 866] +Triangle: [820, 833, 835] +Triangle: [824, 808, 807] +Triangle: [823, 825, 826] +Triangle: [826, 885, 897] +Triangle: [828, 897, 894] +Triangle: [824, 826, 828] +Triangle: [808, 824, 827] +Triangle: [899, 831, 830] +Triangle: [827, 828, 830] +Triangle: [812, 827, 829] +Triangle: [829, 830, 817] +Triangle: [835, 896, 895] +Triangle: [833, 888, 896] +Triangle: [807, 837, 847] +Triangle: [888, 833, 832] +Triangle: [838, 836, 805] +Triangle: [823, 847, 848] +Triangle: [838, 857, 865] +Triangle: [863, 843, 841] +Triangle: [838, 841, 839] +Triangle: [837, 836, 839] +Triangle: [839, 841, 842] +Triangle: [863, 860, 844] +Triangle: [821, 822, 835] +Triangle: [843, 844, 852] +Triangle: [856, 862, 821] +Triangle: [859, 856, 846] +Triangle: [853, 852, 844] +Triangle: [844, 860, 859] +Triangle: [846, 854, 853] +Triangle: [857, 838, 809] +Triangle: [891, 889, 825] +Triangle: [887, 891, 848] +Triangle: [892, 887, 850] +Triangle: [849, 850, 848] +Triangle: [837, 840, 849] +Triangle: [842, 850, 849] +Triangle: [893, 892, 851] +Triangle: [886, 854, 834] +Triangle: [890, 853, 854] +Triangle: [864, 809, 810] +Triangle: [890, 893, 852] +Triangle: [1198, 1197, 797] +Triangle: [1203, 1195, 759] +Triangle: [862, 856, 870] +Triangle: [1101, 758, 749] +Triangle: [866, 861, 873] +Triangle: [859, 860, 872] +Triangle: [857, 871, 882] +Triangle: [860, 863, 880] +Triangle: [868, 869, 875] +Triangle: [858, 868, 884] +Triangle: [869, 867, 874] +Triangle: [858, 877, 881] +Triangle: [856, 859, 878] +Triangle: [855, 876, 873] +Triangle: [865, 882, 880] +Triangle: [855, 862, 879] +Triangle: [909, 1038, 1018] +Triangle: [1049, 1050, 1138] +Triangle: [1139, 1051, 1042] +Triangle: [1145, 1053, 1054] +Triangle: [1045, 1052, 1140] +Triangle: [1141, 1054, 1044] +Triangle: [1144, 1137, 1048] +Triangle: [1146, 1055, 1053] +Triangle: [1042, 1043, 1134] +Triangle: [1043, 1046, 1136] +Triangle: [1050, 1055, 1146] +Triangle: [1143, 1044, 1045] +Triangle: [1042, 1119, 1108] +Triangle: [1044, 1113, 1112] +Triangle: [1046, 1043, 1108] +Triangle: [818, 831, 832] +Triangle: [1050, 1049, 1118] +Triangle: [881, 1101, 1091] +Triangle: [1051, 1110, 1119] +Triangle: [1045, 1112, 1107] +Triangle: [1053, 1115, 1114] +Triangle: [1044, 1054, 1114] +Triangle: [1048, 1153, 1155] +Triangle: [1055, 1116, 1115] +Triangle: [1047, 1046, 1109] +Triangle: [1055, 1050, 1117] +Triangle: [747, 916, 917] +Triangle: [916, 747, 746] +Triangle: [759, 917, 920] +Triangle: [760, 759, 918] +Triangle: [920, 921, 919] +Triangle: [1047, 1048, 1137] +Triangle: [971, 924, 1065] +Triangle: [981, 925, 930] +Triangle: [1001, 1012, 1021] +Triangle: [1067, 1068, 932] +Triangle: [1068, 1069, 934] +Triangle: [1070, 1071, 936] +Triangle: [1148, 938, 989] +Triangle: [1073, 1074, 940] +Triangle: [952, 970, 1059] +Triangle: [994, 948, 950] +Triangle: [1075, 1076, 944] +Triangle: [1076, 1077, 946] +Triangle: [1077, 1078, 948] +Triangle: [948, 1078, 1079] +Triangle: [1058, 1080, 1081] +Triangle: [1082, 1083, 954] +Triangle: [952, 1081, 1084] +Triangle: [1083, 1085, 958] +Triangle: [1085, 1086, 960] +Triangle: [960, 1086, 1087] +Triangle: [962, 1087, 1088] +Triangle: [979, 964, 966] +Triangle: [966, 1089, 1065] +Triangle: [977, 978, 980] +Triangle: [925, 971, 1064] +Triangle: [1208, 754, 753] +Triangle: [974, 970, 952] +Triangle: [1075, 942, 940] +Triangle: [946, 948, 994] +Triangle: [944, 946, 993] +Triangle: [992, 991, 942] +Triangle: [991, 990, 940] +Triangle: [938, 940, 1151] +Triangle: [940, 990, 1151] +Triangle: [1041, 974, 957] +Triangle: [1031, 987, 934] +Triangle: [987, 986, 932] +Triangle: [932, 986, 985] +Triangle: [1001, 984, 983] +Triangle: [964, 1088, 1089] +Triangle: [925, 981, 982] +Triangle: [982, 996, 924] +Triangle: [924, 996, 983] +Triangle: [984, 929, 979] +Triangle: [978, 979, 929] +Triangle: [964, 979, 978] +Triangle: [962, 978, 977] +Triangle: [960, 977, 976] +Triangle: [976, 975, 954] +Triangle: [902, 901, 997] +Triangle: [969, 999, 1000] +Triangle: [1012, 1001, 1002] +Triangle: [982, 1002, 1001] +Triangle: [1032, 1033, 1004] +Triangle: [1126, 1006, 915] +Triangle: [754, 1094, 1103] +Triangle: [1103, 1094, 874] +Triangle: [883, 874, 867] +Triangle: [1208, 1011, 764] +Triangle: [866, 867, 818] +Triangle: [898, 832, 831] +Triangle: [1099, 1090, 801] +Triangle: [834, 854, 846] +Triangle: [889, 885, 826] +Triangle: [1000, 999, 1012] +Triangle: [903, 902, 998] +Triangle: [1005, 1016, 1034] +Triangle: [968, 1000, 1015] +Triangle: [1000, 1013, 1014] +Triangle: [1012, 999, 1020] +Triangle: [969, 1004, 1019] +Triangle: [1033, 1127, 1111] +Triangle: [900, 1018, 997] +Triangle: [1003, 1014, 1013] +Triangle: [1014, 1003, 1022] +Triangle: [1015, 1022, 1027] +Triangle: [1016, 1023, 1036] +Triangle: [981, 1003, 1002] +Triangle: [1066, 1067, 930] +Triangle: [929, 984, 1021] +Triangle: [1025, 1027, 1023] +Triangle: [999, 969, 1026] +Triangle: [968, 1025, 1016] +Triangle: [1005, 1004, 969] +Triangle: [1020, 1026, 980] +Triangle: [1026, 1019, 928] +Triangle: [985, 1022, 1003] +Triangle: [1027, 1022, 985] +Triangle: [1023, 1027, 986] +Triangle: [1036, 1023, 987] +Triangle: [1024, 1131, 1128] +Triangle: [1129, 1131, 1024] +Triangle: [1004, 1033, 1035] +Triangle: [1130, 1129, 1017] +Triangle: [998, 997, 1127] +Triangle: [988, 1128, 1132] +Triangle: [1069, 1070, 1029] +Triangle: [1028, 928, 1019] +Triangle: [976, 977, 928] +Triangle: [1037, 1028, 1035] +Triangle: [975, 976, 1028] +Triangle: [1056, 1106, 1110] +Triangle: [975, 1041, 1040] +Triangle: [1084, 1082, 1040] +Triangle: [1041, 975, 1037] +Triangle: [1038, 909, 974] +Triangle: [1052, 1107, 1106] +Triangle: [907, 908, 991] +Triangle: [906, 990, 991] +Triangle: [904, 903, 1017] +Triangle: [1072, 1073, 938] +Triangle: [1152, 1151, 990] +Triangle: [791, 898, 899] +Triangle: [904, 1062, 1063] +Triangle: [909, 910, 970] +Triangle: [907, 992, 993] +Triangle: [914, 993, 994] +Triangle: [950, 1079, 1080] +Triangle: [1058, 1059, 995] +Triangle: [911, 1059, 970] +Triangle: [912, 995, 1059] +Triangle: [913, 994, 995] +Triangle: [1071, 1072, 1148] +Triangle: [936, 1148, 1061] +Triangle: [949, 947, 945] +Triangle: [926, 972, 1064] +Triangle: [931, 1067, 1066] +Triangle: [933, 1068, 1067] +Triangle: [935, 1069, 1068] +Triangle: [937, 1071, 1070] +Triangle: [939, 1073, 1072] +Triangle: [941, 1074, 1073] +Triangle: [943, 1075, 1074] +Triangle: [945, 1076, 1075] +Triangle: [945, 947, 1077] +Triangle: [947, 949, 1078] +Triangle: [951, 1079, 1078] +Triangle: [953, 1081, 1080] +Triangle: [1039, 955, 1083] +Triangle: [956, 1084, 1081] +Triangle: [955, 959, 1085] +Triangle: [959, 961, 1086] +Triangle: [961, 963, 1087] +Triangle: [963, 965, 1088] +Triangle: [926, 1065, 1089] +Triangle: [967, 1089, 1088] +Triangle: [927, 1066, 1064] +Triangle: [1030, 1070, 1069] +Triangle: [956, 1039, 1082] +Triangle: [1057, 1080, 1079] +Triangle: [1060, 1072, 1071] +Triangle: [941, 951, 949] +Triangle: [939, 1057, 951] +Triangle: [1060, 953, 1057] +Triangle: [1060, 937, 956] +Triangle: [1039, 956, 937] +Triangle: [1030, 935, 955] +Triangle: [959, 955, 935] +Triangle: [961, 959, 933] +Triangle: [963, 961, 931] +Triangle: [965, 963, 927] +Triangle: [972, 926, 967] +Triangle: [879, 870, 1090] +Triangle: [900, 1110, 1106] +Triangle: [883, 873, 1093] +Triangle: [878, 872, 1092] +Triangle: [871, 1091, 1102] +Triangle: [880, 1100, 1092] +Triangle: [884, 875, 1095] +Triangle: [884, 1104, 1097] +Triangle: [875, 874, 1094] +Triangle: [877, 1097, 1101] +Triangle: [870, 878, 1098] +Triangle: [1133, 1137, 772] +Triangle: [876, 1096, 1093] +Triangle: [882, 1102, 1100] +Triangle: [876, 879, 1099] +Triangle: [1052, 1056, 1147] +Triangle: [1118, 1150, 1152] +Triangle: [1118, 906, 908] +Triangle: [1117, 908, 907] +Triangle: [907, 914, 1115] +Triangle: [914, 913, 1114] +Triangle: [913, 912, 1113] +Triangle: [912, 911, 1112] +Triangle: [1112, 911, 910] +Triangle: [1107, 910, 909] +Triangle: [1018, 1038, 1037] +Triangle: [1110, 900, 901] +Triangle: [1119, 901, 902] +Triangle: [1109, 1108, 902] +Triangle: [1121, 1109, 903] +Triangle: [1062, 905, 1120] +Triangle: [1007, 1008, 1123] +Triangle: [1122, 1125, 1124] +Triangle: [988, 1061, 1149] +Triangle: [1062, 904, 1024] +Triangle: [1206, 761, 799] +Triangle: [1129, 1130, 1032] +Triangle: [1130, 1127, 1033] +Triangle: [1128, 1131, 1036] +Triangle: [1111, 1127, 997] +Triangle: [1132, 1128, 1031] +Triangle: [1131, 1129, 1034] +Triangle: [1140, 1147, 776] +Triangle: [1154, 1153, 1048] +Triangle: [1143, 1135, 778] +Triangle: [1138, 1146, 774] +Triangle: [769, 1134, 1136] +Triangle: [768, 1142, 1134] +Triangle: [1146, 1145, 781] +Triangle: [772, 1137, 1144] +Triangle: [1141, 1143, 779] +Triangle: [1135, 1140, 777] +Triangle: [781, 1145, 1141] +Triangle: [767, 1139, 1142] +Triangle: [1144, 1138, 775] +Triangle: [1051, 1139, 1147] +Triangle: [1046, 1047, 1133] +Triangle: [772, 791, 792] +Triangle: [1118, 1049, 1155] +Triangle: [1150, 1120, 905] +Triangle: [1153, 1154, 1063] +Triangle: [1155, 1153, 1120] +Triangle: [1152, 905, 989] +Triangle: [1121, 1063, 1154] +Triangle: [1149, 989, 905] +Triangle: [1166, 1167, 1164] +Triangle: [1009, 1167, 1166] +Triangle: [1191, 1168, 1163] +Triangle: [1169, 1162, 1163] +Triangle: [921, 1170, 1171] +Triangle: [1170, 922, 1166] +Triangle: [1165, 1172, 1171] +Triangle: [919, 1171, 1172] +Triangle: [1173, 1172, 1165] +Triangle: [797, 760, 1172] +Triangle: [1174, 1173, 1164] +Triangle: [1175, 1174, 1163] +Triangle: [798, 797, 1173] +Triangle: [766, 798, 1174] +Triangle: [1176, 1175, 1162] +Triangle: [1160, 1177, 1176] +Triangle: [1159, 1178, 1177] +Triangle: [1158, 1179, 1178] +Triangle: [1179, 1158, 1157] +Triangle: [766, 1175, 1176] +Triangle: [765, 1176, 1177] +Triangle: [1011, 1177, 1178] +Triangle: [764, 1178, 1179] +Triangle: [763, 1179, 1180] +Triangle: [1182, 1180, 1157] +Triangle: [762, 1180, 1182] +Triangle: [1181, 1122, 1182] +Triangle: [1182, 1122, 1183] +Triangle: [799, 761, 1183] +Triangle: [1123, 1184, 1183] +Triangle: [1184, 1123, 1008] +Triangle: [799, 1184, 1185] +Triangle: [800, 1185, 1126] +Triangle: [1125, 1122, 1181] +Triangle: [1186, 973, 1181] +Triangle: [735, 745, 1186] +Triangle: [736, 735, 1156] +Triangle: [737, 736, 1157] +Triangle: [737, 1158, 1159] +Triangle: [739, 738, 1159] +Triangle: [740, 739, 1160] +Triangle: [740, 1161, 1187] +Triangle: [1162, 1169, 1187] +Triangle: [1188, 743, 744] +Triangle: [1189, 1188, 1187] +Triangle: [1189, 1169, 1168] +Triangle: [1191, 1164, 1167] +Triangle: [1192, 1167, 1009] +Triangle: [1192, 1190, 1168] +Triangle: [741, 743, 1188] +Triangle: [1193, 923, 742] +Triangle: [1193, 1188, 1189] +Triangle: [1190, 1105, 923] +Triangle: [1105, 1190, 1192] +Triangle: [758, 1206, 1201] +Triangle: [754, 1208, 1207] +Triangle: [1011, 1208, 1194] +Triangle: [801, 802, 1195] +Triangle: [750, 751, 1197] +Triangle: [804, 1196, 1199] +Triangle: [755, 1207, 1204] +Triangle: [757, 1200, 1206] +Triangle: [752, 750, 1198] +Triangle: [748, 1202, 1196] +Triangle: [753, 752, 1205] +Triangle: [749, 1201, 1202] +Triangle: [756, 1204, 1200] +Triangle: [751, 801, 1203] +Triangle: [802, 803, 1199] +Triangle: [1210, 1209, 50] +Triangle: [1214, 1213, 48] +Triangle: [43, 1217, 1216] +Triangle: [44, 1216, 1215] +Triangle: [51, 1221, 1220] +Triangle: [45, 1215, 1214] +Triangle: [50, 1209, 1221] +Triangle: [42, 1218, 1217] +Triangle: [1212, 1211, 47] +Triangle: [1219, 1218, 42] +Triangle: [1213, 1212, 49] +Triangle: [40, 1220, 1219] +Triangle: [1211, 1210, 41] +Triangle: [76, 1280, 1227] +Triangle: [70, 1227, 1226] +Triangle: [77, 1234, 1278] +Triangle: [65, 1277, 1279] +Triangle: [72, 1229, 1234] +Triangle: [75, 1282, 1280] +Triangle: [67, 74, 1231] +Triangle: [75, 73, 1283] +Triangle: [74, 71, 1228] +Triangle: [73, 68, 1225] +Triangle: [66, 67, 1224] +Triangle: [66, 1223, 1229] +Triangle: [65, 1222, 1228] +Triangle: [1269, 1241, 1247] +Triangle: [1264, 1239, 1245] +Triangle: [1272, 1246, 1239] +Triangle: [1273, 1247, 1246] +Triangle: [1269, 1266, 1243] +Triangle: [1266, 1265, 1242] +Triangle: [1261, 1236, 1242] +Triangle: [1270, 1271, 1245] +Triangle: [1268, 1263, 1238] +Triangle: [1268, 1240, 1235] +Triangle: [1263, 1262, 1237] +Triangle: [1262, 1270, 1244] +Triangle: [1267, 1235, 1236] +Triangle: [52, 1255, 1248] +Triangle: [55, 54, 1256] +Triangle: [54, 56, 1257] +Triangle: [57, 1274, 1284] +Triangle: [59, 53, 1248] +Triangle: [58, 1284, 1285] +Triangle: [56, 59, 1251] +Triangle: [60, 1285, 1286] +Triangle: [55, 1249, 1254] +Triangle: [63, 1276, 1255] +Triangle: [62, 1254, 1274] +Triangle: [63, 64, 1260] +Triangle: [64, 61, 1286] +Triangle: [20, 22, 1267] +Triangle: [15, 24, 1270] +Triangle: [21, 15, 1262] +Triangle: [23, 1268, 1267] +Triangle: [21, 1263, 1268] +Triangle: [24, 25, 1271] +Triangle: [20, 1261, 1265] +Triangle: [19, 1265, 1266] +Triangle: [18, 1266, 1269] +Triangle: [13, 16, 1273] +Triangle: [14, 13, 1272] +Triangle: [25, 14, 1264] +Triangle: [17, 1269, 1273] +Triangle: [1258, 1274, 1275] +Triangle: [1259, 69, 1277] +Triangle: [1225, 68, 1275] +Triangle: [1226, 1279, 1277] +Triangle: [1280, 1233, 1281] +Triangle: [1227, 1281, 1279] +Triangle: [1280, 1282, 1232] +Triangle: [1282, 1283, 1230] +Triangle: [1283, 1225, 1278] +Triangle: [1250, 1284, 1274] +Triangle: [1252, 1285, 1284] +Triangle: [1253, 1286, 1285] +Triangle: [1259, 1276, 1260] +Triangle: [1253, 1287, 1260] +Triangle: [1321, 1323, 2415] +Triangle: [2417, 1906, 1907] +Triangle: [2418, 1905, 1906] +Triangle: [1315, 1314, 1903] +Triangle: [1323, 1324, 2420] +Triangle: [1314, 1317, 1904] +Triangle: [2420, 1324, 1905] +Triangle: [2424, 1907, 1908] +Triangle: [1320, 1321, 2416] +Triangle: [1326, 1315, 1902] +Triangle: [2423, 1319, 1320] +Triangle: [2421, 1318, 1319] +Triangle: [1336, 1334, 2402] +Triangle: [2409, 1338, 1329] +Triangle: [2403, 1329, 1335] +Triangle: [2410, 1327, 1328] +Triangle: [2411, 1337, 1336] +Triangle: [1330, 1327, 2410] +Triangle: [2404, 1335, 1337] +Triangle: [1331, 1330, 2412] +Triangle: [2414, 1339, 1338] +Triangle: [1334, 1333, 2459] +Triangle: [2458, 1328, 1339] +Triangle: [1333, 1332, 2461] +Triangle: [1332, 1331, 2413] +Triangle: [1306, 1352, 1349] +Triangle: [1351, 1352, 1306] +Triangle: [1345, 1350, 1313] +Triangle: [1340, 1351, 1307] +Triangle: [1313, 1350, 1343] +Triangle: [1349, 1348, 1304] +Triangle: [1344, 1347, 1311] +Triangle: [1304, 1348, 1346] +Triangle: [1347, 1341, 1310] +Triangle: [1346, 1345, 1302] +Triangle: [1303, 1342, 1344] +Triangle: [1312, 1343, 1342] +Triangle: [1310, 1341, 1340] +Triangle: [2390, 1296, 1298] +Triangle: [2400, 2399, 1289] +Triangle: [2392, 1297, 1295] +Triangle: [2398, 1288, 1289] +Triangle: [2391, 1298, 1297] +Triangle: [2398, 2397, 1291] +Triangle: [2389, 2401, 1299] +Triangle: [2394, 1294, 1293] +Triangle: [2401, 2400, 1300] +Triangle: [2395, 1293, 1292] +Triangle: [2396, 1292, 1291] +Triangle: [2393, 1295, 1294] +Triangle: [1358, 1364, 2433] +Triangle: [2439, 1357, 1358] +Triangle: [2455, 1365, 2434] +Triangle: [2435, 1353, 2457] +Triangle: [1365, 1360, 2429] +Triangle: [1364, 1363, 2432] +Triangle: [2437, 1355, 1362] +Triangle: [1363, 1361, 2430] +Triangle: [2431, 1362, 1359] +Triangle: [1361, 1356, 2438] +Triangle: [2436, 1354, 1355] +Triangle: [2429, 1360, 1354] +Triangle: [1359, 1353, 2435] +Triangle: [1913, 1369, 1370] +Triangle: [1913, 1915, 1368] +Triangle: [1912, 1366, 1368] +Triangle: [1916, 1912, 1323] +Triangle: [1372, 1371, 1370] +Triangle: [1379, 1377, 1374] +Triangle: [130, 1439, 1440] +Triangle: [1377, 91, 83] +Triangle: [1388, 1389, 1390] +Triangle: [1438, 91, 1377] +Triangle: [1380, 1379, 1372] +Triangle: [1368, 1381, 1380] +Triangle: [1381, 1368, 1366] +Triangle: [1367, 1383, 1382] +Triangle: [1914, 1370, 1384] +Triangle: [1385, 1384, 1370] +Triangle: [1380, 1381, 1448] +Triangle: [1379, 1380, 1449] +Triangle: [1388, 1385, 1371] +Triangle: [1917, 1384, 1391] +Triangle: [1384, 1385, 1390] +Triangle: [1451, 1377, 1379] +Triangle: [1393, 1374, 83] +Triangle: [1373, 1374, 1393] +Triangle: [103, 1395, 1393] +Triangle: [1394, 1393, 1395] +Triangle: [1373, 1394, 1396] +Triangle: [1392, 1397, 1396] +Triangle: [1388, 1396, 1399] +Triangle: [1398, 1399, 1396] +Triangle: [1383, 1401, 1400] +Triangle: [1403, 1402, 1417] +Triangle: [1405, 1404, 1402] +Triangle: [1407, 1406, 1452] +Triangle: [1452, 1454, 1408] +Triangle: [1455, 1410, 1375] +Triangle: [1455, 178, 128] +Triangle: [137, 1440, 1410] +Triangle: [1444, 1443, 1408] +Triangle: [1408, 1443, 1441] +Triangle: [1442, 1402, 1404] +Triangle: [1418, 1417, 1400] +Triangle: [1417, 1402, 1442] +Triangle: [1400, 1417, 1445] +Triangle: [1400, 1446, 1447] +Triangle: [1381, 1382, 1447] +Triangle: [1372, 1374, 1373] +Triangle: [131, 1437, 1439] +Triangle: [1437, 131, 132] +Triangle: [132, 91, 1438] +Triangle: [1440, 1444, 1375] +Triangle: [1454, 1456, 1375] +Triangle: [1386, 1387, 1433] +Triangle: [1430, 1423, 1422] +Triangle: [1429, 1416, 1413] +Triangle: [1414, 1432, 1429] +Triangle: [1435, 1434, 1431] +Triangle: [1424, 1423, 1430] +Triangle: [1430, 1427, 1428] +Triangle: [1431, 1428, 1429] +Triangle: [1427, 1421, 1419] +Triangle: [1427, 1422, 1420] +Triangle: [1415, 1378, 1435] +Triangle: [1378, 1386, 1434] +Triangle: [1428, 1419, 1416] +Triangle: [1426, 1435, 1432] +Triangle: [1433, 1430, 1431] +Triangle: [1425, 1424, 1433] +Triangle: [1437, 1436, 1387] +Triangle: [1436, 1438, 1425] +Triangle: [1415, 1440, 1439] +Triangle: [1378, 1439, 1437] +Triangle: [1413, 1442, 1441] +Triangle: [1412, 1441, 1443] +Triangle: [1444, 1440, 1415] +Triangle: [1445, 1442, 1413] +Triangle: [1446, 1445, 1416] +Triangle: [1420, 1448, 1447] +Triangle: [1421, 1447, 1446] +Triangle: [1449, 1448, 1420] +Triangle: [1423, 1450, 1449] +Triangle: [1424, 1451, 1450] +Triangle: [1425, 1438, 1451] +Triangle: [1443, 1444, 1426] +Triangle: [1409, 1376, 1456] +Triangle: [1411, 129, 178] +Triangle: [1376, 1411, 1455] +Triangle: [1406, 1409, 1454] +Triangle: [1453, 1452, 1404] +Triangle: [1457, 1458, 1391] +Triangle: [1457, 1459, 1460] +Triangle: [1462, 1461, 1460] +Triangle: [1918, 1391, 1458] +Triangle: [1919, 1458, 1460] +Triangle: [1921, 1920, 1460] +Triangle: [1921, 1461, 1468] +Triangle: [1468, 1467, 1923] +Triangle: [1467, 1466, 1924] +Triangle: [1466, 1367, 1916] +Triangle: [1469, 1463, 1461] +Triangle: [1471, 1472, 1469] +Triangle: [1463, 1464, 1468] +Triangle: [1467, 1468, 1464] +Triangle: [1470, 1465, 1466] +Triangle: [1367, 1466, 1465] +Triangle: [196, 197, 1477] +Triangle: [1462, 1459, 1474] +Triangle: [1475, 1471, 1474] +Triangle: [1473, 1474, 1459] +Triangle: [1475, 1476, 1472] +Triangle: [1389, 1473, 1457] +Triangle: [1399, 1480, 1473] +Triangle: [1479, 209, 210] +Triangle: [185, 194, 1476] +Triangle: [1475, 1477, 197] +Triangle: [1478, 1477, 1474] +Triangle: [1398, 1479, 1480] +Triangle: [196, 1478, 1897] +Triangle: [1897, 1478, 1473] +Triangle: [1487, 1481, 1465] +Triangle: [1481, 1487, 1488] +Triangle: [1482, 1488, 1489] +Triangle: [1483, 1489, 1490] +Triangle: [1484, 1490, 1491] +Triangle: [1485, 1491, 1492] +Triangle: [1401, 1383, 1465] +Triangle: [1418, 1401, 1481] +Triangle: [1403, 1418, 1482] +Triangle: [1403, 1483, 1484] +Triangle: [1405, 1484, 1485] +Triangle: [1453, 1485, 1486] +Triangle: [1493, 1470, 1464] +Triangle: [1496, 1493, 1463] +Triangle: [1469, 1472, 1495] +Triangle: [1476, 1494, 1495] +Triangle: [1470, 1493, 1497] +Triangle: [1498, 1497, 1493] +Triangle: [1495, 1499, 1498] +Triangle: [1513, 1494, 249] +Triangle: [1498, 1502, 1501] +Triangle: [1499, 1500, 1502] +Triangle: [1487, 1497, 1501] +Triangle: [1504, 1503, 1501] +Triangle: [1506, 1505, 1503] +Triangle: [1506, 1508, 1507] +Triangle: [1508, 1510, 1509] +Triangle: [231, 243, 1511] +Triangle: [243, 245, 1512] +Triangle: [262, 1522, 1510] +Triangle: [1511, 1504, 1502] +Triangle: [1506, 1504, 1511] +Triangle: [1523, 263, 247] +Triangle: [1488, 1501, 1503] +Triangle: [1489, 1503, 1505] +Triangle: [1491, 1490, 1505] +Triangle: [1492, 1491, 1507] +Triangle: [194, 249, 1494] +Triangle: [1495, 1494, 1513] +Triangle: [225, 1499, 1513] +Triangle: [225, 231, 1500] +Triangle: [1518, 257, 129] +Triangle: [1526, 1524, 1406] +Triangle: [1517, 1514, 1376] +Triangle: [1527, 1525, 1486] +Triangle: [1522, 1521, 1509] +Triangle: [1524, 1517, 1409] +Triangle: [1376, 1514, 1518] +Triangle: [1506, 1512, 1523] +Triangle: [245, 263, 1523] +Triangle: [1525, 1526, 1407] +Triangle: [1510, 1508, 247] +Triangle: [1520, 1519, 1525] +Triangle: [1516, 1515, 1524] +Triangle: [1519, 1516, 1526] +Triangle: [1509, 1521, 1527] +Triangle: [2389, 1290, 1296] +Triangle: [269, 1528, 1395] +Triangle: [302, 271, 1529] +Triangle: [274, 1530, 1532] +Triangle: [275, 1531, 1528] +Triangle: [278, 1532, 1531] +Triangle: [1532, 1535, 1534] +Triangle: [1530, 1533, 1535] +Triangle: [1535, 1538, 1537] +Triangle: [1533, 1536, 1538] +Triangle: [1538, 1541, 1540] +Triangle: [1536, 1539, 1541] +Triangle: [1541, 1544, 1543] +Triangle: [1542, 1544, 1541] +Triangle: [293, 292, 1543] +Triangle: [291, 293, 1544] +Triangle: [1531, 1534, 1545] +Triangle: [1546, 1545, 1534] +Triangle: [1896, 1546, 1537] +Triangle: [1547, 1896, 1540] +Triangle: [292, 297, 1547] +Triangle: [1392, 1395, 1528] +Triangle: [1392, 1545, 1546] +Triangle: [1397, 1546, 1896] +Triangle: [1398, 1896, 1547] +Triangle: [1479, 1547, 297] +Triangle: [302, 1550, 1530] +Triangle: [1530, 1550, 1551] +Triangle: [1551, 1552, 1553] +Triangle: [1552, 1551, 1550] +Triangle: [1536, 1533, 1553] +Triangle: [1539, 1536, 1554] +Triangle: [1549, 1539, 1557] +Triangle: [1555, 1556, 1557] +Triangle: [1549, 1548, 1542] +Triangle: [1548, 298, 291] +Triangle: [1565, 1562, 1571] +Triangle: [1576, 1555, 1558] +Triangle: [1577, 1558, 1574] +Triangle: [1560, 1577, 1573] +Triangle: [1573, 1574, 1564] +Triangle: [1563, 1571, 1578] +Triangle: [1578, 1571, 1561] +Triangle: [1566, 1561, 1571] +Triangle: [1565, 1570, 1569] +Triangle: [1568, 1566, 1562] +Triangle: [1568, 1567, 1561] +Triangle: [1560, 1561, 1567] +Triangle: [1559, 1576, 1577] +Triangle: [1564, 1580, 1579] +Triangle: [1579, 1572, 1565] +Triangle: [1565, 1572, 1581] +Triangle: [1579, 1580, 1588] +Triangle: [1581, 1572, 1588] +Triangle: [1570, 1581, 1587] +Triangle: [1593, 1591, 1590] +Triangle: [1586, 1589, 1590] +Triangle: [1585, 1586, 1587] +Triangle: [1588, 1580, 1584] +Triangle: [1591, 1593, 1594] +Triangle: [1569, 1570, 1590] +Triangle: [1568, 1569, 1591] +Triangle: [1576, 1559, 1556] +Triangle: [1556, 1559, 1567] +Triangle: [1567, 1568, 1592] +Triangle: [1549, 1556, 1595] +Triangle: [1596, 1595, 1592] +Triangle: [1593, 1597, 1598] +Triangle: [1842, 1840, 1839] +Triangle: [1886, 1601, 1602] +Triangle: [1594, 1598, 1599] +Triangle: [1549, 1596, 1599] +Triangle: [1885, 1548, 1599] +Triangle: [1600, 1603, 358] +Triangle: [1887, 1599, 1598] +Triangle: [1842, 1795, 1796] +Triangle: [683, 1885, 1600] +Triangle: [1606, 1604, 1589] +Triangle: [1604, 1606, 1889] +Triangle: [361, 1605, 1607] +Triangle: [1589, 1604, 1597] +Triangle: [1597, 1604, 1888] +Triangle: [351, 1601, 1605] +Triangle: [1609, 1608, 1586] +Triangle: [1586, 1608, 1610] +Triangle: [1606, 1610, 1890] +Triangle: [1607, 1611, 369] +Triangle: [1580, 1564, 1575] +Triangle: [1575, 1564, 1574] +Triangle: [1574, 1558, 1583] +Triangle: [1613, 1583, 1558] +Triangle: [1613, 1555, 1554] +Triangle: [376, 1618, 1619] +Triangle: [271, 378, 1619] +Triangle: [1617, 1620, 1619] +Triangle: [1529, 271, 1620] +Triangle: [1616, 1621, 1620] +Triangle: [1529, 1621, 1622] +Triangle: [1552, 1622, 1623] +Triangle: [1553, 1623, 1612] +Triangle: [1642, 401, 393] +Triangle: [1642, 1636, 1631] +Triangle: [1638, 1631, 1632] +Triangle: [1640, 1639, 1632] +Triangle: [1628, 1635, 1640] +Triangle: [1641, 1640, 1634] +Triangle: [1635, 1630, 1639] +Triangle: [1629, 1638, 1639] +Triangle: [1629, 1637, 1642] +Triangle: [1637, 391, 401] +Triangle: [1650, 1641, 1633] +Triangle: [1650, 1627, 1648] +Triangle: [1647, 1648, 1649] +Triangle: [1635, 1628, 1647] +Triangle: [1630, 1635, 1646] +Triangle: [1644, 1629, 1630] +Triangle: [1637, 1629, 1644] +Triangle: [1637, 1643, 407] +Triangle: [1651, 1645, 1646] +Triangle: [1645, 1651, 1652] +Triangle: [1643, 1644, 1652] +Triangle: [419, 407, 1643] +Triangle: [422, 419, 1653] +Triangle: [1652, 1659, 1655] +Triangle: [1651, 1661, 1659] +Triangle: [1661, 1668, 1663] +Triangle: [1662, 1676, 1625] +Triangle: [1615, 1622, 1621] +Triangle: [1614, 1623, 1622] +Triangle: [1657, 1676, 1662] +Triangle: [1656, 1625, 1676] +Triangle: [1616, 1624, 1658] +Triangle: [422, 1655, 1654] +Triangle: [1670, 1662, 1648] +Triangle: [1661, 1651, 1649] +Triangle: [1660, 1649, 1648] +Triangle: [1659, 1663, 1654] +Triangle: [1664, 431, 387] +Triangle: [1654, 1663, 1626] +Triangle: [1664, 1665, 433] +Triangle: [1666, 435, 433] +Triangle: [1667, 437, 435] +Triangle: [376, 437, 1667] +Triangle: [1661, 1660, 1625] +Triangle: [1668, 1669, 1626] +Triangle: [1626, 1669, 1665] +Triangle: [1625, 1656, 1669] +Triangle: [1656, 1671, 1672] +Triangle: [1624, 1673, 1674] +Triangle: [1673, 1624, 1671] +Triangle: [1665, 1669, 1672] +Triangle: [1675, 1667, 1666] +Triangle: [1618, 1667, 1675] +Triangle: [1671, 1617, 1675] +Triangle: [1616, 1617, 1671] +Triangle: [1657, 1674, 1673] +Triangle: [1636, 393, 461] +Triangle: [1678, 1677, 461] +Triangle: [1631, 1636, 1677] +Triangle: [1680, 1677, 1678] +Triangle: [466, 1679, 1678] +Triangle: [448, 1681, 1679] +Triangle: [1688, 1681, 448] +Triangle: [1682, 1688, 475] +Triangle: [1680, 1679, 1689] +Triangle: [1690, 1692, 1691] +Triangle: [1681, 1687, 1689] +Triangle: [1682, 459, 485] +Triangle: [449, 1697, 1683] +Triangle: [1697, 1696, 1684] +Triangle: [1684, 1696, 1695] +Triangle: [1685, 1695, 1694] +Triangle: [1693, 1687, 1686] +Triangle: [1697, 1698, 1708] +Triangle: [450, 1699, 1698] +Triangle: [487, 1698, 1697] +Triangle: [495, 1706, 1699] +Triangle: [458, 1701, 1700] +Triangle: [525, 1735, 1701] +Triangle: [456, 1703, 1702] +Triangle: [619, 1828, 1703] +Triangle: [1705, 1704, 452] +Triangle: [1700, 1706, 495] +Triangle: [1709, 1708, 1698] +Triangle: [1707, 1709, 1699] +Triangle: [1700, 1710, 1707] +Triangle: [1701, 1711, 1710] +Triangle: [1735, 1736, 1711] +Triangle: [1703, 1713, 1712] +Triangle: [1689, 1687, 1693] +Triangle: [1687, 1720, 1719] +Triangle: [1685, 1718, 1717] +Triangle: [1683, 1716, 1715] +Triangle: [1714, 1720, 1687] +Triangle: [1686, 1719, 1718] +Triangle: [1684, 1717, 1716] +Triangle: [1715, 1721, 1688] +Triangle: [1688, 1721, 1714] +Triangle: [1722, 1717, 1718] +Triangle: [1716, 1717, 1722] +Triangle: [1722, 1719, 1720] +Triangle: [1721, 1715, 1722] +Triangle: [1696, 1708, 1729] +Triangle: [1730, 1729, 1708] +Triangle: [1731, 1730, 1709] +Triangle: [1694, 1726, 1723] +Triangle: [1724, 1723, 1726] +Triangle: [1725, 1724, 1727] +Triangle: [1695, 1729, 1726] +Triangle: [1727, 1726, 1729] +Triangle: [1727, 1730, 1731] +Triangle: [1710, 1732, 1731] +Triangle: [1728, 1731, 1732] +Triangle: [1734, 1725, 1728] +Triangle: [1711, 1733, 1732] +Triangle: [1702, 1712, 1736] +Triangle: [457, 1702, 1735] +Triangle: [1733, 1711, 1736] +Triangle: [1737, 1734, 1736] +Triangle: [1713, 1738, 1737] +Triangle: [1737, 1741, 1739] +Triangle: [1740, 1725, 1734] +Triangle: [1725, 1740, 1742] +Triangle: [1723, 1724, 1742] +Triangle: [1690, 1693, 1723] +Triangle: [1692, 1690, 1743] +Triangle: [1740, 1745, 1746] +Triangle: [1739, 1741, 1745] +Triangle: [1741, 1749, 1748] +Triangle: [1748, 1749, 1751] +Triangle: [1750, 1751, 1753] +Triangle: [1752, 1753, 1755] +Triangle: [1756, 1754, 1755] +Triangle: [1758, 1756, 1757] +Triangle: [1758, 1759, 1761] +Triangle: [1761, 1763, 1762] +Triangle: [1763, 1765, 1764] +Triangle: [1769, 1767, 1766] +Triangle: [1765, 1769, 1768] +Triangle: [1767, 1771, 1770] +Triangle: [1771, 1773, 1772] +Triangle: [1773, 1775, 1774] +Triangle: [1829, 1713, 1703] +Triangle: [1777, 1776, 1704] +Triangle: [1829, 1776, 1774] +Triangle: [1772, 1774, 1776] +Triangle: [1831, 1747, 1738] +Triangle: [1747, 1741, 1737] +Triangle: [1747, 1778, 1749] +Triangle: [1832, 1778, 1747] +Triangle: [1775, 1773, 1790] +Triangle: [1773, 1771, 1789] +Triangle: [1771, 1767, 1788] +Triangle: [1767, 1769, 1787] +Triangle: [1765, 1786, 1787] +Triangle: [1765, 1763, 1785] +Triangle: [1763, 1761, 1784] +Triangle: [1759, 1783, 1784] +Triangle: [1757, 1782, 1783] +Triangle: [1757, 1755, 1781] +Triangle: [1755, 1753, 1780] +Triangle: [1751, 1779, 1780] +Triangle: [1749, 1778, 1779] +Triangle: [1746, 1744, 1743] +Triangle: [1745, 1748, 1792] +Triangle: [1750, 1794, 1792] +Triangle: [1793, 1794, 1750] +Triangle: [1795, 1793, 1752] +Triangle: [1796, 1795, 1754] +Triangle: [1758, 1797, 1796] +Triangle: [1760, 1798, 1797] +Triangle: [1799, 1798, 1760] +Triangle: [1806, 1807, 1814] +Triangle: [1807, 1808, 1816] +Triangle: [1800, 1801, 1817] +Triangle: [1808, 1809, 1819] +Triangle: [1817, 1801, 1802] +Triangle: [1809, 1810, 1821] +Triangle: [1820, 1802, 1803] +Triangle: [1821, 1810, 1811] +Triangle: [1822, 1803, 1804] +Triangle: [1823, 1811, 1812] +Triangle: [1824, 1804, 1805] +Triangle: [1812, 1813, 1827] +Triangle: [1826, 1805, 1806] +Triangle: [1833, 1800, 1818] +Triangle: [1834, 1818, 1778] +Triangle: [1783, 1826, 1815] +Triangle: [1825, 1827, 1791] +Triangle: [1782, 1824, 1826] +Triangle: [1789, 1823, 1825] +Triangle: [1781, 1822, 1824] +Triangle: [1788, 1821, 1823] +Triangle: [1780, 1820, 1822] +Triangle: [1819, 1821, 1788] +Triangle: [1779, 1817, 1820] +Triangle: [1816, 1819, 1787] +Triangle: [1818, 1817, 1779] +Triangle: [1814, 1816, 1786] +Triangle: [1815, 1814, 1785] +Triangle: [1791, 1827, 1834] +Triangle: [1827, 1813, 1833] +Triangle: [1791, 1832, 1831] +Triangle: [1775, 1831, 1830] +Triangle: [1829, 1830, 1738] +Triangle: [1776, 1829, 1828] +Triangle: [452, 1704, 1828] +Triangle: [1631, 1680, 1691] +Triangle: [1792, 1836, 1744] +Triangle: [1836, 1835, 1692] +Triangle: [1835, 1632, 1691] +Triangle: [1839, 1837, 1835] +Triangle: [1837, 1839, 1840] +Triangle: [1634, 1632, 1835] +Triangle: [1633, 1634, 1837] +Triangle: [1793, 1795, 1841] +Triangle: [1841, 1795, 1839] +Triangle: [1797, 1844, 1843] +Triangle: [1627, 1633, 1838] +Triangle: [1846, 1845, 1670] +Triangle: [1845, 1674, 1657] +Triangle: [1848, 1846, 1838] +Triangle: [1848, 1847, 1845] +Triangle: [1674, 1845, 1847] +Triangle: [1842, 1851, 1848] +Triangle: [1848, 1851, 1850] +Triangle: [1849, 1658, 1847] +Triangle: [1615, 1658, 1849] +Triangle: [1623, 1614, 1852] +Triangle: [1849, 1853, 1852] +Triangle: [1613, 1612, 1852] +Triangle: [1583, 1613, 1853] +Triangle: [1582, 1583, 1854] +Triangle: [1850, 1854, 1853] +Triangle: [1855, 1854, 1850] +Triangle: [1843, 1855, 1851] +Triangle: [1844, 1856, 1855] +Triangle: [1582, 1855, 1856] +Triangle: [1575, 1856, 1858] +Triangle: [1856, 1844, 1857] +Triangle: [1798, 1857, 1844] +Triangle: [1584, 1858, 1860] +Triangle: [1858, 1857, 1859] +Triangle: [1799, 1859, 1857] +Triangle: [1585, 1860, 1862] +Triangle: [1860, 1859, 1861] +Triangle: [1863, 1861, 1859] +Triangle: [1863, 1799, 1762] +Triangle: [1867, 1705, 453] +Triangle: [1867, 1866, 1777] +Triangle: [1772, 1777, 1866] +Triangle: [1770, 1866, 1865] +Triangle: [1865, 1864, 1768] +Triangle: [1864, 1863, 1764] +Triangle: [1863, 1864, 1871] +Triangle: [1864, 1865, 1870] +Triangle: [1865, 1866, 1869] +Triangle: [1867, 1868, 1869] +Triangle: [1868, 1867, 455] +Triangle: [454, 664, 1872] +Triangle: [1609, 1862, 1876] +Triangle: [1862, 1861, 1877] +Triangle: [1871, 1875, 1877] +Triangle: [1870, 1874, 1875] +Triangle: [1870, 1869, 1873] +Triangle: [1869, 1868, 1872] +Triangle: [1880, 1878, 1876] +Triangle: [1882, 1878, 1880] +Triangle: [673, 1879, 1881] +Triangle: [1879, 1882, 1883] +Triangle: [1608, 1876, 1878] +Triangle: [1889, 1890, 1611] +Triangle: [1601, 1886, 1888] +Triangle: [1888, 1889, 1607] +Triangle: [298, 1548, 1885] +Triangle: [1603, 1887, 1884] +Triangle: [1600, 1885, 1887] +Triangle: [1597, 1886, 1884] +Triangle: [1882, 1890, 1610] +Triangle: [1890, 1882, 1879] +Triangle: [369, 1611, 1879] +Triangle: [1875, 1874, 1893] +Triangle: [1874, 1873, 1892] +Triangle: [1891, 1872, 664] +Triangle: [1873, 1872, 1891] +Triangle: [1894, 1880, 1877] +Triangle: [1894, 1893, 1883] +Triangle: [1893, 1892, 1881] +Triangle: [1895, 1881, 1892] +Triangle: [693, 1895, 1891] +Triangle: [676, 1881, 1895] +Triangle: [1841, 1836, 1792] +Triangle: [358, 1603, 1602] +Triangle: [695, 1602, 1601] +Triangle: [210, 206, 1897] +Triangle: [1903, 1904, 1911] +Triangle: [1898, 1325, 1326] +Triangle: [1900, 1322, 1316] +Triangle: [1901, 1316, 1325] +Triangle: [1902, 1903, 1910] +Triangle: [1899, 1902, 1909] +Triangle: [1324, 1322, 1900] +Triangle: [1907, 1898, 1899] +Triangle: [1905, 1900, 1901] +Triangle: [1906, 1901, 1898] +Triangle: [1910, 1911, 2427] +Triangle: [1909, 1910, 2426] +Triangle: [1908, 1909, 2419] +Triangle: [1911, 1318, 2421] +Triangle: [1904, 1317, 1318] +Triangle: [1924, 1916, 1321] +Triangle: [1923, 1924, 1320] +Triangle: [1922, 1923, 1319] +Triangle: [1317, 1921, 1922] +Triangle: [1317, 1314, 1920] +Triangle: [1315, 1919, 1920] +Triangle: [1326, 1918, 1919] +Triangle: [1325, 1917, 1918] +Triangle: [1316, 1914, 1917] +Triangle: [1367, 1366, 1912] +Triangle: [1323, 1912, 1915] +Triangle: [1324, 1915, 1913] +Triangle: [1322, 1913, 1914] +Triangle: [1932, 1522, 262] +Triangle: [1933, 1521, 1522] +Triangle: [1931, 1520, 1521] +Triangle: [1930, 1519, 1520] +Triangle: [1929, 1516, 1519] +Triangle: [1929, 1928, 1515] +Triangle: [1928, 1927, 1517] +Triangle: [1927, 1926, 1514] +Triangle: [1926, 1925, 1518] +Triangle: [1925, 724, 257] +Triangle: [5227, 1932, 732] +Triangle: [5207, 1940, 1941] +Triangle: [1931, 1933, 5228] +Triangle: [5229, 5226, 1930] +Triangle: [5225, 1929, 1930] +Triangle: [5224, 1928, 1929] +Triangle: [5223, 1927, 1928] +Triangle: [5222, 1926, 1927] +Triangle: [5222, 5221, 1925] +Triangle: [724, 1925, 5221] +Triangle: [2375, 1956, 1944] +Triangle: [2377, 1994, 1957] +Triangle: [1967, 1968, 2315] +Triangle: [1982, 1975, 1976] +Triangle: [1970, 1969, 1988] +Triangle: [1981, 1976, 1977] +Triangle: [2281, 1947, 1948] +Triangle: [1959, 1960, 2384] +Triangle: [1997, 1996, 2381] +Triangle: [2001, 1945, 2287] +Triangle: [1993, 1964, 1973] +Triangle: [2374, 1962, 1963] +Triangle: [1943, 1997, 2382] +Triangle: [2278, 1949, 1947] +Triangle: [2195, 2308, 1006] +Triangle: [2088, 1984, 1983] +Triangle: [1983, 1974, 1975] +Triangle: [2002, 2004, 2034] +Triangle: [2090, 1981, 1980] +Triangle: [1985, 1987, 2085] +Triangle: [2084, 1983, 1982] +Triangle: [2329, 1973, 1964] +Triangle: [1989, 1990, 2091] +Triangle: [1992, 1965, 1964] +Triangle: [1980, 1977, 1978] +Triangle: [1986, 1985, 2093] +Triangle: [1990, 1991, 2094] +Triangle: [1979, 1986, 2092] +Triangle: [1991, 1992, 2082] +Triangle: [1985, 1972, 1970] +Triangle: [2082, 1992, 1993] +Triangle: [1968, 1967, 1990] +Triangle: [1987, 1988, 2095] +Triangle: [1979, 1978, 1971] +Triangle: [2089, 1982, 1981] +Triangle: [1966, 1965, 1992] +Triangle: [1986, 1971, 1972] +Triangle: [1984, 1973, 1974] +Triangle: [1980, 1979, 2083] +Triangle: [1967, 1966, 1991] +Triangle: [2086, 1993, 1984] +Triangle: [2275, 1998, 1999] +Triangle: [1955, 1954, 2282] +Triangle: [1952, 1951, 2279] +Triangle: [1954, 1953, 2289] +Triangle: [1953, 1952, 2280] +Triangle: [2385, 1963, 1995] +Triangle: [1958, 1959, 2380] +Triangle: [1960, 1961, 2387] +Triangle: [2000, 2001, 2285] +Triangle: [1945, 1946, 2276] +Triangle: [2283, 1999, 2000] +Triangle: [2288, 1950, 1949] +Triangle: [1944, 1943, 2376] +Triangle: [2002, 2003, 2005] +Triangle: [2003, 2002, 2006] +Triangle: [2065, 2010, 2007] +Triangle: [2010, 2065, 2066] +Triangle: [2003, 2007, 2010] +Triangle: [2003, 2008, 2009] +Triangle: [2013, 2066, 2064] +Triangle: [2010, 2013, 2011] +Triangle: [2009, 2008, 2011] +Triangle: [2011, 2013, 2014] +Triangle: [2059, 2018, 2019] +Triangle: [2019, 2017, 2058] +Triangle: [2068, 2078, 2061] +Triangle: [2030, 2029, 2016] +Triangle: [2017, 2016, 2063] +Triangle: [2032, 2030, 2017] +Triangle: [2004, 2005, 2021] +Triangle: [2023, 2022, 2020] +Triangle: [2023, 2025, 2094] +Triangle: [2025, 2027, 2091] +Triangle: [2021, 2024, 2025] +Triangle: [2005, 2009, 2024] +Triangle: [2027, 2028, 2096] +Triangle: [2024, 2026, 2027] +Triangle: [2009, 2012, 2026] +Triangle: [2014, 2027, 2026] +Triangle: [831, 818, 817] +Triangle: [2032, 2031, 2092] +Triangle: [2030, 2032, 2093] +Triangle: [2004, 2020, 2044] +Triangle: [2029, 2030, 2085] +Triangle: [2002, 2033, 2035] +Triangle: [2020, 2022, 2045] +Triangle: [2035, 2038, 2062] +Triangle: [2038, 2040, 2060] +Triangle: [2036, 2038, 2035] +Triangle: [2034, 2037, 2036] +Triangle: [2039, 2038, 2036] +Triangle: [2060, 2040, 2041] +Triangle: [2018, 2031, 2032] +Triangle: [2049, 2041, 2040] +Triangle: [2018, 2059, 2053] +Triangle: [2056, 2042, 2043] +Triangle: [2041, 2049, 2050] +Triangle: [2041, 2042, 2056] +Triangle: [2043, 2042, 2050] +Triangle: [2006, 2035, 2054] +Triangle: [2022, 2086, 2088] +Triangle: [2084, 2047, 2045] +Triangle: [2047, 2084, 2089] +Triangle: [2045, 2047, 2046] +Triangle: [2034, 2044, 2046] +Triangle: [2046, 2047, 2039] +Triangle: [2090, 2049, 2048] +Triangle: [2031, 2051, 2083] +Triangle: [2051, 2050, 2087] +Triangle: [2007, 2006, 2061] +Triangle: [2049, 2090, 2087] +Triangle: [2378, 1995, 1994] +Triangle: [2383, 1957, 1956] +Triangle: [2059, 2076, 2067] +Triangle: [2286, 2276, 1946] +Triangle: [2063, 2080, 2070] +Triangle: [2056, 2075, 2069] +Triangle: [2079, 2068, 2054] +Triangle: [2057, 2069, 2077] +Triangle: [2065, 2081, 2072] +Triangle: [2055, 2074, 2081] +Triangle: [2066, 2072, 2071] +Triangle: [2078, 2074, 2055] +Triangle: [2053, 2067, 2075] +Triangle: [2070, 2073, 2052] +Triangle: [2077, 2079, 2062] +Triangle: [2052, 2073, 2076] +Triangle: [2106, 2097, 2203] +Triangle: [2320, 2235, 2234] +Triangle: [2321, 2324, 2227] +Triangle: [2327, 2323, 2239] +Triangle: [2322, 2237, 2230] +Triangle: [2323, 2325, 2229] +Triangle: [2326, 2234, 2233] +Triangle: [2328, 2327, 2238] +Triangle: [2316, 2228, 2227] +Triangle: [2318, 2231, 2228] +Triangle: [2328, 2240, 2235] +Triangle: [2325, 2317, 2230] +Triangle: [2292, 2303, 2227] +Triangle: [2296, 2297, 2229] +Triangle: [2231, 2293, 2292] +Triangle: [2029, 2028, 2015] +Triangle: [2235, 2301, 2302] +Triangle: [2276, 2286, 2078] +Triangle: [2303, 2294, 2236] +Triangle: [2291, 2296, 2230] +Triangle: [2298, 2299, 2238] +Triangle: [2229, 2297, 2298] +Triangle: [2337, 2335, 2233] +Triangle: [2299, 2300, 2240] +Triangle: [2232, 2305, 2293] +Triangle: [2240, 2300, 2301] +Triangle: [917, 916, 1944] +Triangle: [916, 915, 1943] +Triangle: [920, 917, 1956] +Triangle: [2112, 1956, 1957] +Triangle: [920, 2112, 2113] +Triangle: [2232, 2315, 2319] +Triangle: [2161, 2249, 2250] +Triangle: [2170, 2174, 2120] +Triangle: [2206, 2197, 2190] +Triangle: [2122, 2253, 2252] +Triangle: [2124, 2254, 2253] +Triangle: [2126, 2256, 2255] +Triangle: [2178, 2128, 2330] +Triangle: [2130, 2259, 2258] +Triangle: [2244, 2160, 2142] +Triangle: [2183, 2184, 2140] +Triangle: [2134, 2261, 2260] +Triangle: [2136, 2262, 2261] +Triangle: [2138, 2263, 2262] +Triangle: [2138, 2140, 2264] +Triangle: [2243, 2142, 2266] +Triangle: [2144, 2268, 2267] +Triangle: [2142, 2147, 2269] +Triangle: [2148, 2270, 2268] +Triangle: [2150, 2271, 2270] +Triangle: [2150, 2152, 2272] +Triangle: [2152, 2154, 2273] +Triangle: [2168, 2172, 2156] +Triangle: [2250, 2274, 2156] +Triangle: [2169, 2167, 2166] +Triangle: [2115, 2251, 2249] +Triangle: [1950, 1951, 2388] +Triangle: [2163, 2147, 2142] +Triangle: [2130, 2132, 2260] +Triangle: [2183, 2138, 2136] +Triangle: [2182, 2136, 2134] +Triangle: [2181, 2134, 2132] +Triangle: [2130, 2179, 2180] +Triangle: [2179, 2130, 2333] +Triangle: [2130, 2128, 2333] +Triangle: [2147, 2163, 2226] +Triangle: [2124, 2176, 2216] +Triangle: [2122, 2175, 2176] +Triangle: [2122, 2120, 2174] +Triangle: [2190, 2185, 2172] +Triangle: [2274, 2273, 2154] +Triangle: [2115, 2161, 2171] +Triangle: [2114, 2185, 2171] +Triangle: [2114, 2156, 2172] +Triangle: [2173, 2172, 2168] +Triangle: [2167, 2169, 2119] +Triangle: [2154, 2152, 2167] +Triangle: [2152, 2150, 2166] +Triangle: [2150, 2148, 2165] +Triangle: [2144, 2164, 2165] +Triangle: [2099, 2187, 2186] +Triangle: [2189, 2188, 2159] +Triangle: [2191, 2190, 2197] +Triangle: [2171, 2185, 2190] +Triangle: [2217, 2194, 2193] +Triangle: [2308, 1943, 915] +Triangle: [2288, 2279, 1951] +Triangle: [2288, 2080, 2071] +Triangle: [2080, 2063, 2064] +Triangle: [2388, 2387, 1961] +Triangle: [2063, 2016, 2015] +Triangle: [2028, 2029, 2095] +Triangle: [2284, 1948, 1998] +Triangle: [2043, 2051, 2031] +Triangle: [2086, 2022, 2023] +Triangle: [2189, 2198, 2197] +Triangle: [2100, 2202, 2187] +Triangle: [2219, 2201, 2194] +Triangle: [2158, 2210, 2200] +Triangle: [2199, 2198, 2189] +Triangle: [2197, 2206, 2205] +Triangle: [2159, 2211, 2204] +Triangle: [2218, 2220, 2295] +Triangle: [2097, 2098, 2186] +Triangle: [2192, 2191, 2198] +Triangle: [2207, 2192, 2199] +Triangle: [2212, 2207, 2200] +Triangle: [2221, 2208, 2201] +Triangle: [2170, 2171, 2191] +Triangle: [2251, 2115, 2120] +Triangle: [2206, 2173, 2119] +Triangle: [2208, 2212, 2210] +Triangle: [2188, 2205, 2211] +Triangle: [2201, 2210, 2158] +Triangle: [2194, 2158, 2159] +Triangle: [2205, 2119, 2169] +Triangle: [2118, 2204, 2211] +Triangle: [2174, 2170, 2192] +Triangle: [2174, 2207, 2212] +Triangle: [2175, 2212, 2208] +Triangle: [2176, 2208, 2221] +Triangle: [2310, 2313, 2209] +Triangle: [2209, 2313, 2311] +Triangle: [2193, 2204, 2220] +Triangle: [2202, 2311, 2312] +Triangle: [2187, 2312, 2309] +Triangle: [2314, 2310, 2177] +Triangle: [2214, 2255, 2254] +Triangle: [2213, 2220, 2204] +Triangle: [2165, 2213, 2118] +Triangle: [2222, 2295, 2220] +Triangle: [2164, 2222, 2213] +Triangle: [2241, 2236, 2294] +Triangle: [2225, 2226, 2164] +Triangle: [2225, 2267, 2269] +Triangle: [2226, 2223, 2222] +Triangle: [2223, 2226, 2163] +Triangle: [2290, 2291, 2237] +Triangle: [2104, 2181, 2180] +Triangle: [2180, 2179, 2103] +Triangle: [2101, 2209, 2202] +Triangle: [2128, 2258, 2257] +Triangle: [2179, 2333, 2334] +Triangle: [2096, 2095, 1988] +Triangle: [2248, 2247, 2101] +Triangle: [2106, 2163, 2160] +Triangle: [2182, 2181, 2104] +Triangle: [2183, 2182, 2111] +Triangle: [2140, 2243, 2265] +Triangle: [2184, 2244, 2243] +Triangle: [2108, 2107, 2160] +Triangle: [2109, 2108, 2244] +Triangle: [2184, 2183, 2110] +Triangle: [2330, 2257, 2256] +Triangle: [2246, 2330, 2126] +Triangle: [2135, 2137, 2139] +Triangle: [2116, 2250, 2249] +Triangle: [2251, 2252, 2121] +Triangle: [2252, 2253, 2123] +Triangle: [2253, 2254, 2125] +Triangle: [2255, 2256, 2127] +Triangle: [2257, 2258, 2129] +Triangle: [2258, 2259, 2131] +Triangle: [2259, 2260, 2133] +Triangle: [2260, 2261, 2135] +Triangle: [2135, 2261, 2262] +Triangle: [2137, 2262, 2263] +Triangle: [2263, 2264, 2141] +Triangle: [2265, 2266, 2143] +Triangle: [2224, 2267, 2268] +Triangle: [2266, 2269, 2146] +Triangle: [2145, 2268, 2270] +Triangle: [2149, 2270, 2271] +Triangle: [2151, 2271, 2272] +Triangle: [2153, 2272, 2273] +Triangle: [2274, 2250, 2116] +Triangle: [2273, 2274, 2157] +Triangle: [2249, 2251, 2117] +Triangle: [2254, 2255, 2215] +Triangle: [2146, 2269, 2267] +Triangle: [2264, 2265, 2242] +Triangle: [2256, 2257, 2245] +Triangle: [2131, 2133, 2139] +Triangle: [2129, 2131, 2141] +Triangle: [2245, 2129, 2242] +Triangle: [2146, 2127, 2245] +Triangle: [2127, 2146, 2224] +Triangle: [2145, 2125, 2215] +Triangle: [2125, 2145, 2149] +Triangle: [2123, 2149, 2151] +Triangle: [2121, 2151, 2153] +Triangle: [2155, 2162, 2117] +Triangle: [2162, 2155, 2157] +Triangle: [2076, 2284, 2275] +Triangle: [2290, 2294, 2097] +Triangle: [2080, 2288, 2278] +Triangle: [2075, 2283, 2277] +Triangle: [2287, 2276, 2068] +Triangle: [2277, 2285, 2077] +Triangle: [2081, 2289, 2280] +Triangle: [2282, 2289, 2081] +Triangle: [2072, 2280, 2279] +Triangle: [2286, 2282, 2074] +Triangle: [2067, 2275, 2283] +Triangle: [2315, 1968, 1969] +Triangle: [2278, 2281, 2073] +Triangle: [2285, 2287, 2079] +Triangle: [2073, 2281, 2284] +Triangle: [2329, 2241, 2237] +Triangle: [2302, 2103, 2334] +Triangle: [2105, 2103, 2302] +Triangle: [2104, 2105, 2301] +Triangle: [2299, 2111, 2104] +Triangle: [2298, 2110, 2111] +Triangle: [2297, 2109, 2110] +Triangle: [2296, 2108, 2109] +Triangle: [2296, 2291, 2107] +Triangle: [2291, 2290, 2106] +Triangle: [2203, 2295, 2222] +Triangle: [2098, 2097, 2294] +Triangle: [2099, 2098, 2303] +Triangle: [2293, 2100, 2099] +Triangle: [2305, 2101, 2100] +Triangle: [2304, 2102, 2247] +Triangle: [1007, 1124, 2307] +Triangle: [2306, 2307, 1124] +Triangle: [2331, 2246, 2177] +Triangle: [2247, 2331, 2209] +Triangle: [1996, 1958, 2386] +Triangle: [2311, 2219, 2217] +Triangle: [2312, 2217, 2218] +Triangle: [2310, 2216, 2221] +Triangle: [2295, 2203, 2186] +Triangle: [2216, 2310, 2314] +Triangle: [2313, 2221, 2219] +Triangle: [1973, 2329, 2322] +Triangle: [2233, 2335, 2336] +Triangle: [1975, 2317, 2325] +Triangle: [1971, 2328, 2320] +Triangle: [1966, 1967, 2318] +Triangle: [1965, 1966, 2316] +Triangle: [1978, 2327, 2328] +Triangle: [2326, 2319, 1969] +Triangle: [1976, 2325, 2323] +Triangle: [1974, 2322, 2317] +Triangle: [1978, 1977, 2323] +Triangle: [1964, 1965, 2324] +Triangle: [1972, 2320, 2326] +Triangle: [2329, 2321, 2236] +Triangle: [2231, 2318, 2315] +Triangle: [1989, 1988, 1969] +Triangle: [2302, 2332, 2337] +Triangle: [2102, 2304, 2332] +Triangle: [2335, 2304, 2248] +Triangle: [2304, 2335, 2337] +Triangle: [2178, 2102, 2334] +Triangle: [2305, 2232, 2336] +Triangle: [2102, 2178, 2331] +Triangle: [2348, 2347, 2346] +Triangle: [2348, 2349, 1009] +Triangle: [2345, 2350, 2371] +Triangle: [2351, 2350, 2345] +Triangle: [2352, 1170, 921] +Triangle: [1170, 2352, 2348] +Triangle: [2347, 2348, 2352] +Triangle: [2353, 2352, 2113] +Triangle: [2354, 2346, 2347] +Triangle: [1994, 2354, 2353] +Triangle: [2346, 2354, 2355] +Triangle: [2356, 2344, 2345] +Triangle: [1995, 2355, 2354] +Triangle: [1963, 2356, 2355] +Triangle: [2344, 2356, 2357] +Triangle: [2342, 2343, 2357] +Triangle: [2341, 2342, 2358] +Triangle: [2340, 2341, 2359] +Triangle: [2339, 2340, 2360] +Triangle: [2357, 2356, 1963] +Triangle: [2358, 2357, 1962] +Triangle: [2359, 2358, 2196] +Triangle: [2360, 2359, 1961] +Triangle: [2361, 2360, 1960] +Triangle: [2363, 2338, 2339] +Triangle: [2363, 2361, 1959] +Triangle: [2362, 2338, 2363] +Triangle: [2364, 2306, 2363] +Triangle: [1996, 2365, 2364] +Triangle: [2307, 2306, 2364] +Triangle: [2195, 2307, 2365] +Triangle: [2366, 2365, 1996] +Triangle: [1997, 1943, 2308] +Triangle: [2362, 2306, 1125] +Triangle: [1186, 2338, 2362] +Triangle: [1934, 2338, 1186] +Triangle: [1935, 2339, 2338] +Triangle: [1936, 2340, 2339] +Triangle: [2341, 2340, 1936] +Triangle: [1938, 2342, 2341] +Triangle: [1939, 2343, 2342] +Triangle: [2367, 2343, 1939] +Triangle: [2367, 2351, 2344] +Triangle: [2368, 2367, 1942] +Triangle: [2369, 2351, 2367] +Triangle: [2350, 2351, 2369] +Triangle: [2349, 2346, 2371] +Triangle: [1009, 2349, 2372] +Triangle: [2350, 2370, 2372] +Triangle: [2368, 1941, 1940] +Triangle: [742, 923, 2373] +Triangle: [2369, 2368, 2373] +Triangle: [923, 1105, 2370] +Triangle: [2372, 2370, 1105] +Triangle: [2381, 2386, 1955] +Triangle: [1951, 1952, 2387] +Triangle: [2374, 2388, 2196] +Triangle: [1998, 2383, 2375] +Triangle: [1947, 2378, 2377] +Triangle: [2379, 2376, 2001] +Triangle: [2384, 2387, 1952] +Triangle: [2386, 2380, 1954] +Triangle: [1949, 2385, 2378] +Triangle: [2376, 2382, 1945] +Triangle: [1950, 2374, 2385] +Triangle: [2382, 2381, 1946] +Triangle: [2380, 2384, 1953] +Triangle: [1948, 2377, 2383] +Triangle: [1999, 2375, 2379] +Triangle: [1338, 2389, 2390] +Triangle: [1336, 2393, 2394] +Triangle: [1331, 1332, 2396] +Triangle: [1332, 1333, 2395] +Triangle: [1339, 1328, 2400] +Triangle: [1333, 1334, 2394] +Triangle: [1338, 1339, 2401] +Triangle: [1330, 1331, 2397] +Triangle: [1335, 2391, 2392] +Triangle: [1330, 2398, 2399] +Triangle: [1337, 2392, 2393] +Triangle: [1328, 1327, 2399] +Triangle: [1329, 2390, 2391] +Triangle: [2407, 2460, 1364] +Triangle: [2406, 2407, 1358] +Triangle: [2458, 2414, 1365] +Triangle: [1353, 2402, 2459] +Triangle: [2414, 2409, 1360] +Triangle: [2460, 2462, 1363] +Triangle: [1355, 2404, 2411] +Triangle: [1363, 2462, 2463] +Triangle: [1362, 2411, 2408] +Triangle: [1361, 2463, 2405] +Triangle: [1354, 2403, 2404] +Triangle: [2409, 2403, 1354] +Triangle: [2408, 2402, 1353] +Triangle: [2427, 2421, 2449] +Triangle: [2425, 2419, 2444] +Triangle: [2419, 2426, 2452] +Triangle: [2426, 2427, 2453] +Triangle: [2449, 2421, 2423] +Triangle: [2446, 2423, 2422] +Triangle: [2422, 2416, 2441] +Triangle: [2450, 2424, 2425] +Triangle: [2448, 2420, 2418] +Triangle: [2415, 2420, 2448] +Triangle: [2443, 2418, 2417] +Triangle: [2442, 2417, 2424] +Triangle: [2416, 2415, 2447] +Triangle: [2428, 2435, 1340] +Triangle: [1343, 2429, 2436] +Triangle: [1342, 2436, 2437] +Triangle: [2464, 2454, 1345] +Triangle: [1347, 2431, 2428] +Triangle: [2465, 2464, 1346] +Triangle: [1344, 2437, 2431] +Triangle: [2466, 2465, 1348] +Triangle: [2434, 2429, 1343] +Triangle: [2435, 2456, 1351] +Triangle: [2454, 2434, 1350] +Triangle: [1351, 2456, 2440] +Triangle: [1352, 2440, 2466] +Triangle: [1308, 2441, 2447] +Triangle: [1303, 2442, 2450] +Triangle: [1309, 2443, 2442] +Triangle: [2447, 2448, 1311] +Triangle: [2448, 2443, 1309] +Triangle: [1312, 2450, 2451] +Triangle: [2445, 2441, 1308] +Triangle: [2446, 2445, 1307] +Triangle: [2449, 2446, 1306] +Triangle: [1301, 2452, 2453] +Triangle: [1302, 2444, 2452] +Triangle: [1313, 2451, 2444] +Triangle: [2453, 2449, 1305] +Triangle: [2455, 2454, 2438] +Triangle: [2439, 2456, 2457] +Triangle: [2405, 2458, 2455] +Triangle: [2457, 2459, 2406] +Triangle: [2461, 2413, 2460] +Triangle: [2459, 2461, 2407] +Triangle: [2460, 2413, 2412] +Triangle: [2462, 2412, 2410] +Triangle: [2463, 2410, 2458] +Triangle: [2454, 2464, 2430] +Triangle: [2464, 2465, 2432] +Triangle: [2465, 2466, 2433] +Triangle: [2440, 2456, 2439] +Triangle: [2433, 2466, 2440] +Triangle: [2515, 2516, 2514] +Triangle: [2511, 2810, 2809] +Triangle: [2559, 2539, 2538] +Triangle: [2560, 2537, 2536] +Triangle: [2566, 2535, 2541] +Triangle: [2559, 2562, 2540] +Triangle: [2566, 2565, 2536] +Triangle: [2560, 2564, 2538] +Triangle: [2563, 2542, 2540] +Triangle: [2561, 2541, 2542] +Triangle: [2543, 2537, 2538] +Triangle: [2533, 2548, 2551] +Triangle: [2534, 2551, 2550] +Triangle: [2536, 2537, 2543] +Triangle: [2542, 2543, 2539] +Triangle: [2541, 2535, 2543] +Triangle: [2530, 2545, 2546] +Triangle: [2470, 2528, 2547] +Triangle: [2532, 2550, 2544] +Triangle: [2549, 2548, 2533] +Triangle: [2528, 2529, 2546] +Triangle: [2531, 2544, 2545] +Triangle: [2521, 2522, 2529] +Triangle: [2523, 2530, 2529] +Triangle: [2524, 2531, 2530] +Triangle: [2525, 2532, 2531] +Triangle: [2525, 2527, 2534] +Triangle: [2526, 2533, 2534] +Triangle: [2526, 2519, 2470] +Triangle: [2521, 2528, 2470] +Triangle: [2522, 2521, 2552] +Triangle: [2524, 2555, 2556] +Triangle: [2522, 2553, 2554] +Triangle: [2527, 2525, 2556] +Triangle: [2527, 2558, 2557] +Triangle: [2524, 2523, 2554] +Triangle: [2519, 2526, 2557] +Triangle: [2552, 2521, 2519] +Triangle: [2548, 2561, 2563] +Triangle: [2551, 2563, 2562] +Triangle: [2546, 2545, 2564] +Triangle: [2549, 2547, 2565] +Triangle: [2544, 2550, 2562] +Triangle: [2549, 2566, 2561] +Triangle: [2547, 2546, 2560] +Triangle: [2545, 2544, 2559] +Triangle: [2567, 2520, 2517] +Triangle: [2569, 2552, 2517] +Triangle: [2552, 2569, 2571] +Triangle: [2553, 2571, 2572] +Triangle: [2554, 2572, 2574] +Triangle: [2555, 2574, 2575] +Triangle: [2558, 2556, 2575] +Triangle: [2567, 2557, 2558] +Triangle: [2520, 2518, 2585] +Triangle: [2494, 2518, 2520] +Triangle: [2567, 2576, 2590] +Triangle: [2576, 2575, 2589] +Triangle: [2574, 2588, 2589] +Triangle: [2572, 2587, 2588] +Triangle: [2586, 2587, 2572] +Triangle: [2569, 2585, 2586] +Triangle: [2568, 2570, 2586] +Triangle: [2480, 2514, 2570] +Triangle: [2586, 2570, 2573] +Triangle: [2516, 2573, 2570] +Triangle: [2581, 2597, 2598] +Triangle: [2597, 2599, 2600] +Triangle: [2646, 2626, 2625] +Triangle: [2647, 2624, 2623] +Triangle: [2653, 2622, 2628] +Triangle: [2646, 2649, 2627] +Triangle: [2653, 2652, 2623] +Triangle: [2647, 2651, 2625] +Triangle: [2650, 2629, 2627] +Triangle: [2648, 2628, 2629] +Triangle: [2630, 2624, 2625] +Triangle: [2620, 2635, 2638] +Triangle: [2621, 2638, 2637] +Triangle: [2623, 2624, 2630] +Triangle: [2629, 2630, 2626] +Triangle: [2628, 2622, 2630] +Triangle: [2617, 2632, 2633] +Triangle: [2604, 2615, 2634] +Triangle: [2618, 2619, 2637] +Triangle: [2604, 2636, 2635] +Triangle: [2615, 2616, 2633] +Triangle: [2618, 2631, 2632] +Triangle: [2609, 2616, 2615] +Triangle: [2610, 2617, 2616] +Triangle: [2611, 2618, 2617] +Triangle: [2612, 2619, 2618] +Triangle: [2612, 2614, 2621] +Triangle: [2614, 2613, 2620] +Triangle: [2613, 2606, 2604] +Triangle: [2608, 2615, 2604] +Triangle: [2608, 2639, 2640] +Triangle: [2612, 2611, 2642] +Triangle: [2609, 2640, 2641] +Triangle: [2614, 2612, 2643] +Triangle: [2613, 2614, 2645] +Triangle: [2611, 2610, 2641] +Triangle: [2606, 2613, 2644] +Triangle: [2639, 2608, 2606] +Triangle: [2635, 2648, 2650] +Triangle: [2638, 2650, 2649] +Triangle: [2633, 2632, 2651] +Triangle: [2636, 2634, 2652] +Triangle: [2631, 2637, 2649] +Triangle: [2636, 2653, 2648] +Triangle: [2634, 2633, 2647] +Triangle: [2632, 2631, 2646] +Triangle: [2708, 2800, 2806] +Triangle: [2793, 2639, 2605] +Triangle: [2655, 2793, 2791] +Triangle: [2798, 2793, 2655] +Triangle: [2794, 2798, 2583] +Triangle: [2794, 2657, 2658] +Triangle: [2796, 2795, 2658] +Triangle: [2792, 2644, 2645] +Triangle: [2700, 2680, 2679] +Triangle: [2701, 2678, 2677] +Triangle: [2707, 2676, 2682] +Triangle: [2700, 2703, 2681] +Triangle: [2707, 2706, 2677] +Triangle: [2701, 2705, 2679] +Triangle: [2704, 2683, 2681] +Triangle: [2702, 2682, 2683] +Triangle: [2684, 2678, 2679] +Triangle: [2675, 2674, 2689] +Triangle: [2675, 2692, 2691] +Triangle: [2676, 2677, 2678] +Triangle: [2683, 2684, 2680] +Triangle: [2682, 2676, 2684] +Triangle: [2671, 2686, 2687] +Triangle: [2473, 2669, 2688] +Triangle: [2673, 2691, 2685] +Triangle: [2690, 2689, 2674] +Triangle: [2670, 2687, 2688] +Triangle: [2672, 2685, 2686] +Triangle: [2663, 2670, 2669] +Triangle: [2664, 2671, 2670] +Triangle: [2665, 2672, 2671] +Triangle: [2665, 2666, 2673] +Triangle: [2666, 2668, 2675] +Triangle: [2668, 2667, 2674] +Triangle: [2667, 2468, 2473] +Triangle: [2662, 2669, 2473] +Triangle: [2662, 2693, 2694] +Triangle: [2666, 2665, 2696] +Triangle: [2663, 2694, 2695] +Triangle: [2668, 2666, 2697] +Triangle: [2667, 2668, 2699] +Triangle: [2665, 2664, 2695] +Triangle: [2468, 2667, 2698] +Triangle: [2693, 2662, 2468] +Triangle: [2689, 2702, 2704] +Triangle: [2692, 2704, 2703] +Triangle: [2686, 2705, 2701] +Triangle: [2690, 2688, 2706] +Triangle: [2685, 2691, 2703] +Triangle: [2690, 2707, 2702] +Triangle: [2688, 2687, 2701] +Triangle: [2685, 2700, 2705] +Triangle: [2768, 2767, 2602] +Triangle: [2801, 2693, 2471] +Triangle: [2709, 2801, 2799] +Triangle: [2801, 2709, 2710] +Triangle: [2802, 2710, 2711] +Triangle: [2803, 2711, 2712] +Triangle: [2805, 2804, 2712] +Triangle: [2800, 2698, 2699] +Triangle: [2756, 2736, 2735] +Triangle: [2757, 2734, 2733] +Triangle: [2763, 2732, 2738] +Triangle: [2756, 2759, 2737] +Triangle: [2763, 2762, 2733] +Triangle: [2757, 2761, 2735] +Triangle: [2760, 2739, 2737] +Triangle: [2758, 2738, 2739] +Triangle: [2734, 2735, 2736] +Triangle: [2730, 2745, 2748] +Triangle: [2729, 2731, 2748] +Triangle: [2733, 2734, 2740] +Triangle: [2739, 2740, 2736] +Triangle: [2739, 2738, 2732] +Triangle: [2727, 2742, 2743] +Triangle: [2725, 2744, 2746] +Triangle: [2729, 2747, 2741] +Triangle: [2717, 2746, 2745] +Triangle: [2726, 2743, 2744] +Triangle: [2728, 2741, 2742] +Triangle: [2719, 2726, 2725] +Triangle: [2720, 2727, 2726] +Triangle: [2721, 2728, 2727] +Triangle: [2721, 2722, 2729] +Triangle: [2722, 2724, 2731] +Triangle: [2724, 2723, 2730] +Triangle: [2723, 2715, 2717] +Triangle: [2718, 2725, 2717] +Triangle: [2718, 2749, 2750] +Triangle: [2722, 2721, 2752] +Triangle: [2719, 2750, 2751] +Triangle: [2724, 2722, 2753] +Triangle: [2723, 2724, 2755] +Triangle: [2720, 2751, 2752] +Triangle: [2715, 2723, 2754] +Triangle: [2749, 2718, 2715] +Triangle: [2745, 2758, 2760] +Triangle: [2747, 2748, 2760] +Triangle: [2743, 2742, 2761] +Triangle: [2746, 2744, 2762] +Triangle: [2741, 2747, 2759] +Triangle: [2746, 2763, 2758] +Triangle: [2743, 2757, 2762] +Triangle: [2742, 2741, 2756] +Triangle: [2809, 2749, 2716] +Triangle: [2495, 2497, 2807] +Triangle: [2496, 2809, 2807] +Triangle: [2812, 2820, 2817] +Triangle: [2817, 2816, 2814] +Triangle: [2754, 2755, 2814] +Triangle: [2582, 2655, 2580] +Triangle: [2582, 2598, 2583] +Triangle: [2657, 2583, 2598] +Triangle: [2494, 2590, 2597] +Triangle: [2578, 2581, 2582] +Triangle: [2581, 2578, 2577] +Triangle: [2577, 2584, 2518] +Triangle: [2518, 2584, 2568] +Triangle: [2580, 2655, 2607] +Triangle: [2656, 2764, 2607] +Triangle: [2481, 2480, 2568] +Triangle: [2584, 2577, 2479] +Triangle: [2472, 2469, 2483] +Triangle: [2480, 2481, 2477] +Triangle: [2504, 2502, 2578] +Triangle: [2475, 2482, 2505] +Triangle: [2502, 2479, 2577] +Triangle: [2503, 2504, 2483] +Triangle: [2504, 2579, 2580] +Triangle: [2503, 2501, 2502] +Triangle: [2483, 2580, 2764] +Triangle: [2488, 2487, 2486] +Triangle: [2477, 2481, 2479] +Triangle: [2484, 2764, 2656] +Triangle: [2601, 2599, 2597] +Triangle: [2589, 2594, 2601] +Triangle: [2588, 2591, 2594] +Triangle: [2591, 2588, 2587] +Triangle: [2599, 2771, 2772] +Triangle: [2772, 2767, 2657] +Triangle: [2601, 2602, 2771] +Triangle: [2771, 2602, 2767] +Triangle: [2776, 2778, 2777] +Triangle: [2773, 2779, 2780] +Triangle: [2774, 2780, 2777] +Triangle: [2659, 2775, 2779] +Triangle: [2779, 2775, 2777] +Triangle: [2784, 2786, 2785] +Triangle: [2785, 2786, 2782] +Triangle: [2815, 2713, 2785] +Triangle: [2496, 2491, 2512] +Triangle: [2485, 2508, 2507] +Triangle: [2482, 2656, 2765] +Triangle: [2505, 2765, 2766] +Triangle: [2796, 2659, 2660] +Triangle: [2792, 2654, 2607] +Triangle: [2806, 2805, 2713] +Triangle: [2708, 2661, 2799] +Triangle: [2816, 2495, 2808] +Triangle: [2811, 2843, 2820] +Triangle: [2513, 2514, 2480] +Triangle: [2509, 2510, 2487] +Triangle: [2479, 2502, 2501] +Triangle: [2485, 2489, 2490] +Triangle: [2511, 2512, 2510] +Triangle: [2506, 2505, 2507] +Triangle: [2497, 2492, 2491] +Triangle: [2492, 2497, 2495] +Triangle: [2816, 2818, 2493] +Triangle: [2788, 2787, 2490] +Triangle: [2507, 2766, 2788] +Triangle: [2661, 2787, 2788] +Triangle: [2766, 2823, 2709] +Triangle: [2789, 2488, 2490] +Triangle: [2708, 2789, 2787] +Triangle: [2488, 2789, 2790] +Triangle: [2714, 2790, 2789] +Triangle: [2644, 2792, 2791] +Triangle: [2640, 2639, 2793] +Triangle: [2641, 2640, 2798] +Triangle: [2641, 2794, 2795] +Triangle: [2643, 2642, 2795] +Triangle: [2645, 2643, 2796] +Triangle: [2698, 2800, 2799] +Triangle: [2694, 2693, 2801] +Triangle: [2694, 2802, 2803] +Triangle: [2696, 2695, 2803] +Triangle: [2697, 2696, 2804] +Triangle: [2697, 2805, 2806] +Triangle: [2808, 2807, 2716] +Triangle: [2749, 2809, 2810] +Triangle: [2750, 2810, 2811] +Triangle: [2751, 2811, 2812] +Triangle: [2753, 2752, 2812] +Triangle: [2755, 2753, 2813] +Triangle: [2781, 2509, 2790] +Triangle: [2815, 2790, 2714] +Triangle: [2781, 2782, 2511] +Triangle: [2817, 2819, 2818] +Triangle: [2819, 2817, 2820] +Triangle: [2770, 2776, 2775] +Triangle: [2654, 2792, 2797] +Triangle: [2769, 2775, 2659] +Triangle: [2657, 2767, 2769] +Triangle: [2770, 2769, 2767] +Triangle: [2826, 2777, 2778] +Triangle: [2822, 2823, 2766] +Triangle: [2825, 2823, 2822] +Triangle: [2656, 2654, 2822] +Triangle: [2774, 2825, 2824] +Triangle: [2654, 2660, 2824] +Triangle: [2773, 2824, 2660] +Triangle: [2710, 2825, 2774] +Triangle: [2823, 2825, 2710] +Triangle: [2712, 2711, 2777] +Triangle: [2783, 2785, 2826] +Triangle: [2713, 2712, 2826] +Triangle: [2593, 2592, 2516] +Triangle: [2810, 2782, 2786] +Triangle: [2836, 2469, 2472] +Triangle: [2830, 2829, 2476] +Triangle: [2831, 2503, 2469] +Triangle: [2498, 2472, 2475] +Triangle: [2831, 2830, 2501] +Triangle: [2477, 2476, 2829] +Triangle: [2508, 2833, 2832] +Triangle: [2838, 2485, 2486] +Triangle: [2485, 2838, 2833] +Triangle: [2832, 2837, 2475] +Triangle: [2512, 2835, 2834] +Triangle: [2840, 2491, 2492] +Triangle: [2491, 2840, 2835] +Triangle: [2834, 2839, 2487] +Triangle: [2499, 2486, 2487] +Triangle: [2500, 2492, 2493] +Triangle: [2818, 2845, 2844] +Triangle: [2828, 2841, 2513] +Triangle: [2835, 2840, 2839] +Triangle: [2838, 2837, 2832] +Triangle: [2836, 2829, 2830] +Triangle: [2513, 2841, 2842] +Triangle: [2819, 2846, 2845] +Triangle: [2592, 2591, 2573] +Triangle: [2596, 2595, 2592] +Triangle: [2595, 2594, 2591] +Triangle: [2603, 2602, 2595] +Triangle: [2602, 2601, 2594] +Triangle: [2811, 2786, 2784] +Triangle: [2482, 2475, 2472] +Triangle: [2821, 2847, 2846] +Triangle: [2868, 2866, 2596] +Triangle: [2852, 2851, 2853] +Triangle: [2, 8, 2850] +Triangle: [10, 2851, 2850] +Triangle: [9, 2853, 2851] +Triangle: [2829, 2836, 2856] +Triangle: [2853, 9, 7] +Triangle: [2858, 2854, 2853] +Triangle: [2859, 2858, 2857] +Triangle: [2862, 2859, 2860] +Triangle: [2863, 2862, 2861] +Triangle: [2863, 2864, 3018] +Triangle: [2865, 2866, 2868] +Triangle: [2868, 2593, 2515] +Triangle: [2867, 2868, 2842] +Triangle: [2870, 2869, 2842] +Triangle: [2841, 2828, 2874] +Triangle: [2875, 2871, 2870] +Triangle: [2891, 2876, 2872] +Triangle: [2872, 2876, 2877] +Triangle: [2854, 2879, 2878] +Triangle: [2894, 2878, 2879] +Triangle: [2474, 2881, 2874] +Triangle: [2829, 2855, 2881] +Triangle: [2882, 2856, 2836] +Triangle: [2837, 2883, 2882] +Triangle: [2838, 2884, 2883] +Triangle: [2499, 2839, 2886] +Triangle: [2885, 2884, 2838] +Triangle: [2840, 2887, 2886] +Triangle: [2500, 2888, 2887] +Triangle: [2478, 2477, 2474] +Triangle: [2871, 2875, 2891] +Triangle: [2875, 2874, 2848] +Triangle: [2889, 2876, 2891] +Triangle: [2877, 2876, 2894] +Triangle: [2889, 2893, 2894] +Triangle: [2881, 2892, 2848] +Triangle: [2889, 2848, 2892] +Triangle: [2855, 2896, 2892] +Triangle: [2892, 2896, 2898] +Triangle: [2878, 2894, 2893] +Triangle: [2852, 2878, 2898] +Triangle: [2899, 2850, 2851] +Triangle: [2897, 2899, 2898] +Triangle: [2899, 2897, 2849] +Triangle: [2856, 2882, 2883] +Triangle: [2884, 2901, 2900] +Triangle: [2900, 2896, 2855] +Triangle: [2849, 2897, 2903] +Triangle: [2902, 2903, 2905] +Triangle: [2897, 2896, 2900] +Triangle: [2901, 2905, 2903] +Triangle: [2902, 11, 2] +Triangle: [11, 2902, 2904] +Triangle: [2885, 2886, 2887] +Triangle: [2885, 2908, 2901] +Triangle: [2905, 2901, 2908] +Triangle: [2910, 2904, 2905] +Triangle: [2888, 2906, 2908] +Triangle: [2909, 2908, 2906] +Triangle: [2909, 2907, 2911] +Triangle: [12, 2904, 2910] +Triangle: [0, 1, 2910] +Triangle: [2844, 2916, 2888] +Triangle: [2888, 2916, 2917] +Triangle: [2906, 2917, 2918] +Triangle: [2907, 2918, 2919] +Triangle: [2911, 2919, 2920] +Triangle: [3, 0, 2920] +Triangle: [2922, 4, 3] +Triangle: [2845, 2915, 2916] +Triangle: [2917, 2916, 2915] +Triangle: [2918, 2917, 2914] +Triangle: [2919, 2918, 2913] +Triangle: [2920, 2919, 2912] +Triangle: [2912, 2923, 2922] +Triangle: [2924, 2923, 2912] +Triangle: [2925, 2924, 2913] +Triangle: [2915, 2926, 2925] +Triangle: [2846, 2926, 2915] +Triangle: [2929, 4, 2922] +Triangle: [2924, 2928, 2929] +Triangle: [2925, 2927, 2928] +Triangle: [2926, 2930, 2927] +Triangle: [2930, 2926, 2846] +Triangle: [4, 2929, 2931] +Triangle: [5, 2931, 2932] +Triangle: [6, 2932, 2857] +Triangle: [2931, 2933, 2934] +Triangle: [2935, 2936, 2934] +Triangle: [2932, 2934, 2860] +Triangle: [2860, 2934, 2936] +Triangle: [2928, 2933, 2931] +Triangle: [2927, 2935, 2933] +Triangle: [2877, 2938, 2937] +Triangle: [2939, 2938, 2877] +Triangle: [2880, 2939, 2895] +Triangle: [2858, 2880, 2879] +Triangle: [2940, 2880, 2858] +Triangle: [2941, 2940, 2859] +Triangle: [2939, 2880, 2940] +Triangle: [2941, 2943, 2942] +Triangle: [2938, 2939, 2942] +Triangle: [2944, 2937, 2938] +Triangle: [2978, 2965, 2964] +Triangle: [2984, 2979, 2963] +Triangle: [2985, 2961, 2967] +Triangle: [2978, 2981, 2966] +Triangle: [2985, 2984, 2962] +Triangle: [2979, 2983, 2964] +Triangle: [2982, 2968, 2966] +Triangle: [2980, 2967, 2968] +Triangle: [2969, 2963, 2964] +Triangle: [2959, 2974, 2977] +Triangle: [2960, 2977, 2976] +Triangle: [2962, 2963, 2969] +Triangle: [2966, 2968, 2969] +Triangle: [2967, 2961, 2969] +Triangle: [2956, 2971, 2972] +Triangle: [2954, 2973, 2975] +Triangle: [2958, 2976, 2970] +Triangle: [2952, 2975, 2974] +Triangle: [2954, 2955, 2972] +Triangle: [2957, 2970, 2971] +Triangle: [2986, 2987, 2955] +Triangle: [2988, 2956, 2955] +Triangle: [2989, 2957, 2956] +Triangle: [2990, 2958, 2957] +Triangle: [2990, 2991, 2960] +Triangle: [2992, 2959, 2960] +Triangle: [2992, 2993, 2952] +Triangle: [2986, 2954, 2952] +Triangle: [2974, 2980, 2982] +Triangle: [2977, 2982, 2981] +Triangle: [2972, 2971, 2983] +Triangle: [2975, 2973, 2984] +Triangle: [2970, 2976, 2981] +Triangle: [2975, 2985, 2980] +Triangle: [2973, 2972, 2979] +Triangle: [2971, 2970, 2978] +Triangle: [2950, 2986, 2993] +Triangle: [2945, 2951, 2993] +Triangle: [2945, 2992, 2991] +Triangle: [2946, 2953, 2991] +Triangle: [2946, 2990, 2989] +Triangle: [2947, 2989, 2988] +Triangle: [2948, 2988, 2987] +Triangle: [2950, 2949, 2987] +Triangle: [2946, 2995, 3001] +Triangle: [2951, 2945, 2994] +Triangle: [2948, 2949, 2998] +Triangle: [2947, 2996, 2995] +Triangle: [2953, 3001, 2994] +Triangle: [2951, 3000, 2999] +Triangle: [2949, 2950, 2999] +Triangle: [2947, 2948, 2997] +Triangle: [2869, 3009, 3003] +Triangle: [3010, 3009, 2869] +Triangle: [2871, 3011, 3010] +Triangle: [3002, 3009, 3010] +Triangle: [2890, 3012, 3011] +Triangle: [3008, 3002, 3011] +Triangle: [2872, 2873, 3012] +Triangle: [3013, 3007, 3008] +Triangle: [3013, 3012, 2873] +Triangle: [2867, 3003, 3017] +Triangle: [3019, 3018, 2866] +Triangle: [3004, 3016, 3017] +Triangle: [3004, 3005, 3015] +Triangle: [3005, 3006, 3014] +Triangle: [3006, 3007, 3013] +Triangle: [3014, 3013, 2937] +Triangle: [3015, 3014, 2944] +Triangle: [3020, 2944, 2943] +Triangle: [3009, 3001, 2995] +Triangle: [3002, 2994, 3001] +Triangle: [3008, 3000, 2994] +Triangle: [3007, 2999, 3000] +Triangle: [3007, 3006, 2998] +Triangle: [3006, 3005, 2997] +Triangle: [3004, 2996, 2997] +Triangle: [3003, 2995, 2996] +Triangle: [3017, 3016, 3019] +Triangle: [3016, 3015, 3020] +Triangle: [3021, 2941, 2862] +Triangle: [3019, 3016, 3021] +Triangle: [2936, 3022, 2864] +Triangle: [2596, 2866, 3023] +Triangle: [3024, 3023, 2866] +Triangle: [3018, 2864, 3022] +Triangle: [3026, 3025, 3027] +Triangle: [3025, 3026, 3024] +Triangle: [2768, 3028, 3027] +Triangle: [3023, 3024, 3026] +Triangle: [2603, 3023, 3028] +Triangle: [2776, 2770, 3027] +Triangle: [2776, 3029, 3031] +Triangle: [3031, 3030, 2827] +Triangle: [3025, 3032, 3029] +Triangle: [3034, 3032, 3025] +Triangle: [3034, 3022, 3035] +Triangle: [3035, 3022, 2936] +Triangle: [2930, 3035, 2935] +Triangle: [3036, 3033, 3035] +Triangle: [3036, 2930, 2847] +Triangle: [2784, 3039, 3040] +Triangle: [2783, 2827, 3030] +Triangle: [2783, 3038, 3039] +Triangle: [2843, 3040, 2821] +Triangle: [2821, 3040, 3037] +Triangle: [3029, 3038, 3030] +Triangle: [3041, 3032, 3034] +Triangle: [3033, 3036, 3037] +Triangle: [3032, 3041, 3038] +Triangle: [3038, 3041, 3042] +Triangle: [3042, 3037, 3040] +Triangle: [3089, 3091, 3090] +Triangle: [3383, 3384, 3086] +Triangle: [3113, 3114, 3134] +Triangle: [3111, 3112, 3135] +Triangle: [3141, 3136, 3116] +Triangle: [3134, 3114, 3115] +Triangle: [3141, 3110, 3111] +Triangle: [3135, 3112, 3113] +Triangle: [3115, 3117, 3138] +Triangle: [3117, 3116, 3136] +Triangle: [3118, 3114, 3113] +Triangle: [3126, 3123, 3108] +Triangle: [3125, 3126, 3109] +Triangle: [3118, 3112, 3111] +Triangle: [3114, 3118, 3117] +Triangle: [3118, 3110, 3116] +Triangle: [3121, 3120, 3105] +Triangle: [3045, 3124, 3122] +Triangle: [3119, 3125, 3107] +Triangle: [3108, 3123, 3124] +Triangle: [3103, 3122, 3121] +Triangle: [3120, 3119, 3106] +Triangle: [3096, 3103, 3104] +Triangle: [3104, 3105, 3098] +Triangle: [3105, 3106, 3099] +Triangle: [3106, 3107, 3100] +Triangle: [3100, 3107, 3109] +Triangle: [3109, 3108, 3101] +Triangle: [3101, 3108, 3045] +Triangle: [3045, 3103, 3096] +Triangle: [3097, 3128, 3127] +Triangle: [3131, 3130, 3099] +Triangle: [3129, 3128, 3097] +Triangle: [3102, 3133, 3131] +Triangle: [3132, 3133, 3102] +Triangle: [3099, 3130, 3129] +Triangle: [3094, 3092, 3132] +Triangle: [3094, 3096, 3127] +Triangle: [3138, 3136, 3123] +Triangle: [3137, 3138, 3126] +Triangle: [3121, 3135, 3139] +Triangle: [3124, 3141, 3140] +Triangle: [3119, 3134, 3137] +Triangle: [3124, 3123, 3136] +Triangle: [3122, 3140, 3135] +Triangle: [3120, 3139, 3134] +Triangle: [3092, 3095, 3142] +Triangle: [3092, 3127, 3144] +Triangle: [3146, 3144, 3127] +Triangle: [3147, 3146, 3128] +Triangle: [3149, 3147, 3129] +Triangle: [3150, 3149, 3130] +Triangle: [3133, 3151, 3150] +Triangle: [3142, 3151, 3133] +Triangle: [3095, 3144, 3160] +Triangle: [3095, 3093, 3069] +Triangle: [3165, 3151, 3142] +Triangle: [3151, 3165, 3164] +Triangle: [3164, 3163, 3149] +Triangle: [3163, 3162, 3147] +Triangle: [3161, 3146, 3147] +Triangle: [3144, 3146, 3161] +Triangle: [3161, 3145, 3143] +Triangle: [3145, 3089, 3055] +Triangle: [3148, 3145, 3161] +Triangle: [3145, 3148, 3091] +Triangle: [3156, 3157, 3173] +Triangle: [3172, 3173, 3175] +Triangle: [3200, 3201, 3221] +Triangle: [3198, 3199, 3222] +Triangle: [3228, 3223, 3203] +Triangle: [3221, 3201, 3202] +Triangle: [3228, 3197, 3198] +Triangle: [3222, 3199, 3200] +Triangle: [3202, 3204, 3225] +Triangle: [3204, 3203, 3223] +Triangle: [3205, 3201, 3200] +Triangle: [3213, 3210, 3195] +Triangle: [3212, 3213, 3196] +Triangle: [3205, 3199, 3198] +Triangle: [3201, 3205, 3204] +Triangle: [3205, 3197, 3203] +Triangle: [3208, 3207, 3192] +Triangle: [3179, 3211, 3209] +Triangle: [3193, 3206, 3212] +Triangle: [3179, 3195, 3210] +Triangle: [3190, 3209, 3208] +Triangle: [3207, 3206, 3193] +Triangle: [3190, 3191, 3184] +Triangle: [3191, 3192, 3185] +Triangle: [3192, 3193, 3186] +Triangle: [3193, 3194, 3187] +Triangle: [3187, 3194, 3196] +Triangle: [3189, 3196, 3195] +Triangle: [3188, 3195, 3179] +Triangle: [3179, 3190, 3183] +Triangle: [3215, 3214, 3183] +Triangle: [3187, 3218, 3217] +Triangle: [3216, 3215, 3184] +Triangle: [3189, 3220, 3218] +Triangle: [3188, 3219, 3220] +Triangle: [3186, 3217, 3216] +Triangle: [3181, 3180, 3219] +Triangle: [3181, 3183, 3214] +Triangle: [3225, 3223, 3210] +Triangle: [3224, 3225, 3213] +Triangle: [3208, 3222, 3226] +Triangle: [3211, 3228, 3227] +Triangle: [3206, 3221, 3224] +Triangle: [3211, 3210, 3223] +Triangle: [3209, 3227, 3222] +Triangle: [3207, 3226, 3221] +Triangle: [3283, 3289, 3380] +Triangle: [3180, 3214, 3367] +Triangle: [3230, 3182, 3365] +Triangle: [3372, 3158, 3230] +Triangle: [3368, 3232, 3158] +Triangle: [3233, 3232, 3368] +Triangle: [3370, 3234, 3233] +Triangle: [3366, 3371, 3220] +Triangle: [3254, 3255, 3275] +Triangle: [3252, 3253, 3276] +Triangle: [3282, 3277, 3257] +Triangle: [3275, 3255, 3256] +Triangle: [3282, 3251, 3252] +Triangle: [3276, 3253, 3254] +Triangle: [3256, 3258, 3279] +Triangle: [3258, 3257, 3277] +Triangle: [3259, 3255, 3254] +Triangle: [3250, 3267, 3264] +Triangle: [3266, 3267, 3250] +Triangle: [3251, 3259, 3253] +Triangle: [3255, 3259, 3258] +Triangle: [3259, 3251, 3257] +Triangle: [3262, 3261, 3246] +Triangle: [3048, 3265, 3263] +Triangle: [3260, 3266, 3248] +Triangle: [3249, 3264, 3265] +Triangle: [3263, 3262, 3245] +Triangle: [3261, 3260, 3247] +Triangle: [3244, 3245, 3238] +Triangle: [3245, 3246, 3239] +Triangle: [3246, 3247, 3240] +Triangle: [3240, 3247, 3248] +Triangle: [3241, 3248, 3250] +Triangle: [3243, 3250, 3249] +Triangle: [3242, 3249, 3048] +Triangle: [3048, 3244, 3237] +Triangle: [3269, 3268, 3237] +Triangle: [3241, 3272, 3271] +Triangle: [3270, 3269, 3238] +Triangle: [3243, 3274, 3272] +Triangle: [3242, 3273, 3274] +Triangle: [3240, 3271, 3270] +Triangle: [3043, 3046, 3273] +Triangle: [3043, 3237, 3268] +Triangle: [3279, 3277, 3264] +Triangle: [3278, 3279, 3267] +Triangle: [3276, 3280, 3261] +Triangle: [3265, 3282, 3281] +Triangle: [3260, 3275, 3278] +Triangle: [3265, 3264, 3277] +Triangle: [3263, 3281, 3276] +Triangle: [3280, 3275, 3260] +Triangle: [3177, 3342, 3343] +Triangle: [3046, 3268, 3375] +Triangle: [3284, 3236, 3373] +Triangle: [3285, 3284, 3375] +Triangle: [3286, 3285, 3376] +Triangle: [3287, 3286, 3377] +Triangle: [3379, 3288, 3287] +Triangle: [3374, 3380, 3274] +Triangle: [3310, 3311, 3331] +Triangle: [3308, 3309, 3332] +Triangle: [3338, 3333, 3313] +Triangle: [3331, 3311, 3312] +Triangle: [3338, 3307, 3308] +Triangle: [3332, 3309, 3310] +Triangle: [3312, 3314, 3335] +Triangle: [3314, 3313, 3333] +Triangle: [3311, 3310, 3309] +Triangle: [3323, 3320, 3305] +Triangle: [3304, 3322, 3323] +Triangle: [3315, 3309, 3308] +Triangle: [3311, 3315, 3314] +Triangle: [3314, 3315, 3307] +Triangle: [3318, 3317, 3302] +Triangle: [3321, 3319, 3300] +Triangle: [3316, 3322, 3304] +Triangle: [3292, 3305, 3320] +Triangle: [3319, 3318, 3301] +Triangle: [3317, 3316, 3303] +Triangle: [3300, 3301, 3294] +Triangle: [3301, 3302, 3295] +Triangle: [3302, 3303, 3296] +Triangle: [3296, 3303, 3304] +Triangle: [3297, 3304, 3306] +Triangle: [3299, 3306, 3305] +Triangle: [3298, 3305, 3292] +Triangle: [3292, 3300, 3293] +Triangle: [3325, 3324, 3293] +Triangle: [3297, 3328, 3327] +Triangle: [3326, 3325, 3294] +Triangle: [3299, 3330, 3328] +Triangle: [3298, 3329, 3330] +Triangle: [3327, 3326, 3295] +Triangle: [3290, 3291, 3329] +Triangle: [3290, 3293, 3324] +Triangle: [3335, 3333, 3320] +Triangle: [3322, 3334, 3335] +Triangle: [3318, 3332, 3336] +Triangle: [3321, 3338, 3337] +Triangle: [3316, 3331, 3334] +Triangle: [3321, 3320, 3333] +Triangle: [3337, 3332, 3318] +Triangle: [3317, 3336, 3331] +Triangle: [3291, 3324, 3383] +Triangle: [3070, 3382, 3381] +Triangle: [3381, 3383, 3071] +Triangle: [3386, 3387, 3391] +Triangle: [3388, 3390, 3391] +Triangle: [3388, 3330, 3329] +Triangle: [3155, 3230, 3157] +Triangle: [3157, 3230, 3158] +Triangle: [3173, 3158, 3232] +Triangle: [3172, 3165, 3069] +Triangle: [3157, 3156, 3153] +Triangle: [3152, 3153, 3156] +Triangle: [3093, 3159, 3152] +Triangle: [3093, 3160, 3143] +Triangle: [3155, 3339, 3182] +Triangle: [3182, 3339, 3231] +Triangle: [3056, 3159, 3143] +Triangle: [3054, 3152, 3159] +Triangle: [3047, 3059, 3058] +Triangle: [3055, 3053, 3052] +Triangle: [3079, 3154, 3153] +Triangle: [3050, 3081, 3080] +Triangle: [3077, 3153, 3152] +Triangle: [3058, 3079, 3078] +Triangle: [3155, 3154, 3079] +Triangle: [3078, 3079, 3077] +Triangle: [3339, 3155, 3058] +Triangle: [3063, 3065, 3061] +Triangle: [3052, 3051, 3054] +Triangle: [3231, 3339, 3059] +Triangle: [3172, 3174, 3176] +Triangle: [3176, 3169, 3164] +Triangle: [3169, 3166, 3163] +Triangle: [3162, 3163, 3166] +Triangle: [3174, 3175, 3346] +Triangle: [3232, 3342, 3346] +Triangle: [3176, 3174, 3345] +Triangle: [3345, 3346, 3342] +Triangle: [3350, 3349, 3351] +Triangle: [3347, 3348, 3354] +Triangle: [3348, 3286, 3351] +Triangle: [3234, 3347, 3353] +Triangle: [3353, 3354, 3351] +Triangle: [3359, 3360, 3358] +Triangle: [3356, 3360, 3359] +Triangle: [3359, 3288, 3389] +Triangle: [3087, 3066, 3071] +Triangle: [3082, 3083, 3060] +Triangle: [3340, 3231, 3057] +Triangle: [3080, 3082, 3341] +Triangle: [3235, 3234, 3370] +Triangle: [3366, 3365, 3182] +Triangle: [3380, 3289, 3288] +Triangle: [3373, 3236, 3283] +Triangle: [3382, 3070, 3390] +Triangle: [3385, 3386, 3394] +Triangle: [3055, 3089, 3088] +Triangle: [3062, 3085, 3084] +Triangle: [3076, 3077, 3054] +Triangle: [3065, 3064, 3060] +Triangle: [3085, 3087, 3086] +Triangle: [3081, 3083, 3082] +Triangle: [3072, 3071, 3066] +Triangle: [3070, 3072, 3067] +Triangle: [3068, 3392, 3390] +Triangle: [3362, 3064, 3065] +Triangle: [3362, 3341, 3082] +Triangle: [3362, 3361, 3236] +Triangle: [3341, 3362, 3284] +Triangle: [3363, 3361, 3065] +Triangle: [3283, 3236, 3361] +Triangle: [3364, 3363, 3063] +Triangle: [3289, 3283, 3363] +Triangle: [3219, 3180, 3365] +Triangle: [3215, 3372, 3367] +Triangle: [3216, 3368, 3372] +Triangle: [3369, 3368, 3216] +Triangle: [3218, 3370, 3369] +Triangle: [3220, 3371, 3370] +Triangle: [3273, 3046, 3373] +Triangle: [3269, 3376, 3375] +Triangle: [3377, 3376, 3269] +Triangle: [3271, 3378, 3377] +Triangle: [3272, 3379, 3378] +Triangle: [3380, 3379, 3272] +Triangle: [3291, 3381, 3382] +Triangle: [3384, 3383, 3324] +Triangle: [3385, 3384, 3325] +Triangle: [3386, 3385, 3326] +Triangle: [3328, 3387, 3386] +Triangle: [3330, 3388, 3387] +Triangle: [3364, 3084, 3355] +Triangle: [3289, 3364, 3389] +Triangle: [3086, 3356, 3355] +Triangle: [3391, 3390, 3392] +Triangle: [3393, 3395, 3394] +Triangle: [3229, 3235, 3371] +Triangle: [3344, 3233, 3234] +Triangle: [3344, 3342, 3232] +Triangle: [3396, 3340, 3341] +Triangle: [3396, 3397, 3399] +Triangle: [3231, 3340, 3396] +Triangle: [3398, 3399, 3348] +Triangle: [3229, 3396, 3398] +Triangle: [3347, 3234, 3235] +Triangle: [3285, 3286, 3348] +Triangle: [3285, 3399, 3397] +Triangle: [3287, 3400, 3351] +Triangle: [3400, 3287, 3288] +Triangle: [3091, 3167, 3168] +Triangle: [3384, 3385, 3360] +Triangle: [3047, 3044, 3409] +Triangle: [3051, 3402, 3403] +Triangle: [3404, 3409, 3044] +Triangle: [3073, 3410, 3050] +Triangle: [3076, 3403, 3404] +Triangle: [3402, 3051, 3052] +Triangle: [3083, 3081, 3405] +Triangle: [3061, 3060, 3411] +Triangle: [3060, 3083, 3406] +Triangle: [3050, 3410, 3405] +Triangle: [3087, 3085, 3407] +Triangle: [3067, 3066, 3413] +Triangle: [3066, 3087, 3408] +Triangle: [3062, 3412, 3407] +Triangle: [3074, 3412, 3062] +Triangle: [3075, 3417, 3068] +Triangle: [3392, 3068, 3417] +Triangle: [3401, 3053, 3088] +Triangle: [3408, 3407, 3412] +Triangle: [3405, 3410, 3411] +Triangle: [3403, 3402, 3409] +Triangle: [3088, 3090, 3415] +Triangle: [3393, 3392, 3418] +Triangle: [3148, 3166, 3167] +Triangle: [3167, 3170, 3171] +Triangle: [3166, 3169, 3170] +Triangle: [3170, 3177, 3178] +Triangle: [3169, 3176, 3177] +Triangle: [3358, 3360, 3385] +Triangle: [3057, 3059, 3047] +Triangle: [3395, 3393, 3419] +Triangle: [3171, 3439, 3441] +Triangle: [3425, 3427, 3426] +Triangle: [3423, 1296, 1290] +Triangle: [1298, 1296, 3423] +Triangle: [1297, 1298, 3424] +Triangle: [3402, 3428, 3429] +Triangle: [1295, 1297, 3426] +Triangle: [3431, 3430, 3426] +Triangle: [3432, 3433, 3430] +Triangle: [3435, 3434, 3433] +Triangle: [3436, 3437, 3434] +Triangle: [3591, 3437, 3436] +Triangle: [3441, 3439, 3438] +Triangle: [3090, 3168, 3441] +Triangle: [3440, 3442, 3415] +Triangle: [3443, 3414, 3415] +Triangle: [3414, 3448, 3447] +Triangle: [3443, 3444, 3448] +Triangle: [3445, 3449, 3464] +Triangle: [3450, 3449, 3445] +Triangle: [3427, 3425, 3451] +Triangle: [3452, 3451, 3467] +Triangle: [3049, 3401, 3447] +Triangle: [3454, 3428, 3402] +Triangle: [3409, 3429, 3455] +Triangle: [3410, 3073, 3455] +Triangle: [3411, 3410, 3456] +Triangle: [3074, 3458, 3459] +Triangle: [3411, 3457, 3458] +Triangle: [3413, 3412, 3459] +Triangle: [3075, 3413, 3460] +Triangle: [3049, 3052, 3053] +Triangle: [3444, 3463, 3464] +Triangle: [3448, 3464, 3421] +Triangle: [3464, 3449, 3462] +Triangle: [3450, 3468, 3467] +Triangle: [3467, 3466, 3462] +Triangle: [3454, 3447, 3421] +Triangle: [3462, 3466, 3465] +Triangle: [3428, 3454, 3465] +Triangle: [3471, 3469, 3465] +Triangle: [3451, 3471, 3466] +Triangle: [3425, 3472, 3471] +Triangle: [3424, 3423, 3472] +Triangle: [3470, 3469, 3471] +Triangle: [3422, 3470, 3472] +Triangle: [3429, 3457, 3456] +Triangle: [3473, 3474, 3457] +Triangle: [3428, 3469, 3473] +Triangle: [3422, 3475, 3476] +Triangle: [3475, 3477, 3478] +Triangle: [3470, 3476, 3473] +Triangle: [3474, 3473, 3476] +Triangle: [1290, 1299, 3475] +Triangle: [1299, 1300, 3477] +Triangle: [3458, 3461, 3460] +Triangle: [3458, 3457, 3474] +Triangle: [3478, 3482, 3481] +Triangle: [3483, 3482, 3478] +Triangle: [3481, 3479, 3461] +Triangle: [3479, 3481, 3482] +Triangle: [3484, 3480, 3482] +Triangle: [3483, 3477, 1300] +Triangle: [3483, 1289, 1288] +Triangle: [3417, 3075, 3461] +Triangle: [3490, 3489, 3461] +Triangle: [3491, 3490, 3479] +Triangle: [3492, 3491, 3480] +Triangle: [3493, 3492, 3484] +Triangle: [3493, 1288, 1291] +Triangle: [3495, 3494, 1291] +Triangle: [3489, 3488, 3418] +Triangle: [3488, 3489, 3490] +Triangle: [3487, 3490, 3491] +Triangle: [3486, 3491, 3492] +Triangle: [3493, 3494, 3485] +Triangle: [3485, 3494, 3495] +Triangle: [3485, 3496, 3497] +Triangle: [3486, 3497, 3498] +Triangle: [3488, 3487, 3498] +Triangle: [3419, 3418, 3488] +Triangle: [3502, 3496, 3495] +Triangle: [3502, 3501, 3497] +Triangle: [3501, 3500, 3498] +Triangle: [3500, 3503, 3499] +Triangle: [3419, 3499, 3503] +Triangle: [1292, 1293, 3504] +Triangle: [1293, 1294, 3505] +Triangle: [1294, 1295, 3430] +Triangle: [3504, 3505, 3507] +Triangle: [3507, 3509, 3508] +Triangle: [3433, 3507, 3505] +Triangle: [3433, 3434, 3509] +Triangle: [3504, 3506, 3501] +Triangle: [3506, 3508, 3500] +Triangle: [3510, 3511, 3450] +Triangle: [3450, 3511, 3512] +Triangle: [3468, 3512, 3453] +Triangle: [3431, 3427, 3452] +Triangle: [3431, 3453, 3513] +Triangle: [3432, 3513, 3514] +Triangle: [3512, 3515, 3513] +Triangle: [3514, 3513, 3515] +Triangle: [3511, 3516, 3515] +Triangle: [3517, 3516, 3511] +Triangle: [3537, 3538, 3551] +Triangle: [3557, 3535, 3536] +Triangle: [3558, 3553, 3540] +Triangle: [3551, 3538, 3539] +Triangle: [3558, 3534, 3535] +Triangle: [3552, 3536, 3537] +Triangle: [3539, 3541, 3555] +Triangle: [3541, 3540, 3553] +Triangle: [3542, 3538, 3537] +Triangle: [3550, 3547, 3532] +Triangle: [3549, 3550, 3533] +Triangle: [3542, 3536, 3535] +Triangle: [3539, 3538, 3542] +Triangle: [3542, 3534, 3540] +Triangle: [3545, 3544, 3529] +Triangle: [3548, 3546, 3527] +Triangle: [3543, 3549, 3531] +Triangle: [3525, 3532, 3547] +Triangle: [3527, 3546, 3545] +Triangle: [3544, 3543, 3530] +Triangle: [3559, 3527, 3528] +Triangle: [3528, 3529, 3561] +Triangle: [3529, 3530, 3562] +Triangle: [3530, 3531, 3563] +Triangle: [3563, 3531, 3533] +Triangle: [3533, 3532, 3565] +Triangle: [3565, 3532, 3525] +Triangle: [3525, 3527, 3559] +Triangle: [3555, 3553, 3547] +Triangle: [3554, 3555, 3550] +Triangle: [3545, 3552, 3556] +Triangle: [3548, 3558, 3557] +Triangle: [3543, 3551, 3554] +Triangle: [3548, 3547, 3553] +Triangle: [3546, 3557, 3552] +Triangle: [3544, 3556, 3551] +Triangle: [3566, 3559, 3523] +Triangle: [3518, 3565, 3566] +Triangle: [3564, 3565, 3518] +Triangle: [3519, 3563, 3564] +Triangle: [3562, 3563, 3519] +Triangle: [3561, 3562, 3520] +Triangle: [3560, 3561, 3521] +Triangle: [3523, 3559, 3560] +Triangle: [3574, 3568, 3519] +Triangle: [3524, 3573, 3567] +Triangle: [3521, 3570, 3571] +Triangle: [3568, 3569, 3520] +Triangle: [3567, 3574, 3526] +Triangle: [3572, 3573, 3524] +Triangle: [3522, 3571, 3572] +Triangle: [3520, 3569, 3570] +Triangle: [3576, 3582, 3442] +Triangle: [3442, 3582, 3583] +Triangle: [3444, 3443, 3583] +Triangle: [3575, 3584, 3583] +Triangle: [3463, 3444, 3584] +Triangle: [3581, 3585, 3584] +Triangle: [3585, 3446, 3445] +Triangle: [3586, 3585, 3581] +Triangle: [3446, 3585, 3586] +Triangle: [3440, 3438, 3590] +Triangle: [3439, 3591, 3592] +Triangle: [3590, 3589, 3577] +Triangle: [3577, 3589, 3588] +Triangle: [3578, 3588, 3587] +Triangle: [3579, 3587, 3586] +Triangle: [3510, 3586, 3587] +Triangle: [3588, 3593, 3517] +Triangle: [3516, 3517, 3593] +Triangle: [3568, 3574, 3582] +Triangle: [3574, 3567, 3575] +Triangle: [3567, 3573, 3581] +Triangle: [3573, 3572, 3580] +Triangle: [3580, 3572, 3571] +Triangle: [3579, 3571, 3570] +Triangle: [3570, 3569, 3577] +Triangle: [3569, 3568, 3576] +Triangle: [3592, 3589, 3590] +Triangle: [3589, 3594, 3593] +Triangle: [3435, 3514, 3594] +Triangle: [3594, 3589, 3592] +Triangle: [3437, 3595, 3509] +Triangle: [3596, 3439, 3171] +Triangle: [3439, 3596, 3597] +Triangle: [3591, 3597, 3595] +Triangle: [3600, 3598, 3599] +Triangle: [3598, 3595, 3597] +Triangle: [3596, 3601, 3599] +Triangle: [3601, 3596, 3178] +Triangle: [3604, 3602, 3350] +Triangle: [3598, 3600, 3602] +Triangle: [3598, 3605, 3607] +Triangle: [3608, 3595, 3607] +Triangle: [3509, 3595, 3608] +Triangle: [3508, 3608, 3503] +Triangle: [3609, 3503, 3608] +Triangle: [3420, 3503, 3609] +Triangle: [3613, 3612, 3358] +Triangle: [3612, 3611, 3357] +Triangle: [3395, 3613, 3416] +Triangle: [3395, 3420, 3610] +Triangle: [3602, 3604, 3603] +Triangle: [3607, 3605, 3614] +Triangle: [3606, 3614, 3610] +Triangle: [3605, 3602, 3611] +Triangle: [3615, 3614, 3611] +Triangle: [3613, 3610, 3615] +Triangle: [3648, 3619, 3618] +Triangle: [3644, 3647, 3624] +Triangle: [3640, 3643, 3625] +Triangle: [3639, 3626, 3621] +Triangle: [5333, 5332, 3627] +Triangle: [5334, 5335, 3628] +Triangle: [3651, 3650, 3629] +Triangle: [3626, 3634, 3633] +Triangle: [5355, 3635, 3632] +Triangle: [3622, 3625, 3638] +Triangle: [3637, 3638, 3639] +Triangle: [3623, 3624, 3642] +Triangle: [3641, 3642, 3643] +Triangle: [3616, 3617, 3646] +Triangle: [3645, 3646, 3647] +Triangle: [3629, 3648, 3649] +Triangle: [3631, 3628, 3650] +Triangle: [3679, 3655, 3691] +Triangle: [3687, 3680, 3660] +Triangle: [3681, 3661, 3677] +Triangle: [3689, 3682, 3662] +Triangle: [3683, 3663, 3673] +Triangle: [3684, 3664, 5380] +Triangle: [3685, 3665, 3697] +Triangle: [3686, 3670, 3653] +Triangle: [3687, 3671, 3670] +Triangle: [3688, 3673, 3662] +Triangle: [5364, 3689, 3675] +Triangle: [3680, 3690, 3677] +Triangle: [3676, 3690, 3680] +Triangle: [5362, 3674, 3689] +Triangle: [3672, 3688, 3682] +Triangle: [3668, 3687, 3686] +Triangle: [3652, 3669, 3686] +Triangle: [3666, 3685, 3699] +Triangle: [5382, 3667, 3684] +Triangle: [3656, 3683, 3688] +Triangle: [3674, 3657, 3682] +Triangle: [3676, 3658, 3681] +Triangle: [3659, 3680, 3687] +Triangle: [3654, 3679, 3693] +Triangle: [3692, 3693, 3696] +Triangle: [3693, 3691, 3695] +Triangle: [3696, 3695, 3665] +Triangle: [3694, 3696, 3685] +Triangle: [3667, 3698, 3699] +Triangle: [3699, 3697, 3664] +Triangle: [3700, 3702, 5373] +Triangle: [3702, 3701, 5372] +Triangle: [3744, 3730, 3706] +Triangle: [3731, 3711, 3722] +Triangle: [3732, 3712, 3728] +Triangle: [5385, 3733, 3713] +Triangle: [5341, 3734, 3714] +Triangle: [3753, 3735, 3715] +Triangle: [3750, 3736, 3716] +Triangle: [3737, 3721, 3704] +Triangle: [3738, 3722, 3721] +Triangle: [5347, 3739, 3724] +Triangle: [3740, 3726, 5396] +Triangle: [3741, 3728, 3711] +Triangle: [3710, 3727, 3741] +Triangle: [3725, 3740, 5397] +Triangle: [3723, 3739, 5347] +Triangle: [3719, 3738, 3737] +Triangle: [3703, 3720, 3737] +Triangle: [3749, 3717, 3736] +Triangle: [3751, 3718, 3735] +Triangle: [5338, 3707, 3734] +Triangle: [3708, 3733, 5385] +Triangle: [3709, 3732, 3741] +Triangle: [3710, 3731, 3738] +Triangle: [3705, 3730, 3744] +Triangle: [3743, 3744, 3747] +Triangle: [3747, 3744, 3742] +Triangle: [3736, 3747, 3746] +Triangle: [3717, 3745, 3747] +Triangle: [3718, 3749, 3750] +Triangle: [3735, 3750, 3748] +Triangle: [3707, 3751, 3753] +Triangle: [3734, 3753, 3752] +Triangle: [3795, 3781, 3757] +Triangle: [3782, 3762, 3773] +Triangle: [3783, 3763, 3779] +Triangle: [3791, 3784, 3764] +Triangle: [3790, 3785, 3765] +Triangle: [3786, 3766, 3803] +Triangle: [3801, 3787, 3767] +Triangle: [3788, 3772, 3755] +Triangle: [3789, 3773, 3772] +Triangle: [3784, 3790, 3775] +Triangle: [3783, 3791, 3777] +Triangle: [3792, 3779, 3762] +Triangle: [3778, 3792, 3782] +Triangle: [3776, 3791, 3783] +Triangle: [3759, 3774, 3790] +Triangle: [3770, 3789, 3788] +Triangle: [3754, 3771, 3788] +Triangle: [3800, 3768, 3787] +Triangle: [3769, 3786, 3804] +Triangle: [3774, 3758, 3785] +Triangle: [3776, 3759, 3784] +Triangle: [3760, 3783, 3792] +Triangle: [3761, 3782, 3789] +Triangle: [3794, 3756, 3781] +Triangle: [3796, 3794, 3795] +Triangle: [3798, 3795, 3793] +Triangle: [3787, 3798, 3797] +Triangle: [3768, 3796, 3798] +Triangle: [3769, 3800, 3801] +Triangle: [3786, 3801, 3799] +Triangle: [3802, 3804, 3785] +Triangle: [3804, 3803, 3765] +Triangle: [3846, 3832, 3808] +Triangle: [3840, 3833, 3813] +Triangle: [3834, 3814, 3830] +Triangle: [3842, 3835, 3815] +Triangle: [3841, 3836, 3816] +Triangle: [3855, 3837, 3817] +Triangle: [3838, 3818, 3850] +Triangle: [3839, 3823, 3806] +Triangle: [3840, 3824, 3823] +Triangle: [3835, 3841, 3826] +Triangle: [3834, 3842, 3828] +Triangle: [3833, 3843, 3830] +Triangle: [3812, 3829, 3843] +Triangle: [3811, 3827, 3842] +Triangle: [3810, 3825, 3841] +Triangle: [3822, 3821, 3840] +Triangle: [3805, 3822, 3839] +Triangle: [3851, 3819, 3838] +Triangle: [3853, 3820, 3837] +Triangle: [3809, 3836, 3841] +Triangle: [3827, 3810, 3835] +Triangle: [3829, 3811, 3834] +Triangle: [3821, 3812, 3833] +Triangle: [3845, 3807, 3832] +Triangle: [3847, 3845, 3846] +Triangle: [3849, 3846, 3844] +Triangle: [3849, 3848, 3818] +Triangle: [3819, 3847, 3849] +Triangle: [3820, 3851, 3852] +Triangle: [3837, 3852, 3850] +Triangle: [3853, 3855, 3836] +Triangle: [3836, 3855, 3854] +Triangle: [3897, 3883, 3859] +Triangle: [3891, 3884, 3864] +Triangle: [3885, 3865, 3916] +Triangle: [3930, 3886, 3866] +Triangle: [3924, 3887, 3867] +Triangle: [3888, 3868, 3905] +Triangle: [3903, 3889, 3869] +Triangle: [3890, 3874, 3911] +Triangle: [3891, 3875, 3908] +Triangle: [3927, 3892, 3877] +Triangle: [3893, 3879, 3920] +Triangle: [3915, 3894, 3881] +Triangle: [3913, 3880, 3894] +Triangle: [3919, 3878, 3893] +Triangle: [3925, 3876, 3892] +Triangle: [3907, 3872, 3891] +Triangle: [3910, 3873, 3890] +Triangle: [3902, 3870, 3889] +Triangle: [3871, 3888, 3906] +Triangle: [3860, 3887, 3924] +Triangle: [3929, 3861, 3886] +Triangle: [3917, 3862, 3885] +Triangle: [3872, 3863, 3884] +Triangle: [3896, 3858, 3883] +Triangle: [3898, 3896, 3897] +Triangle: [3900, 3897, 3895] +Triangle: [3889, 3900, 3899] +Triangle: [3870, 3898, 3900] +Triangle: [3902, 3903, 3888] +Triangle: [3903, 3901, 3868] +Triangle: [3904, 3906, 3887] +Triangle: [3887, 3906, 3905] +Triangle: [3873, 3907, 3909] +Triangle: [3909, 3908, 3874] +Triangle: [3856, 3910, 3912] +Triangle: [3912, 3911, 3857] +Triangle: [3863, 3913, 3915] +Triangle: [3884, 3915, 3914] +Triangle: [3880, 3917, 3918] +Triangle: [3894, 3918, 3916] +Triangle: [3862, 3919, 3921] +Triangle: [3921, 3920, 3865] +Triangle: [3923, 3924, 3892] +Triangle: [3892, 3924, 3922] +Triangle: [3861, 3925, 3927] +Triangle: [3886, 3927, 3926] +Triangle: [3878, 3929, 3930] +Triangle: [3893, 3930, 3928] +Triangle: [3958, 3934, 3970] +Triangle: [3959, 3939, 3950] +Triangle: [3960, 3940, 3991] +Triangle: [4005, 3961, 3941] +Triangle: [3999, 3962, 3942] +Triangle: [3963, 3943, 3980] +Triangle: [3964, 3944, 3976] +Triangle: [3965, 3949, 3986] +Triangle: [3966, 3950, 3983] +Triangle: [4002, 3967, 3952] +Triangle: [3968, 3954, 3995] +Triangle: [3969, 3956, 3989] +Triangle: [3988, 3955, 3969] +Triangle: [3953, 3968, 3996] +Triangle: [4000, 3951, 3967] +Triangle: [3982, 3947, 3966] +Triangle: [3985, 3948, 3965] +Triangle: [3945, 3964, 3978] +Triangle: [3946, 3963, 3981] +Triangle: [3998, 3935, 3962] +Triangle: [4004, 3936, 3961] +Triangle: [3937, 3960, 3993] +Triangle: [3947, 3938, 3959] +Triangle: [3971, 3933, 3958] +Triangle: [3973, 3971, 3972] +Triangle: [3975, 3972, 3970] +Triangle: [3964, 3975, 3974] +Triangle: [3945, 3973, 3975] +Triangle: [3977, 3978, 3963] +Triangle: [3978, 3976, 3943] +Triangle: [3979, 3981, 3962] +Triangle: [3962, 3981, 3980] +Triangle: [3948, 3982, 3984] +Triangle: [3984, 3983, 3949] +Triangle: [3931, 3985, 3987] +Triangle: [3987, 3986, 3932] +Triangle: [3938, 3988, 3990] +Triangle: [3990, 3989, 3939] +Triangle: [3955, 3992, 3993] +Triangle: [3993, 3991, 3956] +Triangle: [3994, 3996, 3960] +Triangle: [3996, 3995, 3940] +Triangle: [3951, 3998, 3999] +Triangle: [3967, 3999, 3997] +Triangle: [3936, 4000, 4002] +Triangle: [3961, 4002, 4001] +Triangle: [4004, 4005, 3968] +Triangle: [4005, 4003, 3954] +Triangle: [4047, 4033, 4009] +Triangle: [4034, 4014, 4025] +Triangle: [4044, 4035, 4015] +Triangle: [4036, 4016, 5392] +Triangle: [5353, 4037, 4017] +Triangle: [4056, 4038, 4018] +Triangle: [4039, 4019, 4051] +Triangle: [4040, 4024, 4007] +Triangle: [4041, 4025, 4024] +Triangle: [5388, 4042, 4027] +Triangle: [4035, 4043, 4029] +Triangle: [4034, 4044, 4031] +Triangle: [4013, 4030, 4044] +Triangle: [4028, 4043, 4035] +Triangle: [4026, 4042, 5388] +Triangle: [4023, 4022, 4041] +Triangle: [4006, 4023, 4040] +Triangle: [4052, 4020, 4039] +Triangle: [4021, 4038, 4056] +Triangle: [4010, 4037, 5353] +Triangle: [4011, 4036, 5394] +Triangle: [4030, 4012, 4035] +Triangle: [4022, 4013, 4034] +Triangle: [4046, 4008, 4033] +Triangle: [4048, 4046, 4047] +Triangle: [4050, 4047, 4045] +Triangle: [4050, 4049, 4019] +Triangle: [4020, 4048, 4050] +Triangle: [4052, 4053, 4038] +Triangle: [4038, 4053, 4051] +Triangle: [4054, 4056, 4037] +Triangle: [4037, 4056, 4055] +Triangle: [4084, 4060, 4096] +Triangle: [4092, 4085, 4065] +Triangle: [4095, 4086, 4066] +Triangle: [4094, 4087, 4067] +Triangle: [5367, 4088, 4068] +Triangle: [4089, 4069, 4106] +Triangle: [4090, 4070, 4102] +Triangle: [4091, 4075, 4058] +Triangle: [4092, 4076, 4075] +Triangle: [4087, 4093, 4078] +Triangle: [4086, 4094, 4080] +Triangle: [4085, 4095, 4082] +Triangle: [4064, 4081, 4095] +Triangle: [4063, 4079, 4094] +Triangle: [4077, 4093, 4087] +Triangle: [4073, 4092, 4091] +Triangle: [4057, 4074, 4091] +Triangle: [4071, 4090, 4104] +Triangle: [4105, 4072, 4089] +Triangle: [4061, 4088, 5367] +Triangle: [4079, 4062, 4087] +Triangle: [4081, 4063, 4086] +Triangle: [4064, 4085, 4092] +Triangle: [4059, 4084, 4098] +Triangle: [4097, 4098, 4101] +Triangle: [4098, 4096, 4100] +Triangle: [4101, 4100, 4070] +Triangle: [4099, 4101, 4090] +Triangle: [4072, 4103, 4104] +Triangle: [4104, 4102, 4069] +Triangle: [4105, 4107, 5370] +Triangle: [5370, 4107, 4106] +Triangle: [4135, 4111, 4147] +Triangle: [4136, 4116, 4127] +Triangle: [4137, 4117, 4133] +Triangle: [4138, 4118, 4131] +Triangle: [4144, 4139, 4119] +Triangle: [4158, 4140, 4120] +Triangle: [4141, 4121, 4153] +Triangle: [4142, 4126, 4109] +Triangle: [4143, 4127, 4126] +Triangle: [4138, 4144, 4129] +Triangle: [4145, 4131, 4117] +Triangle: [4146, 4133, 4116] +Triangle: [4115, 4132, 4146] +Triangle: [4114, 4130, 4145] +Triangle: [4128, 4144, 4138] +Triangle: [4124, 4143, 4142] +Triangle: [4108, 4125, 4142] +Triangle: [4154, 4122, 4141] +Triangle: [4123, 4140, 4158] +Triangle: [4128, 4112, 4139] +Triangle: [4130, 4113, 4138] +Triangle: [4132, 4114, 4137] +Triangle: [4124, 4115, 4136] +Triangle: [4110, 4135, 4149] +Triangle: [4150, 4148, 4149] +Triangle: [4152, 4149, 4147] +Triangle: [4141, 4152, 4151] +Triangle: [4122, 4150, 4152] +Triangle: [4154, 4155, 4140] +Triangle: [4140, 4155, 4153] +Triangle: [4112, 4156, 4158] +Triangle: [4139, 4158, 4157] +Triangle: [4186, 4162, 4198] +Triangle: [4187, 4167, 4178] +Triangle: [4188, 4168, 4184] +Triangle: [4189, 4169, 5356] +Triangle: [4195, 4190, 4170] +Triangle: [4209, 4191, 4171] +Triangle: [5378, 4192, 4172] +Triangle: [4193, 4177, 4160] +Triangle: [4194, 4178, 4177] +Triangle: [5391, 4195, 4180] +Triangle: [4196, 4182, 5360] +Triangle: [4197, 4184, 4167] +Triangle: [4183, 4197, 4187] +Triangle: [4181, 4196, 5361] +Triangle: [4179, 4195, 5391] +Triangle: [4175, 4194, 4193] +Triangle: [4159, 4176, 4193] +Triangle: [4173, 4192, 5378] +Triangle: [4174, 4191, 4209] +Triangle: [4179, 4163, 4190] +Triangle: [4164, 4189, 5358] +Triangle: [4165, 4188, 4197] +Triangle: [4175, 4166, 4187] +Triangle: [4161, 4186, 4200] +Triangle: [4201, 4199, 4200] +Triangle: [4200, 4198, 4202] +Triangle: [4203, 4202, 4172] +Triangle: [4173, 4201, 4203] +Triangle: [4205, 4206, 5376] +Triangle: [4206, 4204, 5375] +Triangle: [4163, 4207, 4209] +Triangle: [4190, 4209, 4208] +Triangle: [4242, 4213, 4212] +Triangle: [4241, 4218, 4217] +Triangle: [4234, 4237, 4219] +Triangle: [4230, 4233, 4220] +Triangle: [4226, 4229, 4221] +Triangle: [4214, 4221, 4222] +Triangle: [4245, 4244, 4223] +Triangle: [4215, 4220, 4228] +Triangle: [4227, 4228, 4229] +Triangle: [4216, 4219, 4232] +Triangle: [4231, 4232, 4233] +Triangle: [4218, 4236, 4235] +Triangle: [4236, 4237, 4234] +Triangle: [4210, 4211, 4240] +Triangle: [4240, 4241, 4238] +Triangle: [4223, 4242, 4243] +Triangle: [4225, 4222, 4244] +Triangle: [4259, 4249, 4273] +Triangle: [4281, 4265, 4254] +Triangle: [4284, 4271, 4255] +Triangle: [4269, 4256, 4276] +Triangle: [4282, 4267, 4257] +Triangle: [4277, 4257, 4258] +Triangle: [4278, 4258, 4259] +Triangle: [4272, 4247, 4264] +Triangle: [4264, 4265, 4281] +Triangle: [4256, 4267, 4282] +Triangle: [4255, 4269, 4283] +Triangle: [4274, 4254, 4271] +Triangle: [4253, 4274, 4284] +Triangle: [4275, 4283, 4268] +Triangle: [4276, 4282, 4266] +Triangle: [4263, 4280, 4281] +Triangle: [4272, 4280, 4263] +Triangle: [4261, 4278, 4279] +Triangle: [4250, 4277, 4278] +Triangle: [4266, 4282, 4277] +Triangle: [4283, 4276, 4251] +Triangle: [4270, 4284, 4275] +Triangle: [4262, 4281, 4274] +Triangle: [4260, 4279, 4273] +Triangle: [4326, 4324, 4288] +Triangle: [4304, 4293, 4313] +Triangle: [4350, 4348, 4294] +Triangle: [4342, 4295, 4315] +Triangle: [4336, 4296, 4316] +Triangle: [4335, 4334, 4297] +Triangle: [4330, 4298, 4318] +Triangle: [4286, 4303, 4319] +Triangle: [4354, 4304, 4320] +Triangle: [4341, 4340, 4306] +Triangle: [4346, 4308, 4322] +Triangle: [4359, 4358, 4310] +Triangle: [4359, 4323, 4309] +Triangle: [4347, 4322, 4307] +Triangle: [4339, 4341, 4321] +Triangle: [4356, 4355, 4320] +Triangle: [4285, 4311, 4319] +Triangle: [4331, 4332, 4318] +Triangle: [4333, 4335, 4317] +Triangle: [4338, 4316, 4289] +Triangle: [4343, 4344, 4315] +Triangle: [4349, 4350, 4314] +Triangle: [4320, 4313, 4292] +Triangle: [4326, 4312, 4287] +Triangle: [4327, 4329, 4326] +Triangle: [4329, 4328, 4324] +Triangle: [4318, 4298, 4328] +Triangle: [4299, 4318, 4329] +Triangle: [4317, 4332, 4331] +Triangle: [4297, 4330, 4332] +Triangle: [4289, 4316, 4335] +Triangle: [4316, 4296, 4334] +Triangle: [4321, 4338, 4337] +Triangle: [4321, 4306, 4336] +Triangle: [4290, 4315, 4341] +Triangle: [4315, 4295, 4340] +Triangle: [4322, 4344, 4343] +Triangle: [4308, 4342, 4344] +Triangle: [4314, 4347, 4345] +Triangle: [4314, 4294, 4346] +Triangle: [4309, 4323, 4350] +Triangle: [4323, 4310, 4348] +Triangle: [4319, 4353, 4351] +Triangle: [4303, 4352, 4353] +Triangle: [4351, 4353, 4355] +Triangle: [4353, 4352, 4354] +Triangle: [4313, 4359, 4357] +Triangle: [4293, 4358, 4359] +Triangle: [4399, 4363, 4387] +Triangle: [4395, 4379, 4368] +Triangle: [4425, 4423, 4369] +Triangle: [4419, 4417, 4370] +Triangle: [4413, 4411, 4371] +Triangle: [4410, 4409, 4372] +Triangle: [4407, 4405, 4373] +Triangle: [4361, 4378, 4394] +Triangle: [4430, 4429, 4379] +Triangle: [4415, 4381, 4396] +Triangle: [4422, 4421, 4383] +Triangle: [4434, 4433, 4385] +Triangle: [4432, 4434, 4398] +Triangle: [4420, 4422, 4397] +Triangle: [4416, 4396, 4380] +Triangle: [4431, 4430, 4395] +Triangle: [4360, 4386, 4394] +Triangle: [4406, 4407, 4393] +Triangle: [4408, 4410, 4392] +Triangle: [4412, 4413, 4391] +Triangle: [4418, 4419, 4390] +Triangle: [4424, 4425, 4389] +Triangle: [4376, 4395, 4388] +Triangle: [4400, 4401, 4387] +Triangle: [4404, 4401, 4400] +Triangle: [4404, 4403, 4399] +Triangle: [4393, 4373, 4403] +Triangle: [4374, 4393, 4404] +Triangle: [4375, 4392, 4407] +Triangle: [4392, 4372, 4405] +Triangle: [4364, 4391, 4410] +Triangle: [4391, 4371, 4409] +Triangle: [4396, 4413, 4412] +Triangle: [4381, 4411, 4413] +Triangle: [4365, 4390, 4416] +Triangle: [4370, 4415, 4416] +Triangle: [4382, 4397, 4419] +Triangle: [4397, 4383, 4417] +Triangle: [4366, 4389, 4422] +Triangle: [4389, 4369, 4421] +Triangle: [4384, 4398, 4425] +Triangle: [4398, 4385, 4423] +Triangle: [4394, 4428, 4426] +Triangle: [4378, 4427, 4428] +Triangle: [4428, 4430, 4431] +Triangle: [4428, 4427, 4429] +Triangle: [4367, 4388, 4434] +Triangle: [4368, 4433, 4434] +Triangle: [4468, 4467, 4438] +Triangle: [4463, 4466, 4443] +Triangle: [4462, 4444, 4441] +Triangle: [4455, 4458, 4445] +Triangle: [4451, 4454, 4446] +Triangle: [4439, 4446, 4447] +Triangle: [4470, 4469, 4448] +Triangle: [4440, 4445, 4453] +Triangle: [4452, 4453, 4454] +Triangle: [4444, 4457, 4456] +Triangle: [4456, 4457, 4458] +Triangle: [4442, 4443, 4461] +Triangle: [4461, 4462, 4459] +Triangle: [5331, 4465, 4464] +Triangle: [5328, 5329, 4466] +Triangle: [4449, 4448, 4467] +Triangle: [4450, 4447, 4469] +Triangle: [4504, 4473, 4474] +Triangle: [4499, 4478, 4479] +Triangle: [4495, 4477, 4480] +Triangle: [4476, 4481, 4494] +Triangle: [4475, 4482, 4490] +Triangle: [4486, 4483, 4482] +Triangle: [4506, 4485, 4484] +Triangle: [4488, 4489, 4481] +Triangle: [4487, 4490, 4489] +Triangle: [4492, 4493, 4480] +Triangle: [4491, 4494, 4493] +Triangle: [4478, 4496, 4497] +Triangle: [4496, 4495, 4498] +Triangle: [4471, 4500, 4501] +Triangle: [4500, 4499, 4502] +Triangle: [4485, 4504, 4503] +Triangle: [4506, 4505, 4483] +Triangle: [4539, 4510, 4760] +Triangle: [4538, 4515, 4761] +Triangle: [4772, 4534, 4516] +Triangle: [4770, 4530, 4517] +Triangle: [4526, 4518, 4764] +Triangle: [4518, 4519, 4765] +Triangle: [4541, 4520, 4766] +Triangle: [4763, 4517, 4525] +Triangle: [4767, 4525, 4526] +Triangle: [4762, 4516, 4529] +Triangle: [4769, 4529, 4530] +Triangle: [4761, 4515, 4533] +Triangle: [4771, 4533, 4534] +Triangle: [4759, 4508, 4537] +Triangle: [4773, 4537, 4538] +Triangle: [4520, 4539, 4775] +Triangle: [4519, 4541, 4776] +Triangle: [4575, 4546, 4545] +Triangle: [4574, 4551, 4550] +Triangle: [4570, 4552, 4549] +Triangle: [4563, 4566, 4553] +Triangle: [4562, 4554, 4547] +Triangle: [4554, 4555, 4558] +Triangle: [4577, 4556, 4557] +Triangle: [4548, 4553, 4561] +Triangle: [4561, 4562, 4559] +Triangle: [4552, 4565, 4564] +Triangle: [4564, 4565, 4566] +Triangle: [4551, 4569, 4568] +Triangle: [4569, 4570, 4567] +Triangle: [4543, 4544, 4573] +Triangle: [4573, 4574, 4571] +Triangle: [4556, 4575, 4576] +Triangle: [4555, 4577, 4578] +Triangle: [4611, 4582, 4581] +Triangle: [4610, 4587, 4586] +Triangle: [4603, 4606, 4588] +Triangle: [4599, 4602, 4589] +Triangle: [4598, 4590, 4583] +Triangle: [4583, 4590, 4591] +Triangle: [4614, 4613, 4592] +Triangle: [4584, 4589, 4597] +Triangle: [4596, 4597, 4598] +Triangle: [4585, 4588, 4601] +Triangle: [4600, 4601, 4602] +Triangle: [4586, 4587, 4605] +Triangle: [4604, 4605, 4606] +Triangle: [4579, 4580, 4609] +Triangle: [4609, 4610, 4607] +Triangle: [4592, 4611, 4612] +Triangle: [4594, 4591, 4613] +Triangle: [4617, 4618, 4647] +Triangle: [4622, 4623, 4646] +Triangle: [4621, 4624, 4642] +Triangle: [4620, 4625, 4638] +Triangle: [4631, 4619, 4626] +Triangle: [4630, 4627, 4626] +Triangle: [4650, 4629, 4628] +Triangle: [4632, 4633, 4625] +Triangle: [4632, 4631, 4634] +Triangle: [4636, 4637, 4624] +Triangle: [4635, 4638, 4637] +Triangle: [4640, 4641, 4623] +Triangle: [4639, 4642, 4641] +Triangle: [4615, 4644, 4645] +Triangle: [4644, 4643, 4646] +Triangle: [4648, 4647, 4628] +Triangle: [4650, 4649, 4627] +Triangle: [4684, 4653, 4654] +Triangle: [4658, 4659, 4682] +Triangle: [4657, 4660, 4678] +Triangle: [4671, 4656, 4661] +Triangle: [4655, 4662, 4670] +Triangle: [4655, 4666, 4663] +Triangle: [4686, 4665, 4664] +Triangle: [4656, 4668, 4669] +Triangle: [4667, 4670, 4669] +Triangle: [4672, 4673, 4660] +Triangle: [4672, 4671, 4674] +Triangle: [4676, 4677, 4659] +Triangle: [4675, 4678, 4677] +Triangle: [4651, 4680, 4681] +Triangle: [4680, 4679, 4682] +Triangle: [4665, 4684, 4683] +Triangle: [4686, 4685, 4663] +Triangle: [4720, 4689, 4690] +Triangle: [4694, 4695, 4718] +Triangle: [4693, 4696, 4714] +Triangle: [4707, 4692, 4697] +Triangle: [4691, 4698, 4706] +Triangle: [4702, 4699, 4698] +Triangle: [4701, 4700, 4721] +Triangle: [4692, 4704, 4705] +Triangle: [4704, 4703, 4706] +Triangle: [4708, 4709, 4696] +Triangle: [4707, 4710, 4709] +Triangle: [4712, 4713, 4695] +Triangle: [4711, 4714, 4713] +Triangle: [4687, 4716, 4717] +Triangle: [4716, 4715, 4718] +Triangle: [4720, 4719, 4700] +Triangle: [4722, 4721, 4699] +Triangle: [4756, 4725, 4726] +Triangle: [4751, 4730, 4731] +Triangle: [4747, 4729, 4732] +Triangle: [4728, 4733, 4746] +Triangle: [4739, 4727, 4734] +Triangle: [4738, 4735, 4734] +Triangle: [4737, 4736, 4757] +Triangle: [4728, 4740, 4741] +Triangle: [4739, 4742, 4741] +Triangle: [4744, 4745, 4732] +Triangle: [4743, 4746, 4745] +Triangle: [4730, 4748, 4749] +Triangle: [4748, 4747, 4750] +Triangle: [4723, 4752, 4753] +Triangle: [4752, 4751, 4754] +Triangle: [4756, 4755, 4736] +Triangle: [4738, 4758, 4757] +Triangle: [4765, 4776, 4542] +Triangle: [4766, 4775, 4540] +Triangle: [4536, 4773, 4774] +Triangle: [4507, 4759, 4773] +Triangle: [4532, 4771, 4772] +Triangle: [4514, 4761, 4771] +Triangle: [4528, 4769, 4770] +Triangle: [4513, 4762, 4769] +Triangle: [4524, 4767, 4768] +Triangle: [4512, 4763, 4767] +Triangle: [4776, 4766, 4521] +Triangle: [4511, 4764, 4765] +Triangle: [4523, 4768, 4764] +Triangle: [4527, 4770, 4763] +Triangle: [4531, 4772, 4762] +Triangle: [4535, 4774, 4761] +Triangle: [4775, 4760, 4509] +Triangle: [4577, 4794, 4784] +Triangle: [4566, 4788, 4781] +Triangle: [4561, 4785, 4786] +Triangle: [4562, 4786, 4782] +Triangle: [4555, 4783, 4794] +Triangle: [4573, 4544, 4777] +Triangle: [4574, 4573, 4791] +Triangle: [4569, 4551, 4779] +Triangle: [4570, 4569, 4789] +Triangle: [4565, 4552, 4780] +Triangle: [4551, 4574, 4792] +Triangle: [4554, 4782, 4783] +Triangle: [4565, 4787, 4788] +Triangle: [4556, 4784, 4793] +Triangle: [4552, 4570, 4790] +Triangle: [4553, 4781, 4785] +Triangle: [4546, 4575, 4793] +Triangle: [4834, 4798, 4822] +Triangle: [4814, 4803, 4823] +Triangle: [4820, 4804, 4824] +Triangle: [4818, 4805, 4825] +Triangle: [4831, 4816, 4806] +Triangle: [4845, 4844, 4807] +Triangle: [4842, 4840, 4808] +Triangle: [4796, 4813, 4829] +Triangle: [4813, 4814, 4830] +Triangle: [4805, 4816, 4831] +Triangle: [4804, 4818, 4832] +Triangle: [4803, 4820, 4833] +Triangle: [4823, 4833, 4819] +Triangle: [4801, 4824, 4832] +Triangle: [4825, 4831, 4815] +Triangle: [4829, 4830, 4811] +Triangle: [4795, 4821, 4829] +Triangle: [4841, 4842, 4828] +Triangle: [4845, 4827, 4810] +Triangle: [4815, 4831, 4826] +Triangle: [4832, 4825, 4800] +Triangle: [4819, 4833, 4824] +Triangle: [4830, 4823, 4802] +Triangle: [4835, 4836, 4822] +Triangle: [4837, 4839, 4836] +Triangle: [4838, 4834, 4836] +Triangle: [4808, 4838, 4839] +Triangle: [4828, 4839, 4837] +Triangle: [4810, 4827, 4842] +Triangle: [4827, 4807, 4840] +Triangle: [4826, 4845, 4843] +Triangle: [4826, 4806, 4844] +Triangle: [4879, 4859, 4849] +Triangle: [4865, 4854, 4874] +Triangle: [4884, 4871, 4855] +Triangle: [5180, 5178, 4856] +Triangle: [4867, 4857, 4877] +Triangle: [4857, 4858, 4878] +Triangle: [4858, 4859, 4879] +Triangle: [4847, 4864, 4880] +Triangle: [4864, 4865, 4881] +Triangle: [4876, 4856, 4867] +Triangle: [5176, 4869, 4883] +Triangle: [4874, 4854, 4871] +Triangle: [4853, 4874, 4884] +Triangle: [5177, 4883, 4868] +Triangle: [4851, 4876, 4882] +Triangle: [4880, 4881, 4862] +Triangle: [4846, 4872, 4880] +Triangle: [4878, 4879, 4860] +Triangle: [4877, 4878, 4861] +Triangle: [4882, 4877, 4850] +Triangle: [5179, 5180, 4876] +Triangle: [4884, 4875, 4852] +Triangle: [4881, 4874, 4853] +Triangle: [4879, 4873, 4848] +Triangle: [4898, 4888, 4887] +Triangle: [4904, 4893, 4892] +Triangle: [4909, 4910, 4894] +Triangle: [4908, 4895, 4890] +Triangle: [4905, 4906, 4896] +Triangle: [4889, 4896, 4897] +Triangle: [4900, 4897, 4898] +Triangle: [4885, 4886, 4903] +Triangle: [4902, 4903, 4904] +Triangle: [4895, 4906, 4905] +Triangle: [4894, 4908, 4907] +Triangle: [4893, 4910, 4909] +Triangle: [4924, 4914, 4938] +Triangle: [4930, 4919, 4939] +Triangle: [4949, 4936, 4920] +Triangle: [4934, 4921, 4941] +Triangle: [4947, 4932, 4922] +Triangle: [4942, 4922, 4923] +Triangle: [4923, 4924, 4944] +Triangle: [4937, 4912, 4929] +Triangle: [4945, 4929, 4930] +Triangle: [4921, 4932, 4947] +Triangle: [4920, 4934, 4948] +Triangle: [4919, 4936, 4949] +Triangle: [4939, 4949, 4935] +Triangle: [4940, 4948, 4933] +Triangle: [4941, 4947, 4931] +Triangle: [4928, 4945, 4946] +Triangle: [4911, 4937, 4945] +Triangle: [4943, 4944, 4925] +Triangle: [4915, 4942, 4943] +Triangle: [4931, 4947, 4942] +Triangle: [4948, 4941, 4916] +Triangle: [4935, 4949, 4940] +Triangle: [4946, 4939, 4918] +Triangle: [4944, 4938, 4913] +Triangle: [4963, 4953, 4977] +Triangle: [4969, 4958, 4978] +Triangle: [4988, 4975, 4959] +Triangle: [4973, 4960, 4980] +Triangle: [4986, 4971, 4961] +Triangle: [4961, 4962, 4982] +Triangle: [4962, 4963, 4983] +Triangle: [4976, 4951, 4968] +Triangle: [4968, 4969, 4985] +Triangle: [4980, 4960, 4971] +Triangle: [4959, 4973, 4987] +Triangle: [4978, 4958, 4975] +Triangle: [4957, 4978, 4988] +Triangle: [4979, 4987, 4972] +Triangle: [4955, 4980, 4986] +Triangle: [4984, 4985, 4966] +Triangle: [4950, 4976, 4984] +Triangle: [4982, 4983, 4964] +Triangle: [4981, 4982, 4965] +Triangle: [4970, 4986, 4981] +Triangle: [4987, 4980, 4955] +Triangle: [4988, 4979, 4956] +Triangle: [4985, 4978, 4957] +Triangle: [4983, 4977, 4952] +Triangle: [5028, 4992, 5016] +Triangle: [5008, 4997, 5017] +Triangle: [5052, 4998, 5018] +Triangle: [5046, 4999, 5019] +Triangle: [5040, 5000, 5020] +Triangle: [5038, 5001, 5021] +Triangle: [5036, 5034, 5002] +Triangle: [4990, 5007, 5023] +Triangle: [5007, 5008, 5024] +Triangle: [5045, 5044, 5010] +Triangle: [5050, 5012, 5026] +Triangle: [5017, 4997, 5014] +Triangle: [5017, 5027, 5013] +Triangle: [5051, 5026, 5011] +Triangle: [5045, 5025, 5009] +Triangle: [5023, 5024, 5005] +Triangle: [4989, 5015, 5023] +Triangle: [5035, 5036, 5022] +Triangle: [5037, 5039, 5021] +Triangle: [5042, 5020, 4993] +Triangle: [5047, 5048, 5019] +Triangle: [5054, 5018, 4995] +Triangle: [5024, 5017, 4996] +Triangle: [5029, 5030, 5016] +Triangle: [5033, 5030, 5029] +Triangle: [5032, 5028, 5030] +Triangle: [5002, 5032, 5033] +Triangle: [5022, 5033, 5031] +Triangle: [5004, 5021, 5036] +Triangle: [5021, 5001, 5034] +Triangle: [4993, 5020, 5039] +Triangle: [5000, 5038, 5039] +Triangle: [5025, 5042, 5041] +Triangle: [5010, 5040, 5042] +Triangle: [4994, 5019, 5045] +Triangle: [5019, 4999, 5044] +Triangle: [5026, 5048, 5047] +Triangle: [5012, 5046, 5048] +Triangle: [5018, 5051, 5049] +Triangle: [4998, 5050, 5051] +Triangle: [5027, 5054, 5053] +Triangle: [5014, 5052, 5054] +Triangle: [5088, 5058, 5078] +Triangle: [5076, 5064, 5080] +Triangle: [5074, 5065, 5081] +Triangle: [5085, 5072, 5066] +Triangle: [5099, 5098, 5067] +Triangle: [5096, 5094, 5068] +Triangle: [5056, 5063, 5079] +Triangle: [5081, 5065, 5072] +Triangle: [5064, 5074, 5086] +Triangle: [5063, 5076, 5087] +Triangle: [5079, 5087, 5075] +Triangle: [5080, 5086, 5073] +Triangle: [5060, 5081, 5085] +Triangle: [5055, 5077, 5079] +Triangle: [5095, 5096, 5084] +Triangle: [5099, 5083, 5070] +Triangle: [5085, 5082, 5059] +Triangle: [5086, 5081, 5060] +Triangle: [5087, 5080, 5061] +Triangle: [5089, 5090, 5078] +Triangle: [5093, 5090, 5089] +Triangle: [5092, 5088, 5090] +Triangle: [5084, 5068, 5092] +Triangle: [5069, 5084, 5093] +Triangle: [5070, 5083, 5096] +Triangle: [5083, 5067, 5094] +Triangle: [5082, 5099, 5097] +Triangle: [5066, 5098, 5099] +Triangle: [5141, 5139, 5103] +Triangle: [5119, 5108, 5128] +Triangle: [5163, 5109, 5129] +Triangle: [5157, 5110, 5130] +Triangle: [5153, 5151, 5111] +Triangle: [5150, 5149, 5112] +Triangle: [5145, 5113, 5133] +Triangle: [5101, 5118, 5134] +Triangle: [5169, 5119, 5135] +Triangle: [5156, 5155, 5121] +Triangle: [5161, 5123, 5137] +Triangle: [5173, 5125, 5138] +Triangle: [5174, 5138, 5124] +Triangle: [5162, 5137, 5122] +Triangle: [5154, 5156, 5136] +Triangle: [5170, 5135, 5116] +Triangle: [5100, 5126, 5134] +Triangle: [5147, 5133, 5114] +Triangle: [5148, 5150, 5132] +Triangle: [5153, 5131, 5104] +Triangle: [5158, 5159, 5130] +Triangle: [5165, 5129, 5106] +Triangle: [5135, 5128, 5107] +Triangle: [5141, 5127, 5102] +Triangle: [5142, 5144, 5141] +Triangle: [5143, 5139, 5141] +Triangle: [5113, 5143, 5144] +Triangle: [5114, 5133, 5144] +Triangle: [5115, 5132, 5147] +Triangle: [5132, 5112, 5145] +Triangle: [5104, 5131, 5150] +Triangle: [5131, 5111, 5149] +Triangle: [5136, 5153, 5152] +Triangle: [5121, 5151, 5153] +Triangle: [5105, 5130, 5156] +Triangle: [5130, 5110, 5155] +Triangle: [5137, 5159, 5158] +Triangle: [5123, 5157, 5159] +Triangle: [5129, 5162, 5160] +Triangle: [5109, 5161, 5162] +Triangle: [5138, 5165, 5164] +Triangle: [5125, 5163, 5165] +Triangle: [5134, 5168, 5166] +Triangle: [5118, 5167, 5168] +Triangle: [5168, 5170, 5171] +Triangle: [5167, 5169, 5170] +Triangle: [5128, 5174, 5172] +Triangle: [5108, 5173, 5174] +Triangle: [4875, 5177, 5175] +Triangle: [4855, 5176, 5177] +Triangle: [4868, 4883, 5180] +Triangle: [4869, 5178, 5180] +Triangle: [5189, 5185, 5186] +Triangle: [5184, 5185, 5189] +Triangle: [5189, 5187, 5188] +Triangle: [5182, 5183, 5189] +Triangle: [5200, 5201, 1934] +Triangle: [1935, 1934, 5201] +Triangle: [1936, 1935, 5202] +Triangle: [1936, 5203, 5204] +Triangle: [1937, 5204, 5205] +Triangle: [1938, 5205, 5206] +Triangle: [1942, 1939, 5206] +Triangle: [1942, 5209, 5208] +Triangle: [5227, 5207, 5208] +Triangle: [1940, 5207, 5197] +Triangle: [735, 5190, 5200] +Triangle: [736, 5191, 5190] +Triangle: [737, 5192, 5191] +Triangle: [5193, 5192, 737] +Triangle: [5194, 5193, 738] +Triangle: [5195, 5194, 739] +Triangle: [744, 5199, 5195] +Triangle: [744, 743, 5198] +Triangle: [5198, 5196, 5216] +Triangle: [5197, 5196, 741] +Triangle: [5218, 5216, 733] +Triangle: [1932, 5227, 5228] +Triangle: [5220, 5221, 5201] +Triangle: [5202, 5201, 5221] +Triangle: [5203, 5202, 5222] +Triangle: [5204, 5203, 5223] +Triangle: [5205, 5204, 5224] +Triangle: [5205, 5225, 5226] +Triangle: [5206, 5226, 5229] +Triangle: [5209, 5229, 5228] +Triangle: [5207, 5227, 5217] +Triangle: [5190, 5210, 5220] +Triangle: [5191, 5211, 5210] +Triangle: [5192, 5212, 5211] +Triangle: [5193, 5213, 5212] +Triangle: [5194, 5214, 5213] +Triangle: [5215, 5214, 5194] +Triangle: [5219, 5215, 5195] +Triangle: [5199, 5198, 5218] +Triangle: [5217, 5216, 5196] +Triangle: [5234, 5236, 5237] +Triangle: [5238, 5239, 5237] +Triangle: [5240, 5241, 5239] +Triangle: [5240, 5242, 5243] +Triangle: [5244, 5245, 5243] +Triangle: [5244, 5246, 5247] +Triangle: [5246, 5248, 5249] +Triangle: [5248, 5250, 5251] +Triangle: [5252, 5253, 5251] +Triangle: [5254, 5255, 5253] +Triangle: [5256, 5257, 5255] +Triangle: [5258, 5259, 5257] +Triangle: [5260, 5261, 5259] +Triangle: [5231, 5262, 5261] +Triangle: [5268, 5267, 5265] +Triangle: [5231, 5232, 5233] +Triangle: [5267, 5268, 5270] +Triangle: [5272, 5271, 5269] +Triangle: [5274, 5273, 5271] +Triangle: [5276, 5275, 5273] +Triangle: [5276, 5278, 5277] +Triangle: [5278, 5280, 5279] +Triangle: [5280, 5282, 5281] +Triangle: [5282, 5284, 5283] +Triangle: [5284, 5286, 5285] +Triangle: [5288, 5287, 5285] +Triangle: [5288, 5290, 5289] +Triangle: [5290, 5292, 5291] +Triangle: [5292, 5294, 5293] +Triangle: [5296, 5295, 5293] +Triangle: [5296, 5298, 5297] +Triangle: [5300, 5299, 5297] +Triangle: [5300, 5302, 5301] +Triangle: [5304, 5303, 5301] +Triangle: [5304, 5306, 5305] +Triangle: [5306, 5308, 5307] +Triangle: [5308, 5310, 5309] +Triangle: [5310, 5312, 5311] +Triangle: [5312, 5314, 5313] +Triangle: [5314, 5316, 5315] +Triangle: [5316, 5318, 5317] +Triangle: [5318, 5320, 5319] +Triangle: [5320, 5322, 5321] +Triangle: [5322, 5324, 5323] +Triangle: [5324, 5326, 5325] +Triangle: [5326, 5327, 5264] +Triangle: [5266, 5265, 5264] +Triangle: [5232, 5234, 5235] +Triangle: [4465, 5329, 5328] +Triangle: [4436, 5331, 5330] +Triangle: [2014, 2015, 2028] +Triangle: [3632, 3635, 5332] +Triangle: [3620, 3627, 5335] +Triangle: [3723, 5339, 5340] +Triangle: [5339, 5338, 5341] +Triangle: [3739, 5340, 5336] +Triangle: [5340, 5341, 5337] +Triangle: [3708, 5343, 5346] +Triangle: [5343, 5342, 5347] +Triangle: [3733, 5346, 5344] +Triangle: [5346, 5347, 5345] +Triangle: [5351, 5352, 4042] +Triangle: [5350, 5353, 5352] +Triangle: [5352, 5348, 4027] +Triangle: [5352, 5353, 5349] +Triangle: [3634, 5355, 5354] +Triangle: [5357, 5358, 4196] +Triangle: [5358, 5356, 4182] +Triangle: [5359, 5361, 4188] +Triangle: [5361, 5360, 4168] +Triangle: [3658, 5362, 5364] +Triangle: [5364, 5363, 3661] +Triangle: [5366, 5367, 4093] +Triangle: [4093, 5367, 5365] +Triangle: [4088, 5370, 5369] +Triangle: [4061, 5368, 5370] +Triangle: [5373, 5372, 3663] +Triangle: [3656, 5371, 5373] +Triangle: [4191, 5376, 5375] +Triangle: [5374, 5376, 4191] +Triangle: [4205, 5379, 5378] +Triangle: [5378, 5377, 4204] +Triangle: [3700, 5382, 5381] +Triangle: [3702, 5381, 5380] +Triangle: [3725, 5384, 5385] +Triangle: [3740, 5385, 5383] +Triangle: [4011, 5386, 5388] +Triangle: [4036, 5388, 5387] +Triangle: [5389, 5391, 4189] +Triangle: [5391, 5390, 4169] +Triangle: [5393, 5394, 4043] +Triangle: [4043, 5394, 5392] +Triangle: [3709, 5395, 5397] +Triangle: [5397, 5396, 3712] +Triangle: [3602, 3600, 5398] +Triangle: [5398, 3600, 3601] +Triangle: [5398, 3344, 3349] +Triangle: [3342, 3344, 5398] +Triangle: [3603, 5399, 3357] +Triangle: [3352, 5399, 3603] +Triangle: [3351, 3400, 5399] +Triangle: [3357, 5399, 3400] +=== Vertex Weights (Max 5 bones per vertex) === +Vertex 0: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.202790 + Group: 'LeftHand', Weight: 0.765915 + Group: 'LeftHandPinky1', Weight: 0.004530 +Vertex 1: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.418436 + Group: 'LeftHand', Weight: 0.567983 +Vertex 2: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.054529 + Group: 'LeftHand', Weight: 0.933020 +Vertex 3: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.115962 + Group: 'LeftHand', Weight: 0.842878 + Group: 'LeftHandPinky1', Weight: 0.016529 +Vertex 4: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.078844 + Group: 'LeftHand', Weight: 0.874932 + Group: 'LeftHandPinky1', Weight: 0.009246 +Vertex 5: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.066945 + Group: 'LeftHand', Weight: 0.889028 +Vertex 6: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.068704 + Group: 'LeftHand', Weight: 0.884849 + Group: 'LeftHandThumb1', Weight: 0.019631 +Vertex 7: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.117496 + Group: 'LeftHand', Weight: 0.829197 + Group: 'LeftHandThumb1', Weight: 0.045677 +Vertex 8: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.155094 + Group: 'LeftHand', Weight: 0.814309 + Group: 'LeftHandThumb1', Weight: 0.008178 +Vertex 9: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.336065 + Group: 'LeftHand', Weight: 0.618432 + Group: 'LeftHandThumb1', Weight: 0.037015 +Vertex 10: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.310582 + Group: 'LeftHand', Weight: 0.653320 + Group: 'LeftHandThumb1', Weight: 0.019192 +Vertex 11: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.048253 + Group: 'LeftHand', Weight: 0.945830 +Vertex 12: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.127772 + Group: 'LeftHand', Weight: 0.866698 +Vertex 13: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.998641 +Vertex 14: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.997987 +Vertex 15: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991908 +Vertex 16: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.998240 +Vertex 17: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.992845 +Vertex 18: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.987412 +Vertex 19: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.983232 +Vertex 20: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.980032 +Vertex 21: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.988615 +Vertex 22: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.981729 +Vertex 23: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.985488 +Vertex 24: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.994747 +Vertex 25: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.996757 +Vertex 26: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.770626 + Group: 'LeftArm', Weight: 0.204830 +Vertex 27: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.778720 + Group: 'LeftArm', Weight: 0.203119 +Vertex 28: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.733482 + Group: 'LeftArm', Weight: 0.222679 +Vertex 29: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.011765 + Group: 'LeftShoulder', Weight: 0.726443 + Group: 'LeftArm', Weight: 0.222305 +Vertex 30: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.030216 + Group: 'LeftShoulder', Weight: 0.623588 + Group: 'LeftArm', Weight: 0.307974 +Vertex 31: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.045900 + Group: 'Spine2', Weight: 0.068734 + Group: 'LeftShoulder', Weight: 0.574676 + Group: 'LeftArm', Weight: 0.300236 +Vertex 32: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068282 + Group: 'Spine2', Weight: 0.083457 + Group: 'LeftShoulder', Weight: 0.524697 + Group: 'LeftArm', Weight: 0.313806 +Vertex 33: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.074438 + Group: 'Spine2', Weight: 0.086083 + Group: 'LeftShoulder', Weight: 0.568598 + Group: 'LeftArm', Weight: 0.261255 +Vertex 34: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.019541 + Group: 'Spine2', Weight: 0.029697 + Group: 'LeftShoulder', Weight: 0.652768 + Group: 'LeftArm', Weight: 0.261768 +Vertex 35: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.076058 + Group: 'Spine2', Weight: 0.083201 + Group: 'LeftShoulder', Weight: 0.572551 + Group: 'LeftArm', Weight: 0.258188 +Vertex 36: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.058941 + Group: 'Spine2', Weight: 0.060443 + Group: 'LeftShoulder', Weight: 0.603383 + Group: 'LeftArm', Weight: 0.267922 +Vertex 37: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.748706 + Group: 'LeftArm', Weight: 0.227524 +Vertex 38: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.750236 + Group: 'LeftArm', Weight: 0.232221 +Vertex 39: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.994001 +Vertex 40: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.993985 +Vertex 41: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.992397 +Vertex 42: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.993189 +Vertex 43: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.990004 +Vertex 44: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.987138 +Vertex 45: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.983448 +Vertex 46: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.982430 +Vertex 47: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.992043 +Vertex 48: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.986439 +Vertex 49: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.990405 +Vertex 50: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.992617 +Vertex 51: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.993304 +Vertex 52: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.960670 + Group: 'LeftForeArm', Weight: 0.025524 +Vertex 53: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.957410 + Group: 'LeftForeArm', Weight: 0.032188 +Vertex 54: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.967219 + Group: 'LeftForeArm', Weight: 0.014636 +Vertex 55: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.972244 + Group: 'LeftForeArm', Weight: 0.004969 +Vertex 56: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.962397 + Group: 'LeftForeArm', Weight: 0.023624 +Vertex 57: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.983442 +Vertex 58: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991747 +Vertex 59: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.959311 + Group: 'LeftForeArm', Weight: 0.028980 +Vertex 60: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.989556 +Vertex 61: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.984845 +Vertex 62: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.977675 +Vertex 63: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.967714 + Group: 'LeftForeArm', Weight: 0.012073 +Vertex 64: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.977860 +Vertex 65: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.285430 + Group: 'LeftForeArm', Weight: 0.714398 +Vertex 66: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.187462 + Group: 'LeftForeArm', Weight: 0.812441 +Vertex 67: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.190650 + Group: 'LeftForeArm', Weight: 0.809244 +Vertex 68: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.272071 + Group: 'LeftForeArm', Weight: 0.727882 +Vertex 69: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.485166 + Group: 'LeftForeArm', Weight: 0.514752 +Vertex 70: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.486143 + Group: 'LeftForeArm', Weight: 0.513792 +Vertex 71: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.236628 + Group: 'LeftForeArm', Weight: 0.763202 +Vertex 72: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.197142 + Group: 'LeftForeArm', Weight: 0.802768 +Vertex 73: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.234384 + Group: 'LeftForeArm', Weight: 0.765577 +Vertex 74: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.209089 + Group: 'LeftForeArm', Weight: 0.790776 +Vertex 75: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.211182 + Group: 'LeftForeArm', Weight: 0.788784 +Vertex 76: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.442098 + Group: 'LeftForeArm', Weight: 0.557860 +Vertex 77: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.205955 + Group: 'LeftForeArm', Weight: 0.793969 +Vertex 78: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.133127 + Group: 'Spine2', Weight: 0.144375 + Group: 'LeftShoulder', Weight: 0.526440 + Group: 'LeftArm', Weight: 0.179721 +Vertex 79: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.147525 + Group: 'Spine2', Weight: 0.170137 + Group: 'LeftShoulder', Weight: 0.491221 + Group: 'LeftArm', Weight: 0.173242 +Vertex 80: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.092178 + Group: 'Spine2', Weight: 0.090099 + Group: 'LeftShoulder', Weight: 0.610218 + Group: 'LeftArm', Weight: 0.193680 +Vertex 81: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.063108 + Group: 'Spine2', Weight: 0.072214 + Group: 'LeftShoulder', Weight: 0.710108 + Group: 'LeftArm', Weight: 0.136742 +Vertex 82: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.022302 + Group: 'LeftShoulder', Weight: 0.817515 + Group: 'LeftArm', Weight: 0.102015 +Vertex 83: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.123419 + Group: 'Spine2', Weight: 0.564534 + Group: 'Neck', Weight: 0.072257 + Group: 'LeftShoulder', Weight: 0.110549 + Group: 'RightShoulder', Weight: 0.110653 +Vertex 84: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.057686 + Group: 'Spine2', Weight: 0.503996 + Group: 'Neck', Weight: 0.160654 + Group: 'LeftShoulder', Weight: 0.129917 + Group: 'RightShoulder', Weight: 0.130023 +Vertex 85: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.020421 + Group: 'Spine2', Weight: 0.093144 + Group: 'Neck', Weight: 0.051391 + Group: 'LeftShoulder', Weight: 0.774826 + Group: 'LeftArm', Weight: 0.013442 +Vertex 86: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.099697 + Group: 'Spine2', Weight: 0.188646 + Group: 'Neck', Weight: 0.019238 + Group: 'LeftShoulder', Weight: 0.615864 + Group: 'LeftArm', Weight: 0.031956 +Vertex 87: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.030212 + Group: 'Spine2', Weight: 0.210542 + Group: 'Neck', Weight: 0.131656 + Group: 'LeftShoulder', Weight: 0.568320 + Group: 'RightShoulder', Weight: 0.005922 +Vertex 88: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.113887 + Group: 'Spine2', Weight: 0.494300 + Group: 'Neck', Weight: 0.069074 + Group: 'LeftShoulder', Weight: 0.253327 + Group: 'RightShoulder', Weight: 0.044579 +Vertex 89: +Vertex groups: 3 + Group: 'Spine', Weight: 0.140525 + Group: 'Spine1', Weight: 0.727585 + Group: 'Spine2', Weight: 0.063952 +Vertex 90: +Vertex groups: 4 + Group: 'Hips', Weight: 0.074090 + Group: 'Spine', Weight: 0.585896 + Group: 'Spine1', Weight: 0.252113 + Group: 'LeftUpLeg', Weight: 0.056369 +Vertex 91: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.335196 + Group: 'Spine2', Weight: 0.475540 + Group: 'Neck', Weight: 0.000583 + Group: 'LeftShoulder', Weight: 0.069243 + Group: 'RightShoulder', Weight: 0.069337 +Vertex 92: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.253033 + Group: 'Spine2', Weight: 0.473719 + Group: 'Neck', Weight: 0.021745 + Group: 'LeftShoulder', Weight: 0.170492 + Group: 'RightShoulder', Weight: 0.029409 +Vertex 93: +Vertex groups: 4 + Group: 'Spine', Weight: 0.053725 + Group: 'Spine1', Weight: 0.738594 + Group: 'Spine2', Weight: 0.121295 + Group: 'LeftShoulder', Weight: 0.042853 +Vertex 94: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.210305 + Group: 'Spine2', Weight: 0.294307 + Group: 'LeftShoulder', Weight: 0.404738 + Group: 'LeftArm', Weight: 0.032933 +Vertex 95: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.184411 + Group: 'Spine2', Weight: 0.176680 + Group: 'LeftShoulder', Weight: 0.518550 + Group: 'LeftArm', Weight: 0.090775 +Vertex 96: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.201070 + Group: 'Spine2', Weight: 0.180693 + Group: 'LeftShoulder', Weight: 0.474188 + Group: 'LeftArm', Weight: 0.119808 +Vertex 97: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.205015 + Group: 'Spine2', Weight: 0.227556 + Group: 'LeftShoulder', Weight: 0.413073 + Group: 'LeftArm', Weight: 0.131249 +Vertex 98: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.206969 + Group: 'Spine2', Weight: 0.240396 + Group: 'LeftShoulder', Weight: 0.392246 + Group: 'LeftArm', Weight: 0.135822 +Vertex 99: +Vertex groups: 3 + Group: 'Neck', Weight: 0.002101 + Group: 'LeftShoulder', Weight: 0.866294 + Group: 'LeftArm', Weight: 0.085364 +Vertex 100: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.010661 + Group: 'Neck', Weight: 0.074939 + Group: 'LeftShoulder', Weight: 0.846830 + Group: 'LeftArm', Weight: 0.009921 +Vertex 101: +Vertex groups: 4 + Group: 'Spine', Weight: 0.029324 + Group: 'Spine1', Weight: 0.726580 + Group: 'Spine2', Weight: 0.133489 + Group: 'LeftShoulder', Weight: 0.057220 +Vertex 102: +Vertex groups: 4 + Group: 'Spine', Weight: 0.001505 + Group: 'Spine1', Weight: 0.670179 + Group: 'Spine2', Weight: 0.173426 + Group: 'LeftShoulder', Weight: 0.078870 +Vertex 103: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.031945 + Group: 'Spine2', Weight: 0.442065 + Group: 'Neck', Weight: 0.233756 + Group: 'LeftShoulder', Weight: 0.131639 + Group: 'RightShoulder', Weight: 0.131753 +Vertex 104: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.036570 + Group: 'Neck', Weight: 0.165692 + Group: 'LeftShoulder', Weight: 0.751994 +Vertex 105: +Vertex groups: 2 + Group: 'Neck', Weight: 0.199781 + Group: 'LeftShoulder', Weight: 0.753674 +Vertex 106: +Vertex groups: 3 + Group: 'Neck', Weight: 0.091193 + Group: 'LeftShoulder', Weight: 0.855670 + Group: 'LeftArm', Weight: 0.013397 +Vertex 107: +Vertex groups: 3 + Group: 'Neck', Weight: 0.018790 + Group: 'LeftShoulder', Weight: 0.872164 + Group: 'LeftArm', Weight: 0.080386 +Vertex 108: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.241967 + Group: 'Neck', Weight: 0.282393 + Group: 'LeftShoulder', Weight: 0.389939 + Group: 'RightShoulder', Weight: 0.027061 +Vertex 109: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.055021 + Group: 'Spine2', Weight: 0.461477 + Group: 'Neck', Weight: 0.164064 + Group: 'LeftShoulder', Weight: 0.218901 + Group: 'RightShoulder', Weight: 0.081767 +Vertex 110: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.017404 + Group: 'Spine2', Weight: 0.242903 + Group: 'Neck', Weight: 0.191961 + Group: 'LeftShoulder', Weight: 0.473531 + Group: 'RightShoulder', Weight: 0.024614 +Vertex 111: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.025966 + Group: 'Spine2', Weight: 0.398740 + Group: 'Neck', Weight: 0.243379 + Group: 'LeftShoulder', Weight: 0.220409 + Group: 'RightShoulder', Weight: 0.078847 +Vertex 112: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.054423 + Group: 'Neck', Weight: 0.268404 + Group: 'LeftShoulder', Weight: 0.637143 +Vertex 113: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.053715 + Group: 'Neck', Weight: 0.341221 + Group: 'LeftShoulder', Weight: 0.564399 +Vertex 114: +Vertex groups: 2 + Group: 'Neck', Weight: 0.433638 + Group: 'LeftShoulder', Weight: 0.518544 +Vertex 115: +Vertex groups: 2 + Group: 'Neck', Weight: 0.311569 + Group: 'LeftShoulder', Weight: 0.641495 +Vertex 116: +Vertex groups: 5 + Group: 'Spine', Weight: 0.012292 + Group: 'Spine1', Weight: 0.381919 + Group: 'Spine2', Weight: 0.290945 + Group: 'LeftShoulder', Weight: 0.215378 + Group: 'LeftArm', Weight: 0.069259 +Vertex 117: +Vertex groups: 5 + Group: 'Spine', Weight: 0.011241 + Group: 'Spine1', Weight: 0.341138 + Group: 'Spine2', Weight: 0.292326 + Group: 'LeftShoulder', Weight: 0.243070 + Group: 'LeftArm', Weight: 0.082693 +Vertex 118: +Vertex groups: 5 + Group: 'Spine', Weight: 0.083190 + Group: 'Spine1', Weight: 0.652108 + Group: 'Spine2', Weight: 0.135014 + Group: 'LeftShoulder', Weight: 0.083797 + Group: 'LeftArm', Weight: 0.000556 +Vertex 119: +Vertex groups: 5 + Group: 'Spine', Weight: 0.085744 + Group: 'Spine1', Weight: 0.640099 + Group: 'Spine2', Weight: 0.134026 + Group: 'LeftShoulder', Weight: 0.092290 + Group: 'LeftArm', Weight: 0.007646 +Vertex 120: +Vertex groups: 4 + Group: 'Spine', Weight: 0.125907 + Group: 'Spine1', Weight: 0.691898 + Group: 'Spine2', Weight: 0.091612 + Group: 'LeftShoulder', Weight: 0.043290 +Vertex 121: +Vertex groups: 4 + Group: 'Spine', Weight: 0.145999 + Group: 'Spine1', Weight: 0.673766 + Group: 'Spine2', Weight: 0.082887 + Group: 'LeftShoulder', Weight: 0.051613 +Vertex 122: +Vertex groups: 4 + Group: 'Hips', Weight: 0.017702 + Group: 'Spine', Weight: 0.565721 + Group: 'Spine1', Weight: 0.270832 + Group: 'LeftUpLeg', Weight: 0.095162 +Vertex 123: +Vertex groups: 3 + Group: 'Spine', Weight: 0.544429 + Group: 'Spine1', Weight: 0.302600 + Group: 'LeftUpLeg', Weight: 0.090086 +Vertex 124: +Vertex groups: 4 + Group: 'Spine', Weight: 0.149027 + Group: 'Spine1', Weight: 0.702521 + Group: 'Spine2', Weight: 0.071675 + Group: 'LeftShoulder', Weight: 0.010132 +Vertex 125: +Vertex groups: 4 + Group: 'Hips', Weight: 0.054929 + Group: 'Spine', Weight: 0.577374 + Group: 'Spine1', Weight: 0.255749 + Group: 'LeftUpLeg', Weight: 0.080790 +Vertex 126: +Vertex groups: 3 + Group: 'Spine', Weight: 0.132878 + Group: 'Spine1', Weight: 0.752503 + Group: 'Spine2', Weight: 0.052699 +Vertex 127: +Vertex groups: 4 + Group: 'Hips', Weight: 0.086132 + Group: 'Spine', Weight: 0.590241 + Group: 'Spine1', Weight: 0.249913 + Group: 'LeftUpLeg', Weight: 0.026424 +Vertex 128: +Vertex groups: 3 + Group: 'Spine', Weight: 0.140580 + Group: 'Spine1', Weight: 0.751893 + Group: 'Spine2', Weight: 0.043546 +Vertex 129: +Vertex groups: 5 + Group: 'Hips', Weight: 0.094537 + Group: 'Spine', Weight: 0.592895 + Group: 'Spine1', Weight: 0.242458 + Group: 'LeftUpLeg', Weight: 0.002226 + Group: 'RightUpLeg', Weight: 0.002349 +Vertex 130: +Vertex groups: 3 + Group: 'Spine', Weight: 0.066914 + Group: 'Spine1', Weight: 0.780197 + Group: 'Spine2', Weight: 0.085654 +Vertex 131: +Vertex groups: 5 + Group: 'Spine', Weight: 0.030657 + Group: 'Spine1', Weight: 0.754830 + Group: 'Spine2', Weight: 0.120810 + Group: 'LeftShoulder', Weight: 0.009819 + Group: 'RightShoulder', Weight: 0.009940 +Vertex 132: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.656332 + Group: 'Spine2', Weight: 0.203138 + Group: 'LeftShoulder', Weight: 0.041729 + Group: 'RightShoulder', Weight: 0.041883 +Vertex 133: +Vertex groups: 4 + Group: 'Spine', Weight: 0.066788 + Group: 'Spine1', Weight: 0.634906 + Group: 'Spine2', Weight: 0.183447 + Group: 'LeftShoulder', Weight: 0.073721 +Vertex 134: +Vertex groups: 4 + Group: 'Spine', Weight: 0.064278 + Group: 'Spine1', Weight: 0.612089 + Group: 'Spine2', Weight: 0.191259 + Group: 'LeftShoulder', Weight: 0.088211 +Vertex 135: +Vertex groups: 4 + Group: 'Spine', Weight: 0.068022 + Group: 'Spine1', Weight: 0.656042 + Group: 'Spine2', Weight: 0.174071 + Group: 'LeftShoulder', Weight: 0.062444 +Vertex 136: +Vertex groups: 4 + Group: 'Spine', Weight: 0.069553 + Group: 'Spine1', Weight: 0.732187 + Group: 'Spine2', Weight: 0.119292 + Group: 'LeftShoulder', Weight: 0.029631 +Vertex 137: +Vertex groups: 3 + Group: 'Spine', Weight: 0.094732 + Group: 'Spine1', Weight: 0.777251 + Group: 'Spine2', Weight: 0.066469 +Vertex 138: +Vertex groups: 5 + Group: 'Spine', Weight: 0.036575 + Group: 'Spine1', Weight: 0.551318 + Group: 'Spine2', Weight: 0.229791 + Group: 'LeftShoulder', Weight: 0.125167 + Group: 'LeftArm', Weight: 0.016286 +Vertex 139: +Vertex groups: 5 + Group: 'Spine', Weight: 0.051569 + Group: 'Spine1', Weight: 0.563121 + Group: 'Spine2', Weight: 0.195234 + Group: 'LeftShoulder', Weight: 0.133748 + Group: 'LeftArm', Weight: 0.032907 +Vertex 140: +Vertex groups: 5 + Group: 'Spine', Weight: 0.053451 + Group: 'Spine1', Weight: 0.543073 + Group: 'Spine2', Weight: 0.194401 + Group: 'LeftShoulder', Weight: 0.147285 + Group: 'LeftArm', Weight: 0.046038 +Vertex 141: +Vertex groups: 5 + Group: 'Spine', Weight: 0.013805 + Group: 'Spine1', Weight: 0.508798 + Group: 'Spine2', Weight: 0.243574 + Group: 'LeftShoulder', Weight: 0.158625 + Group: 'LeftArm', Weight: 0.031721 +Vertex 142: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.424081 + Group: 'Spine2', Weight: 0.238288 + Group: 'LeftShoulder', Weight: 0.242900 + Group: 'LeftArm', Weight: 0.055882 +Vertex 143: +Vertex groups: 5 + Group: 'Spine', Weight: 0.000535 + Group: 'Spine1', Weight: 0.465177 + Group: 'Spine2', Weight: 0.238629 + Group: 'LeftShoulder', Weight: 0.203491 + Group: 'LeftArm', Weight: 0.050775 +Vertex 144: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.490736 + Group: 'Spine2', Weight: 0.209780 + Group: 'LeftShoulder', Weight: 0.214202 + Group: 'LeftArm', Weight: 0.035048 +Vertex 145: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.530183 + Group: 'Spine2', Weight: 0.207308 + Group: 'LeftShoulder', Weight: 0.183609 + Group: 'LeftArm', Weight: 0.011009 +Vertex 146: +Vertex groups: 3 + Group: 'Spine1', Weight: 0.573695 + Group: 'Spine2', Weight: 0.216086 + Group: 'LeftShoulder', Weight: 0.132989 +Vertex 147: +Vertex groups: 3 + Group: 'Spine1', Weight: 0.607161 + Group: 'Spine2', Weight: 0.213728 + Group: 'LeftShoulder', Weight: 0.100325 +Vertex 148: +Vertex groups: 4 + Group: 'Spine', Weight: 0.069293 + Group: 'Spine1', Weight: 0.696835 + Group: 'Spine2', Weight: 0.148459 + Group: 'LeftShoulder', Weight: 0.043921 +Vertex 149: +Vertex groups: 5 + Group: 'Spine', Weight: 0.001003 + Group: 'Spine1', Weight: 0.542980 + Group: 'Spine2', Weight: 0.201703 + Group: 'LeftShoulder', Weight: 0.171810 + Group: 'LeftArm', Weight: 0.024224 +Vertex 150: +Vertex groups: 5 + Group: 'Spine', Weight: 0.020136 + Group: 'Spine1', Weight: 0.589590 + Group: 'Spine2', Weight: 0.195621 + Group: 'LeftShoulder', Weight: 0.129896 + Group: 'LeftArm', Weight: 0.010521 +Vertex 151: +Vertex groups: 4 + Group: 'Spine', Weight: 0.047616 + Group: 'Spine1', Weight: 0.624643 + Group: 'Spine2', Weight: 0.185964 + Group: 'LeftShoulder', Weight: 0.096659 +Vertex 152: +Vertex groups: 5 + Group: 'Spine', Weight: 0.002223 + Group: 'Spine1', Weight: 0.608189 + Group: 'Spine2', Weight: 0.180042 + Group: 'LeftShoulder', Weight: 0.134396 + Group: 'LeftArm', Weight: 0.000842 +Vertex 153: +Vertex groups: 4 + Group: 'Spine', Weight: 0.024796 + Group: 'Spine1', Weight: 0.656238 + Group: 'Spine2', Weight: 0.164135 + Group: 'LeftShoulder', Weight: 0.098257 +Vertex 154: +Vertex groups: 4 + Group: 'Spine', Weight: 0.049746 + Group: 'Spine1', Weight: 0.671082 + Group: 'Spine2', Weight: 0.161149 + Group: 'LeftShoulder', Weight: 0.077353 +Vertex 155: +Vertex groups: 4 + Group: 'Spine', Weight: 0.003015 + Group: 'Spine1', Weight: 0.657156 + Group: 'Spine2', Weight: 0.171499 + Group: 'LeftShoulder', Weight: 0.095525 +Vertex 156: +Vertex groups: 4 + Group: 'Spine', Weight: 0.026492 + Group: 'Spine1', Weight: 0.705238 + Group: 'Spine2', Weight: 0.143804 + Group: 'LeftShoulder', Weight: 0.070411 +Vertex 157: +Vertex groups: 4 + Group: 'Spine', Weight: 0.052493 + Group: 'Spine1', Weight: 0.713994 + Group: 'Spine2', Weight: 0.137710 + Group: 'LeftShoulder', Weight: 0.056620 +Vertex 158: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.661938 + Group: 'Spine2', Weight: 0.192220 + Group: 'LeftShoulder', Weight: 0.063398 + Group: 'RightShoulder', Weight: 0.015175 +Vertex 159: +Vertex groups: 4 + Group: 'Spine', Weight: 0.029169 + Group: 'Spine1', Weight: 0.746985 + Group: 'Spine2', Weight: 0.125204 + Group: 'LeftShoulder', Weight: 0.030137 +Vertex 160: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.550185 + Group: 'Spine2', Weight: 0.277266 + Group: 'LeftShoulder', Weight: 0.084799 + Group: 'RightShoulder', Weight: 0.025793 +Vertex 161: +Vertex groups: 4 + Group: 'Spine', Weight: 0.060964 + Group: 'Spine1', Weight: 0.769321 + Group: 'Spine2', Weight: 0.097066 + Group: 'LeftShoulder', Weight: 0.011281 +Vertex 162: +Vertex groups: 3 + Group: 'Spine', Weight: 0.089514 + Group: 'Spine1', Weight: 0.769191 + Group: 'Spine2', Weight: 0.076167 +Vertex 163: +Vertex groups: 4 + Group: 'Spine', Weight: 0.086262 + Group: 'Spine1', Weight: 0.673122 + Group: 'Spine2', Weight: 0.137456 + Group: 'LeftShoulder', Weight: 0.061897 +Vertex 164: +Vertex groups: 4 + Group: 'Spine', Weight: 0.075194 + Group: 'Spine1', Weight: 0.647614 + Group: 'Spine2', Weight: 0.152314 + Group: 'LeftShoulder', Weight: 0.080900 +Vertex 165: +Vertex groups: 4 + Group: 'Spine', Weight: 0.089400 + Group: 'Spine1', Weight: 0.692286 + Group: 'Spine2', Weight: 0.128606 + Group: 'LeftShoulder', Weight: 0.049439 +Vertex 166: +Vertex groups: 4 + Group: 'Spine', Weight: 0.094196 + Group: 'Spine1', Weight: 0.726584 + Group: 'Spine2', Weight: 0.104168 + Group: 'LeftShoulder', Weight: 0.020462 +Vertex 167: +Vertex groups: 5 + Group: 'Spine', Weight: 0.044598 + Group: 'Spine1', Weight: 0.560645 + Group: 'Spine2', Weight: 0.208051 + Group: 'LeftShoulder', Weight: 0.130420 + Group: 'LeftArm', Weight: 0.025876 +Vertex 168: +Vertex groups: 5 + Group: 'Spine', Weight: 0.010963 + Group: 'Spine1', Weight: 0.452094 + Group: 'Spine2', Weight: 0.268787 + Group: 'LeftShoulder', Weight: 0.182920 + Group: 'LeftArm', Weight: 0.052231 +Vertex 169: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.373334 + Group: 'Spine2', Weight: 0.263185 + Group: 'LeftShoulder', Weight: 0.257319 + Group: 'LeftArm', Weight: 0.070002 +Vertex 170: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.338481 + Group: 'Spine2', Weight: 0.240514 + Group: 'LeftShoulder', Weight: 0.313932 + Group: 'LeftArm', Weight: 0.073462 +Vertex 171: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.420059 + Group: 'Spine2', Weight: 0.214510 + Group: 'LeftShoulder', Weight: 0.273750 + Group: 'LeftArm', Weight: 0.052353 +Vertex 172: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.462496 + Group: 'Spine2', Weight: 0.230647 + Group: 'LeftShoulder', Weight: 0.225737 + Group: 'LeftArm', Weight: 0.014742 +Vertex 173: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.508261 + Group: 'Spine2', Weight: 0.274748 + Group: 'LeftShoulder', Weight: 0.135149 + Group: 'RightShoulder', Weight: 0.003828 +Vertex 174: +Vertex groups: 4 + Group: 'Spine', Weight: 0.252711 + Group: 'Spine1', Weight: 0.617941 + Group: 'Spine2', Weight: 0.036631 + Group: 'LeftUpLeg', Weight: 0.025757 +Vertex 175: +Vertex groups: 5 + Group: 'Spine', Weight: 0.259484 + Group: 'Spine1', Weight: 0.605364 + Group: 'Spine2', Weight: 0.044342 + Group: 'LeftShoulder', Weight: 0.004332 + Group: 'LeftUpLeg', Weight: 0.027183 +Vertex 176: +Vertex groups: 4 + Group: 'Spine', Weight: 0.259051 + Group: 'Spine1', Weight: 0.619665 + Group: 'Spine2', Weight: 0.024391 + Group: 'LeftUpLeg', Weight: 0.017707 +Vertex 177: +Vertex groups: 4 + Group: 'Hips', Weight: 0.017321 + Group: 'Spine', Weight: 0.255882 + Group: 'Spine1', Weight: 0.638342 + Group: 'Spine2', Weight: 0.006295 +Vertex 178: +Vertex groups: 4 + Group: 'Hips', Weight: 0.022721 + Group: 'Spine', Weight: 0.261125 + Group: 'Spine1', Weight: 0.634873 + Group: 'Spine2', Weight: 0.001777 +Vertex 179: +Vertex groups: 5 + Group: 'Hips', Weight: 0.011287 + Group: 'Spine', Weight: 0.265691 + Group: 'Spine1', Weight: 0.621377 + Group: 'Spine2', Weight: 0.012567 + Group: 'LeftUpLeg', Weight: 0.003771 +Vertex 180: +Vertex groups: 3 + Group: 'Neck', Weight: 0.063703 + Group: 'LeftShoulder', Weight: 0.880335 + Group: 'LeftArm', Weight: 0.009158 +Vertex 181: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.878972 + Group: 'LeftArm', Weight: 0.085310 +Vertex 182: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.037368 + Group: 'Neck', Weight: 0.005024 + Group: 'LeftShoulder', Weight: 0.879841 + Group: 'LeftArm', Weight: 0.010530 +Vertex 183: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.876451 + Group: 'LeftArm', Weight: 0.079441 +Vertex 184: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.063359 + Group: 'LeftShoulder', Weight: 0.805195 + Group: 'LeftArm', Weight: 0.095575 +Vertex 185: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.515562 + Group: 'Neck', Weight: 0.029424 + Group: 'LeftShoulder', Weight: 0.211202 + Group: 'RightShoulder', Weight: 0.211242 +Vertex 186: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.089698 + Group: 'LeftShoulder', Weight: 0.820348 + Group: 'LeftArm', Weight: 0.029093 +Vertex 187: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050835 + Group: 'Spine2', Weight: 0.136946 + Group: 'LeftShoulder', Weight: 0.706409 + Group: 'LeftArm', Weight: 0.083834 +Vertex 188: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068615 + Group: 'Spine2', Weight: 0.135435 + Group: 'LeftShoulder', Weight: 0.638852 + Group: 'LeftArm', Weight: 0.140019 +Vertex 189: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.196075 + Group: 'Spine2', Weight: 0.225871 + Group: 'LeftShoulder', Weight: 0.398980 + Group: 'LeftArm', Weight: 0.153109 +Vertex 190: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.130488 + Group: 'Spine2', Weight: 0.154487 + Group: 'LeftShoulder', Weight: 0.488842 + Group: 'LeftArm', Weight: 0.208456 +Vertex 191: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.072012 + Group: 'Spine2', Weight: 0.107823 + Group: 'LeftShoulder', Weight: 0.591275 + Group: 'LeftArm', Weight: 0.216075 +Vertex 192: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.033645 + Group: 'Spine2', Weight: 0.078047 + Group: 'LeftShoulder', Weight: 0.663330 + Group: 'LeftArm', Weight: 0.206008 +Vertex 193: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.024727 + Group: 'Spine2', Weight: 0.163914 + Group: 'LeftShoulder', Weight: 0.720658 + Group: 'LeftArm', Weight: 0.035236 +Vertex 194: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.009482 + Group: 'Spine2', Weight: 0.561119 + Group: 'LeftShoulder', Weight: 0.189187 + Group: 'RightShoulder', Weight: 0.189248 +Vertex 195: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.123327 + Group: 'Spine2', Weight: 0.187229 + Group: 'LeftShoulder', Weight: 0.532269 + Group: 'LeftArm', Weight: 0.136042 +Vertex 196: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.397639 + Group: 'Neck', Weight: 0.224857 + Group: 'LeftShoulder', Weight: 0.185148 + Group: 'RightShoulder', Weight: 0.185212 +Vertex 197: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.481329 + Group: 'Neck', Weight: 0.095102 + Group: 'LeftShoulder', Weight: 0.206181 + Group: 'RightShoulder', Weight: 0.206221 +Vertex 198: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.147482 + Group: 'Neck', Weight: 0.001283 + Group: 'LeftShoulder', Weight: 0.752597 + Group: 'RightShoulder', Weight: 0.024117 +Vertex 199: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.013182 + Group: 'Spine2', Weight: 0.241630 + Group: 'LeftShoulder', Weight: 0.641565 + Group: 'RightShoulder', Weight: 0.039644 +Vertex 200: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.016552 + Group: 'Neck', Weight: 0.150640 + Group: 'LeftShoulder', Weight: 0.784328 +Vertex 201: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.081327 + Group: 'Neck', Weight: 0.053944 + Group: 'LeftShoulder', Weight: 0.815862 + Group: 'RightShoulder', Weight: 0.006397 +Vertex 202: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.238347 + Group: 'Neck', Weight: 0.027601 + Group: 'LeftShoulder', Weight: 0.617473 + Group: 'RightShoulder', Weight: 0.080051 +Vertex 203: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.008248 + Group: 'Spine2', Weight: 0.341619 + Group: 'LeftShoulder', Weight: 0.508649 + Group: 'RightShoulder', Weight: 0.084964 +Vertex 204: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.170141 + Group: 'Neck', Weight: 0.083496 + Group: 'LeftShoulder', Weight: 0.663373 + Group: 'RightShoulder', Weight: 0.069422 +Vertex 205: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.127854 + Group: 'Neck', Weight: 0.181507 + Group: 'LeftShoulder', Weight: 0.617736 + Group: 'RightShoulder', Weight: 0.063409 +Vertex 206: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.139972 + Group: 'Neck', Weight: 0.547512 + Group: 'LeftShoulder', Weight: 0.153243 + Group: 'RightShoulder', Weight: 0.153348 +Vertex 207: +Vertex groups: 2 + Group: 'Neck', Weight: 0.739193 + Group: 'LeftShoulder', Weight: 0.203684 +Vertex 208: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.015450 + Group: 'Neck', Weight: 0.638099 + Group: 'LeftShoulder', Weight: 0.291211 + Group: 'RightShoulder', Weight: 0.004716 +Vertex 209: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.009799 + Group: 'Neck', Weight: 0.840453 + Group: 'LeftShoulder', Weight: 0.060423 + Group: 'RightShoulder', Weight: 0.060590 +Vertex 210: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.067356 + Group: 'Neck', Weight: 0.728569 + Group: 'LeftShoulder', Weight: 0.098666 + Group: 'RightShoulder', Weight: 0.098821 +Vertex 211: +Vertex groups: 5 + Group: 'Spine', Weight: 0.013914 + Group: 'Spine1', Weight: 0.328818 + Group: 'Spine2', Weight: 0.286529 + Group: 'LeftShoulder', Weight: 0.253403 + Group: 'LeftArm', Weight: 0.088975 +Vertex 212: +Vertex groups: 5 + Group: 'Spine', Weight: 0.053777 + Group: 'Spine1', Weight: 0.524093 + Group: 'Spine2', Weight: 0.204135 + Group: 'LeftShoulder', Weight: 0.154661 + Group: 'LeftArm', Weight: 0.049884 +Vertex 213: +Vertex groups: 5 + Group: 'Spine', Weight: 0.086125 + Group: 'Spine1', Weight: 0.630541 + Group: 'Spine2', Weight: 0.140075 + Group: 'LeftShoulder', Weight: 0.096186 + Group: 'LeftArm', Weight: 0.008797 +Vertex 214: +Vertex groups: 4 + Group: 'Spine', Weight: 0.147048 + Group: 'Spine1', Weight: 0.667461 + Group: 'Spine2', Weight: 0.087213 + Group: 'LeftShoulder', Weight: 0.055205 +Vertex 215: +Vertex groups: 5 + Group: 'Spine', Weight: 0.264963 + Group: 'Spine1', Weight: 0.601110 + Group: 'Spine2', Weight: 0.049594 + Group: 'LeftShoulder', Weight: 0.008737 + Group: 'LeftUpLeg', Weight: 0.020033 +Vertex 216: +Vertex groups: 3 + Group: 'Spine', Weight: 0.550706 + Group: 'Spine1', Weight: 0.309911 + Group: 'LeftUpLeg', Weight: 0.079976 +Vertex 217: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.261341 + Group: 'Spine2', Weight: 0.311738 + Group: 'LeftShoulder', Weight: 0.309535 + Group: 'LeftArm', Weight: 0.080854 +Vertex 218: +Vertex groups: 5 + Group: 'Spine', Weight: 0.041152 + Group: 'Spine1', Weight: 0.479474 + Group: 'Spine2', Weight: 0.249369 + Group: 'LeftShoulder', Weight: 0.167839 + Group: 'LeftArm', Weight: 0.037787 +Vertex 219: +Vertex groups: 5 + Group: 'Spine', Weight: 0.076224 + Group: 'Spine1', Weight: 0.624016 + Group: 'Spine2', Weight: 0.161558 + Group: 'LeftShoulder', Weight: 0.096686 + Group: 'LeftArm', Weight: 0.000904 +Vertex 220: +Vertex groups: 4 + Group: 'Spine', Weight: 0.137782 + Group: 'Spine1', Weight: 0.678986 + Group: 'Spine2', Weight: 0.094421 + Group: 'LeftShoulder', Weight: 0.052692 +Vertex 221: +Vertex groups: 5 + Group: 'Spine', Weight: 0.255599 + Group: 'Spine1', Weight: 0.620996 + Group: 'Spine2', Weight: 0.052145 + Group: 'LeftShoulder', Weight: 0.005821 + Group: 'LeftUpLeg', Weight: 0.002626 +Vertex 222: +Vertex groups: 3 + Group: 'Spine', Weight: 0.573574 + Group: 'Spine1', Weight: 0.311099 + Group: 'LeftUpLeg', Weight: 0.061273 +Vertex 223: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.103489 + Group: 'Spine2', Weight: 0.239356 + Group: 'LeftShoulder', Weight: 0.550791 + Group: 'LeftArm', Weight: 0.079932 +Vertex 224: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.059998 + Group: 'Spine2', Weight: 0.574832 + Group: 'LeftShoulder', Weight: 0.253970 + Group: 'RightShoulder', Weight: 0.082803 +Vertex 225: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.163932 + Group: 'Spine2', Weight: 0.666493 + Group: 'LeftShoulder', Weight: 0.072352 + Group: 'RightShoulder', Weight: 0.072451 +Vertex 226: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.075373 + Group: 'Spine2', Weight: 0.498855 + Group: 'LeftShoulder', Weight: 0.342303 + Group: 'RightShoulder', Weight: 0.044883 +Vertex 227: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.099040 + Group: 'Spine2', Weight: 0.336239 + Group: 'LeftShoulder', Weight: 0.483570 + Group: 'LeftArm', Weight: 0.034534 +Vertex 228: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.207038 + Group: 'Spine2', Weight: 0.376650 + Group: 'LeftShoulder', Weight: 0.323208 + Group: 'LeftArm', Weight: 0.057266 +Vertex 229: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.172630 + Group: 'Spine2', Weight: 0.476881 + Group: 'LeftShoulder', Weight: 0.276324 + Group: 'LeftArm', Weight: 0.013753 +Vertex 230: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.151459 + Group: 'Spine2', Weight: 0.594144 + Group: 'LeftShoulder', Weight: 0.180924 + Group: 'RightShoulder', Weight: 0.029934 +Vertex 231: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.265112 + Group: 'Spine2', Weight: 0.603131 + Group: 'LeftShoulder', Weight: 0.051840 + Group: 'RightShoulder', Weight: 0.051932 +Vertex 232: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.265855 + Group: 'Spine2', Weight: 0.571011 + Group: 'LeftShoulder', Weight: 0.097937 + Group: 'RightShoulder', Weight: 0.012741 +Vertex 233: +Vertex groups: 5 + Group: 'Spine', Weight: 0.018011 + Group: 'Spine1', Weight: 0.368493 + Group: 'Spine2', Weight: 0.375073 + Group: 'LeftShoulder', Weight: 0.171972 + Group: 'LeftArm', Weight: 0.017293 +Vertex 234: +Vertex groups: 3 + Group: 'Spine1', Weight: 0.319296 + Group: 'Spine2', Weight: 0.473073 + Group: 'LeftShoulder', Weight: 0.139170 +Vertex 235: +Vertex groups: 4 + Group: 'Spine', Weight: 0.066031 + Group: 'Spine1', Weight: 0.636597 + Group: 'Spine2', Weight: 0.184713 + Group: 'LeftShoulder', Weight: 0.079360 +Vertex 236: +Vertex groups: 4 + Group: 'Spine', Weight: 0.044695 + Group: 'Spine1', Weight: 0.648408 + Group: 'Spine2', Weight: 0.212861 + Group: 'LeftShoulder', Weight: 0.062421 +Vertex 237: +Vertex groups: 4 + Group: 'Spine', Weight: 0.123129 + Group: 'Spine1', Weight: 0.710520 + Group: 'Spine2', Weight: 0.095999 + Group: 'LeftShoulder', Weight: 0.033742 +Vertex 238: +Vertex groups: 4 + Group: 'Spine', Weight: 0.097602 + Group: 'Spine1', Weight: 0.763566 + Group: 'Spine2', Weight: 0.089542 + Group: 'LeftShoulder', Weight: 0.005389 +Vertex 239: +Vertex groups: 3 + Group: 'Spine', Weight: 0.258978 + Group: 'Spine1', Weight: 0.643398 + Group: 'Spine2', Weight: 0.038851 +Vertex 240: +Vertex groups: 3 + Group: 'Spine', Weight: 0.244145 + Group: 'Spine1', Weight: 0.688943 + Group: 'Spine2', Weight: 0.014789 +Vertex 241: +Vertex groups: 3 + Group: 'Spine', Weight: 0.617839 + Group: 'Spine1', Weight: 0.295506 + Group: 'LeftUpLeg', Weight: 0.036438 +Vertex 242: +Vertex groups: 2 + Group: 'Spine', Weight: 0.686909 + Group: 'Spine1', Weight: 0.257369 +Vertex 243: +Vertex groups: 5 + Group: 'Spine', Weight: 0.015904 + Group: 'Spine1', Weight: 0.699112 + Group: 'Spine2', Weight: 0.207451 + Group: 'LeftShoulder', Weight: 0.000311 + Group: 'RightShoulder', Weight: 0.000445 +Vertex 244: +Vertex groups: 4 + Group: 'Spine', Weight: 0.018822 + Group: 'Spine1', Weight: 0.673930 + Group: 'Spine2', Weight: 0.221913 + Group: 'LeftShoulder', Weight: 0.029894 +Vertex 245: +Vertex groups: 3 + Group: 'Spine', Weight: 0.072363 + Group: 'Spine1', Weight: 0.818055 + Group: 'Spine2', Weight: 0.076931 +Vertex 246: +Vertex groups: 3 + Group: 'Spine', Weight: 0.076678 + Group: 'Spine1', Weight: 0.809072 + Group: 'Spine2', Weight: 0.078713 +Vertex 247: +Vertex groups: 2 + Group: 'Spine', Weight: 0.254845 + Group: 'Spine1', Weight: 0.704656 +Vertex 248: +Vertex groups: 2 + Group: 'Spine', Weight: 0.757033 + Group: 'Spine1', Weight: 0.200464 +Vertex 249: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.055088 + Group: 'Spine2', Weight: 0.631068 + Group: 'LeftShoulder', Weight: 0.144115 + Group: 'RightShoulder', Weight: 0.144211 +Vertex 250: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.083822 + Group: 'Spine2', Weight: 0.643764 + Group: 'LeftShoulder', Weight: 0.164224 + Group: 'RightShoulder', Weight: 0.082628 +Vertex 251: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.087614 + Group: 'Spine2', Weight: 0.662811 + Group: 'LeftShoulder', Weight: 0.112638 + Group: 'RightShoulder', Weight: 0.112746 +Vertex 252: +Vertex groups: 4 + Group: 'Hips', Weight: 0.229668 + Group: 'Spine', Weight: 0.499370 + Group: 'Spine1', Weight: 0.086682 + Group: 'LeftUpLeg', Weight: 0.158317 +Vertex 253: +Vertex groups: 4 + Group: 'Hips', Weight: 0.077877 + Group: 'Spine', Weight: 0.543980 + Group: 'Spine1', Weight: 0.123107 + Group: 'LeftUpLeg', Weight: 0.235478 +Vertex 254: +Vertex groups: 4 + Group: 'Hips', Weight: 0.035722 + Group: 'Spine', Weight: 0.570494 + Group: 'Spine1', Weight: 0.143781 + Group: 'LeftUpLeg', Weight: 0.220802 +Vertex 255: +Vertex groups: 4 + Group: 'Hips', Weight: 0.142934 + Group: 'Spine', Weight: 0.521164 + Group: 'Spine1', Weight: 0.096712 + Group: 'LeftUpLeg', Weight: 0.219720 +Vertex 256: +Vertex groups: 5 + Group: 'Hips', Weight: 0.301138 + Group: 'Spine', Weight: 0.476768 + Group: 'Spine1', Weight: 0.083104 + Group: 'LeftUpLeg', Weight: 0.099584 + Group: 'RightUpLeg', Weight: 0.015262 +Vertex 257: +Vertex groups: 5 + Group: 'Hips', Weight: 0.319589 + Group: 'Spine', Weight: 0.476025 + Group: 'Spine1', Weight: 0.082860 + Group: 'LeftUpLeg', Weight: 0.057442 + Group: 'RightUpLeg', Weight: 0.057537 +Vertex 258: +Vertex groups: 3 + Group: 'Spine', Weight: 0.607296 + Group: 'Spine1', Weight: 0.150686 + Group: 'LeftUpLeg', Weight: 0.193023 +Vertex 259: +Vertex groups: 3 + Group: 'Spine', Weight: 0.658345 + Group: 'Spine1', Weight: 0.157031 + Group: 'LeftUpLeg', Weight: 0.140505 +Vertex 260: +Vertex groups: 3 + Group: 'Spine', Weight: 0.711531 + Group: 'Spine1', Weight: 0.163613 + Group: 'LeftUpLeg', Weight: 0.083937 +Vertex 261: +Vertex groups: 3 + Group: 'Spine', Weight: 0.771612 + Group: 'Spine1', Weight: 0.134439 + Group: 'LeftUpLeg', Weight: 0.055218 +Vertex 262: +Vertex groups: 2 + Group: 'Spine', Weight: 0.822411 + Group: 'Spine1', Weight: 0.111499 +Vertex 263: +Vertex groups: 3 + Group: 'Spine', Weight: 0.118450 + Group: 'Spine1', Weight: 0.810788 + Group: 'Spine2', Weight: 0.040633 +Vertex 264: +Vertex groups: 3 + Group: 'Spine', Weight: 0.131343 + Group: 'Spine1', Weight: 0.785977 + Group: 'Spine2', Weight: 0.052223 +Vertex 265: +Vertex groups: 4 + Group: 'Hips', Weight: 0.066217 + Group: 'Spine', Weight: 0.567275 + Group: 'Spine1', Weight: 0.164984 + Group: 'LeftUpLeg', Weight: 0.177656 +Vertex 266: +Vertex groups: 3 + Group: 'Spine', Weight: 0.607822 + Group: 'Spine1', Weight: 0.207398 + Group: 'LeftUpLeg', Weight: 0.132953 +Vertex 267: +Vertex groups: 4 + Group: 'Hips', Weight: 0.021653 + Group: 'Spine', Weight: 0.583481 + Group: 'Spine1', Weight: 0.193350 + Group: 'LeftUpLeg', Weight: 0.159216 +Vertex 268: +Vertex groups: 3 + Group: 'Spine', Weight: 0.653634 + Group: 'Spine1', Weight: 0.197559 + Group: 'LeftUpLeg', Weight: 0.103662 +Vertex 269: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.017304 + Group: 'Spine2', Weight: 0.404803 + Group: 'Neck', Weight: 0.280834 + Group: 'LeftShoulder', Weight: 0.129636 + Group: 'RightShoulder', Weight: 0.129754 +Vertex 270: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.011128 + Group: 'Spine2', Weight: 0.361696 + Group: 'Neck', Weight: 0.291072 + Group: 'LeftShoulder', Weight: 0.219847 + Group: 'RightShoulder', Weight: 0.074702 +Vertex 271: +Vertex groups: 2 + Group: 'Neck', Weight: 0.298788 + Group: 'Head', Weight: 0.689058 +Vertex 272: +Vertex groups: 2 + Group: 'Neck', Weight: 0.313623 + Group: 'Head', Weight: 0.673534 +Vertex 273: +Vertex groups: 2 + Group: 'Neck', Weight: 0.695012 + Group: 'Head', Weight: 0.260341 +Vertex 274: +Vertex groups: 2 + Group: 'Neck', Weight: 0.690646 + Group: 'Head', Weight: 0.258857 +Vertex 275: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.167259 + Group: 'Neck', Weight: 0.624797 + Group: 'Head', Weight: 0.013303 + Group: 'LeftShoulder', Weight: 0.079191 + Group: 'RightShoulder', Weight: 0.079346 +Vertex 276: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.133916 + Group: 'Neck', Weight: 0.646823 + Group: 'Head', Weight: 0.017134 + Group: 'LeftShoulder', Weight: 0.132386 + Group: 'RightShoulder', Weight: 0.026643 +Vertex 277: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.051504 + Group: 'Neck', Weight: 0.779424 + Group: 'Head', Weight: 0.081656 + Group: 'LeftShoulder', Weight: 0.058732 +Vertex 278: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.063557 + Group: 'Neck', Weight: 0.771851 + Group: 'Head', Weight: 0.075610 + Group: 'LeftShoulder', Weight: 0.031742 + Group: 'RightShoulder', Weight: 0.031996 +Vertex 279: +Vertex groups: 2 + Group: 'Neck', Weight: 0.690758 + Group: 'Head', Weight: 0.278735 +Vertex 280: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.091168 + Group: 'Neck', Weight: 0.670913 + Group: 'Head', Weight: 0.019995 + Group: 'LeftShoulder', Weight: 0.171115 +Vertex 281: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.005603 + Group: 'Neck', Weight: 0.806239 + Group: 'Head', Weight: 0.085958 + Group: 'LeftShoulder', Weight: 0.066884 +Vertex 282: +Vertex groups: 2 + Group: 'Neck', Weight: 0.736022 + Group: 'Head', Weight: 0.237417 +Vertex 283: +Vertex groups: 3 + Group: 'Neck', Weight: 0.704046 + Group: 'Head', Weight: 0.016982 + Group: 'LeftShoulder', Weight: 0.226904 +Vertex 284: +Vertex groups: 3 + Group: 'Neck', Weight: 0.826881 + Group: 'Head', Weight: 0.079899 + Group: 'LeftShoulder', Weight: 0.074592 +Vertex 285: +Vertex groups: 2 + Group: 'Neck', Weight: 0.702187 + Group: 'Head', Weight: 0.280865 +Vertex 286: +Vertex groups: 3 + Group: 'Neck', Weight: 0.750204 + Group: 'Head', Weight: 0.012663 + Group: 'LeftShoulder', Weight: 0.196879 +Vertex 287: +Vertex groups: 3 + Group: 'Neck', Weight: 0.844560 + Group: 'Head', Weight: 0.091704 + Group: 'LeftShoulder', Weight: 0.054140 +Vertex 288: +Vertex groups: 2 + Group: 'Neck', Weight: 0.705599 + Group: 'Head', Weight: 0.279059 +Vertex 289: +Vertex groups: 3 + Group: 'Neck', Weight: 0.875608 + Group: 'Head', Weight: 0.015779 + Group: 'LeftShoulder', Weight: 0.074781 +Vertex 290: +Vertex groups: 3 + Group: 'Neck', Weight: 0.864150 + Group: 'Head', Weight: 0.100749 + Group: 'LeftShoulder', Weight: 0.005804 +Vertex 291: +Vertex groups: 2 + Group: 'Neck', Weight: 0.736777 + Group: 'Head', Weight: 0.253083 +Vertex 292: +Vertex groups: 1 + Group: 'Neck', Weight: 0.927652 +Vertex 293: +Vertex groups: 2 + Group: 'Neck', Weight: 0.896126 + Group: 'Head', Weight: 0.083637 +Vertex 294: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.251303 + Group: 'Neck', Weight: 0.337916 + Group: 'LeftShoulder', Weight: 0.325872 + Group: 'RightShoulder', Weight: 0.027877 +Vertex 295: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.061158 + Group: 'Neck', Weight: 0.414475 + Group: 'LeftShoulder', Weight: 0.480255 +Vertex 296: +Vertex groups: 2 + Group: 'Neck', Weight: 0.784775 + Group: 'LeftShoulder', Weight: 0.164686 +Vertex 297: +Vertex groups: 3 + Group: 'Neck', Weight: 0.871290 + Group: 'LeftShoulder', Weight: 0.047418 + Group: 'RightShoulder', Weight: 0.047747 +Vertex 298: +Vertex groups: 2 + Group: 'Neck', Weight: 0.427854 + Group: 'Head', Weight: 0.565538 +Vertex 299: +Vertex groups: 2 + Group: 'Neck', Weight: 0.380002 + Group: 'Head', Weight: 0.612464 +Vertex 300: +Vertex groups: 2 + Group: 'Neck', Weight: 0.302014 + Group: 'Head', Weight: 0.691918 +Vertex 301: +Vertex groups: 2 + Group: 'Neck', Weight: 0.402827 + Group: 'Head', Weight: 0.575383 +Vertex 302: +Vertex groups: 2 + Group: 'Neck', Weight: 0.398216 + Group: 'Head', Weight: 0.578115 +Vertex 303: +Vertex groups: 2 + Group: 'Neck', Weight: 0.426405 + Group: 'Head', Weight: 0.554169 +Vertex 304: +Vertex groups: 2 + Group: 'Neck', Weight: 0.342611 + Group: 'Head', Weight: 0.644662 +Vertex 305: +Vertex groups: 2 + Group: 'Neck', Weight: 0.392070 + Group: 'Head', Weight: 0.595387 +Vertex 306: +Vertex groups: 2 + Group: 'Neck', Weight: 0.449819 + Group: 'Head', Weight: 0.538820 +Vertex 307: +Vertex groups: 2 + Group: 'Neck', Weight: 0.453463 + Group: 'Head', Weight: 0.539761 +Vertex 308: +Vertex groups: 2 + Group: 'Neck', Weight: 0.292055 + Group: 'Head', Weight: 0.702834 +Vertex 309: +Vertex groups: 2 + Group: 'Neck', Weight: 0.563517 + Group: 'Head', Weight: 0.426220 +Vertex 310: +Vertex groups: 2 + Group: 'Neck', Weight: 0.313698 + Group: 'Head', Weight: 0.682000 +Vertex 311: +Vertex groups: 2 + Group: 'Neck', Weight: 0.259674 + Group: 'Head', Weight: 0.736265 +Vertex 312: +Vertex groups: 2 + Group: 'Neck', Weight: 0.219772 + Group: 'Head', Weight: 0.776933 +Vertex 313: +Vertex groups: 2 + Group: 'Neck', Weight: 0.175975 + Group: 'Head', Weight: 0.821295 +Vertex 314: +Vertex groups: 2 + Group: 'Neck', Weight: 0.143321 + Group: 'Head', Weight: 0.854414 +Vertex 315: +Vertex groups: 2 + Group: 'Neck', Weight: 0.133777 + Group: 'Head', Weight: 0.864248 +Vertex 316: +Vertex groups: 2 + Group: 'Neck', Weight: 0.150477 + Group: 'Head', Weight: 0.847481 +Vertex 317: +Vertex groups: 2 + Group: 'Neck', Weight: 0.123807 + Group: 'Head', Weight: 0.874274 +Vertex 318: +Vertex groups: 2 + Group: 'Neck', Weight: 0.155484 + Group: 'Head', Weight: 0.842066 +Vertex 319: +Vertex groups: 2 + Group: 'Neck', Weight: 0.194308 + Group: 'Head', Weight: 0.802541 +Vertex 320: +Vertex groups: 2 + Group: 'Neck', Weight: 0.161175 + Group: 'Head', Weight: 0.836195 +Vertex 321: +Vertex groups: 2 + Group: 'Neck', Weight: 0.131073 + Group: 'Head', Weight: 0.866811 +Vertex 322: +Vertex groups: 2 + Group: 'Neck', Weight: 0.108522 + Group: 'Head', Weight: 0.889763 +Vertex 323: +Vertex groups: 2 + Group: 'Neck', Weight: 0.151660 + Group: 'Head', Weight: 0.846052 +Vertex 324: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098910 + Group: 'Head', Weight: 0.899634 +Vertex 325: +Vertex groups: 2 + Group: 'Neck', Weight: 0.198781 + Group: 'Head', Weight: 0.798446 +Vertex 326: +Vertex groups: 2 + Group: 'Neck', Weight: 0.214731 + Group: 'Head', Weight: 0.782405 +Vertex 327: +Vertex groups: 2 + Group: 'Neck', Weight: 0.165554 + Group: 'Head', Weight: 0.832552 +Vertex 328: +Vertex groups: 2 + Group: 'Neck', Weight: 0.340966 + Group: 'Head', Weight: 0.654000 +Vertex 329: +Vertex groups: 2 + Group: 'Neck', Weight: 0.268518 + Group: 'Head', Weight: 0.727685 +Vertex 330: +Vertex groups: 2 + Group: 'Neck', Weight: 0.173723 + Group: 'Head', Weight: 0.823776 +Vertex 331: +Vertex groups: 2 + Group: 'Neck', Weight: 0.113731 + Group: 'Head', Weight: 0.884641 +Vertex 332: +Vertex groups: 2 + Group: 'Neck', Weight: 0.116441 + Group: 'Head', Weight: 0.881977 +Vertex 333: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098041 + Group: 'Head', Weight: 0.900471 +Vertex 334: +Vertex groups: 2 + Group: 'Neck', Weight: 0.236883 + Group: 'Head', Weight: 0.760409 +Vertex 335: +Vertex groups: 2 + Group: 'Neck', Weight: 0.371536 + Group: 'Head', Weight: 0.624263 +Vertex 336: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105234 + Group: 'Head', Weight: 0.893520 +Vertex 337: +Vertex groups: 2 + Group: 'Neck', Weight: 0.058572 + Group: 'Head', Weight: 0.940695 +Vertex 338: +Vertex groups: 2 + Group: 'Neck', Weight: 0.051763 + Group: 'Head', Weight: 0.947428 +Vertex 339: +Vertex groups: 2 + Group: 'Neck', Weight: 0.080167 + Group: 'Head', Weight: 0.918608 +Vertex 340: +Vertex groups: 2 + Group: 'Neck', Weight: 0.084874 + Group: 'Head', Weight: 0.913897 +Vertex 341: +Vertex groups: 2 + Group: 'Neck', Weight: 0.060856 + Group: 'Head', Weight: 0.938115 +Vertex 342: +Vertex groups: 2 + Group: 'Neck', Weight: 0.096311 + Group: 'Head', Weight: 0.902094 +Vertex 343: +Vertex groups: 2 + Group: 'Neck', Weight: 0.122168 + Group: 'Head', Weight: 0.875743 +Vertex 344: +Vertex groups: 2 + Group: 'Neck', Weight: 0.164150 + Group: 'Head', Weight: 0.832970 +Vertex 345: +Vertex groups: 2 + Group: 'Neck', Weight: 0.089684 + Group: 'Head', Weight: 0.908715 +Vertex 346: +Vertex groups: 2 + Group: 'Neck', Weight: 0.138035 + Group: 'Head', Weight: 0.859393 +Vertex 347: +Vertex groups: 2 + Group: 'Neck', Weight: 0.207753 + Group: 'Head', Weight: 0.788577 +Vertex 348: +Vertex groups: 2 + Group: 'Neck', Weight: 0.206351 + Group: 'Head', Weight: 0.789664 +Vertex 349: +Vertex groups: 2 + Group: 'Neck', Weight: 0.068869 + Group: 'Head', Weight: 0.929885 +Vertex 350: +Vertex groups: 2 + Group: 'Neck', Weight: 0.117697 + Group: 'Head', Weight: 0.880114 +Vertex 351: +Vertex groups: 2 + Group: 'Neck', Weight: 0.054132 + Group: 'Head', Weight: 0.944894 +Vertex 352: +Vertex groups: 2 + Group: 'Neck', Weight: 0.201643 + Group: 'Head', Weight: 0.794507 +Vertex 353: +Vertex groups: 2 + Group: 'Neck', Weight: 0.236246 + Group: 'Head', Weight: 0.759476 +Vertex 354: +Vertex groups: 2 + Group: 'Neck', Weight: 0.269266 + Group: 'Head', Weight: 0.726218 +Vertex 355: +Vertex groups: 2 + Group: 'Neck', Weight: 0.058093 + Group: 'Head', Weight: 0.940855 +Vertex 356: +Vertex groups: 2 + Group: 'Neck', Weight: 0.104130 + Group: 'Head', Weight: 0.893966 +Vertex 357: +Vertex groups: 2 + Group: 'Neck', Weight: 0.167199 + Group: 'Head', Weight: 0.829726 +Vertex 358: +Vertex groups: 2 + Group: 'Neck', Weight: 0.158510 + Group: 'Head', Weight: 0.838705 +Vertex 359: +Vertex groups: 2 + Group: 'Neck', Weight: 0.028792 + Group: 'Head', Weight: 0.959917 +Vertex 360: +Vertex groups: 2 + Group: 'Neck', Weight: 0.007923 + Group: 'Head', Weight: 0.970525 +Vertex 361: +Vertex groups: 2 + Group: 'Neck', Weight: 0.002513 + Group: 'Head', Weight: 0.973276 +Vertex 362: +Vertex groups: 1 + Group: 'Head', Weight: 0.977800 +Vertex 363: +Vertex groups: 1 + Group: 'Head', Weight: 0.987817 +Vertex 364: +Vertex groups: 1 + Group: 'Head', Weight: 0.989699 +Vertex 365: +Vertex groups: 2 + Group: 'Neck', Weight: 0.005864 + Group: 'Head', Weight: 0.971699 +Vertex 366: +Vertex groups: 2 + Group: 'Neck', Weight: 0.032144 + Group: 'Head', Weight: 0.958426 +Vertex 367: +Vertex groups: 1 + Group: 'Head', Weight: 0.985491 +Vertex 368: +Vertex groups: 1 + Group: 'Head', Weight: 0.994834 +Vertex 369: +Vertex groups: 1 + Group: 'Head', Weight: 0.998447 +Vertex 370: +Vertex groups: 2 + Group: 'Neck', Weight: 0.409702 + Group: 'Head', Weight: 0.581231 +Vertex 371: +Vertex groups: 2 + Group: 'Neck', Weight: 0.431927 + Group: 'Head', Weight: 0.561661 +Vertex 372: +Vertex groups: 2 + Group: 'Neck', Weight: 0.343484 + Group: 'Head', Weight: 0.648458 +Vertex 373: +Vertex groups: 2 + Group: 'Neck', Weight: 0.309227 + Group: 'Head', Weight: 0.682480 +Vertex 374: +Vertex groups: 2 + Group: 'Neck', Weight: 0.288983 + Group: 'Head', Weight: 0.703398 +Vertex 375: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280675 + Group: 'Head', Weight: 0.712237 +Vertex 376: +Vertex groups: 2 + Group: 'Neck', Weight: 0.274633 + Group: 'Head', Weight: 0.718116 +Vertex 377: +Vertex groups: 2 + Group: 'Neck', Weight: 0.276102 + Group: 'Head', Weight: 0.716618 +Vertex 378: +Vertex groups: 2 + Group: 'Neck', Weight: 0.284253 + Group: 'Head', Weight: 0.705924 +Vertex 379: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277862 + Group: 'Head', Weight: 0.713789 +Vertex 380: +Vertex groups: 2 + Group: 'Neck', Weight: 0.282565 + Group: 'Head', Weight: 0.708619 +Vertex 381: +Vertex groups: 2 + Group: 'Neck', Weight: 0.292295 + Group: 'Head', Weight: 0.698151 +Vertex 382: +Vertex groups: 2 + Group: 'Neck', Weight: 0.317066 + Group: 'Head', Weight: 0.672759 +Vertex 383: +Vertex groups: 2 + Group: 'Neck', Weight: 0.374366 + Group: 'Head', Weight: 0.614831 +Vertex 384: +Vertex groups: 2 + Group: 'Neck', Weight: 0.295033 + Group: 'Head', Weight: 0.698536 +Vertex 385: +Vertex groups: 2 + Group: 'Neck', Weight: 0.334549 + Group: 'Head', Weight: 0.661194 +Vertex 386: +Vertex groups: 2 + Group: 'Neck', Weight: 0.324371 + Group: 'Head', Weight: 0.671175 +Vertex 387: +Vertex groups: 2 + Group: 'Neck', Weight: 0.339219 + Group: 'Head', Weight: 0.656632 +Vertex 388: +Vertex groups: 2 + Group: 'Neck', Weight: 0.366009 + Group: 'Head', Weight: 0.630380 +Vertex 389: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363319 + Group: 'Head', Weight: 0.633273 +Vertex 390: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363971 + Group: 'Head', Weight: 0.632925 +Vertex 391: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363962 + Group: 'Head', Weight: 0.632896 +Vertex 392: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363262 + Group: 'Head', Weight: 0.633551 +Vertex 393: +Vertex groups: 2 + Group: 'Neck', Weight: 0.361434 + Group: 'Head', Weight: 0.635896 +Vertex 394: +Vertex groups: 2 + Group: 'Neck', Weight: 0.359948 + Group: 'Head', Weight: 0.637384 +Vertex 395: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363421 + Group: 'Head', Weight: 0.633723 +Vertex 396: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364507 + Group: 'Head', Weight: 0.632260 +Vertex 397: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363447 + Group: 'Head', Weight: 0.633560 +Vertex 398: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363277 + Group: 'Head', Weight: 0.633442 +Vertex 399: +Vertex groups: 2 + Group: 'Neck', Weight: 0.360066 + Group: 'Head', Weight: 0.637298 +Vertex 400: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363826 + Group: 'Head', Weight: 0.633031 +Vertex 401: +Vertex groups: 2 + Group: 'Neck', Weight: 0.365286 + Group: 'Head', Weight: 0.631794 +Vertex 402: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364191 + Group: 'Head', Weight: 0.632920 +Vertex 403: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364701 + Group: 'Head', Weight: 0.632282 +Vertex 404: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364300 + Group: 'Head', Weight: 0.632572 +Vertex 405: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364454 + Group: 'Head', Weight: 0.632244 +Vertex 406: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364862 + Group: 'Head', Weight: 0.632247 +Vertex 407: +Vertex groups: 2 + Group: 'Neck', Weight: 0.359894 + Group: 'Head', Weight: 0.636777 +Vertex 408: +Vertex groups: 2 + Group: 'Neck', Weight: 0.359271 + Group: 'Head', Weight: 0.637382 +Vertex 409: +Vertex groups: 2 + Group: 'Neck', Weight: 0.358470 + Group: 'Head', Weight: 0.638171 +Vertex 410: +Vertex groups: 2 + Group: 'Neck', Weight: 0.357448 + Group: 'Head', Weight: 0.639147 +Vertex 411: +Vertex groups: 2 + Group: 'Neck', Weight: 0.358201 + Group: 'Head', Weight: 0.638340 +Vertex 412: +Vertex groups: 2 + Group: 'Neck', Weight: 0.360088 + Group: 'Head', Weight: 0.636364 +Vertex 413: +Vertex groups: 2 + Group: 'Neck', Weight: 0.357756 + Group: 'Head', Weight: 0.638447 +Vertex 414: +Vertex groups: 2 + Group: 'Neck', Weight: 0.353638 + Group: 'Head', Weight: 0.642617 +Vertex 415: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363935 + Group: 'Head', Weight: 0.632591 +Vertex 416: +Vertex groups: 2 + Group: 'Neck', Weight: 0.352594 + Group: 'Head', Weight: 0.643754 +Vertex 417: +Vertex groups: 2 + Group: 'Neck', Weight: 0.356030 + Group: 'Head', Weight: 0.640383 +Vertex 418: +Vertex groups: 2 + Group: 'Neck', Weight: 0.357208 + Group: 'Head', Weight: 0.639219 +Vertex 419: +Vertex groups: 2 + Group: 'Neck', Weight: 0.357696 + Group: 'Head', Weight: 0.638742 +Vertex 420: +Vertex groups: 2 + Group: 'Neck', Weight: 0.339157 + Group: 'Head', Weight: 0.656697 +Vertex 421: +Vertex groups: 2 + Group: 'Neck', Weight: 0.351584 + Group: 'Head', Weight: 0.644610 +Vertex 422: +Vertex groups: 2 + Group: 'Neck', Weight: 0.352204 + Group: 'Head', Weight: 0.644004 +Vertex 423: +Vertex groups: 2 + Group: 'Neck', Weight: 0.316539 + Group: 'Head', Weight: 0.678626 +Vertex 424: +Vertex groups: 2 + Group: 'Neck', Weight: 0.336096 + Group: 'Head', Weight: 0.659286 +Vertex 425: +Vertex groups: 2 + Group: 'Neck', Weight: 0.315563 + Group: 'Head', Weight: 0.678102 +Vertex 426: +Vertex groups: 2 + Group: 'Neck', Weight: 0.349237 + Group: 'Head', Weight: 0.646891 +Vertex 427: +Vertex groups: 2 + Group: 'Neck', Weight: 0.344003 + Group: 'Head', Weight: 0.651947 +Vertex 428: +Vertex groups: 2 + Group: 'Neck', Weight: 0.346442 + Group: 'Head', Weight: 0.649609 +Vertex 429: +Vertex groups: 2 + Group: 'Neck', Weight: 0.349986 + Group: 'Head', Weight: 0.645900 +Vertex 430: +Vertex groups: 2 + Group: 'Neck', Weight: 0.338698 + Group: 'Head', Weight: 0.657144 +Vertex 431: +Vertex groups: 2 + Group: 'Neck', Weight: 0.320851 + Group: 'Head', Weight: 0.674626 +Vertex 432: +Vertex groups: 2 + Group: 'Neck', Weight: 0.322423 + Group: 'Head', Weight: 0.673088 +Vertex 433: +Vertex groups: 2 + Group: 'Neck', Weight: 0.301540 + Group: 'Head', Weight: 0.693381 +Vertex 434: +Vertex groups: 2 + Group: 'Neck', Weight: 0.303244 + Group: 'Head', Weight: 0.691703 +Vertex 435: +Vertex groups: 2 + Group: 'Neck', Weight: 0.283237 + Group: 'Head', Weight: 0.710842 +Vertex 436: +Vertex groups: 2 + Group: 'Neck', Weight: 0.284225 + Group: 'Head', Weight: 0.709862 +Vertex 437: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277233 + Group: 'Head', Weight: 0.716270 +Vertex 438: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277773 + Group: 'Head', Weight: 0.715693 +Vertex 439: +Vertex groups: 2 + Group: 'Neck', Weight: 0.337191 + Group: 'Head', Weight: 0.658606 +Vertex 440: +Vertex groups: 2 + Group: 'Neck', Weight: 0.315369 + Group: 'Head', Weight: 0.679925 +Vertex 441: +Vertex groups: 2 + Group: 'Neck', Weight: 0.359105 + Group: 'Head', Weight: 0.636876 +Vertex 442: +Vertex groups: 2 + Group: 'Neck', Weight: 0.289205 + Group: 'Head', Weight: 0.704653 +Vertex 443: +Vertex groups: 2 + Group: 'Neck', Weight: 0.287538 + Group: 'Head', Weight: 0.706549 +Vertex 444: +Vertex groups: 2 + Group: 'Neck', Weight: 0.310242 + Group: 'Head', Weight: 0.684442 +Vertex 445: +Vertex groups: 2 + Group: 'Neck', Weight: 0.329201 + Group: 'Head', Weight: 0.665646 +Vertex 446: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280951 + Group: 'Head', Weight: 0.712462 +Vertex 447: +Vertex groups: 2 + Group: 'Neck', Weight: 0.333152 + Group: 'Head', Weight: 0.662327 +Vertex 448: +Vertex groups: 2 + Group: 'Neck', Weight: 0.317654 + Group: 'Head', Weight: 0.680255 +Vertex 449: +Vertex groups: 2 + Group: 'Neck', Weight: 0.283565 + Group: 'Head', Weight: 0.714675 +Vertex 450: +Vertex groups: 2 + Group: 'Neck', Weight: 0.274163 + Group: 'Head', Weight: 0.724194 +Vertex 451: +Vertex groups: 2 + Group: 'Neck', Weight: 0.265212 + Group: 'Head', Weight: 0.733255 +Vertex 452: +Vertex groups: 2 + Group: 'Neck', Weight: 0.113253 + Group: 'Head', Weight: 0.885977 +Vertex 453: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098515 + Group: 'Head', Weight: 0.900800 +Vertex 454: +Vertex groups: 2 + Group: 'Neck', Weight: 0.058169 + Group: 'Head', Weight: 0.941389 +Vertex 455: +Vertex groups: 2 + Group: 'Neck', Weight: 0.075120 + Group: 'Head', Weight: 0.924333 +Vertex 456: +Vertex groups: 2 + Group: 'Neck', Weight: 0.160140 + Group: 'Head', Weight: 0.838834 +Vertex 457: +Vertex groups: 2 + Group: 'Neck', Weight: 0.189030 + Group: 'Head', Weight: 0.809800 +Vertex 458: +Vertex groups: 2 + Group: 'Neck', Weight: 0.255042 + Group: 'Head', Weight: 0.743489 +Vertex 459: +Vertex groups: 2 + Group: 'Neck', Weight: 0.296290 + Group: 'Head', Weight: 0.701815 +Vertex 460: +Vertex groups: 2 + Group: 'Neck', Weight: 0.346592 + Group: 'Head', Weight: 0.651026 +Vertex 461: +Vertex groups: 2 + Group: 'Neck', Weight: 0.356489 + Group: 'Head', Weight: 0.640969 +Vertex 462: +Vertex groups: 2 + Group: 'Neck', Weight: 0.353879 + Group: 'Head', Weight: 0.643625 +Vertex 463: +Vertex groups: 2 + Group: 'Neck', Weight: 0.348329 + Group: 'Head', Weight: 0.649256 +Vertex 464: +Vertex groups: 2 + Group: 'Neck', Weight: 0.329732 + Group: 'Head', Weight: 0.668074 +Vertex 465: +Vertex groups: 2 + Group: 'Neck', Weight: 0.350564 + Group: 'Head', Weight: 0.646970 +Vertex 466: +Vertex groups: 2 + Group: 'Neck', Weight: 0.332571 + Group: 'Head', Weight: 0.665208 +Vertex 467: +Vertex groups: 2 + Group: 'Neck', Weight: 0.314386 + Group: 'Head', Weight: 0.683549 +Vertex 468: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294864 + Group: 'Head', Weight: 0.703255 +Vertex 469: +Vertex groups: 2 + Group: 'Neck', Weight: 0.288058 + Group: 'Head', Weight: 0.710131 +Vertex 470: +Vertex groups: 2 + Group: 'Neck', Weight: 0.284580 + Group: 'Head', Weight: 0.713641 +Vertex 471: +Vertex groups: 2 + Group: 'Neck', Weight: 0.285080 + Group: 'Head', Weight: 0.713126 +Vertex 472: +Vertex groups: 2 + Group: 'Neck', Weight: 0.289249 + Group: 'Head', Weight: 0.708901 +Vertex 473: +Vertex groups: 2 + Group: 'Neck', Weight: 0.305425 + Group: 'Head', Weight: 0.692578 +Vertex 474: +Vertex groups: 2 + Group: 'Neck', Weight: 0.305949 + Group: 'Head', Weight: 0.692063 +Vertex 475: +Vertex groups: 2 + Group: 'Neck', Weight: 0.306404 + Group: 'Head', Weight: 0.691605 +Vertex 476: +Vertex groups: 2 + Group: 'Neck', Weight: 0.317769 + Group: 'Head', Weight: 0.680130 +Vertex 477: +Vertex groups: 2 + Group: 'Neck', Weight: 0.305752 + Group: 'Head', Weight: 0.692224 +Vertex 478: +Vertex groups: 2 + Group: 'Neck', Weight: 0.340000 + Group: 'Head', Weight: 0.657608 +Vertex 479: +Vertex groups: 2 + Group: 'Neck', Weight: 0.314901 + Group: 'Head', Weight: 0.682901 +Vertex 480: +Vertex groups: 2 + Group: 'Neck', Weight: 0.295462 + Group: 'Head', Weight: 0.702604 +Vertex 481: +Vertex groups: 2 + Group: 'Neck', Weight: 0.282775 + Group: 'Head', Weight: 0.715436 +Vertex 482: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280627 + Group: 'Head', Weight: 0.717625 +Vertex 483: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280429 + Group: 'Head', Weight: 0.717842 +Vertex 484: +Vertex groups: 2 + Group: 'Neck', Weight: 0.281703 + Group: 'Head', Weight: 0.716558 +Vertex 485: +Vertex groups: 2 + Group: 'Neck', Weight: 0.288292 + Group: 'Head', Weight: 0.709895 +Vertex 486: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277604 + Group: 'Head', Weight: 0.720708 +Vertex 487: +Vertex groups: 2 + Group: 'Neck', Weight: 0.278588 + Group: 'Head', Weight: 0.719710 +Vertex 488: +Vertex groups: 2 + Group: 'Neck', Weight: 0.274276 + Group: 'Head', Weight: 0.724084 +Vertex 489: +Vertex groups: 2 + Group: 'Neck', Weight: 0.266129 + Group: 'Head', Weight: 0.732325 +Vertex 490: +Vertex groups: 2 + Group: 'Neck', Weight: 0.253834 + Group: 'Head', Weight: 0.744696 +Vertex 491: +Vertex groups: 2 + Group: 'Neck', Weight: 0.185356 + Group: 'Head', Weight: 0.813486 +Vertex 492: +Vertex groups: 2 + Group: 'Neck', Weight: 0.156678 + Group: 'Head', Weight: 0.842311 +Vertex 493: +Vertex groups: 2 + Group: 'Neck', Weight: 0.113566 + Group: 'Head', Weight: 0.885659 +Vertex 494: +Vertex groups: 2 + Group: 'Neck', Weight: 0.101088 + Group: 'Head', Weight: 0.898209 +Vertex 495: +Vertex groups: 2 + Group: 'Neck', Weight: 0.271192 + Group: 'Head', Weight: 0.727206 +Vertex 496: +Vertex groups: 2 + Group: 'Neck', Weight: 0.272150 + Group: 'Head', Weight: 0.726247 +Vertex 497: +Vertex groups: 2 + Group: 'Neck', Weight: 0.271573 + Group: 'Head', Weight: 0.726825 +Vertex 498: +Vertex groups: 2 + Group: 'Neck', Weight: 0.276914 + Group: 'Head', Weight: 0.721406 +Vertex 499: +Vertex groups: 2 + Group: 'Neck', Weight: 0.275056 + Group: 'Head', Weight: 0.723298 +Vertex 500: +Vertex groups: 2 + Group: 'Neck', Weight: 0.265026 + Group: 'Head', Weight: 0.733422 +Vertex 501: +Vertex groups: 2 + Group: 'Neck', Weight: 0.253232 + Group: 'Head', Weight: 0.745283 +Vertex 502: +Vertex groups: 2 + Group: 'Neck', Weight: 0.186411 + Group: 'Head', Weight: 0.812418 +Vertex 503: +Vertex groups: 2 + Group: 'Neck', Weight: 0.159898 + Group: 'Head', Weight: 0.839068 +Vertex 504: +Vertex groups: 2 + Group: 'Neck', Weight: 0.304920 + Group: 'Head', Weight: 0.693096 +Vertex 505: +Vertex groups: 2 + Group: 'Neck', Weight: 0.297082 + Group: 'Head', Weight: 0.701012 +Vertex 506: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294681 + Group: 'Head', Weight: 0.703433 +Vertex 507: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294270 + Group: 'Head', Weight: 0.703845 +Vertex 508: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294231 + Group: 'Head', Weight: 0.703880 +Vertex 509: +Vertex groups: 2 + Group: 'Neck', Weight: 0.296341 + Group: 'Head', Weight: 0.701747 +Vertex 510: +Vertex groups: 2 + Group: 'Neck', Weight: 0.301783 + Group: 'Head', Weight: 0.696256 +Vertex 511: +Vertex groups: 2 + Group: 'Neck', Weight: 0.302162 + Group: 'Head', Weight: 0.695880 +Vertex 512: +Vertex groups: 2 + Group: 'Neck', Weight: 0.296991 + Group: 'Head', Weight: 0.701095 +Vertex 513: +Vertex groups: 2 + Group: 'Neck', Weight: 0.279468 + Group: 'Head', Weight: 0.718715 +Vertex 514: +Vertex groups: 2 + Group: 'Neck', Weight: 0.265721 + Group: 'Head', Weight: 0.732597 +Vertex 515: +Vertex groups: 2 + Group: 'Neck', Weight: 0.253992 + Group: 'Head', Weight: 0.744436 +Vertex 516: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277179 + Group: 'Head', Weight: 0.721081 +Vertex 517: +Vertex groups: 2 + Group: 'Neck', Weight: 0.270445 + Group: 'Head', Weight: 0.727886 +Vertex 518: +Vertex groups: 2 + Group: 'Neck', Weight: 0.261837 + Group: 'Head', Weight: 0.736573 +Vertex 519: +Vertex groups: 2 + Group: 'Neck', Weight: 0.276849 + Group: 'Head', Weight: 0.721449 +Vertex 520: +Vertex groups: 2 + Group: 'Neck', Weight: 0.272922 + Group: 'Head', Weight: 0.725427 +Vertex 521: +Vertex groups: 2 + Group: 'Neck', Weight: 0.268691 + Group: 'Head', Weight: 0.729700 +Vertex 522: +Vertex groups: 2 + Group: 'Neck', Weight: 0.262768 + Group: 'Head', Weight: 0.735676 +Vertex 523: +Vertex groups: 2 + Group: 'Neck', Weight: 0.254420 + Group: 'Head', Weight: 0.744065 +Vertex 524: +Vertex groups: 2 + Group: 'Neck', Weight: 0.236179 + Group: 'Head', Weight: 0.762378 +Vertex 525: +Vertex groups: 2 + Group: 'Neck', Weight: 0.237084 + Group: 'Head', Weight: 0.761538 +Vertex 526: +Vertex groups: 2 + Group: 'Neck', Weight: 0.237306 + Group: 'Head', Weight: 0.761305 +Vertex 527: +Vertex groups: 2 + Group: 'Neck', Weight: 0.232573 + Group: 'Head', Weight: 0.766037 +Vertex 528: +Vertex groups: 2 + Group: 'Neck', Weight: 0.189465 + Group: 'Head', Weight: 0.809331 +Vertex 529: +Vertex groups: 2 + Group: 'Neck', Weight: 0.164596 + Group: 'Head', Weight: 0.834330 +Vertex 530: +Vertex groups: 2 + Group: 'Neck', Weight: 0.225609 + Group: 'Head', Weight: 0.772984 +Vertex 531: +Vertex groups: 2 + Group: 'Neck', Weight: 0.241953 + Group: 'Head', Weight: 0.756518 +Vertex 532: +Vertex groups: 2 + Group: 'Neck', Weight: 0.199002 + Group: 'Head', Weight: 0.799728 +Vertex 533: +Vertex groups: 2 + Group: 'Neck', Weight: 0.257363 + Group: 'Head', Weight: 0.740969 +Vertex 534: +Vertex groups: 2 + Group: 'Neck', Weight: 0.275431 + Group: 'Head', Weight: 0.722733 +Vertex 535: +Vertex groups: 2 + Group: 'Neck', Weight: 0.269327 + Group: 'Head', Weight: 0.728792 +Vertex 536: +Vertex groups: 2 + Group: 'Neck', Weight: 0.227010 + Group: 'Head', Weight: 0.771517 +Vertex 537: +Vertex groups: 2 + Group: 'Neck', Weight: 0.245284 + Group: 'Head', Weight: 0.753067 +Vertex 538: +Vertex groups: 2 + Group: 'Neck', Weight: 0.170092 + Group: 'Head', Weight: 0.828793 +Vertex 539: +Vertex groups: 2 + Group: 'Neck', Weight: 0.217659 + Group: 'Head', Weight: 0.780912 +Vertex 540: +Vertex groups: 2 + Group: 'Neck', Weight: 0.205433 + Group: 'Head', Weight: 0.793251 +Vertex 541: +Vertex groups: 2 + Group: 'Neck', Weight: 0.222903 + Group: 'Head', Weight: 0.775579 +Vertex 542: +Vertex groups: 2 + Group: 'Neck', Weight: 0.207163 + Group: 'Head', Weight: 0.791412 +Vertex 543: +Vertex groups: 2 + Group: 'Neck', Weight: 0.211366 + Group: 'Head', Weight: 0.787090 +Vertex 544: +Vertex groups: 2 + Group: 'Neck', Weight: 0.200369 + Group: 'Head', Weight: 0.798160 +Vertex 545: +Vertex groups: 2 + Group: 'Neck', Weight: 0.198659 + Group: 'Head', Weight: 0.799772 +Vertex 546: +Vertex groups: 2 + Group: 'Neck', Weight: 0.188725 + Group: 'Head', Weight: 0.809826 +Vertex 547: +Vertex groups: 2 + Group: 'Neck', Weight: 0.175121 + Group: 'Head', Weight: 0.823410 +Vertex 548: +Vertex groups: 2 + Group: 'Neck', Weight: 0.163686 + Group: 'Head', Weight: 0.834970 +Vertex 549: +Vertex groups: 2 + Group: 'Neck', Weight: 0.145643 + Group: 'Head', Weight: 0.853052 +Vertex 550: +Vertex groups: 2 + Group: 'Neck', Weight: 0.139231 + Group: 'Head', Weight: 0.859564 +Vertex 551: +Vertex groups: 2 + Group: 'Neck', Weight: 0.118107 + Group: 'Head', Weight: 0.880791 +Vertex 552: +Vertex groups: 2 + Group: 'Neck', Weight: 0.123056 + Group: 'Head', Weight: 0.875856 +Vertex 553: +Vertex groups: 2 + Group: 'Neck', Weight: 0.099333 + Group: 'Head', Weight: 0.899757 +Vertex 554: +Vertex groups: 2 + Group: 'Neck', Weight: 0.111951 + Group: 'Head', Weight: 0.887071 +Vertex 555: +Vertex groups: 2 + Group: 'Neck', Weight: 0.089437 + Group: 'Head', Weight: 0.909783 +Vertex 556: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105063 + Group: 'Head', Weight: 0.894046 +Vertex 557: +Vertex groups: 2 + Group: 'Neck', Weight: 0.087748 + Group: 'Head', Weight: 0.911554 +Vertex 558: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098761 + Group: 'Head', Weight: 0.900462 +Vertex 559: +Vertex groups: 2 + Group: 'Neck', Weight: 0.087278 + Group: 'Head', Weight: 0.911995 +Vertex 560: +Vertex groups: 2 + Group: 'Neck', Weight: 0.099109 + Group: 'Head', Weight: 0.900076 +Vertex 561: +Vertex groups: 2 + Group: 'Neck', Weight: 0.094936 + Group: 'Head', Weight: 0.904350 +Vertex 562: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105143 + Group: 'Head', Weight: 0.894074 +Vertex 563: +Vertex groups: 2 + Group: 'Neck', Weight: 0.110238 + Group: 'Head', Weight: 0.888981 +Vertex 564: +Vertex groups: 2 + Group: 'Neck', Weight: 0.117007 + Group: 'Head', Weight: 0.882163 +Vertex 565: +Vertex groups: 2 + Group: 'Neck', Weight: 0.125126 + Group: 'Head', Weight: 0.874013 +Vertex 566: +Vertex groups: 2 + Group: 'Neck', Weight: 0.131127 + Group: 'Head', Weight: 0.867971 +Vertex 567: +Vertex groups: 2 + Group: 'Neck', Weight: 0.119308 + Group: 'Head', Weight: 0.879877 +Vertex 568: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105124 + Group: 'Head', Weight: 0.894138 +Vertex 569: +Vertex groups: 2 + Group: 'Neck', Weight: 0.176562 + Group: 'Head', Weight: 0.822268 +Vertex 570: +Vertex groups: 2 + Group: 'Neck', Weight: 0.194271 + Group: 'Head', Weight: 0.804393 +Vertex 571: +Vertex groups: 2 + Group: 'Neck', Weight: 0.191948 + Group: 'Head', Weight: 0.806652 +Vertex 572: +Vertex groups: 2 + Group: 'Neck', Weight: 0.178185 + Group: 'Head', Weight: 0.820438 +Vertex 573: +Vertex groups: 2 + Group: 'Neck', Weight: 0.155763 + Group: 'Head', Weight: 0.842967 +Vertex 574: +Vertex groups: 2 + Group: 'Neck', Weight: 0.137587 + Group: 'Head', Weight: 0.861250 +Vertex 575: +Vertex groups: 2 + Group: 'Neck', Weight: 0.126885 + Group: 'Head', Weight: 0.872026 +Vertex 576: +Vertex groups: 2 + Group: 'Neck', Weight: 0.121084 + Group: 'Head', Weight: 0.877886 +Vertex 577: +Vertex groups: 2 + Group: 'Neck', Weight: 0.113657 + Group: 'Head', Weight: 0.885390 +Vertex 578: +Vertex groups: 2 + Group: 'Neck', Weight: 0.107428 + Group: 'Head', Weight: 0.891694 +Vertex 579: +Vertex groups: 2 + Group: 'Neck', Weight: 0.104764 + Group: 'Head', Weight: 0.894415 +Vertex 580: +Vertex groups: 2 + Group: 'Neck', Weight: 0.109934 + Group: 'Head', Weight: 0.889251 +Vertex 581: +Vertex groups: 2 + Group: 'Neck', Weight: 0.123330 + Group: 'Head', Weight: 0.875800 +Vertex 582: +Vertex groups: 2 + Group: 'Neck', Weight: 0.138308 + Group: 'Head', Weight: 0.860743 +Vertex 583: +Vertex groups: 2 + Group: 'Neck', Weight: 0.237956 + Group: 'Head', Weight: 0.760400 +Vertex 584: +Vertex groups: 2 + Group: 'Neck', Weight: 0.222002 + Group: 'Head', Weight: 0.776376 +Vertex 585: +Vertex groups: 2 + Group: 'Neck', Weight: 0.232093 + Group: 'Head', Weight: 0.766254 +Vertex 586: +Vertex groups: 2 + Group: 'Neck', Weight: 0.227343 + Group: 'Head', Weight: 0.770839 +Vertex 587: +Vertex groups: 2 + Group: 'Neck', Weight: 0.185663 + Group: 'Head', Weight: 0.812732 +Vertex 588: +Vertex groups: 2 + Group: 'Neck', Weight: 0.153740 + Group: 'Head', Weight: 0.844831 +Vertex 589: +Vertex groups: 2 + Group: 'Neck', Weight: 0.117826 + Group: 'Head', Weight: 0.881025 +Vertex 590: +Vertex groups: 2 + Group: 'Neck', Weight: 0.091983 + Group: 'Head', Weight: 0.907132 +Vertex 591: +Vertex groups: 2 + Group: 'Neck', Weight: 0.177647 + Group: 'Head', Weight: 0.821163 +Vertex 592: +Vertex groups: 2 + Group: 'Neck', Weight: 0.187924 + Group: 'Head', Weight: 0.810782 +Vertex 593: +Vertex groups: 2 + Group: 'Neck', Weight: 0.186176 + Group: 'Head', Weight: 0.812476 +Vertex 594: +Vertex groups: 2 + Group: 'Neck', Weight: 0.171770 + Group: 'Head', Weight: 0.826914 +Vertex 595: +Vertex groups: 2 + Group: 'Neck', Weight: 0.155728 + Group: 'Head', Weight: 0.843032 +Vertex 596: +Vertex groups: 2 + Group: 'Neck', Weight: 0.139321 + Group: 'Head', Weight: 0.859539 +Vertex 597: +Vertex groups: 2 + Group: 'Neck', Weight: 0.124099 + Group: 'Head', Weight: 0.874865 +Vertex 598: +Vertex groups: 2 + Group: 'Neck', Weight: 0.121762 + Group: 'Head', Weight: 0.877225 +Vertex 599: +Vertex groups: 2 + Group: 'Neck', Weight: 0.115449 + Group: 'Head', Weight: 0.883597 +Vertex 600: +Vertex groups: 2 + Group: 'Neck', Weight: 0.109338 + Group: 'Head', Weight: 0.889774 +Vertex 601: +Vertex groups: 2 + Group: 'Neck', Weight: 0.106466 + Group: 'Head', Weight: 0.892693 +Vertex 602: +Vertex groups: 2 + Group: 'Neck', Weight: 0.110809 + Group: 'Head', Weight: 0.888367 +Vertex 603: +Vertex groups: 2 + Group: 'Neck', Weight: 0.126178 + Group: 'Head', Weight: 0.872933 +Vertex 604: +Vertex groups: 2 + Group: 'Neck', Weight: 0.137495 + Group: 'Head', Weight: 0.861558 +Vertex 605: +Vertex groups: 2 + Group: 'Neck', Weight: 0.121360 + Group: 'Head', Weight: 0.877620 +Vertex 606: +Vertex groups: 2 + Group: 'Neck', Weight: 0.126142 + Group: 'Head', Weight: 0.872791 +Vertex 607: +Vertex groups: 2 + Group: 'Neck', Weight: 0.115660 + Group: 'Head', Weight: 0.883381 +Vertex 608: +Vertex groups: 2 + Group: 'Neck', Weight: 0.191111 + Group: 'Head', Weight: 0.807570 +Vertex 609: +Vertex groups: 2 + Group: 'Neck', Weight: 0.177051 + Group: 'Head', Weight: 0.821768 +Vertex 610: +Vertex groups: 2 + Group: 'Neck', Weight: 0.109217 + Group: 'Head', Weight: 0.889893 +Vertex 611: +Vertex groups: 2 + Group: 'Neck', Weight: 0.187452 + Group: 'Head', Weight: 0.811183 +Vertex 612: +Vertex groups: 2 + Group: 'Neck', Weight: 0.106049 + Group: 'Head', Weight: 0.893118 +Vertex 613: +Vertex groups: 2 + Group: 'Neck', Weight: 0.172917 + Group: 'Head', Weight: 0.825754 +Vertex 614: +Vertex groups: 2 + Group: 'Neck', Weight: 0.110916 + Group: 'Head', Weight: 0.888261 +Vertex 615: +Vertex groups: 2 + Group: 'Neck', Weight: 0.154846 + Group: 'Head', Weight: 0.843910 +Vertex 616: +Vertex groups: 2 + Group: 'Neck', Weight: 0.124781 + Group: 'Head', Weight: 0.874339 +Vertex 617: +Vertex groups: 2 + Group: 'Neck', Weight: 0.137949 + Group: 'Head', Weight: 0.860910 +Vertex 618: +Vertex groups: 2 + Group: 'Neck', Weight: 0.137506 + Group: 'Head', Weight: 0.861547 +Vertex 619: +Vertex groups: 2 + Group: 'Neck', Weight: 0.136954 + Group: 'Head', Weight: 0.862144 +Vertex 620: +Vertex groups: 2 + Group: 'Neck', Weight: 0.135221 + Group: 'Head', Weight: 0.863883 +Vertex 621: +Vertex groups: 2 + Group: 'Neck', Weight: 0.140436 + Group: 'Head', Weight: 0.858633 +Vertex 622: +Vertex groups: 2 + Group: 'Neck', Weight: 0.146977 + Group: 'Head', Weight: 0.852044 +Vertex 623: +Vertex groups: 2 + Group: 'Neck', Weight: 0.153753 + Group: 'Head', Weight: 0.845221 +Vertex 624: +Vertex groups: 2 + Group: 'Neck', Weight: 0.162966 + Group: 'Head', Weight: 0.835945 +Vertex 625: +Vertex groups: 2 + Group: 'Neck', Weight: 0.162005 + Group: 'Head', Weight: 0.836908 +Vertex 626: +Vertex groups: 2 + Group: 'Neck', Weight: 0.162530 + Group: 'Head', Weight: 0.836381 +Vertex 627: +Vertex groups: 2 + Group: 'Neck', Weight: 0.334105 + Group: 'Head', Weight: 0.663471 +Vertex 628: +Vertex groups: 2 + Group: 'Neck', Weight: 0.261951 + Group: 'Head', Weight: 0.736145 +Vertex 629: +Vertex groups: 2 + Group: 'Neck', Weight: 0.344705 + Group: 'Head', Weight: 0.652667 +Vertex 630: +Vertex groups: 2 + Group: 'Neck', Weight: 0.355787 + Group: 'Head', Weight: 0.641249 +Vertex 631: +Vertex groups: 2 + Group: 'Neck', Weight: 0.264501 + Group: 'Head', Weight: 0.733429 +Vertex 632: +Vertex groups: 2 + Group: 'Neck', Weight: 0.284293 + Group: 'Head', Weight: 0.713312 +Vertex 633: +Vertex groups: 2 + Group: 'Neck', Weight: 0.242947 + Group: 'Head', Weight: 0.755279 +Vertex 634: +Vertex groups: 2 + Group: 'Neck', Weight: 0.242213 + Group: 'Head', Weight: 0.755689 +Vertex 635: +Vertex groups: 2 + Group: 'Neck', Weight: 0.204626 + Group: 'Head', Weight: 0.793512 +Vertex 636: +Vertex groups: 2 + Group: 'Neck', Weight: 0.169857 + Group: 'Head', Weight: 0.828487 +Vertex 637: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364908 + Group: 'Head', Weight: 0.630762 +Vertex 638: +Vertex groups: 2 + Group: 'Neck', Weight: 0.367003 + Group: 'Head', Weight: 0.629575 +Vertex 639: +Vertex groups: 2 + Group: 'Neck', Weight: 0.371002 + Group: 'Head', Weight: 0.624216 +Vertex 640: +Vertex groups: 2 + Group: 'Neck', Weight: 0.340211 + Group: 'Head', Weight: 0.656707 +Vertex 641: +Vertex groups: 2 + Group: 'Neck', Weight: 0.352020 + Group: 'Head', Weight: 0.641935 +Vertex 642: +Vertex groups: 2 + Group: 'Neck', Weight: 0.386612 + Group: 'Head', Weight: 0.608821 +Vertex 643: +Vertex groups: 2 + Group: 'Neck', Weight: 0.271978 + Group: 'Head', Weight: 0.725350 +Vertex 644: +Vertex groups: 2 + Group: 'Neck', Weight: 0.379090 + Group: 'Head', Weight: 0.613359 +Vertex 645: +Vertex groups: 2 + Group: 'Neck', Weight: 0.407122 + Group: 'Head', Weight: 0.587240 +Vertex 646: +Vertex groups: 2 + Group: 'Neck', Weight: 0.383879 + Group: 'Head', Weight: 0.611980 +Vertex 647: +Vertex groups: 2 + Group: 'Neck', Weight: 0.255938 + Group: 'Head', Weight: 0.741391 +Vertex 648: +Vertex groups: 2 + Group: 'Neck', Weight: 0.174559 + Group: 'Head', Weight: 0.823612 +Vertex 649: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114164 + Group: 'Head', Weight: 0.884664 +Vertex 650: +Vertex groups: 2 + Group: 'Neck', Weight: 0.108644 + Group: 'Head', Weight: 0.890169 +Vertex 651: +Vertex groups: 2 + Group: 'Neck', Weight: 0.082123 + Group: 'Head', Weight: 0.917037 +Vertex 652: +Vertex groups: 2 + Group: 'Neck', Weight: 0.072367 + Group: 'Head', Weight: 0.926832 +Vertex 653: +Vertex groups: 2 + Group: 'Neck', Weight: 0.057348 + Group: 'Head', Weight: 0.942091 +Vertex 654: +Vertex groups: 2 + Group: 'Neck', Weight: 0.041459 + Group: 'Head', Weight: 0.953774 +Vertex 655: +Vertex groups: 2 + Group: 'Neck', Weight: 0.072838 + Group: 'Head', Weight: 0.926492 +Vertex 656: +Vertex groups: 2 + Group: 'Neck', Weight: 0.067399 + Group: 'Head', Weight: 0.932015 +Vertex 657: +Vertex groups: 2 + Group: 'Neck', Weight: 0.070630 + Group: 'Head', Weight: 0.928802 +Vertex 658: +Vertex groups: 2 + Group: 'Neck', Weight: 0.082007 + Group: 'Head', Weight: 0.917385 +Vertex 659: +Vertex groups: 2 + Group: 'Neck', Weight: 0.079017 + Group: 'Head', Weight: 0.920408 +Vertex 660: +Vertex groups: 2 + Group: 'Neck', Weight: 0.059365 + Group: 'Head', Weight: 0.940183 +Vertex 661: +Vertex groups: 2 + Group: 'Neck', Weight: 0.060228 + Group: 'Head', Weight: 0.939304 +Vertex 662: +Vertex groups: 2 + Group: 'Neck', Weight: 0.054637 + Group: 'Head', Weight: 0.944913 +Vertex 663: +Vertex groups: 2 + Group: 'Neck', Weight: 0.052154 + Group: 'Head', Weight: 0.947378 +Vertex 664: +Vertex groups: 2 + Group: 'Neck', Weight: 0.044683 + Group: 'Head', Weight: 0.952288 +Vertex 665: +Vertex groups: 2 + Group: 'Neck', Weight: 0.041486 + Group: 'Head', Weight: 0.953897 +Vertex 666: +Vertex groups: 2 + Group: 'Neck', Weight: 0.029296 + Group: 'Head', Weight: 0.960029 +Vertex 667: +Vertex groups: 2 + Group: 'Neck', Weight: 0.022258 + Group: 'Head', Weight: 0.963562 +Vertex 668: +Vertex groups: 2 + Group: 'Neck', Weight: 0.018135 + Group: 'Head', Weight: 0.965616 +Vertex 669: +Vertex groups: 2 + Group: 'Neck', Weight: 0.003753 + Group: 'Head', Weight: 0.972811 +Vertex 670: +Vertex groups: 2 + Group: 'Neck', Weight: 0.017675 + Group: 'Head', Weight: 0.965820 +Vertex 671: +Vertex groups: 1 + Group: 'Head', Weight: 0.980992 +Vertex 672: +Vertex groups: 1 + Group: 'Head', Weight: 0.992048 +Vertex 673: +Vertex groups: 1 + Group: 'Head', Weight: 0.988843 +Vertex 674: +Vertex groups: 1 + Group: 'Head', Weight: 0.977489 +Vertex 675: +Vertex groups: 1 + Group: 'Head', Weight: 0.982162 +Vertex 676: +Vertex groups: 1 + Group: 'Head', Weight: 0.979177 +Vertex 677: +Vertex groups: 1 + Group: 'Head', Weight: 0.988933 +Vertex 678: +Vertex groups: 1 + Group: 'Head', Weight: 0.981366 +Vertex 679: +Vertex groups: 2 + Group: 'Neck', Weight: 0.111088 + Group: 'Head', Weight: 0.886860 +Vertex 680: +Vertex groups: 2 + Group: 'Neck', Weight: 0.306554 + Group: 'Head', Weight: 0.687670 +Vertex 681: +Vertex groups: 2 + Group: 'Neck', Weight: 0.062974 + Group: 'Head', Weight: 0.935884 +Vertex 682: +Vertex groups: 2 + Group: 'Neck', Weight: 0.186381 + Group: 'Head', Weight: 0.810128 +Vertex 683: +Vertex groups: 2 + Group: 'Neck', Weight: 0.344640 + Group: 'Head', Weight: 0.649821 +Vertex 684: +Vertex groups: 2 + Group: 'Neck', Weight: 0.016641 + Group: 'Head', Weight: 0.966092 +Vertex 685: +Vertex groups: 1 + Group: 'Head', Weight: 0.984081 +Vertex 686: +Vertex groups: 1 + Group: 'Head', Weight: 0.990814 +Vertex 687: +Vertex groups: 2 + Group: 'Neck', Weight: 0.020041 + Group: 'Head', Weight: 0.964692 +Vertex 688: +Vertex groups: 2 + Group: 'Neck', Weight: 0.023049 + Group: 'Head', Weight: 0.963178 +Vertex 689: +Vertex groups: 2 + Group: 'Neck', Weight: 0.009796 + Group: 'Head', Weight: 0.969848 +Vertex 690: +Vertex groups: 2 + Group: 'Neck', Weight: 0.006208 + Group: 'Head', Weight: 0.971647 +Vertex 691: +Vertex groups: 2 + Group: 'Neck', Weight: 0.005256 + Group: 'Head', Weight: 0.972111 +Vertex 692: +Vertex groups: 1 + Group: 'Head', Weight: 0.975304 +Vertex 693: +Vertex groups: 2 + Group: 'Neck', Weight: 0.005274 + Group: 'Head', Weight: 0.972126 +Vertex 694: +Vertex groups: 2 + Group: 'Neck', Weight: 0.561694 + Group: 'LeftShoulder', Weight: 0.386554 +Vertex 695: +Vertex groups: 2 + Group: 'Neck', Weight: 0.102076 + Group: 'Head', Weight: 0.896099 +Vertex 696: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.101249 + Group: 'Neck', Weight: 0.345689 + Group: 'LeftShoulder', Weight: 0.470498 + Group: 'RightShoulder', Weight: 0.074582 +Vertex 697: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.209424 + Group: 'LeftArm', Weight: 0.780614 +Vertex 698: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.200073 + Group: 'LeftArm', Weight: 0.793572 +Vertex 699: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.326216 + Group: 'LeftArm', Weight: 0.634826 +Vertex 700: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.231045 + Group: 'LeftArm', Weight: 0.748983 +Vertex 701: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.197940 + Group: 'LeftArm', Weight: 0.794956 +Vertex 702: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.250800 + Group: 'LeftArm', Weight: 0.736461 +Vertex 703: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.353334 + Group: 'LeftArm', Weight: 0.622152 +Vertex 704: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.162214 + Group: 'LeftArm', Weight: 0.811776 +Vertex 705: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.099811 + Group: 'LeftArm', Weight: 0.889380 +Vertex 706: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.073964 + Group: 'LeftArm', Weight: 0.921038 +Vertex 707: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.061447 + Group: 'LeftArm', Weight: 0.935647 +Vertex 708: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.072772 + Group: 'LeftArm', Weight: 0.923292 +Vertex 709: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.118467 + Group: 'LeftArm', Weight: 0.872811 +Vertex 710: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.228177 + Group: 'LeftArm', Weight: 0.750215 +Vertex 711: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.109714 + Group: 'Spine2', Weight: 0.119250 + Group: 'LeftShoulder', Weight: 0.551870 + Group: 'LeftArm', Weight: 0.205381 +Vertex 712: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050473 + Group: 'Spine2', Weight: 0.057707 + Group: 'LeftShoulder', Weight: 0.700512 + Group: 'LeftArm', Weight: 0.176513 +Vertex 713: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.006365 + Group: 'LeftShoulder', Weight: 0.797414 + Group: 'LeftArm', Weight: 0.138714 +Vertex 714: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.078085 + Group: 'Spine2', Weight: 0.077803 + Group: 'LeftShoulder', Weight: 0.612954 + Group: 'LeftArm', Weight: 0.219182 +Vertex 715: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.117240 + Group: 'Spine2', Weight: 0.135216 + Group: 'LeftShoulder', Weight: 0.531128 + Group: 'LeftArm', Weight: 0.201908 +Vertex 716: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.837226 + Group: 'LeftArm', Weight: 0.125685 +Vertex 717: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.846427 + Group: 'LeftArm', Weight: 0.120903 +Vertex 718: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.853764 + Group: 'LeftArm', Weight: 0.118558 +Vertex 719: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.849291 + Group: 'LeftArm', Weight: 0.115411 +Vertex 720: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.048707 + Group: 'LeftShoulder', Weight: 0.787971 + Group: 'LeftArm', Weight: 0.133074 +Vertex 721: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.017822 + Group: 'Spine2', Weight: 0.062440 + Group: 'LeftShoulder', Weight: 0.656677 + Group: 'LeftArm', Weight: 0.238025 +Vertex 722: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.062542 + Group: 'Spine2', Weight: 0.092323 + Group: 'LeftShoulder', Weight: 0.589820 + Group: 'LeftArm', Weight: 0.244226 +Vertex 723: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.105504 + Group: 'Spine2', Weight: 0.126256 + Group: 'LeftShoulder', Weight: 0.511267 + Group: 'LeftArm', Weight: 0.242417 +Vertex 724: +Vertex groups: 5 + Group: 'Hips', Weight: 0.420213 + Group: 'Spine', Weight: 0.379145 + Group: 'Spine1', Weight: 0.065791 + Group: 'LeftUpLeg', Weight: 0.064734 + Group: 'RightUpLeg', Weight: 0.064834 +Vertex 725: +Vertex groups: 5 + Group: 'Hips', Weight: 0.385206 + Group: 'Spine', Weight: 0.392955 + Group: 'Spine1', Weight: 0.067912 + Group: 'LeftUpLeg', Weight: 0.112570 + Group: 'RightUpLeg', Weight: 0.021515 +Vertex 726: +Vertex groups: 4 + Group: 'Hips', Weight: 0.286756 + Group: 'Spine', Weight: 0.426134 + Group: 'Spine1', Weight: 0.069535 + Group: 'LeftUpLeg', Weight: 0.191783 +Vertex 727: +Vertex groups: 4 + Group: 'Hips', Weight: 0.156800 + Group: 'Spine', Weight: 0.484187 + Group: 'Spine1', Weight: 0.084965 + Group: 'LeftUpLeg', Weight: 0.255506 +Vertex 728: +Vertex groups: 4 + Group: 'Hips', Weight: 0.080279 + Group: 'Spine', Weight: 0.523243 + Group: 'Spine1', Weight: 0.107432 + Group: 'LeftUpLeg', Weight: 0.271133 +Vertex 729: +Vertex groups: 4 + Group: 'Hips', Weight: 0.040030 + Group: 'Spine', Weight: 0.554674 + Group: 'Spine1', Weight: 0.123644 + Group: 'LeftUpLeg', Weight: 0.256994 +Vertex 730: +Vertex groups: 4 + Group: 'Hips', Weight: 0.002445 + Group: 'Spine', Weight: 0.596933 + Group: 'Spine1', Weight: 0.126416 + Group: 'LeftUpLeg', Weight: 0.229169 +Vertex 731: +Vertex groups: 3 + Group: 'Spine', Weight: 0.664469 + Group: 'Spine1', Weight: 0.125373 + Group: 'LeftUpLeg', Weight: 0.166644 +Vertex 732: +Vertex groups: 4 + Group: 'Spine', Weight: 0.832028 + Group: 'Spine1', Weight: 0.081709 + Group: 'LeftUpLeg', Weight: 0.010237 + Group: 'RightUpLeg', Weight: 0.010379 +Vertex 733: +Vertex groups: 3 + Group: 'Spine', Weight: 0.784227 + Group: 'Spine1', Weight: 0.109111 + Group: 'LeftUpLeg', Weight: 0.063210 +Vertex 734: +Vertex groups: 3 + Group: 'Spine', Weight: 0.728520 + Group: 'Spine1', Weight: 0.121701 + Group: 'LeftUpLeg', Weight: 0.107264 +Vertex 735: +Vertex groups: 5 + Group: 'Hips', Weight: 0.526422 + Group: 'Spine', Weight: 0.236660 + Group: 'Spine1', Weight: 0.030898 + Group: 'LeftUpLeg', Weight: 0.148660 + Group: 'RightUpLeg', Weight: 0.038761 +Vertex 736: +Vertex groups: 4 + Group: 'Hips', Weight: 0.377137 + Group: 'Spine', Weight: 0.282237 + Group: 'Spine1', Weight: 0.043337 + Group: 'LeftUpLeg', Weight: 0.268808 +Vertex 737: +Vertex groups: 4 + Group: 'Hips', Weight: 0.180741 + Group: 'Spine', Weight: 0.363535 + Group: 'Spine1', Weight: 0.061053 + Group: 'LeftUpLeg', Weight: 0.379131 +Vertex 738: +Vertex groups: 4 + Group: 'Hips', Weight: 0.080777 + Group: 'Spine', Weight: 0.450207 + Group: 'Spine1', Weight: 0.078579 + Group: 'LeftUpLeg', Weight: 0.375857 +Vertex 739: +Vertex groups: 4 + Group: 'Hips', Weight: 0.043846 + Group: 'Spine', Weight: 0.489146 + Group: 'Spine1', Weight: 0.088246 + Group: 'LeftUpLeg', Weight: 0.360226 +Vertex 740: +Vertex groups: 4 + Group: 'Hips', Weight: 0.005170 + Group: 'Spine', Weight: 0.539390 + Group: 'Spine1', Weight: 0.085957 + Group: 'LeftUpLeg', Weight: 0.330290 +Vertex 741: +Vertex groups: 5 + Group: 'Hips', Weight: 0.018977 + Group: 'Spine', Weight: 0.778342 + Group: 'Spine1', Weight: 0.065581 + Group: 'LeftUpLeg', Weight: 0.090147 + Group: 'RightUpLeg', Weight: 0.001323 +Vertex 742: +Vertex groups: 5 + Group: 'Hips', Weight: 0.020636 + Group: 'Spine', Weight: 0.815577 + Group: 'Spine1', Weight: 0.054207 + Group: 'LeftUpLeg', Weight: 0.040552 + Group: 'RightUpLeg', Weight: 0.040718 +Vertex 743: +Vertex groups: 4 + Group: 'Hips', Weight: 0.009271 + Group: 'Spine', Weight: 0.703936 + Group: 'Spine1', Weight: 0.076243 + Group: 'LeftUpLeg', Weight: 0.166184 +Vertex 744: +Vertex groups: 4 + Group: 'Hips', Weight: 0.002074 + Group: 'Spine', Weight: 0.630330 + Group: 'Spine1', Weight: 0.084295 + Group: 'LeftUpLeg', Weight: 0.239291 +Vertex 745: +Vertex groups: 5 + Group: 'Hips', Weight: 0.563782 + Group: 'Spine', Weight: 0.230651 + Group: 'Spine1', Weight: 0.029434 + Group: 'LeftUpLeg', Weight: 0.081223 + Group: 'RightUpLeg', Weight: 0.081332 +Vertex 746: +Vertex groups: 3 + Group: 'Hips', Weight: 0.422171 + Group: 'LeftUpLeg', Weight: 0.367546 + Group: 'RightUpLeg', Weight: 0.204860 +Vertex 747: +Vertex groups: 3 + Group: 'Hips', Weight: 0.273366 + Group: 'LeftUpLeg', Weight: 0.487755 + Group: 'RightUpLeg', Weight: 0.232981 +Vertex 748: +Vertex groups: 3 + Group: 'Hips', Weight: 0.088914 + Group: 'LeftUpLeg', Weight: 0.867683 + Group: 'RightUpLeg', Weight: 0.025935 +Vertex 749: +Vertex groups: 3 + Group: 'Hips', Weight: 0.074970 + Group: 'LeftUpLeg', Weight: 0.894806 + Group: 'RightUpLeg', Weight: 0.000471 +Vertex 750: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.959245 +Vertex 751: +Vertex groups: 2 + Group: 'Hips', Weight: 0.029513 + Group: 'LeftUpLeg', Weight: 0.930847 +Vertex 752: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.979637 +Vertex 753: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.990267 +Vertex 754: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.990188 +Vertex 755: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.986310 +Vertex 756: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.973835 +Vertex 757: +Vertex groups: 2 + Group: 'Hips', Weight: 0.005454 + Group: 'LeftUpLeg', Weight: 0.961888 +Vertex 758: +Vertex groups: 2 + Group: 'Hips', Weight: 0.050387 + Group: 'LeftUpLeg', Weight: 0.931896 +Vertex 759: +Vertex groups: 3 + Group: 'Hips', Weight: 0.338948 + Group: 'LeftUpLeg', Weight: 0.470126 + Group: 'RightUpLeg', Weight: 0.176258 +Vertex 760: +Vertex groups: 4 + Group: 'Hips', Weight: 0.230882 + Group: 'Spine', Weight: 0.022355 + Group: 'LeftUpLeg', Weight: 0.613864 + Group: 'RightUpLeg', Weight: 0.116416 +Vertex 761: +Vertex groups: 3 + Group: 'Hips', Weight: 0.240449 + Group: 'LeftUpLeg', Weight: 0.707891 + Group: 'RightUpLeg', Weight: 0.010908 +Vertex 762: +Vertex groups: 2 + Group: 'Hips', Weight: 0.108625 + Group: 'LeftUpLeg', Weight: 0.849895 +Vertex 763: +Vertex groups: 3 + Group: 'Hips', Weight: 0.058397 + Group: 'Spine', Weight: 0.014445 + Group: 'LeftUpLeg', Weight: 0.897875 +Vertex 764: +Vertex groups: 3 + Group: 'Hips', Weight: 0.014292 + Group: 'Spine', Weight: 0.013239 + Group: 'LeftUpLeg', Weight: 0.927381 +Vertex 765: +Vertex groups: 2 + Group: 'Spine', Weight: 0.018287 + Group: 'LeftUpLeg', Weight: 0.946701 +Vertex 766: +Vertex groups: 2 + Group: 'Spine', Weight: 0.038478 + Group: 'LeftUpLeg', Weight: 0.919737 +Vertex 767: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.987070 +Vertex 768: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.987759 +Vertex 769: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.990163 +Vertex 770: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.993221 +Vertex 771: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.995676 +Vertex 772: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.996089 +Vertex 773: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.996513 +Vertex 774: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.993907 +Vertex 775: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.994883 +Vertex 776: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.987831 +Vertex 777: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.989769 +Vertex 778: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.990446 +Vertex 779: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.991466 +Vertex 780: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.992578 +Vertex 781: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.993162 +Vertex 782: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.992284 +Vertex 783: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.990343 +Vertex 784: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.990696 +Vertex 785: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.991804 +Vertex 786: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.992530 +Vertex 787: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.994005 +Vertex 788: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.994898 +Vertex 789: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.993887 +Vertex 790: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.996137 +Vertex 791: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.998155 +Vertex 792: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.998374 +Vertex 793: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.997985 +Vertex 794: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.997030 +Vertex 795: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.996162 +Vertex 796: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.995290 +Vertex 797: +Vertex groups: 4 + Group: 'Hips', Weight: 0.112750 + Group: 'Spine', Weight: 0.024565 + Group: 'LeftUpLeg', Weight: 0.793145 + Group: 'RightUpLeg', Weight: 0.054011 +Vertex 798: +Vertex groups: 3 + Group: 'Hips', Weight: 0.053543 + Group: 'Spine', Weight: 0.045422 + Group: 'LeftUpLeg', Weight: 0.870540 +Vertex 799: +Vertex groups: 3 + Group: 'Hips', Weight: 0.294173 + Group: 'LeftUpLeg', Weight: 0.639143 + Group: 'RightUpLeg', Weight: 0.054568 +Vertex 800: +Vertex groups: 3 + Group: 'Hips', Weight: 0.360260 + Group: 'LeftUpLeg', Weight: 0.533581 + Group: 'RightUpLeg', Weight: 0.098534 +Vertex 801: +Vertex groups: 3 + Group: 'Hips', Weight: 0.065945 + Group: 'LeftUpLeg', Weight: 0.888726 + Group: 'RightUpLeg', Weight: 0.024928 +Vertex 802: +Vertex groups: 3 + Group: 'Hips', Weight: 0.091614 + Group: 'LeftUpLeg', Weight: 0.843825 + Group: 'RightUpLeg', Weight: 0.057280 +Vertex 803: +Vertex groups: 3 + Group: 'Hips', Weight: 0.080773 + Group: 'LeftUpLeg', Weight: 0.852878 + Group: 'RightUpLeg', Weight: 0.059754 +Vertex 804: +Vertex groups: 3 + Group: 'Hips', Weight: 0.089991 + Group: 'LeftUpLeg', Weight: 0.851521 + Group: 'RightUpLeg', Weight: 0.052418 +Vertex 805: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.669043 + Group: 'LeftLeg', Weight: 0.329945 +Vertex 806: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.673390 + Group: 'LeftLeg', Weight: 0.325901 +Vertex 807: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.289288 + Group: 'LeftLeg', Weight: 0.710261 +Vertex 808: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.284133 + Group: 'LeftLeg', Weight: 0.715531 +Vertex 809: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.782746 + Group: 'LeftLeg', Weight: 0.215704 +Vertex 810: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.787745 + Group: 'LeftLeg', Weight: 0.211215 +Vertex 811: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.652201 + Group: 'LeftLeg', Weight: 0.347306 +Vertex 812: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.327707 + Group: 'LeftLeg', Weight: 0.672032 +Vertex 813: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.744457 + Group: 'LeftLeg', Weight: 0.254914 +Vertex 814: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.564868 + Group: 'LeftLeg', Weight: 0.434867 +Vertex 815: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.391312 + Group: 'LeftLeg', Weight: 0.608499 +Vertex 816: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.694866 + Group: 'LeftLeg', Weight: 0.304890 +Vertex 817: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.377169 + Group: 'LeftLeg', Weight: 0.622685 +Vertex 818: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.698493 + Group: 'LeftLeg', Weight: 0.301406 +Vertex 819: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.685122 + Group: 'LeftLeg', Weight: 0.314822 +Vertex 820: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.687331 + Group: 'LeftLeg', Weight: 0.312561 +Vertex 821: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.659143 + Group: 'LeftLeg', Weight: 0.340328 +Vertex 822: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.681101 + Group: 'LeftLeg', Weight: 0.318624 +Vertex 823: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.148525 + Group: 'LeftLeg', Weight: 0.851195 +Vertex 824: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.128115 + Group: 'LeftLeg', Weight: 0.871686 +Vertex 825: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.098974 + Group: 'LeftLeg', Weight: 0.900781 +Vertex 826: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.086875 + Group: 'LeftLeg', Weight: 0.912947 +Vertex 827: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.148625 + Group: 'LeftLeg', Weight: 0.851228 +Vertex 828: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.093630 + Group: 'LeftLeg', Weight: 0.906258 +Vertex 829: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.229076 + Group: 'LeftLeg', Weight: 0.770790 +Vertex 830: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.147436 + Group: 'LeftLeg', Weight: 0.852489 +Vertex 831: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.171980 + Group: 'LeftLeg', Weight: 0.827976 +Vertex 832: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.208606 + Group: 'LeftLeg', Weight: 0.791364 +Vertex 833: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.217304 + Group: 'LeftLeg', Weight: 0.782645 +Vertex 834: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.305262 + Group: 'LeftLeg', Weight: 0.694455 +Vertex 835: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.270865 + Group: 'LeftLeg', Weight: 0.728991 +Vertex 836: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.649841 + Group: 'LeftLeg', Weight: 0.348993 +Vertex 837: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.336645 + Group: 'LeftLeg', Weight: 0.662761 +Vertex 838: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.754743 + Group: 'LeftLeg', Weight: 0.243547 +Vertex 839: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.590982 + Group: 'LeftLeg', Weight: 0.407904 +Vertex 840: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.381463 + Group: 'LeftLeg', Weight: 0.617825 +Vertex 841: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.667954 + Group: 'LeftLeg', Weight: 0.330624 +Vertex 842: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.393440 + Group: 'LeftLeg', Weight: 0.605810 +Vertex 843: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.562449 + Group: 'LeftLeg', Weight: 0.436518 +Vertex 844: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.607830 + Group: 'LeftLeg', Weight: 0.390959 +Vertex 845: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.617460 + Group: 'LeftLeg', Weight: 0.381350 +Vertex 846: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.651978 + Group: 'LeftLeg', Weight: 0.347145 +Vertex 847: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.172983 + Group: 'LeftLeg', Weight: 0.826673 +Vertex 848: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.126972 + Group: 'LeftLeg', Weight: 0.872738 +Vertex 849: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.253898 + Group: 'LeftLeg', Weight: 0.745608 +Vertex 850: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.227387 + Group: 'LeftLeg', Weight: 0.772151 +Vertex 851: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.305818 + Group: 'LeftLeg', Weight: 0.693598 +Vertex 852: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.342542 + Group: 'LeftLeg', Weight: 0.656791 +Vertex 853: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.363969 + Group: 'LeftLeg', Weight: 0.635362 +Vertex 854: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.335093 + Group: 'LeftLeg', Weight: 0.664446 +Vertex 855: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.903743 + Group: 'LeftLeg', Weight: 0.095620 +Vertex 856: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.847533 + Group: 'LeftLeg', Weight: 0.150599 +Vertex 857: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.873166 + Group: 'LeftLeg', Weight: 0.123205 +Vertex 858: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.919338 + Group: 'LeftLeg', Weight: 0.078621 +Vertex 859: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.809041 + Group: 'LeftLeg', Weight: 0.188599 +Vertex 860: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.810224 + Group: 'LeftLeg', Weight: 0.187219 +Vertex 861: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.921010 + Group: 'LeftLeg', Weight: 0.078718 +Vertex 862: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.880908 + Group: 'LeftLeg', Weight: 0.117829 +Vertex 863: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.812174 + Group: 'LeftLeg', Weight: 0.185307 +Vertex 864: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.903610 + Group: 'LeftLeg', Weight: 0.092910 +Vertex 865: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.837286 + Group: 'LeftLeg', Weight: 0.159880 +Vertex 866: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.922682 + Group: 'LeftLeg', Weight: 0.077181 +Vertex 867: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.916981 + Group: 'LeftLeg', Weight: 0.082769 +Vertex 868: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.920032 + Group: 'LeftLeg', Weight: 0.078771 +Vertex 869: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.910016 + Group: 'LeftLeg', Weight: 0.089485 +Vertex 870: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.957774 + Group: 'LeftLeg', Weight: 0.020985 +Vertex 871: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.952217 + Group: 'LeftLeg', Weight: 0.025702 +Vertex 872: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.937774 + Group: 'LeftLeg', Weight: 0.053763 +Vertex 873: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.985604 +Vertex 874: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.985460 +Vertex 875: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.981349 +Vertex 876: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.979875 +Vertex 877: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.972214 +Vertex 878: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.943384 + Group: 'LeftLeg', Weight: 0.046627 +Vertex 879: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.969616 + Group: 'LeftLeg', Weight: 0.001555 +Vertex 880: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.938842 + Group: 'LeftLeg', Weight: 0.051711 +Vertex 881: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.962048 + Group: 'LeftLeg', Weight: 0.009554 +Vertex 882: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.942683 + Group: 'LeftLeg', Weight: 0.045095 +Vertex 883: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.987930 +Vertex 884: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.976297 +Vertex 885: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.986326 +Vertex 886: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.066250 + Group: 'LeftLeg', Weight: 0.933586 +Vertex 887: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.021725 + Group: 'LeftLeg', Weight: 0.963869 +Vertex 888: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.016767 + Group: 'LeftLeg', Weight: 0.966571 +Vertex 889: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.979523 +Vertex 890: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.078535 + Group: 'LeftLeg', Weight: 0.921248 +Vertex 891: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.008377 + Group: 'LeftLeg', Weight: 0.970492 +Vertex 892: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.052635 + Group: 'LeftLeg', Weight: 0.947105 +Vertex 893: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.066121 + Group: 'LeftLeg', Weight: 0.933639 +Vertex 894: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.991626 +Vertex 895: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.052226 + Group: 'LeftLeg', Weight: 0.947664 +Vertex 896: +Vertex groups: 2 + Group: 'LeftUpLeg', Weight: 0.037146 + Group: 'LeftLeg', Weight: 0.956349 +Vertex 897: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.989356 +Vertex 898: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.983744 +Vertex 899: +Vertex groups: 1 + Group: 'LeftLeg', Weight: 0.989954 +Vertex 900: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.074203 + Group: 'LeftFoot', Weight: 0.863924 + Group: 'LeftToeBase', Weight: 0.061869 +Vertex 901: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.095505 + Group: 'LeftFoot', Weight: 0.857679 + Group: 'LeftToeBase', Weight: 0.043624 +Vertex 902: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.080358 + Group: 'LeftFoot', Weight: 0.885753 + Group: 'LeftToeBase', Weight: 0.017773 +Vertex 903: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.056053 + Group: 'LeftFoot', Weight: 0.911754 + Group: 'LeftToeBase', Weight: 0.014383 +Vertex 904: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.011724 + Group: 'LeftFoot', Weight: 0.948091 +Vertex 905: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.026076 + Group: 'LeftFoot', Weight: 0.955273 +Vertex 906: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.140353 + Group: 'LeftFoot', Weight: 0.854370 +Vertex 907: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.241786 + Group: 'LeftFoot', Weight: 0.752444 +Vertex 908: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.222678 + Group: 'LeftFoot', Weight: 0.772543 +Vertex 909: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.064872 + Group: 'LeftFoot', Weight: 0.884874 + Group: 'LeftToeBase', Weight: 0.050251 +Vertex 910: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.070153 + Group: 'LeftFoot', Weight: 0.895300 + Group: 'LeftToeBase', Weight: 0.019088 +Vertex 911: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.078382 + Group: 'LeftFoot', Weight: 0.897005 +Vertex 912: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.098336 + Group: 'LeftFoot', Weight: 0.884242 +Vertex 913: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.126546 + Group: 'LeftFoot', Weight: 0.860873 +Vertex 914: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.184284 + Group: 'LeftFoot', Weight: 0.807639 +Vertex 915: +Vertex groups: 3 + Group: 'Hips', Weight: 0.463045 + Group: 'LeftUpLeg', Weight: 0.265688 + Group: 'RightUpLeg', Weight: 0.265816 +Vertex 916: +Vertex groups: 3 + Group: 'Hips', Weight: 0.334307 + Group: 'LeftUpLeg', Weight: 0.329903 + Group: 'RightUpLeg', Weight: 0.329962 +Vertex 917: +Vertex groups: 3 + Group: 'Hips', Weight: 0.394494 + Group: 'LeftUpLeg', Weight: 0.296209 + Group: 'RightUpLeg', Weight: 0.296280 +Vertex 918: +Vertex groups: 3 + Group: 'Hips', Weight: 0.367171 + Group: 'LeftUpLeg', Weight: 0.408057 + Group: 'RightUpLeg', Weight: 0.198620 +Vertex 919: +Vertex groups: 4 + Group: 'Hips', Weight: 0.353319 + Group: 'Spine', Weight: 0.032453 + Group: 'LeftUpLeg', Weight: 0.421858 + Group: 'RightUpLeg', Weight: 0.180776 +Vertex 920: +Vertex groups: 4 + Group: 'Hips', Weight: 0.405472 + Group: 'Spine', Weight: 0.001429 + Group: 'LeftUpLeg', Weight: 0.283252 + Group: 'RightUpLeg', Weight: 0.283321 +Vertex 921: +Vertex groups: 4 + Group: 'Hips', Weight: 0.399408 + Group: 'Spine', Weight: 0.052386 + Group: 'LeftUpLeg', Weight: 0.272444 + Group: 'RightUpLeg', Weight: 0.272507 +Vertex 922: +Vertex groups: 4 + Group: 'Hips', Weight: 0.396543 + Group: 'Spine', Weight: 0.133169 + Group: 'LeftUpLeg', Weight: 0.231776 + Group: 'RightUpLeg', Weight: 0.231842 +Vertex 923: +Vertex groups: 5 + Group: 'Hips', Weight: 0.068547 + Group: 'Spine', Weight: 0.751541 + Group: 'Spine1', Weight: 0.018734 + Group: 'LeftUpLeg', Weight: 0.071246 + Group: 'RightUpLeg', Weight: 0.071337 +Vertex 924: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.997675 +Vertex 925: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.992369 +Vertex 926: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.997053 +Vertex 927: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.994768 +Vertex 928: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.203638 + Group: 'LeftToeBase', Weight: 0.793223 +Vertex 929: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.036832 + Group: 'LeftToeBase', Weight: 0.956003 +Vertex 930: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.976395 +Vertex 931: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.975577 +Vertex 932: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.085424 + Group: 'LeftToeBase', Weight: 0.914326 +Vertex 933: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.075968 + Group: 'LeftToeBase', Weight: 0.923817 +Vertex 934: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.237880 + Group: 'LeftToeBase', Weight: 0.761563 +Vertex 935: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.214619 + Group: 'LeftToeBase', Weight: 0.784834 +Vertex 936: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.911255 + Group: 'LeftToeBase', Weight: 0.084568 +Vertex 937: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.796188 + Group: 'LeftToeBase', Weight: 0.199141 +Vertex 938: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.007988 + Group: 'LeftFoot', Weight: 0.941588 + Group: 'LeftToeBase', Weight: 0.008836 +Vertex 939: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.924169 + Group: 'LeftToeBase', Weight: 0.055820 +Vertex 940: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.050345 + Group: 'LeftFoot', Weight: 0.927005 +Vertex 941: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.015064 + Group: 'LeftFoot', Weight: 0.934493 + Group: 'LeftToeBase', Weight: 0.015950 +Vertex 942: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.075257 + Group: 'LeftFoot', Weight: 0.907937 +Vertex 943: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.037952 + Group: 'LeftFoot', Weight: 0.931253 +Vertex 944: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.075816 + Group: 'LeftFoot', Weight: 0.906555 +Vertex 945: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.044716 + Group: 'LeftFoot', Weight: 0.928226 +Vertex 946: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.065751 + Group: 'LeftFoot', Weight: 0.912721 +Vertex 947: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.034151 + Group: 'LeftFoot', Weight: 0.929020 + Group: 'LeftToeBase', Weight: 0.007808 +Vertex 948: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.049186 + Group: 'LeftFoot', Weight: 0.921567 + Group: 'LeftToeBase', Weight: 0.007678 +Vertex 949: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.016734 + Group: 'LeftFoot', Weight: 0.929362 + Group: 'LeftToeBase', Weight: 0.024540 +Vertex 950: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.028635 + Group: 'LeftFoot', Weight: 0.922168 + Group: 'LeftToeBase', Weight: 0.027027 +Vertex 951: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.001400 + Group: 'LeftFoot', Weight: 0.922622 + Group: 'LeftToeBase', Weight: 0.051678 +Vertex 952: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.903772 + Group: 'LeftToeBase', Weight: 0.075498 +Vertex 953: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.887535 + Group: 'LeftToeBase', Weight: 0.098234 +Vertex 954: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.644981 + Group: 'LeftToeBase', Weight: 0.350473 +Vertex 955: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.495213 + Group: 'LeftToeBase', Weight: 0.503105 +Vertex 956: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.843052 + Group: 'LeftToeBase', Weight: 0.148256 +Vertex 957: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.872582 + Group: 'LeftToeBase', Weight: 0.113109 +Vertex 958: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.314618 + Group: 'LeftToeBase', Weight: 0.682784 +Vertex 959: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.222211 + Group: 'LeftToeBase', Weight: 0.776822 +Vertex 960: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.148504 + Group: 'LeftToeBase', Weight: 0.850139 +Vertex 961: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.129279 + Group: 'LeftToeBase', Weight: 0.870059 +Vertex 962: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.062794 + Group: 'LeftToeBase', Weight: 0.936626 +Vertex 963: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.060320 + Group: 'LeftToeBase', Weight: 0.939306 +Vertex 964: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.003286 + Group: 'LeftToeBase', Weight: 0.973098 +Vertex 965: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.003381 + Group: 'LeftToeBase', Weight: 0.973117 +Vertex 966: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.989706 +Vertex 967: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.988336 +Vertex 968: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.144497 + Group: 'LeftToeBase', Weight: 0.853968 +Vertex 969: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.141078 + Group: 'LeftToeBase', Weight: 0.856893 +Vertex 970: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.024743 + Group: 'LeftFoot', Weight: 0.911295 + Group: 'LeftToeBase', Weight: 0.051332 +Vertex 971: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.997922 +Vertex 972: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.997938 +Vertex 973: +Vertex groups: 4 + Group: 'Hips', Weight: 0.676126 + Group: 'Spine', Weight: 0.082159 + Group: 'LeftUpLeg', Weight: 0.113149 + Group: 'RightUpLeg', Weight: 0.113280 +Vertex 974: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.892740 + Group: 'LeftToeBase', Weight: 0.084078 +Vertex 975: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.699526 + Group: 'LeftToeBase', Weight: 0.290916 +Vertex 976: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.353199 + Group: 'LeftToeBase', Weight: 0.641955 +Vertex 977: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.157718 + Group: 'LeftToeBase', Weight: 0.840236 +Vertex 978: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.059939 + Group: 'LeftToeBase', Weight: 0.939372 +Vertex 979: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.007598 + Group: 'LeftToeBase', Weight: 0.970866 +Vertex 980: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.096196 + Group: 'LeftToeBase', Weight: 0.902416 +Vertex 981: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.987656 +Vertex 982: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.996477 +Vertex 983: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.988566 +Vertex 984: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.983268 +Vertex 985: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.020440 + Group: 'LeftToeBase', Weight: 0.964615 +Vertex 986: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.115006 + Group: 'LeftToeBase', Weight: 0.884582 +Vertex 987: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.273572 + Group: 'LeftToeBase', Weight: 0.725697 +Vertex 988: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.939661 + Group: 'LeftToeBase', Weight: 0.055586 +Vertex 989: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.016376 + Group: 'LeftFoot', Weight: 0.955266 +Vertex 990: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.093309 + Group: 'LeftFoot', Weight: 0.895917 +Vertex 991: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.118549 + Group: 'LeftFoot', Weight: 0.870535 +Vertex 992: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.134358 + Group: 'LeftFoot', Weight: 0.854788 +Vertex 993: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.113377 + Group: 'LeftFoot', Weight: 0.873446 +Vertex 994: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.083078 + Group: 'LeftFoot', Weight: 0.898356 +Vertex 995: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.062214 + Group: 'LeftFoot', Weight: 0.912004 + Group: 'LeftToeBase', Weight: 0.001562 +Vertex 996: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.996806 +Vertex 997: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.030910 + Group: 'LeftFoot', Weight: 0.868218 + Group: 'LeftToeBase', Weight: 0.091325 +Vertex 998: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.006682 + Group: 'LeftFoot', Weight: 0.900480 + Group: 'LeftToeBase', Weight: 0.071178 +Vertex 999: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.046430 + Group: 'LeftToeBase', Weight: 0.951107 +Vertex 1000: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.050630 + Group: 'LeftToeBase', Weight: 0.948836 +Vertex 1001: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.994411 +Vertex 1002: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.994240 +Vertex 1003: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.979810 +Vertex 1004: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.336080 + Group: 'LeftToeBase', Weight: 0.658741 +Vertex 1005: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.332377 + Group: 'LeftToeBase', Weight: 0.663796 +Vertex 1006: +Vertex groups: 3 + Group: 'Hips', Weight: 0.594491 + Group: 'LeftUpLeg', Weight: 0.198240 + Group: 'RightUpLeg', Weight: 0.198408 +Vertex 1007: +Vertex groups: 3 + Group: 'Hips', Weight: 0.662607 + Group: 'LeftUpLeg', Weight: 0.161677 + Group: 'RightUpLeg', Weight: 0.161855 +Vertex 1008: +Vertex groups: 3 + Group: 'Hips', Weight: 0.586867 + Group: 'LeftUpLeg', Weight: 0.293101 + Group: 'RightUpLeg', Weight: 0.107042 +Vertex 1009: +Vertex groups: 4 + Group: 'Hips', Weight: 0.344445 + Group: 'Spine', Weight: 0.282127 + Group: 'LeftUpLeg', Weight: 0.180613 + Group: 'RightUpLeg', Weight: 0.180691 +Vertex 1010: +Vertex groups: 4 + Group: 'Hips', Weight: 0.235537 + Group: 'Spine', Weight: 0.458433 + Group: 'LeftUpLeg', Weight: 0.144481 + Group: 'RightUpLeg', Weight: 0.144567 +Vertex 1011: +Vertex groups: 2 + Group: 'Spine', Weight: 0.010482 + Group: 'LeftUpLeg', Weight: 0.945949 +Vertex 1012: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.985564 +Vertex 1013: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.987461 +Vertex 1014: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.012846 + Group: 'LeftToeBase', Weight: 0.968312 +Vertex 1015: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.070835 + Group: 'LeftToeBase', Weight: 0.928553 +Vertex 1016: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.290324 + Group: 'LeftToeBase', Weight: 0.707199 +Vertex 1017: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.909171 + Group: 'LeftToeBase', Weight: 0.067935 +Vertex 1018: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.026071 + Group: 'LeftFoot', Weight: 0.846201 + Group: 'LeftToeBase', Weight: 0.115761 +Vertex 1019: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.258642 + Group: 'LeftToeBase', Weight: 0.737226 +Vertex 1020: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.045179 + Group: 'LeftToeBase', Weight: 0.951736 +Vertex 1021: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.975359 +Vertex 1022: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.036055 + Group: 'LeftToeBase', Weight: 0.956727 +Vertex 1023: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.246949 + Group: 'LeftToeBase', Weight: 0.752091 +Vertex 1024: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.934068 + Group: 'LeftToeBase', Weight: 0.058577 +Vertex 1025: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.137493 + Group: 'LeftToeBase', Weight: 0.861334 +Vertex 1026: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.113777 + Group: 'LeftToeBase', Weight: 0.884512 +Vertex 1027: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.113027 + Group: 'LeftToeBase', Weight: 0.886434 +Vertex 1028: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.417374 + Group: 'LeftToeBase', Weight: 0.575482 +Vertex 1029: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.762265 + Group: 'LeftToeBase', Weight: 0.236246 +Vertex 1030: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.587199 + Group: 'LeftToeBase', Weight: 0.411189 +Vertex 1031: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.721479 + Group: 'LeftToeBase', Weight: 0.277041 +Vertex 1032: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.718358 + Group: 'LeftToeBase', Weight: 0.273284 +Vertex 1033: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.684448 + Group: 'LeftToeBase', Weight: 0.303861 +Vertex 1034: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.684867 + Group: 'LeftToeBase', Weight: 0.309357 +Vertex 1035: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.546616 + Group: 'LeftToeBase', Weight: 0.444208 +Vertex 1036: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.712746 + Group: 'LeftToeBase', Weight: 0.284641 +Vertex 1037: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.741968 + Group: 'LeftToeBase', Weight: 0.241378 +Vertex 1038: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.008247 + Group: 'LeftFoot', Weight: 0.859908 + Group: 'LeftToeBase', Weight: 0.110967 +Vertex 1039: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.738495 + Group: 'LeftToeBase', Weight: 0.257174 +Vertex 1040: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.794679 + Group: 'LeftToeBase', Weight: 0.197265 +Vertex 1041: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.841532 + Group: 'LeftToeBase', Weight: 0.142140 +Vertex 1042: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.219430 + Group: 'LeftFoot', Weight: 0.765532 +Vertex 1043: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.193852 + Group: 'LeftFoot', Weight: 0.793766 +Vertex 1044: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.288708 + Group: 'LeftFoot', Weight: 0.706411 +Vertex 1045: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.228241 + Group: 'LeftFoot', Weight: 0.763576 +Vertex 1046: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.155984 + Group: 'LeftFoot', Weight: 0.834632 +Vertex 1047: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.120756 + Group: 'LeftFoot', Weight: 0.874030 +Vertex 1048: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.098418 + Group: 'LeftFoot', Weight: 0.900611 +Vertex 1049: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.436003 + Group: 'LeftFoot', Weight: 0.563591 +Vertex 1050: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.472041 + Group: 'LeftFoot', Weight: 0.527379 +Vertex 1051: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.197602 + Group: 'LeftFoot', Weight: 0.784564 +Vertex 1052: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.196949 + Group: 'LeftFoot', Weight: 0.791467 +Vertex 1053: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.432646 + Group: 'LeftFoot', Weight: 0.565311 +Vertex 1054: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.399369 + Group: 'LeftFoot', Weight: 0.597717 +Vertex 1055: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.466616 + Group: 'LeftFoot', Weight: 0.532208 +Vertex 1056: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.178380 + Group: 'LeftFoot', Weight: 0.806170 +Vertex 1057: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.911613 + Group: 'LeftToeBase', Weight: 0.067991 +Vertex 1058: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.012611 + Group: 'LeftFoot', Weight: 0.918125 + Group: 'LeftToeBase', Weight: 0.050569 +Vertex 1059: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.050317 + Group: 'LeftFoot', Weight: 0.916019 + Group: 'LeftToeBase', Weight: 0.017324 +Vertex 1060: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.868310 + Group: 'LeftToeBase', Weight: 0.123316 +Vertex 1061: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.962611 + Group: 'LeftToeBase', Weight: 0.004608 +Vertex 1062: +Vertex groups: 1 + Group: 'LeftFoot', Weight: 0.972301 +Vertex 1063: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.008037 + Group: 'LeftFoot', Weight: 0.963975 +Vertex 1064: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.998577 +Vertex 1065: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.998205 +Vertex 1066: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.991711 +Vertex 1067: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.974952 +Vertex 1068: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.082572 + Group: 'LeftToeBase', Weight: 0.917198 +Vertex 1069: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.222110 + Group: 'LeftToeBase', Weight: 0.777330 +Vertex 1070: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.684777 + Group: 'LeftToeBase', Weight: 0.313451 +Vertex 1071: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.831616 + Group: 'LeftToeBase', Weight: 0.163713 +Vertex 1072: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.890334 + Group: 'LeftToeBase', Weight: 0.099334 +Vertex 1073: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.925533 + Group: 'LeftToeBase', Weight: 0.054146 +Vertex 1074: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.019641 + Group: 'LeftFoot', Weight: 0.934075 + Group: 'LeftToeBase', Weight: 0.012208 +Vertex 1075: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.051066 + Group: 'LeftFoot', Weight: 0.926618 +Vertex 1076: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.054222 + Group: 'LeftFoot', Weight: 0.923650 +Vertex 1077: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.040787 + Group: 'LeftFoot', Weight: 0.927457 + Group: 'LeftToeBase', Weight: 0.004299 +Vertex 1078: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.020097 + Group: 'LeftFoot', Weight: 0.928625 + Group: 'LeftToeBase', Weight: 0.022652 +Vertex 1079: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.004561 + Group: 'LeftFoot', Weight: 0.922587 + Group: 'LeftToeBase', Weight: 0.050132 +Vertex 1080: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.910002 + Group: 'LeftToeBase', Weight: 0.068663 +Vertex 1081: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.888715 + Group: 'LeftToeBase', Weight: 0.095876 +Vertex 1082: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.757991 + Group: 'LeftToeBase', Weight: 0.236767 +Vertex 1083: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.533022 + Group: 'LeftToeBase', Weight: 0.464560 +Vertex 1084: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.842784 + Group: 'LeftToeBase', Weight: 0.147779 +Vertex 1085: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.276227 + Group: 'LeftToeBase', Weight: 0.722306 +Vertex 1086: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.137593 + Group: 'LeftToeBase', Weight: 0.861576 +Vertex 1087: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.061538 + Group: 'LeftToeBase', Weight: 0.938034 +Vertex 1088: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.004127 + Group: 'LeftToeBase', Weight: 0.972729 +Vertex 1089: +Vertex groups: 1 + Group: 'LeftToeBase', Weight: 0.989172 +Vertex 1090: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.963625 +Vertex 1091: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.957156 +Vertex 1092: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.949773 +Vertex 1093: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.992290 +Vertex 1094: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.994739 +Vertex 1095: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.992446 +Vertex 1096: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.985679 +Vertex 1097: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.980345 +Vertex 1098: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.951252 +Vertex 1099: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.975550 +Vertex 1100: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.948322 +Vertex 1101: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.967308 +Vertex 1102: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.950912 +Vertex 1103: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.995383 +Vertex 1104: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.986197 +Vertex 1105: +Vertex groups: 4 + Group: 'Hips', Weight: 0.119793 + Group: 'Spine', Weight: 0.653903 + Group: 'LeftUpLeg', Weight: 0.100354 + Group: 'RightUpLeg', Weight: 0.100445 +Vertex 1106: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.098189 + Group: 'LeftFoot', Weight: 0.868083 + Group: 'LeftToeBase', Weight: 0.017446 +Vertex 1107: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.107764 + Group: 'LeftFoot', Weight: 0.868400 +Vertex 1108: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.108724 + Group: 'LeftFoot', Weight: 0.866129 + Group: 'LeftToeBase', Weight: 0.000286 +Vertex 1109: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.078747 + Group: 'LeftFoot', Weight: 0.898112 +Vertex 1110: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.114796 + Group: 'LeftFoot', Weight: 0.841460 + Group: 'LeftToeBase', Weight: 0.037477 +Vertex 1111: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.762833 + Group: 'LeftToeBase', Weight: 0.216845 +Vertex 1112: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.106985 + Group: 'LeftFoot', Weight: 0.874568 +Vertex 1113: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.128677 + Group: 'LeftFoot', Weight: 0.857663 +Vertex 1114: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.166601 + Group: 'LeftFoot', Weight: 0.823647 +Vertex 1115: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.236024 + Group: 'LeftFoot', Weight: 0.758028 +Vertex 1116: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.334895 + Group: 'LeftFoot', Weight: 0.661402 +Vertex 1117: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.336468 + Group: 'LeftFoot', Weight: 0.660751 +Vertex 1118: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.171887 + Group: 'LeftFoot', Weight: 0.824957 +Vertex 1119: +Vertex groups: 3 + Group: 'LeftLeg', Weight: 0.131090 + Group: 'LeftFoot', Weight: 0.835849 + Group: 'LeftToeBase', Weight: 0.016111 +Vertex 1120: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.038758 + Group: 'LeftFoot', Weight: 0.951204 +Vertex 1121: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.048459 + Group: 'LeftFoot', Weight: 0.936101 +Vertex 1122: +Vertex groups: 4 + Group: 'Hips', Weight: 0.610053 + Group: 'Spine', Weight: 0.030128 + Group: 'LeftUpLeg', Weight: 0.278632 + Group: 'RightUpLeg', Weight: 0.063719 +Vertex 1123: +Vertex groups: 3 + Group: 'Hips', Weight: 0.632930 + Group: 'LeftUpLeg', Weight: 0.256147 + Group: 'RightUpLeg', Weight: 0.088604 +Vertex 1124: +Vertex groups: 3 + Group: 'Hips', Weight: 0.690997 + Group: 'LeftUpLeg', Weight: 0.140839 + Group: 'RightUpLeg', Weight: 0.141015 +Vertex 1125: +Vertex groups: 4 + Group: 'Hips', Weight: 0.689714 + Group: 'Spine', Weight: 0.034969 + Group: 'LeftUpLeg', Weight: 0.129831 + Group: 'RightUpLeg', Weight: 0.129989 +Vertex 1126: +Vertex groups: 3 + Group: 'Hips', Weight: 0.538805 + Group: 'LeftUpLeg', Weight: 0.306363 + Group: 'RightUpLeg', Weight: 0.147198 +Vertex 1127: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.814045 + Group: 'LeftToeBase', Weight: 0.163426 +Vertex 1128: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.888922 + Group: 'LeftToeBase', Weight: 0.108152 +Vertex 1129: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.846088 + Group: 'LeftToeBase', Weight: 0.141860 +Vertex 1130: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.859984 + Group: 'LeftToeBase', Weight: 0.122153 +Vertex 1131: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.872463 + Group: 'LeftToeBase', Weight: 0.123105 +Vertex 1132: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.881323 + Group: 'LeftToeBase', Weight: 0.115769 +Vertex 1133: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.941313 + Group: 'LeftFoot', Weight: 0.058149 +Vertex 1134: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.903961 + Group: 'LeftFoot', Weight: 0.094464 +Vertex 1135: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.909247 + Group: 'LeftFoot', Weight: 0.089508 +Vertex 1136: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.921086 + Group: 'LeftFoot', Weight: 0.077867 +Vertex 1137: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.951932 + Group: 'LeftFoot', Weight: 0.045692 +Vertex 1138: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.956458 + Group: 'LeftFoot', Weight: 0.036822 +Vertex 1139: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.879840 + Group: 'LeftFoot', Weight: 0.117844 +Vertex 1140: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.898473 + Group: 'LeftFoot', Weight: 0.099947 +Vertex 1141: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.933492 + Group: 'LeftFoot', Weight: 0.065898 +Vertex 1142: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.896055 + Group: 'LeftFoot', Weight: 0.102031 +Vertex 1143: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.918864 + Group: 'LeftFoot', Weight: 0.080235 +Vertex 1144: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.961385 + Group: 'LeftFoot', Weight: 0.027014 +Vertex 1145: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.938904 + Group: 'LeftFoot', Weight: 0.060690 +Vertex 1146: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.948228 + Group: 'LeftFoot', Weight: 0.051530 +Vertex 1147: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.884974 + Group: 'LeftFoot', Weight: 0.112980 +Vertex 1148: +Vertex groups: 2 + Group: 'LeftFoot', Weight: 0.943322 + Group: 'LeftToeBase', Weight: 0.040645 +Vertex 1149: +Vertex groups: 1 + Group: 'LeftFoot', Weight: 0.972829 +Vertex 1150: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.106782 + Group: 'LeftFoot', Weight: 0.889704 +Vertex 1151: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.063434 + Group: 'LeftFoot', Weight: 0.922210 +Vertex 1152: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.095510 + Group: 'LeftFoot', Weight: 0.898799 +Vertex 1153: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.062523 + Group: 'LeftFoot', Weight: 0.935838 +Vertex 1154: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.055525 + Group: 'LeftFoot', Weight: 0.940128 +Vertex 1155: +Vertex groups: 2 + Group: 'LeftLeg', Weight: 0.167905 + Group: 'LeftFoot', Weight: 0.830418 +Vertex 1156: +Vertex groups: 4 + Group: 'Hips', Weight: 0.585129 + Group: 'Spine', Weight: 0.124235 + Group: 'LeftUpLeg', Weight: 0.217205 + Group: 'RightUpLeg', Weight: 0.050440 +Vertex 1157: +Vertex groups: 4 + Group: 'Hips', Weight: 0.352891 + Group: 'Spine', Weight: 0.185222 + Group: 'Spine1', Weight: 0.011584 + Group: 'LeftUpLeg', Weight: 0.409743 +Vertex 1158: +Vertex groups: 4 + Group: 'Hips', Weight: 0.160468 + Group: 'Spine', Weight: 0.226354 + Group: 'Spine1', Weight: 0.025910 + Group: 'LeftUpLeg', Weight: 0.562447 +Vertex 1159: +Vertex groups: 4 + Group: 'Hips', Weight: 0.064587 + Group: 'Spine', Weight: 0.277555 + Group: 'Spine1', Weight: 0.044738 + Group: 'LeftUpLeg', Weight: 0.600082 +Vertex 1160: +Vertex groups: 4 + Group: 'Hips', Weight: 0.029004 + Group: 'Spine', Weight: 0.279811 + Group: 'Spine1', Weight: 0.042028 + Group: 'LeftUpLeg', Weight: 0.624425 +Vertex 1161: +Vertex groups: 4 + Group: 'Hips', Weight: 0.004751 + Group: 'Spine', Weight: 0.281027 + Group: 'Spine1', Weight: 0.025991 + Group: 'LeftUpLeg', Weight: 0.641909 +Vertex 1162: +Vertex groups: 3 + Group: 'Hips', Weight: 0.037551 + Group: 'Spine', Weight: 0.214595 + Group: 'LeftUpLeg', Weight: 0.702199 +Vertex 1163: +Vertex groups: 4 + Group: 'Hips', Weight: 0.095799 + Group: 'Spine', Weight: 0.184327 + Group: 'LeftUpLeg', Weight: 0.666724 + Group: 'RightUpLeg', Weight: 0.029495 +Vertex 1164: +Vertex groups: 4 + Group: 'Hips', Weight: 0.173945 + Group: 'Spine', Weight: 0.129484 + Group: 'LeftUpLeg', Weight: 0.614704 + Group: 'RightUpLeg', Weight: 0.073487 +Vertex 1165: +Vertex groups: 4 + Group: 'Hips', Weight: 0.250937 + Group: 'Spine', Weight: 0.111873 + Group: 'LeftUpLeg', Weight: 0.521022 + Group: 'RightUpLeg', Weight: 0.109643 +Vertex 1166: +Vertex groups: 4 + Group: 'Hips', Weight: 0.339080 + Group: 'Spine', Weight: 0.137269 + Group: 'LeftUpLeg', Weight: 0.371600 + Group: 'RightUpLeg', Weight: 0.144846 +Vertex 1167: +Vertex groups: 4 + Group: 'Hips', Weight: 0.296398 + Group: 'Spine', Weight: 0.269790 + Group: 'LeftUpLeg', Weight: 0.310484 + Group: 'RightUpLeg', Weight: 0.110482 +Vertex 1168: +Vertex groups: 4 + Group: 'Hips', Weight: 0.118889 + Group: 'Spine', Weight: 0.296487 + Group: 'LeftUpLeg', Weight: 0.517183 + Group: 'RightUpLeg', Weight: 0.047939 +Vertex 1169: +Vertex groups: 4 + Group: 'Hips', Weight: 0.050574 + Group: 'Spine', Weight: 0.347817 + Group: 'Spine1', Weight: 0.009014 + Group: 'LeftUpLeg', Weight: 0.547575 +Vertex 1170: +Vertex groups: 4 + Group: 'Hips', Weight: 0.406247 + Group: 'Spine', Weight: 0.084131 + Group: 'LeftUpLeg', Weight: 0.252474 + Group: 'RightUpLeg', Weight: 0.252536 +Vertex 1171: +Vertex groups: 4 + Group: 'Hips', Weight: 0.347643 + Group: 'Spine', Weight: 0.071616 + Group: 'LeftUpLeg', Weight: 0.409734 + Group: 'RightUpLeg', Weight: 0.166810 +Vertex 1172: +Vertex groups: 4 + Group: 'Hips', Weight: 0.257818 + Group: 'Spine', Weight: 0.063876 + Group: 'LeftUpLeg', Weight: 0.551266 + Group: 'RightUpLeg', Weight: 0.123073 +Vertex 1173: +Vertex groups: 4 + Group: 'Hips', Weight: 0.155686 + Group: 'Spine', Weight: 0.067295 + Group: 'LeftUpLeg', Weight: 0.701957 + Group: 'RightUpLeg', Weight: 0.070628 +Vertex 1174: +Vertex groups: 4 + Group: 'Hips', Weight: 0.068993 + Group: 'Spine', Weight: 0.084302 + Group: 'LeftUpLeg', Weight: 0.809855 + Group: 'RightUpLeg', Weight: 0.010312 +Vertex 1175: +Vertex groups: 3 + Group: 'Hips', Weight: 0.010890 + Group: 'Spine', Weight: 0.098267 + Group: 'LeftUpLeg', Weight: 0.848710 +Vertex 1176: +Vertex groups: 2 + Group: 'Spine', Weight: 0.097947 + Group: 'LeftUpLeg', Weight: 0.864440 +Vertex 1177: +Vertex groups: 3 + Group: 'Hips', Weight: 0.006414 + Group: 'Spine', Weight: 0.099499 + Group: 'LeftUpLeg', Weight: 0.851481 +Vertex 1178: +Vertex groups: 3 + Group: 'Hips', Weight: 0.052695 + Group: 'Spine', Weight: 0.101696 + Group: 'LeftUpLeg', Weight: 0.822836 +Vertex 1179: +Vertex groups: 3 + Group: 'Hips', Weight: 0.104876 + Group: 'Spine', Weight: 0.097105 + Group: 'LeftUpLeg', Weight: 0.772780 +Vertex 1180: +Vertex groups: 3 + Group: 'Hips', Weight: 0.212373 + Group: 'Spine', Weight: 0.085203 + Group: 'LeftUpLeg', Weight: 0.670857 +Vertex 1181: +Vertex groups: 4 + Group: 'Hips', Weight: 0.639068 + Group: 'Spine', Weight: 0.081611 + Group: 'LeftUpLeg', Weight: 0.193626 + Group: 'RightUpLeg', Weight: 0.070535 +Vertex 1182: +Vertex groups: 4 + Group: 'Hips', Weight: 0.327872 + Group: 'Spine', Weight: 0.062093 + Group: 'LeftUpLeg', Weight: 0.567060 + Group: 'RightUpLeg', Weight: 0.012963 +Vertex 1183: +Vertex groups: 3 + Group: 'Hips', Weight: 0.472663 + Group: 'LeftUpLeg', Weight: 0.447252 + Group: 'RightUpLeg', Weight: 0.053470 +Vertex 1184: +Vertex groups: 3 + Group: 'Hips', Weight: 0.498448 + Group: 'LeftUpLeg', Weight: 0.413609 + Group: 'RightUpLeg', Weight: 0.070818 +Vertex 1185: +Vertex groups: 3 + Group: 'Hips', Weight: 0.509919 + Group: 'LeftUpLeg', Weight: 0.381257 + Group: 'RightUpLeg', Weight: 0.097482 +Vertex 1186: +Vertex groups: 4 + Group: 'Hips', Weight: 0.647422 + Group: 'Spine', Weight: 0.123192 + Group: 'LeftUpLeg', Weight: 0.103175 + Group: 'RightUpLeg', Weight: 0.103296 +Vertex 1187: +Vertex groups: 4 + Group: 'Hips', Weight: 0.011943 + Group: 'Spine', Weight: 0.526740 + Group: 'Spine1', Weight: 0.057335 + Group: 'LeftUpLeg', Weight: 0.366197 +Vertex 1188: +Vertex groups: 4 + Group: 'Hips', Weight: 0.032059 + Group: 'Spine', Weight: 0.648908 + Group: 'Spine1', Weight: 0.053845 + Group: 'LeftUpLeg', Weight: 0.229536 +Vertex 1189: +Vertex groups: 5 + Group: 'Hips', Weight: 0.062563 + Group: 'Spine', Weight: 0.546846 + Group: 'Spine1', Weight: 0.022617 + Group: 'LeftUpLeg', Weight: 0.321090 + Group: 'RightUpLeg', Weight: 0.008699 +Vertex 1190: +Vertex groups: 5 + Group: 'Hips', Weight: 0.113365 + Group: 'Spine', Weight: 0.592741 + Group: 'Spine1', Weight: 0.002025 + Group: 'LeftUpLeg', Weight: 0.211400 + Group: 'RightUpLeg', Weight: 0.053951 +Vertex 1191: +Vertex groups: 4 + Group: 'Hips', Weight: 0.165579 + Group: 'Spine', Weight: 0.261628 + Group: 'LeftUpLeg', Weight: 0.491499 + Group: 'RightUpLeg', Weight: 0.066325 +Vertex 1192: +Vertex groups: 4 + Group: 'Hips', Weight: 0.258706 + Group: 'Spine', Weight: 0.385515 + Group: 'LeftUpLeg', Weight: 0.240822 + Group: 'RightUpLeg', Weight: 0.097346 +Vertex 1193: +Vertex groups: 5 + Group: 'Hips', Weight: 0.062523 + Group: 'Spine', Weight: 0.711881 + Group: 'Spine1', Weight: 0.033171 + Group: 'LeftUpLeg', Weight: 0.142339 + Group: 'RightUpLeg', Weight: 0.025581 +Vertex 1194: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.977577 +Vertex 1195: +Vertex groups: 3 + Group: 'Hips', Weight: 0.189418 + Group: 'LeftUpLeg', Weight: 0.691850 + Group: 'RightUpLeg', Weight: 0.108848 +Vertex 1196: +Vertex groups: 3 + Group: 'Hips', Weight: 0.208437 + Group: 'LeftUpLeg', Weight: 0.672477 + Group: 'RightUpLeg', Weight: 0.114087 +Vertex 1197: +Vertex groups: 3 + Group: 'Hips', Weight: 0.081010 + Group: 'LeftUpLeg', Weight: 0.857923 + Group: 'RightUpLeg', Weight: 0.031279 +Vertex 1198: +Vertex groups: 2 + Group: 'Hips', Weight: 0.031572 + Group: 'LeftUpLeg', Weight: 0.917408 +Vertex 1199: +Vertex groups: 3 + Group: 'Hips', Weight: 0.153958 + Group: 'LeftUpLeg', Weight: 0.714467 + Group: 'RightUpLeg', Weight: 0.125779 +Vertex 1200: +Vertex groups: 2 + Group: 'Hips', Weight: 0.060153 + Group: 'LeftUpLeg', Weight: 0.919703 +Vertex 1201: +Vertex groups: 3 + Group: 'Hips', Weight: 0.159967 + Group: 'LeftUpLeg', Weight: 0.792528 + Group: 'RightUpLeg', Weight: 0.032724 +Vertex 1202: +Vertex groups: 3 + Group: 'Hips', Weight: 0.192275 + Group: 'LeftUpLeg', Weight: 0.733373 + Group: 'RightUpLeg', Weight: 0.069146 +Vertex 1203: +Vertex groups: 3 + Group: 'Hips', Weight: 0.162603 + Group: 'LeftUpLeg', Weight: 0.733213 + Group: 'RightUpLeg', Weight: 0.084246 +Vertex 1204: +Vertex groups: 2 + Group: 'Hips', Weight: 0.020539 + Group: 'LeftUpLeg', Weight: 0.946852 +Vertex 1205: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.957417 +Vertex 1206: +Vertex groups: 2 + Group: 'Hips', Weight: 0.110389 + Group: 'LeftUpLeg', Weight: 0.860579 +Vertex 1207: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.968299 +Vertex 1208: +Vertex groups: 1 + Group: 'LeftUpLeg', Weight: 0.977468 +Vertex 1209: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.978047 +Vertex 1210: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.982244 +Vertex 1211: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.984854 +Vertex 1212: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.985224 +Vertex 1213: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.980780 +Vertex 1214: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.974013 +Vertex 1215: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.962932 + Group: 'LeftHand', Weight: 0.019515 +Vertex 1216: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.966114 + Group: 'LeftHand', Weight: 0.013498 +Vertex 1217: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.965399 + Group: 'LeftHand', Weight: 0.015345 +Vertex 1218: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.966982 + Group: 'LeftHand', Weight: 0.012965 +Vertex 1219: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.976180 +Vertex 1220: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.978163 +Vertex 1221: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.978474 +Vertex 1222: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.084902 + Group: 'LeftForeArm', Weight: 0.914687 +Vertex 1223: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.038214 + Group: 'LeftForeArm', Weight: 0.955648 +Vertex 1224: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.041240 + Group: 'LeftForeArm', Weight: 0.954155 +Vertex 1225: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.114389 + Group: 'LeftForeArm', Weight: 0.885496 +Vertex 1226: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.242827 + Group: 'LeftForeArm', Weight: 0.756969 +Vertex 1227: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.168061 + Group: 'LeftForeArm', Weight: 0.831710 +Vertex 1228: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.072313 + Group: 'LeftForeArm', Weight: 0.927386 +Vertex 1229: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.038995 + Group: 'LeftForeArm', Weight: 0.955236 +Vertex 1230: +Vertex groups: 1 + Group: 'LeftForeArm', Weight: 0.976664 +Vertex 1231: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.055618 + Group: 'LeftForeArm', Weight: 0.944137 +Vertex 1232: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.000749 + Group: 'LeftForeArm', Weight: 0.974137 +Vertex 1233: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.033687 + Group: 'LeftForeArm', Weight: 0.957561 +Vertex 1234: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.037071 + Group: 'LeftForeArm', Weight: 0.956193 +Vertex 1235: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.103623 + Group: 'LeftArm', Weight: 0.866497 +Vertex 1236: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.112060 + Group: 'LeftArm', Weight: 0.855139 +Vertex 1237: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.973968 +Vertex 1238: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.025826 + Group: 'LeftArm', Weight: 0.954139 +Vertex 1239: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991108 +Vertex 1240: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.098118 + Group: 'LeftArm', Weight: 0.878951 +Vertex 1241: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.119323 + Group: 'LeftArm', Weight: 0.861286 +Vertex 1242: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.094708 + Group: 'LeftArm', Weight: 0.878902 +Vertex 1243: +Vertex groups: 2 + Group: 'LeftShoulder', Weight: 0.097818 + Group: 'LeftArm', Weight: 0.879680 +Vertex 1244: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.983958 +Vertex 1245: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.989939 +Vertex 1246: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.989252 +Vertex 1247: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.975304 +Vertex 1248: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.801330 + Group: 'LeftForeArm', Weight: 0.198283 +Vertex 1249: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.815796 + Group: 'LeftForeArm', Weight: 0.184115 +Vertex 1250: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.783524 + Group: 'LeftForeArm', Weight: 0.216447 +Vertex 1251: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.805312 + Group: 'LeftForeArm', Weight: 0.194379 +Vertex 1252: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.839377 + Group: 'LeftForeArm', Weight: 0.160589 +Vertex 1253: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.858915 + Group: 'LeftForeArm', Weight: 0.141003 +Vertex 1254: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.827417 + Group: 'LeftForeArm', Weight: 0.172523 +Vertex 1255: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.811600 + Group: 'LeftForeArm', Weight: 0.188027 +Vertex 1256: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.815533 + Group: 'LeftForeArm', Weight: 0.184336 +Vertex 1257: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.812544 + Group: 'LeftForeArm', Weight: 0.187249 +Vertex 1258: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.607471 + Group: 'LeftForeArm', Weight: 0.392492 +Vertex 1259: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.761655 + Group: 'LeftForeArm', Weight: 0.238207 +Vertex 1260: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.918246 + Group: 'LeftForeArm', Weight: 0.081486 +Vertex 1261: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.977092 +Vertex 1262: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.991370 +Vertex 1263: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.987444 +Vertex 1264: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.997854 +Vertex 1265: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.981087 +Vertex 1266: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.985092 +Vertex 1267: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.979809 +Vertex 1268: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.984710 +Vertex 1269: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.990725 +Vertex 1270: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.994445 +Vertex 1271: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.996634 +Vertex 1272: +Vertex groups: 1 + Group: 'LeftArm', Weight: 0.998772 +Vertex 1273: +Vertex groups: 1 + Group: 'LeftArm', Weight: 1.000318 +Vertex 1274: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.848196 + Group: 'LeftForeArm', Weight: 0.151765 +Vertex 1275: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.212947 + Group: 'LeftForeArm', Weight: 0.786996 +Vertex 1276: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.856169 + Group: 'LeftForeArm', Weight: 0.143526 +Vertex 1277: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.453469 + Group: 'LeftForeArm', Weight: 0.546424 +Vertex 1278: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.033015 + Group: 'LeftForeArm', Weight: 0.958253 +Vertex 1279: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.091799 + Group: 'LeftForeArm', Weight: 0.907824 +Vertex 1280: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.113144 + Group: 'LeftForeArm', Weight: 0.886641 +Vertex 1281: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.071851 + Group: 'LeftForeArm', Weight: 0.927633 +Vertex 1282: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.064014 + Group: 'LeftForeArm', Weight: 0.935831 +Vertex 1283: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.075032 + Group: 'LeftForeArm', Weight: 0.924840 +Vertex 1284: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.944174 + Group: 'LeftForeArm', Weight: 0.055782 +Vertex 1285: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.954058 + Group: 'LeftForeArm', Weight: 0.041739 +Vertex 1286: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.951260 + Group: 'LeftForeArm', Weight: 0.047045 +Vertex 1287: +Vertex groups: 2 + Group: 'LeftArm', Weight: 0.832846 + Group: 'LeftForeArm', Weight: 0.167026 +Vertex 1288: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.202791 + Group: 'RightHand', Weight: 0.765916 + Group: 'RightHandPinky1', Weight: 0.004521 +Vertex 1289: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.418449 + Group: 'RightHand', Weight: 0.567971 +Vertex 1290: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.054533 + Group: 'RightHand', Weight: 0.933015 +Vertex 1291: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.115959 + Group: 'RightHand', Weight: 0.842883 + Group: 'RightHandPinky1', Weight: 0.016514 +Vertex 1292: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.078842 + Group: 'RightHand', Weight: 0.874937 + Group: 'RightHandPinky1', Weight: 0.009227 +Vertex 1293: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.066943 + Group: 'RightHand', Weight: 0.889034 +Vertex 1294: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.068702 + Group: 'RightHand', Weight: 0.884853 + Group: 'RightHandThumb1', Weight: 0.019629 +Vertex 1295: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.117495 + Group: 'RightHand', Weight: 0.829198 + Group: 'RightHandThumb1', Weight: 0.045677 +Vertex 1296: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.155097 + Group: 'RightHand', Weight: 0.814305 + Group: 'RightHandThumb1', Weight: 0.008181 +Vertex 1297: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.336061 + Group: 'RightHand', Weight: 0.618435 + Group: 'RightHandThumb1', Weight: 0.037016 +Vertex 1298: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.310580 + Group: 'RightHand', Weight: 0.653321 + Group: 'RightHandThumb1', Weight: 0.019193 +Vertex 1299: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.048259 + Group: 'RightHand', Weight: 0.945827 +Vertex 1300: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.127773 + Group: 'RightHand', Weight: 0.866697 +Vertex 1301: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.998641 +Vertex 1302: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.997987 +Vertex 1303: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991908 +Vertex 1304: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.998240 +Vertex 1305: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.992845 +Vertex 1306: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.987412 +Vertex 1307: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.983232 +Vertex 1308: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.980032 +Vertex 1309: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.988615 +Vertex 1310: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.981729 +Vertex 1311: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.985488 +Vertex 1312: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.994747 +Vertex 1313: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.996757 +Vertex 1314: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.770642 + Group: 'RightArm', Weight: 0.204831 +Vertex 1315: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.778735 + Group: 'RightArm', Weight: 0.203119 +Vertex 1316: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.733510 + Group: 'RightArm', Weight: 0.222683 +Vertex 1317: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.011689 + Group: 'RightShoulder', Weight: 0.726471 + Group: 'RightArm', Weight: 0.222309 +Vertex 1318: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.030096 + Group: 'RightShoulder', Weight: 0.623628 + Group: 'RightArm', Weight: 0.307982 +Vertex 1319: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.045893 + Group: 'Spine2', Weight: 0.068616 + Group: 'RightShoulder', Weight: 0.574754 + Group: 'RightArm', Weight: 0.300256 +Vertex 1320: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068272 + Group: 'Spine2', Weight: 0.083299 + Group: 'RightShoulder', Weight: 0.524804 + Group: 'RightArm', Weight: 0.313836 +Vertex 1321: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.074432 + Group: 'Spine2', Weight: 0.085908 + Group: 'RightShoulder', Weight: 0.568714 + Group: 'RightArm', Weight: 0.261289 +Vertex 1322: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.019528 + Group: 'Spine2', Weight: 0.029585 + Group: 'RightShoulder', Weight: 0.652818 + Group: 'RightArm', Weight: 0.261778 +Vertex 1323: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.076050 + Group: 'Spine2', Weight: 0.083039 + Group: 'RightShoulder', Weight: 0.572663 + Group: 'RightArm', Weight: 0.258219 +Vertex 1324: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.058931 + Group: 'Spine2', Weight: 0.060339 + Group: 'RightShoulder', Weight: 0.603461 + Group: 'RightArm', Weight: 0.267942 +Vertex 1325: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.748726 + Group: 'RightArm', Weight: 0.227525 +Vertex 1326: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.750254 + Group: 'RightArm', Weight: 0.232222 +Vertex 1327: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.994002 +Vertex 1328: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.993985 +Vertex 1329: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.992396 +Vertex 1330: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.993189 +Vertex 1331: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.990005 +Vertex 1332: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.987139 +Vertex 1333: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.983448 +Vertex 1334: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.982430 +Vertex 1335: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.992042 +Vertex 1336: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.986439 +Vertex 1337: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.990405 +Vertex 1338: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.992617 +Vertex 1339: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.993303 +Vertex 1340: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.960670 + Group: 'RightForeArm', Weight: 0.025525 +Vertex 1341: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.957409 + Group: 'RightForeArm', Weight: 0.032188 +Vertex 1342: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.967218 + Group: 'RightForeArm', Weight: 0.014637 +Vertex 1343: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.972244 + Group: 'RightForeArm', Weight: 0.004969 +Vertex 1344: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.962397 + Group: 'RightForeArm', Weight: 0.023624 +Vertex 1345: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.983442 +Vertex 1346: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991748 +Vertex 1347: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.959310 + Group: 'RightForeArm', Weight: 0.028981 +Vertex 1348: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.989556 +Vertex 1349: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.984845 +Vertex 1350: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.977675 +Vertex 1351: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.967714 + Group: 'RightForeArm', Weight: 0.012073 +Vertex 1352: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.977860 +Vertex 1353: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.285430 + Group: 'RightForeArm', Weight: 0.714397 +Vertex 1354: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.187466 + Group: 'RightForeArm', Weight: 0.812437 +Vertex 1355: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.190654 + Group: 'RightForeArm', Weight: 0.809239 +Vertex 1356: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.272071 + Group: 'RightForeArm', Weight: 0.727882 +Vertex 1357: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.485166 + Group: 'RightForeArm', Weight: 0.514752 +Vertex 1358: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.486143 + Group: 'RightForeArm', Weight: 0.513792 +Vertex 1359: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.236630 + Group: 'RightForeArm', Weight: 0.763199 +Vertex 1360: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.197145 + Group: 'RightForeArm', Weight: 0.802765 +Vertex 1361: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.234383 + Group: 'RightForeArm', Weight: 0.765577 +Vertex 1362: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.209092 + Group: 'RightForeArm', Weight: 0.790772 +Vertex 1363: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.211178 + Group: 'RightForeArm', Weight: 0.788788 +Vertex 1364: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.442098 + Group: 'RightForeArm', Weight: 0.557859 +Vertex 1365: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.205957 + Group: 'RightForeArm', Weight: 0.793966 +Vertex 1366: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.133116 + Group: 'Spine2', Weight: 0.144091 + Group: 'RightShoulder', Weight: 0.526636 + Group: 'RightArm', Weight: 0.179775 +Vertex 1367: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.147516 + Group: 'Spine2', Weight: 0.169777 + Group: 'RightShoulder', Weight: 0.491456 + Group: 'RightArm', Weight: 0.173313 +Vertex 1368: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.092159 + Group: 'Spine2', Weight: 0.089950 + Group: 'RightShoulder', Weight: 0.610334 + Group: 'RightArm', Weight: 0.193708 +Vertex 1369: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.063096 + Group: 'Spine2', Weight: 0.072116 + Group: 'RightShoulder', Weight: 0.710194 + Group: 'RightArm', Weight: 0.136758 +Vertex 1370: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.022224 + Group: 'RightShoulder', Weight: 0.817565 + Group: 'RightArm', Weight: 0.102020 +Vertex 1371: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.020431 + Group: 'Spine2', Weight: 0.093061 + Group: 'Neck', Weight: 0.051334 + Group: 'RightShoulder', Weight: 0.774938 + Group: 'RightArm', Weight: 0.013457 +Vertex 1372: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.099703 + Group: 'Spine2', Weight: 0.188427 + Group: 'Neck', Weight: 0.019205 + Group: 'RightShoulder', Weight: 0.616051 + Group: 'RightArm', Weight: 0.031998 +Vertex 1373: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.030246 + Group: 'Spine2', Weight: 0.210407 + Group: 'Neck', Weight: 0.131554 + Group: 'LeftShoulder', Weight: 0.005902 + Group: 'RightShoulder', Weight: 0.568509 +Vertex 1374: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.113948 + Group: 'Spine2', Weight: 0.493934 + Group: 'Neck', Weight: 0.069088 + Group: 'LeftShoulder', Weight: 0.044556 + Group: 'RightShoulder', Weight: 0.253594 +Vertex 1375: +Vertex groups: 3 + Group: 'Spine', Weight: 0.140612 + Group: 'Spine1', Weight: 0.727280 + Group: 'Spine2', Weight: 0.063979 +Vertex 1376: +Vertex groups: 4 + Group: 'Hips', Weight: 0.074146 + Group: 'Spine', Weight: 0.585458 + Group: 'Spine1', Weight: 0.252259 + Group: 'RightUpLeg', Weight: 0.056548 +Vertex 1377: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.253065 + Group: 'Spine2', Weight: 0.473405 + Group: 'Neck', Weight: 0.021779 + Group: 'LeftShoulder', Weight: 0.029372 + Group: 'RightShoulder', Weight: 0.170733 +Vertex 1378: +Vertex groups: 4 + Group: 'Spine', Weight: 0.053783 + Group: 'Spine1', Weight: 0.738365 + Group: 'Spine2', Weight: 0.121295 + Group: 'RightShoulder', Weight: 0.043103 +Vertex 1379: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.210305 + Group: 'Spine2', Weight: 0.293892 + Group: 'RightShoulder', Weight: 0.405070 + Group: 'RightArm', Weight: 0.033019 +Vertex 1380: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.184364 + Group: 'Spine2', Weight: 0.176431 + Group: 'RightShoulder', Weight: 0.518768 + Group: 'RightArm', Weight: 0.090814 +Vertex 1381: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.201023 + Group: 'Spine2', Weight: 0.180391 + Group: 'RightShoulder', Weight: 0.474425 + Group: 'RightArm', Weight: 0.119865 +Vertex 1382: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.205005 + Group: 'Spine2', Weight: 0.227090 + Group: 'RightShoulder', Weight: 0.413387 + Group: 'RightArm', Weight: 0.131337 +Vertex 1383: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.206962 + Group: 'Spine2', Weight: 0.239874 + Group: 'RightShoulder', Weight: 0.392583 + Group: 'RightArm', Weight: 0.135924 +Vertex 1384: +Vertex groups: 3 + Group: 'Neck', Weight: 0.002003 + Group: 'RightShoulder', Weight: 0.866341 + Group: 'RightArm', Weight: 0.085365 +Vertex 1385: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.010626 + Group: 'Neck', Weight: 0.074799 + Group: 'RightShoulder', Weight: 0.846951 + Group: 'RightArm', Weight: 0.009928 +Vertex 1386: +Vertex groups: 4 + Group: 'Spine', Weight: 0.029420 + Group: 'Spine1', Weight: 0.726344 + Group: 'Spine2', Weight: 0.133502 + Group: 'RightShoulder', Weight: 0.057359 +Vertex 1387: +Vertex groups: 4 + Group: 'Spine', Weight: 0.001577 + Group: 'Spine1', Weight: 0.669935 + Group: 'Spine2', Weight: 0.173440 + Group: 'RightShoulder', Weight: 0.079034 +Vertex 1388: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.036553 + Group: 'Neck', Weight: 0.165377 + Group: 'RightShoulder', Weight: 0.752238 +Vertex 1389: +Vertex groups: 2 + Group: 'Neck', Weight: 0.199365 + Group: 'RightShoulder', Weight: 0.753993 +Vertex 1390: +Vertex groups: 3 + Group: 'Neck', Weight: 0.091005 + Group: 'RightShoulder', Weight: 0.855817 + Group: 'RightArm', Weight: 0.013402 +Vertex 1391: +Vertex groups: 3 + Group: 'Neck', Weight: 0.018651 + Group: 'RightShoulder', Weight: 0.872221 + Group: 'RightArm', Weight: 0.080387 +Vertex 1392: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.241819 + Group: 'Neck', Weight: 0.282173 + Group: 'LeftShoulder', Weight: 0.027033 + Group: 'RightShoulder', Weight: 0.390232 +Vertex 1393: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.055041 + Group: 'Spine2', Weight: 0.461320 + Group: 'Neck', Weight: 0.164047 + Group: 'LeftShoulder', Weight: 0.081714 + Group: 'RightShoulder', Weight: 0.219085 +Vertex 1394: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.017436 + Group: 'Spine2', Weight: 0.242767 + Group: 'Neck', Weight: 0.191823 + Group: 'LeftShoulder', Weight: 0.024582 + Group: 'RightShoulder', Weight: 0.473755 +Vertex 1395: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.025997 + Group: 'Spine2', Weight: 0.398598 + Group: 'Neck', Weight: 0.243322 + Group: 'LeftShoulder', Weight: 0.078794 + Group: 'RightShoulder', Weight: 0.220615 +Vertex 1396: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.054424 + Group: 'Neck', Weight: 0.267891 + Group: 'RightShoulder', Weight: 0.637525 +Vertex 1397: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.053730 + Group: 'Neck', Weight: 0.340553 + Group: 'RightShoulder', Weight: 0.564883 +Vertex 1398: +Vertex groups: 2 + Group: 'Neck', Weight: 0.432701 + Group: 'RightShoulder', Weight: 0.519248 +Vertex 1399: +Vertex groups: 2 + Group: 'Neck', Weight: 0.310909 + Group: 'RightShoulder', Weight: 0.641995 +Vertex 1400: +Vertex groups: 5 + Group: 'Spine', Weight: 0.012494 + Group: 'Spine1', Weight: 0.381803 + Group: 'Spine2', Weight: 0.290403 + Group: 'RightShoulder', Weight: 0.215767 + Group: 'RightArm', Weight: 0.069373 +Vertex 1401: +Vertex groups: 5 + Group: 'Spine', Weight: 0.011444 + Group: 'Spine1', Weight: 0.341037 + Group: 'Spine2', Weight: 0.291755 + Group: 'RightShoulder', Weight: 0.243469 + Group: 'RightArm', Weight: 0.082812 +Vertex 1402: +Vertex groups: 5 + Group: 'Spine', Weight: 0.083356 + Group: 'Spine1', Weight: 0.651493 + Group: 'Spine2', Weight: 0.135003 + Group: 'RightShoulder', Weight: 0.084071 + Group: 'RightArm', Weight: 0.000711 +Vertex 1403: +Vertex groups: 5 + Group: 'Spine', Weight: 0.085921 + Group: 'Spine1', Weight: 0.639420 + Group: 'Spine2', Weight: 0.134030 + Group: 'RightShoulder', Weight: 0.092591 + Group: 'RightArm', Weight: 0.007818 +Vertex 1404: +Vertex groups: 4 + Group: 'Spine', Weight: 0.126068 + Group: 'Spine1', Weight: 0.691307 + Group: 'Spine2', Weight: 0.091660 + Group: 'RightShoulder', Weight: 0.043667 +Vertex 1405: +Vertex groups: 4 + Group: 'Spine', Weight: 0.146175 + Group: 'Spine1', Weight: 0.673061 + Group: 'Spine2', Weight: 0.082973 + Group: 'RightShoulder', Weight: 0.051830 +Vertex 1406: +Vertex groups: 4 + Group: 'Hips', Weight: 0.017838 + Group: 'Spine', Weight: 0.565023 + Group: 'Spine1', Weight: 0.271008 + Group: 'RightUpLeg', Weight: 0.095473 +Vertex 1407: +Vertex groups: 3 + Group: 'Spine', Weight: 0.543740 + Group: 'Spine1', Weight: 0.302722 + Group: 'RightUpLeg', Weight: 0.090405 +Vertex 1408: +Vertex groups: 4 + Group: 'Spine', Weight: 0.149153 + Group: 'Spine1', Weight: 0.702054 + Group: 'Spine2', Weight: 0.071719 + Group: 'RightShoulder', Weight: 0.010385 +Vertex 1409: +Vertex groups: 4 + Group: 'Hips', Weight: 0.054997 + Group: 'Spine', Weight: 0.576755 + Group: 'Spine1', Weight: 0.255937 + Group: 'RightUpLeg', Weight: 0.081048 +Vertex 1410: +Vertex groups: 3 + Group: 'Spine', Weight: 0.132917 + Group: 'Spine1', Weight: 0.752367 + Group: 'Spine2', Weight: 0.052715 +Vertex 1411: +Vertex groups: 4 + Group: 'Hips', Weight: 0.086164 + Group: 'Spine', Weight: 0.590010 + Group: 'Spine1', Weight: 0.249996 + Group: 'RightUpLeg', Weight: 0.026647 +Vertex 1412: +Vertex groups: 4 + Group: 'Spine', Weight: 0.066907 + Group: 'Spine1', Weight: 0.634573 + Group: 'Spine2', Weight: 0.183312 + Group: 'RightShoulder', Weight: 0.073937 +Vertex 1413: +Vertex groups: 4 + Group: 'Spine', Weight: 0.064406 + Group: 'Spine1', Weight: 0.611721 + Group: 'Spine2', Weight: 0.191103 + Group: 'RightShoulder', Weight: 0.088460 +Vertex 1414: +Vertex groups: 4 + Group: 'Spine', Weight: 0.068130 + Group: 'Spine1', Weight: 0.655747 + Group: 'Spine2', Weight: 0.173957 + Group: 'RightShoulder', Weight: 0.062628 +Vertex 1415: +Vertex groups: 4 + Group: 'Spine', Weight: 0.069622 + Group: 'Spine1', Weight: 0.731967 + Group: 'Spine2', Weight: 0.119270 + Group: 'RightShoulder', Weight: 0.029864 +Vertex 1416: +Vertex groups: 5 + Group: 'Spine', Weight: 0.036786 + Group: 'Spine1', Weight: 0.551030 + Group: 'Spine2', Weight: 0.229543 + Group: 'RightShoulder', Weight: 0.125459 + Group: 'RightArm', Weight: 0.016438 +Vertex 1417: +Vertex groups: 5 + Group: 'Spine', Weight: 0.051706 + Group: 'Spine1', Weight: 0.562636 + Group: 'Spine2', Weight: 0.195062 + Group: 'RightShoulder', Weight: 0.134091 + Group: 'RightArm', Weight: 0.033103 +Vertex 1418: +Vertex groups: 5 + Group: 'Spine', Weight: 0.053597 + Group: 'Spine1', Weight: 0.542550 + Group: 'Spine2', Weight: 0.194230 + Group: 'RightShoulder', Weight: 0.147647 + Group: 'RightArm', Weight: 0.046249 +Vertex 1419: +Vertex groups: 5 + Group: 'Spine', Weight: 0.013981 + Group: 'Spine1', Weight: 0.508551 + Group: 'Spine2', Weight: 0.243286 + Group: 'RightShoulder', Weight: 0.158940 + Group: 'RightArm', Weight: 0.031880 +Vertex 1420: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.423890 + Group: 'Spine2', Weight: 0.237993 + Group: 'RightShoulder', Weight: 0.243216 + Group: 'RightArm', Weight: 0.055954 +Vertex 1421: +Vertex groups: 5 + Group: 'Spine', Weight: 0.000681 + Group: 'Spine1', Weight: 0.464949 + Group: 'Spine2', Weight: 0.238338 + Group: 'RightShoulder', Weight: 0.203814 + Group: 'RightArm', Weight: 0.050854 +Vertex 1422: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.490448 + Group: 'Spine2', Weight: 0.209612 + Group: 'RightShoulder', Weight: 0.214505 + Group: 'RightArm', Weight: 0.035174 +Vertex 1423: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.529872 + Group: 'Spine2', Weight: 0.207211 + Group: 'RightShoulder', Weight: 0.183890 + Group: 'RightArm', Weight: 0.011112 +Vertex 1424: +Vertex groups: 3 + Group: 'Spine1', Weight: 0.573408 + Group: 'Spine2', Weight: 0.216050 + Group: 'RightShoulder', Weight: 0.133220 +Vertex 1425: +Vertex groups: 3 + Group: 'Spine1', Weight: 0.606914 + Group: 'Spine2', Weight: 0.213724 + Group: 'RightShoulder', Weight: 0.100513 +Vertex 1426: +Vertex groups: 4 + Group: 'Spine', Weight: 0.069380 + Group: 'Spine1', Weight: 0.696591 + Group: 'Spine2', Weight: 0.148393 + Group: 'RightShoulder', Weight: 0.044200 +Vertex 1427: +Vertex groups: 5 + Group: 'Spine', Weight: 0.001135 + Group: 'Spine1', Weight: 0.542671 + Group: 'Spine2', Weight: 0.201550 + Group: 'RightShoulder', Weight: 0.172101 + Group: 'RightArm', Weight: 0.024353 +Vertex 1428: +Vertex groups: 5 + Group: 'Spine', Weight: 0.020303 + Group: 'Spine1', Weight: 0.589268 + Group: 'Spine2', Weight: 0.195475 + Group: 'RightShoulder', Weight: 0.130167 + Group: 'RightArm', Weight: 0.010650 +Vertex 1429: +Vertex groups: 4 + Group: 'Spine', Weight: 0.047817 + Group: 'Spine1', Weight: 0.624310 + Group: 'Spine2', Weight: 0.185834 + Group: 'RightShoulder', Weight: 0.096900 +Vertex 1430: +Vertex groups: 5 + Group: 'Spine', Weight: 0.002341 + Group: 'Spine1', Weight: 0.607856 + Group: 'Spine2', Weight: 0.179980 + Group: 'RightShoulder', Weight: 0.134647 + Group: 'RightArm', Weight: 0.000944 +Vertex 1431: +Vertex groups: 4 + Group: 'Spine', Weight: 0.024945 + Group: 'Spine1', Weight: 0.655907 + Group: 'Spine2', Weight: 0.164079 + Group: 'RightShoulder', Weight: 0.098479 +Vertex 1432: +Vertex groups: 4 + Group: 'Spine', Weight: 0.049924 + Group: 'Spine1', Weight: 0.670762 + Group: 'Spine2', Weight: 0.161081 + Group: 'RightShoulder', Weight: 0.077553 +Vertex 1433: +Vertex groups: 4 + Group: 'Spine', Weight: 0.003107 + Group: 'Spine1', Weight: 0.656863 + Group: 'Spine2', Weight: 0.171496 + Group: 'RightShoulder', Weight: 0.095721 +Vertex 1434: +Vertex groups: 4 + Group: 'Spine', Weight: 0.026609 + Group: 'Spine1', Weight: 0.704956 + Group: 'Spine2', Weight: 0.143801 + Group: 'RightShoulder', Weight: 0.070579 +Vertex 1435: +Vertex groups: 4 + Group: 'Spine', Weight: 0.052565 + Group: 'Spine1', Weight: 0.713725 + Group: 'Spine2', Weight: 0.137686 + Group: 'RightShoulder', Weight: 0.056772 +Vertex 1436: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.661796 + Group: 'Spine2', Weight: 0.192238 + Group: 'LeftShoulder', Weight: 0.015092 + Group: 'RightShoulder', Weight: 0.063521 +Vertex 1437: +Vertex groups: 4 + Group: 'Spine', Weight: 0.029214 + Group: 'Spine1', Weight: 0.746869 + Group: 'Spine2', Weight: 0.125220 + Group: 'RightShoulder', Weight: 0.030320 +Vertex 1438: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.550026 + Group: 'Spine2', Weight: 0.277268 + Group: 'LeftShoulder', Weight: 0.025713 + Group: 'RightShoulder', Weight: 0.084949 +Vertex 1439: +Vertex groups: 4 + Group: 'Spine', Weight: 0.060999 + Group: 'Spine1', Weight: 0.769187 + Group: 'Spine2', Weight: 0.097078 + Group: 'RightShoulder', Weight: 0.011444 +Vertex 1440: +Vertex groups: 3 + Group: 'Spine', Weight: 0.089562 + Group: 'Spine1', Weight: 0.769028 + Group: 'Spine2', Weight: 0.076180 +Vertex 1441: +Vertex groups: 4 + Group: 'Spine', Weight: 0.086402 + Group: 'Spine1', Weight: 0.672660 + Group: 'Spine2', Weight: 0.137418 + Group: 'RightShoulder', Weight: 0.062103 +Vertex 1442: +Vertex groups: 4 + Group: 'Spine', Weight: 0.075342 + Group: 'Spine1', Weight: 0.647104 + Group: 'Spine2', Weight: 0.152256 + Group: 'RightShoulder', Weight: 0.081155 +Vertex 1443: +Vertex groups: 4 + Group: 'Spine', Weight: 0.089521 + Group: 'Spine1', Weight: 0.691902 + Group: 'Spine2', Weight: 0.128572 + Group: 'RightShoulder', Weight: 0.049771 +Vertex 1444: +Vertex groups: 4 + Group: 'Spine', Weight: 0.094288 + Group: 'Spine1', Weight: 0.726291 + Group: 'Spine2', Weight: 0.104159 + Group: 'RightShoulder', Weight: 0.020697 +Vertex 1445: +Vertex groups: 5 + Group: 'Spine', Weight: 0.044844 + Group: 'Spine1', Weight: 0.560239 + Group: 'Spine2', Weight: 0.207851 + Group: 'RightShoulder', Weight: 0.130743 + Group: 'RightArm', Weight: 0.026054 +Vertex 1446: +Vertex groups: 5 + Group: 'Spine', Weight: 0.011152 + Group: 'Spine1', Weight: 0.451884 + Group: 'Spine2', Weight: 0.268392 + Group: 'RightShoulder', Weight: 0.183280 + Group: 'RightArm', Weight: 0.052329 +Vertex 1447: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.373208 + Group: 'Spine2', Weight: 0.262771 + Group: 'RightShoulder', Weight: 0.257660 + Group: 'RightArm', Weight: 0.070089 +Vertex 1448: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.338363 + Group: 'Spine2', Weight: 0.240164 + Group: 'RightShoulder', Weight: 0.314244 + Group: 'RightArm', Weight: 0.073534 +Vertex 1449: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.419815 + Group: 'Spine2', Weight: 0.214308 + Group: 'RightShoulder', Weight: 0.274058 + Group: 'RightArm', Weight: 0.052415 +Vertex 1450: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.462231 + Group: 'Spine2', Weight: 0.230504 + Group: 'RightShoulder', Weight: 0.226033 + Group: 'RightArm', Weight: 0.014839 +Vertex 1451: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.508034 + Group: 'Spine2', Weight: 0.274683 + Group: 'LeftShoulder', Weight: 0.003800 + Group: 'RightShoulder', Weight: 0.135375 +Vertex 1452: +Vertex groups: 4 + Group: 'Spine', Weight: 0.252767 + Group: 'Spine1', Weight: 0.617422 + Group: 'Spine2', Weight: 0.036793 + Group: 'RightUpLeg', Weight: 0.026111 +Vertex 1453: +Vertex groups: 5 + Group: 'Spine', Weight: 0.259528 + Group: 'Spine1', Weight: 0.604790 + Group: 'Spine2', Weight: 0.044541 + Group: 'RightShoulder', Weight: 0.004619 + Group: 'RightUpLeg', Weight: 0.027563 +Vertex 1454: +Vertex groups: 4 + Group: 'Spine', Weight: 0.259087 + Group: 'Spine1', Weight: 0.619262 + Group: 'Spine2', Weight: 0.024511 + Group: 'RightUpLeg', Weight: 0.018003 +Vertex 1455: +Vertex groups: 4 + Group: 'Hips', Weight: 0.017367 + Group: 'Spine', Weight: 0.255899 + Group: 'Spine1', Weight: 0.638197 + Group: 'Spine2', Weight: 0.006336 +Vertex 1456: +Vertex groups: 5 + Group: 'Hips', Weight: 0.011370 + Group: 'Spine', Weight: 0.265714 + Group: 'Spine1', Weight: 0.621100 + Group: 'Spine2', Weight: 0.012647 + Group: 'RightUpLeg', Weight: 0.003991 +Vertex 1457: +Vertex groups: 3 + Group: 'Neck', Weight: 0.063587 + Group: 'RightShoulder', Weight: 0.880432 + Group: 'RightArm', Weight: 0.009161 +Vertex 1458: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.879007 + Group: 'RightArm', Weight: 0.085311 +Vertex 1459: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.037329 + Group: 'Neck', Weight: 0.004943 + Group: 'RightShoulder', Weight: 0.879891 + Group: 'RightArm', Weight: 0.010535 +Vertex 1460: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.876478 + Group: 'RightArm', Weight: 0.079443 +Vertex 1461: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.063291 + Group: 'RightShoulder', Weight: 0.805246 + Group: 'RightArm', Weight: 0.095583 +Vertex 1462: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.089632 + Group: 'RightShoulder', Weight: 0.820409 + Group: 'RightArm', Weight: 0.029104 +Vertex 1463: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050854 + Group: 'Spine2', Weight: 0.136775 + Group: 'RightShoulder', Weight: 0.706523 + Group: 'RightArm', Weight: 0.083853 +Vertex 1464: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.068626 + Group: 'Spine2', Weight: 0.135236 + Group: 'RightShoulder', Weight: 0.638982 + Group: 'RightArm', Weight: 0.140045 +Vertex 1465: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.196031 + Group: 'Spine2', Weight: 0.225434 + Group: 'RightShoulder', Weight: 0.399276 + Group: 'RightArm', Weight: 0.153198 +Vertex 1466: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.130463 + Group: 'Spine2', Weight: 0.154191 + Group: 'RightShoulder', Weight: 0.489042 + Group: 'RightArm', Weight: 0.208514 +Vertex 1467: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.072009 + Group: 'Spine2', Weight: 0.107643 + Group: 'RightShoulder', Weight: 0.591394 + Group: 'RightArm', Weight: 0.216104 +Vertex 1468: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.033653 + Group: 'Spine2', Weight: 0.077931 + Group: 'RightShoulder', Weight: 0.663408 + Group: 'RightArm', Weight: 0.206024 +Vertex 1469: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.024776 + Group: 'Spine2', Weight: 0.163757 + Group: 'RightShoulder', Weight: 0.720769 + Group: 'RightArm', Weight: 0.035263 +Vertex 1470: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.123322 + Group: 'Spine2', Weight: 0.186921 + Group: 'RightShoulder', Weight: 0.532474 + Group: 'RightArm', Weight: 0.136089 +Vertex 1471: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.147412 + Group: 'Neck', Weight: 0.001232 + Group: 'LeftShoulder', Weight: 0.024107 + Group: 'RightShoulder', Weight: 0.752672 +Vertex 1472: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.013239 + Group: 'Spine2', Weight: 0.241470 + Group: 'LeftShoulder', Weight: 0.039638 + Group: 'RightShoulder', Weight: 0.641690 +Vertex 1473: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.016578 + Group: 'Neck', Weight: 0.150379 + Group: 'RightShoulder', Weight: 0.784542 +Vertex 1474: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.081310 + Group: 'Neck', Weight: 0.053874 + Group: 'LeftShoulder', Weight: 0.006390 + Group: 'RightShoulder', Weight: 0.815939 +Vertex 1475: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.238301 + Group: 'Neck', Weight: 0.027551 + Group: 'LeftShoulder', Weight: 0.080036 + Group: 'RightShoulder', Weight: 0.617543 +Vertex 1476: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.008291 + Group: 'Spine2', Weight: 0.341499 + Group: 'LeftShoulder', Weight: 0.084947 + Group: 'RightShoulder', Weight: 0.508761 +Vertex 1477: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.170129 + Group: 'Neck', Weight: 0.083431 + Group: 'LeftShoulder', Weight: 0.069407 + Group: 'RightShoulder', Weight: 0.663454 +Vertex 1478: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.127861 + Group: 'Neck', Weight: 0.181327 + Group: 'LeftShoulder', Weight: 0.063395 + Group: 'RightShoulder', Weight: 0.617907 +Vertex 1479: +Vertex groups: 2 + Group: 'Neck', Weight: 0.737955 + Group: 'RightShoulder', Weight: 0.204652 +Vertex 1480: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.015640 + Group: 'Neck', Weight: 0.636907 + Group: 'LeftShoulder', Weight: 0.004811 + Group: 'RightShoulder', Weight: 0.292168 +Vertex 1481: +Vertex groups: 5 + Group: 'Spine', Weight: 0.014122 + Group: 'Spine1', Weight: 0.328670 + Group: 'Spine2', Weight: 0.286027 + Group: 'RightShoulder', Weight: 0.253787 + Group: 'RightArm', Weight: 0.089086 +Vertex 1482: +Vertex groups: 5 + Group: 'Spine', Weight: 0.053925 + Group: 'Spine1', Weight: 0.523572 + Group: 'Spine2', Weight: 0.203967 + Group: 'RightShoulder', Weight: 0.155024 + Group: 'RightArm', Weight: 0.050044 +Vertex 1483: +Vertex groups: 5 + Group: 'Spine', Weight: 0.086308 + Group: 'Spine1', Weight: 0.629848 + Group: 'Spine2', Weight: 0.140088 + Group: 'RightShoulder', Weight: 0.096491 + Group: 'RightArm', Weight: 0.008965 +Vertex 1484: +Vertex groups: 4 + Group: 'Spine', Weight: 0.147234 + Group: 'Spine1', Weight: 0.666727 + Group: 'Spine2', Weight: 0.087311 + Group: 'RightShoulder', Weight: 0.055434 +Vertex 1485: +Vertex groups: 5 + Group: 'Spine', Weight: 0.265012 + Group: 'Spine1', Weight: 0.600513 + Group: 'Spine2', Weight: 0.049820 + Group: 'RightShoulder', Weight: 0.009047 + Group: 'RightUpLeg', Weight: 0.020405 +Vertex 1486: +Vertex groups: 3 + Group: 'Spine', Weight: 0.549999 + Group: 'Spine1', Weight: 0.310039 + Group: 'RightUpLeg', Weight: 0.080291 +Vertex 1487: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.261278 + Group: 'Spine2', Weight: 0.311212 + Group: 'RightShoulder', Weight: 0.309905 + Group: 'RightArm', Weight: 0.080944 +Vertex 1488: +Vertex groups: 5 + Group: 'Spine', Weight: 0.041431 + Group: 'Spine1', Weight: 0.479046 + Group: 'Spine2', Weight: 0.249138 + Group: 'RightShoulder', Weight: 0.168204 + Group: 'RightArm', Weight: 0.037966 +Vertex 1489: +Vertex groups: 5 + Group: 'Spine', Weight: 0.076411 + Group: 'Spine1', Weight: 0.623347 + Group: 'Spine2', Weight: 0.161573 + Group: 'RightShoulder', Weight: 0.096988 + Group: 'RightArm', Weight: 0.001054 +Vertex 1490: +Vertex groups: 4 + Group: 'Spine', Weight: 0.137993 + Group: 'Spine1', Weight: 0.678244 + Group: 'Spine2', Weight: 0.094538 + Group: 'RightShoulder', Weight: 0.052915 +Vertex 1491: +Vertex groups: 5 + Group: 'Spine', Weight: 0.255706 + Group: 'Spine1', Weight: 0.620365 + Group: 'Spine2', Weight: 0.052273 + Group: 'RightShoulder', Weight: 0.006125 + Group: 'RightUpLeg', Weight: 0.002947 +Vertex 1492: +Vertex groups: 3 + Group: 'Spine', Weight: 0.572839 + Group: 'Spine1', Weight: 0.311289 + Group: 'RightUpLeg', Weight: 0.061558 +Vertex 1493: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.103528 + Group: 'Spine2', Weight: 0.239013 + Group: 'RightShoulder', Weight: 0.551005 + Group: 'RightArm', Weight: 0.079969 +Vertex 1494: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.060056 + Group: 'Spine2', Weight: 0.574506 + Group: 'LeftShoulder', Weight: 0.082794 + Group: 'RightShoulder', Weight: 0.254216 +Vertex 1495: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.075465 + Group: 'Spine2', Weight: 0.498348 + Group: 'LeftShoulder', Weight: 0.044916 + Group: 'RightShoulder', Weight: 0.342645 +Vertex 1496: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.099111 + Group: 'Spine2', Weight: 0.335827 + Group: 'RightShoulder', Weight: 0.483828 + Group: 'RightArm', Weight: 0.034602 +Vertex 1497: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.207092 + Group: 'Spine2', Weight: 0.376038 + Group: 'RightShoulder', Weight: 0.323585 + Group: 'RightArm', Weight: 0.057338 +Vertex 1498: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.172758 + Group: 'Spine2', Weight: 0.476235 + Group: 'RightShoulder', Weight: 0.276700 + Group: 'RightArm', Weight: 0.013861 +Vertex 1499: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.151605 + Group: 'Spine2', Weight: 0.593590 + Group: 'LeftShoulder', Weight: 0.029947 + Group: 'RightShoulder', Weight: 0.181245 +Vertex 1500: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.265983 + Group: 'Spine2', Weight: 0.570557 + Group: 'LeftShoulder', Weight: 0.012723 + Group: 'RightShoulder', Weight: 0.098183 +Vertex 1501: +Vertex groups: 5 + Group: 'Spine', Weight: 0.018247 + Group: 'Spine1', Weight: 0.368406 + Group: 'Spine2', Weight: 0.374546 + Group: 'RightShoulder', Weight: 0.172340 + Group: 'RightArm', Weight: 0.017443 +Vertex 1502: +Vertex groups: 3 + Group: 'Spine1', Weight: 0.319364 + Group: 'Spine2', Weight: 0.472492 + Group: 'RightShoulder', Weight: 0.139503 +Vertex 1503: +Vertex groups: 4 + Group: 'Spine', Weight: 0.066214 + Group: 'Spine1', Weight: 0.635981 + Group: 'Spine2', Weight: 0.184742 + Group: 'RightShoulder', Weight: 0.079631 +Vertex 1504: +Vertex groups: 4 + Group: 'Spine', Weight: 0.044982 + Group: 'Spine1', Weight: 0.647900 + Group: 'Spine2', Weight: 0.212913 + Group: 'RightShoulder', Weight: 0.062648 +Vertex 1505: +Vertex groups: 4 + Group: 'Spine', Weight: 0.123365 + Group: 'Spine1', Weight: 0.709800 + Group: 'Spine2', Weight: 0.096138 + Group: 'RightShoulder', Weight: 0.034130 +Vertex 1506: +Vertex groups: 4 + Group: 'Spine', Weight: 0.097821 + Group: 'Spine1', Weight: 0.762965 + Group: 'Spine2', Weight: 0.089689 + Group: 'RightShoulder', Weight: 0.005672 +Vertex 1507: +Vertex groups: 3 + Group: 'Spine', Weight: 0.259156 + Group: 'Spine1', Weight: 0.642766 + Group: 'Spine2', Weight: 0.039116 +Vertex 1508: +Vertex groups: 3 + Group: 'Spine', Weight: 0.244404 + Group: 'Spine1', Weight: 0.688367 + Group: 'Spine2', Weight: 0.015006 +Vertex 1509: +Vertex groups: 3 + Group: 'Spine', Weight: 0.617083 + Group: 'Spine1', Weight: 0.295806 + Group: 'RightUpLeg', Weight: 0.036910 +Vertex 1510: +Vertex groups: 2 + Group: 'Spine', Weight: 0.686215 + Group: 'Spine1', Weight: 0.257781 +Vertex 1511: +Vertex groups: 4 + Group: 'Spine', Weight: 0.018963 + Group: 'Spine1', Weight: 0.673636 + Group: 'Spine2', Weight: 0.221982 + Group: 'RightShoulder', Weight: 0.030175 +Vertex 1512: +Vertex groups: 3 + Group: 'Spine', Weight: 0.076792 + Group: 'Spine1', Weight: 0.808771 + Group: 'Spine2', Weight: 0.078799 +Vertex 1513: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.083879 + Group: 'Spine2', Weight: 0.643505 + Group: 'LeftShoulder', Weight: 0.082594 + Group: 'RightShoulder', Weight: 0.164433 +Vertex 1514: +Vertex groups: 4 + Group: 'Hips', Weight: 0.229614 + Group: 'Spine', Weight: 0.498970 + Group: 'Spine1', Weight: 0.086803 + Group: 'RightUpLeg', Weight: 0.158625 +Vertex 1515: +Vertex groups: 4 + Group: 'Hips', Weight: 0.077905 + Group: 'Spine', Weight: 0.543264 + Group: 'Spine1', Weight: 0.123301 + Group: 'RightUpLeg', Weight: 0.235892 +Vertex 1516: +Vertex groups: 4 + Group: 'Hips', Weight: 0.035819 + Group: 'Spine', Weight: 0.569691 + Group: 'Spine1', Weight: 0.143995 + Group: 'RightUpLeg', Weight: 0.221237 +Vertex 1517: +Vertex groups: 4 + Group: 'Hips', Weight: 0.142916 + Group: 'Spine', Weight: 0.520580 + Group: 'Spine1', Weight: 0.096877 + Group: 'RightUpLeg', Weight: 0.220103 +Vertex 1518: +Vertex groups: 5 + Group: 'Hips', Weight: 0.301082 + Group: 'Spine', Weight: 0.476579 + Group: 'Spine1', Weight: 0.083171 + Group: 'LeftUpLeg', Weight: 0.015197 + Group: 'RightUpLeg', Weight: 0.099780 +Vertex 1519: +Vertex groups: 3 + Group: 'Spine', Weight: 0.606420 + Group: 'Spine1', Weight: 0.150934 + Group: 'RightUpLeg', Weight: 0.193471 +Vertex 1520: +Vertex groups: 3 + Group: 'Spine', Weight: 0.657432 + Group: 'Spine1', Weight: 0.157325 + Group: 'RightUpLeg', Weight: 0.140931 +Vertex 1521: +Vertex groups: 3 + Group: 'Spine', Weight: 0.710665 + Group: 'Spine1', Weight: 0.163954 + Group: 'RightUpLeg', Weight: 0.084277 +Vertex 1522: +Vertex groups: 3 + Group: 'Spine', Weight: 0.770903 + Group: 'Spine1', Weight: 0.134774 + Group: 'RightUpLeg', Weight: 0.055466 +Vertex 1523: +Vertex groups: 3 + Group: 'Spine', Weight: 0.131473 + Group: 'Spine1', Weight: 0.785682 + Group: 'Spine2', Weight: 0.052291 +Vertex 1524: +Vertex groups: 4 + Group: 'Hips', Weight: 0.066260 + Group: 'Spine', Weight: 0.566542 + Group: 'Spine1', Weight: 0.165188 + Group: 'RightUpLeg', Weight: 0.178043 +Vertex 1525: +Vertex groups: 3 + Group: 'Spine', Weight: 0.606975 + Group: 'Spine1', Weight: 0.207633 + Group: 'RightUpLeg', Weight: 0.133350 +Vertex 1526: +Vertex groups: 4 + Group: 'Hips', Weight: 0.021765 + Group: 'Spine', Weight: 0.582682 + Group: 'Spine1', Weight: 0.193561 + Group: 'RightUpLeg', Weight: 0.159615 +Vertex 1527: +Vertex groups: 3 + Group: 'Spine', Weight: 0.652751 + Group: 'Spine1', Weight: 0.197856 + Group: 'RightUpLeg', Weight: 0.104037 +Vertex 1528: +Vertex groups: 5 + Group: 'Spine1', Weight: 0.011156 + Group: 'Spine2', Weight: 0.361557 + Group: 'Neck', Weight: 0.290994 + Group: 'LeftShoulder', Weight: 0.074650 + Group: 'RightShoulder', Weight: 0.220066 +Vertex 1529: +Vertex groups: 2 + Group: 'Neck', Weight: 0.313756 + Group: 'Head', Weight: 0.673348 +Vertex 1530: +Vertex groups: 2 + Group: 'Neck', Weight: 0.694592 + Group: 'Head', Weight: 0.260586 +Vertex 1531: +Vertex groups: 5 + Group: 'Spine2', Weight: 0.133977 + Group: 'Neck', Weight: 0.646258 + Group: 'Head', Weight: 0.017377 + Group: 'LeftShoulder', Weight: 0.026586 + Group: 'RightShoulder', Weight: 0.132775 +Vertex 1532: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.051561 + Group: 'Neck', Weight: 0.778955 + Group: 'Head', Weight: 0.081829 + Group: 'RightShoulder', Weight: 0.058996 +Vertex 1533: +Vertex groups: 2 + Group: 'Neck', Weight: 0.689819 + Group: 'Head', Weight: 0.279402 +Vertex 1534: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.091255 + Group: 'Neck', Weight: 0.669994 + Group: 'Head', Weight: 0.020406 + Group: 'RightShoulder', Weight: 0.171698 +Vertex 1535: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.005805 + Group: 'Neck', Weight: 0.805201 + Group: 'Head', Weight: 0.086398 + Group: 'RightShoulder', Weight: 0.067345 +Vertex 1536: +Vertex groups: 2 + Group: 'Neck', Weight: 0.734624 + Group: 'Head', Weight: 0.238499 +Vertex 1537: +Vertex groups: 3 + Group: 'Neck', Weight: 0.702559 + Group: 'Head', Weight: 0.017654 + Group: 'RightShoulder', Weight: 0.227882 +Vertex 1538: +Vertex groups: 3 + Group: 'Neck', Weight: 0.825455 + Group: 'Head', Weight: 0.080561 + Group: 'RightShoulder', Weight: 0.075219 +Vertex 1539: +Vertex groups: 2 + Group: 'Neck', Weight: 0.700479 + Group: 'Head', Weight: 0.282344 +Vertex 1540: +Vertex groups: 3 + Group: 'Neck', Weight: 0.748709 + Group: 'Head', Weight: 0.013380 + Group: 'RightShoulder', Weight: 0.197879 +Vertex 1541: +Vertex groups: 3 + Group: 'Neck', Weight: 0.843118 + Group: 'Head', Weight: 0.092520 + Group: 'RightShoulder', Weight: 0.054672 +Vertex 1542: +Vertex groups: 2 + Group: 'Neck', Weight: 0.704309 + Group: 'Head', Weight: 0.280153 +Vertex 1543: +Vertex groups: 3 + Group: 'Neck', Weight: 0.874496 + Group: 'Head', Weight: 0.016460 + Group: 'RightShoulder', Weight: 0.075454 +Vertex 1544: +Vertex groups: 3 + Group: 'Neck', Weight: 0.863059 + Group: 'Head', Weight: 0.101450 + Group: 'RightShoulder', Weight: 0.006485 +Vertex 1545: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.251135 + Group: 'Neck', Weight: 0.337647 + Group: 'LeftShoulder', Weight: 0.027856 + Group: 'RightShoulder', Weight: 0.326214 +Vertex 1546: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.061180 + Group: 'Neck', Weight: 0.413666 + Group: 'RightShoulder', Weight: 0.480834 +Vertex 1547: +Vertex groups: 2 + Group: 'Neck', Weight: 0.783507 + Group: 'RightShoulder', Weight: 0.165649 +Vertex 1548: +Vertex groups: 2 + Group: 'Neck', Weight: 0.379335 + Group: 'Head', Weight: 0.613056 +Vertex 1549: +Vertex groups: 2 + Group: 'Neck', Weight: 0.300685 + Group: 'Head', Weight: 0.693183 +Vertex 1550: +Vertex groups: 2 + Group: 'Neck', Weight: 0.402963 + Group: 'Head', Weight: 0.575152 +Vertex 1551: +Vertex groups: 2 + Group: 'Neck', Weight: 0.426507 + Group: 'Head', Weight: 0.553923 +Vertex 1552: +Vertex groups: 2 + Group: 'Neck', Weight: 0.342814 + Group: 'Head', Weight: 0.644365 +Vertex 1553: +Vertex groups: 2 + Group: 'Neck', Weight: 0.392229 + Group: 'Head', Weight: 0.595096 +Vertex 1554: +Vertex groups: 2 + Group: 'Neck', Weight: 0.449590 + Group: 'Head', Weight: 0.538892 +Vertex 1555: +Vertex groups: 2 + Group: 'Neck', Weight: 0.452099 + Group: 'Head', Weight: 0.541030 +Vertex 1556: +Vertex groups: 2 + Group: 'Neck', Weight: 0.290712 + Group: 'Head', Weight: 0.704118 +Vertex 1557: +Vertex groups: 2 + Group: 'Neck', Weight: 0.561944 + Group: 'Head', Weight: 0.427647 +Vertex 1558: +Vertex groups: 2 + Group: 'Neck', Weight: 0.312602 + Group: 'Head', Weight: 0.683042 +Vertex 1559: +Vertex groups: 2 + Group: 'Neck', Weight: 0.258182 + Group: 'Head', Weight: 0.737715 +Vertex 1560: +Vertex groups: 2 + Group: 'Neck', Weight: 0.218108 + Group: 'Head', Weight: 0.778571 +Vertex 1561: +Vertex groups: 2 + Group: 'Neck', Weight: 0.173527 + Group: 'Head', Weight: 0.823741 +Vertex 1562: +Vertex groups: 2 + Group: 'Neck', Weight: 0.139565 + Group: 'Head', Weight: 0.858200 +Vertex 1563: +Vertex groups: 2 + Group: 'Neck', Weight: 0.130504 + Group: 'Head', Weight: 0.867545 +Vertex 1564: +Vertex groups: 2 + Group: 'Neck', Weight: 0.148625 + Group: 'Head', Weight: 0.849333 +Vertex 1565: +Vertex groups: 2 + Group: 'Neck', Weight: 0.119266 + Group: 'Head', Weight: 0.878862 +Vertex 1566: +Vertex groups: 2 + Group: 'Neck', Weight: 0.152202 + Group: 'Head', Weight: 0.845366 +Vertex 1567: +Vertex groups: 2 + Group: 'Neck', Weight: 0.191950 + Group: 'Head', Weight: 0.804890 +Vertex 1568: +Vertex groups: 2 + Group: 'Neck', Weight: 0.157953 + Group: 'Head', Weight: 0.839433 +Vertex 1569: +Vertex groups: 2 + Group: 'Neck', Weight: 0.126658 + Group: 'Head', Weight: 0.871270 +Vertex 1570: +Vertex groups: 2 + Group: 'Neck', Weight: 0.103151 + Group: 'Head', Weight: 0.895198 +Vertex 1571: +Vertex groups: 2 + Group: 'Neck', Weight: 0.148829 + Group: 'Head', Weight: 0.848895 +Vertex 1572: +Vertex groups: 2 + Group: 'Neck', Weight: 0.092636 + Group: 'Head', Weight: 0.905988 +Vertex 1573: +Vertex groups: 2 + Group: 'Neck', Weight: 0.197348 + Group: 'Head', Weight: 0.799858 +Vertex 1574: +Vertex groups: 2 + Group: 'Neck', Weight: 0.213529 + Group: 'Head', Weight: 0.783582 +Vertex 1575: +Vertex groups: 2 + Group: 'Neck', Weight: 0.164900 + Group: 'Head', Weight: 0.833193 +Vertex 1576: +Vertex groups: 2 + Group: 'Neck', Weight: 0.339538 + Group: 'Head', Weight: 0.655367 +Vertex 1577: +Vertex groups: 2 + Group: 'Neck', Weight: 0.267240 + Group: 'Head', Weight: 0.728921 +Vertex 1578: +Vertex groups: 2 + Group: 'Neck', Weight: 0.171821 + Group: 'Head', Weight: 0.825671 +Vertex 1579: +Vertex groups: 2 + Group: 'Neck', Weight: 0.109702 + Group: 'Head', Weight: 0.888711 +Vertex 1580: +Vertex groups: 2 + Group: 'Neck', Weight: 0.113828 + Group: 'Head', Weight: 0.884611 +Vertex 1581: +Vertex groups: 2 + Group: 'Neck', Weight: 0.091792 + Group: 'Head', Weight: 0.906800 +Vertex 1582: +Vertex groups: 2 + Group: 'Neck', Weight: 0.236262 + Group: 'Head', Weight: 0.761002 +Vertex 1583: +Vertex groups: 2 + Group: 'Neck', Weight: 0.370576 + Group: 'Head', Weight: 0.625170 +Vertex 1584: +Vertex groups: 2 + Group: 'Neck', Weight: 0.104186 + Group: 'Head', Weight: 0.894571 +Vertex 1585: +Vertex groups: 2 + Group: 'Neck', Weight: 0.056940 + Group: 'Head', Weight: 0.942347 +Vertex 1586: +Vertex groups: 2 + Group: 'Neck', Weight: 0.031542 + Group: 'Head', Weight: 0.958589 +Vertex 1587: +Vertex groups: 2 + Group: 'Neck', Weight: 0.074146 + Group: 'Head', Weight: 0.924711 +Vertex 1588: +Vertex groups: 2 + Group: 'Neck', Weight: 0.080074 + Group: 'Head', Weight: 0.918757 +Vertex 1589: +Vertex groups: 2 + Group: 'Neck', Weight: 0.053476 + Group: 'Head', Weight: 0.945608 +Vertex 1590: +Vertex groups: 2 + Group: 'Neck', Weight: 0.090652 + Group: 'Head', Weight: 0.907828 +Vertex 1591: +Vertex groups: 2 + Group: 'Neck', Weight: 0.117029 + Group: 'Head', Weight: 0.880941 +Vertex 1592: +Vertex groups: 2 + Group: 'Neck', Weight: 0.161298 + Group: 'Head', Weight: 0.835829 +Vertex 1593: +Vertex groups: 2 + Group: 'Neck', Weight: 0.079141 + Group: 'Head', Weight: 0.919425 +Vertex 1594: +Vertex groups: 2 + Group: 'Neck', Weight: 0.133562 + Group: 'Head', Weight: 0.863912 +Vertex 1595: +Vertex groups: 2 + Group: 'Neck', Weight: 0.205764 + Group: 'Head', Weight: 0.790545 +Vertex 1596: +Vertex groups: 2 + Group: 'Neck', Weight: 0.204096 + Group: 'Head', Weight: 0.791903 +Vertex 1597: +Vertex groups: 2 + Group: 'Neck', Weight: 0.064955 + Group: 'Head', Weight: 0.933858 +Vertex 1598: +Vertex groups: 2 + Group: 'Neck', Weight: 0.115081 + Group: 'Head', Weight: 0.882755 +Vertex 1599: +Vertex groups: 2 + Group: 'Neck', Weight: 0.200263 + Group: 'Head', Weight: 0.795870 +Vertex 1600: +Vertex groups: 2 + Group: 'Neck', Weight: 0.235731 + Group: 'Head', Weight: 0.759974 +Vertex 1601: +Vertex groups: 2 + Group: 'Neck', Weight: 0.056876 + Group: 'Head', Weight: 0.942088 +Vertex 1602: +Vertex groups: 2 + Group: 'Neck', Weight: 0.103041 + Group: 'Head', Weight: 0.895063 +Vertex 1603: +Vertex groups: 2 + Group: 'Neck', Weight: 0.166439 + Group: 'Head', Weight: 0.830479 +Vertex 1604: +Vertex groups: 2 + Group: 'Neck', Weight: 0.024886 + Group: 'Head', Weight: 0.961900 +Vertex 1605: +Vertex groups: 2 + Group: 'Neck', Weight: 0.006942 + Group: 'Head', Weight: 0.971022 +Vertex 1606: +Vertex groups: 1 + Group: 'Head', Weight: 0.974650 +Vertex 1607: +Vertex groups: 1 + Group: 'Head', Weight: 0.986983 +Vertex 1608: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004697 + Group: 'Head', Weight: 0.972295 +Vertex 1609: +Vertex groups: 2 + Group: 'Neck', Weight: 0.030439 + Group: 'Head', Weight: 0.959292 +Vertex 1610: +Vertex groups: 1 + Group: 'Head', Weight: 0.980283 +Vertex 1611: +Vertex groups: 1 + Group: 'Head', Weight: 0.992743 +Vertex 1612: +Vertex groups: 2 + Group: 'Neck', Weight: 0.409474 + Group: 'Head', Weight: 0.581341 +Vertex 1613: +Vertex groups: 2 + Group: 'Neck', Weight: 0.431055 + Group: 'Head', Weight: 0.562448 +Vertex 1614: +Vertex groups: 2 + Group: 'Neck', Weight: 0.343564 + Group: 'Head', Weight: 0.648297 +Vertex 1615: +Vertex groups: 2 + Group: 'Neck', Weight: 0.309353 + Group: 'Head', Weight: 0.682298 +Vertex 1616: +Vertex groups: 2 + Group: 'Neck', Weight: 0.289042 + Group: 'Head', Weight: 0.703310 +Vertex 1617: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280701 + Group: 'Head', Weight: 0.712196 +Vertex 1618: +Vertex groups: 2 + Group: 'Neck', Weight: 0.276115 + Group: 'Head', Weight: 0.716597 +Vertex 1619: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277884 + Group: 'Head', Weight: 0.713757 +Vertex 1620: +Vertex groups: 2 + Group: 'Neck', Weight: 0.282612 + Group: 'Head', Weight: 0.708552 +Vertex 1621: +Vertex groups: 2 + Group: 'Neck', Weight: 0.292386 + Group: 'Head', Weight: 0.698024 +Vertex 1622: +Vertex groups: 2 + Group: 'Neck', Weight: 0.317236 + Group: 'Head', Weight: 0.672519 +Vertex 1623: +Vertex groups: 2 + Group: 'Neck', Weight: 0.374507 + Group: 'Head', Weight: 0.614574 +Vertex 1624: +Vertex groups: 2 + Group: 'Neck', Weight: 0.295070 + Group: 'Head', Weight: 0.698474 +Vertex 1625: +Vertex groups: 2 + Group: 'Neck', Weight: 0.334552 + Group: 'Head', Weight: 0.661181 +Vertex 1626: +Vertex groups: 2 + Group: 'Neck', Weight: 0.324374 + Group: 'Head', Weight: 0.671167 +Vertex 1627: +Vertex groups: 2 + Group: 'Neck', Weight: 0.365980 + Group: 'Head', Weight: 0.630392 +Vertex 1628: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363316 + Group: 'Head', Weight: 0.633263 +Vertex 1629: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363985 + Group: 'Head', Weight: 0.632907 +Vertex 1630: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363278 + Group: 'Head', Weight: 0.633528 +Vertex 1631: +Vertex groups: 2 + Group: 'Neck', Weight: 0.359976 + Group: 'Head', Weight: 0.637353 +Vertex 1632: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363454 + Group: 'Head', Weight: 0.633683 +Vertex 1633: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364507 + Group: 'Head', Weight: 0.632245 +Vertex 1634: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363473 + Group: 'Head', Weight: 0.633522 +Vertex 1635: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363287 + Group: 'Head', Weight: 0.633422 +Vertex 1636: +Vertex groups: 2 + Group: 'Neck', Weight: 0.360083 + Group: 'Head', Weight: 0.637278 +Vertex 1637: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363833 + Group: 'Head', Weight: 0.633021 +Vertex 1638: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364210 + Group: 'Head', Weight: 0.632897 +Vertex 1639: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364724 + Group: 'Head', Weight: 0.632252 +Vertex 1640: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364318 + Group: 'Head', Weight: 0.632545 +Vertex 1641: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364454 + Group: 'Head', Weight: 0.632231 +Vertex 1642: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364874 + Group: 'Head', Weight: 0.632233 +Vertex 1643: +Vertex groups: 2 + Group: 'Neck', Weight: 0.359276 + Group: 'Head', Weight: 0.637374 +Vertex 1644: +Vertex groups: 2 + Group: 'Neck', Weight: 0.358479 + Group: 'Head', Weight: 0.638158 +Vertex 1645: +Vertex groups: 2 + Group: 'Neck', Weight: 0.357457 + Group: 'Head', Weight: 0.639130 +Vertex 1646: +Vertex groups: 2 + Group: 'Neck', Weight: 0.358207 + Group: 'Head', Weight: 0.638323 +Vertex 1647: +Vertex groups: 2 + Group: 'Neck', Weight: 0.360085 + Group: 'Head', Weight: 0.636354 +Vertex 1648: +Vertex groups: 2 + Group: 'Neck', Weight: 0.357745 + Group: 'Head', Weight: 0.638443 +Vertex 1649: +Vertex groups: 2 + Group: 'Neck', Weight: 0.353641 + Group: 'Head', Weight: 0.642603 +Vertex 1650: +Vertex groups: 2 + Group: 'Neck', Weight: 0.363924 + Group: 'Head', Weight: 0.632587 +Vertex 1651: +Vertex groups: 2 + Group: 'Neck', Weight: 0.352600 + Group: 'Head', Weight: 0.643740 +Vertex 1652: +Vertex groups: 2 + Group: 'Neck', Weight: 0.356037 + Group: 'Head', Weight: 0.640371 +Vertex 1653: +Vertex groups: 2 + Group: 'Neck', Weight: 0.357212 + Group: 'Head', Weight: 0.639212 +Vertex 1654: +Vertex groups: 2 + Group: 'Neck', Weight: 0.339159 + Group: 'Head', Weight: 0.656693 +Vertex 1655: +Vertex groups: 2 + Group: 'Neck', Weight: 0.351586 + Group: 'Head', Weight: 0.644605 +Vertex 1656: +Vertex groups: 2 + Group: 'Neck', Weight: 0.316548 + Group: 'Head', Weight: 0.678603 +Vertex 1657: +Vertex groups: 2 + Group: 'Neck', Weight: 0.336090 + Group: 'Head', Weight: 0.659270 +Vertex 1658: +Vertex groups: 2 + Group: 'Neck', Weight: 0.315610 + Group: 'Head', Weight: 0.678015 +Vertex 1659: +Vertex groups: 2 + Group: 'Neck', Weight: 0.349242 + Group: 'Head', Weight: 0.646881 +Vertex 1660: +Vertex groups: 2 + Group: 'Neck', Weight: 0.344005 + Group: 'Head', Weight: 0.651934 +Vertex 1661: +Vertex groups: 2 + Group: 'Neck', Weight: 0.346447 + Group: 'Head', Weight: 0.649597 +Vertex 1662: +Vertex groups: 2 + Group: 'Neck', Weight: 0.349974 + Group: 'Head', Weight: 0.645896 +Vertex 1663: +Vertex groups: 2 + Group: 'Neck', Weight: 0.338702 + Group: 'Head', Weight: 0.657135 +Vertex 1664: +Vertex groups: 2 + Group: 'Neck', Weight: 0.322425 + Group: 'Head', Weight: 0.673084 +Vertex 1665: +Vertex groups: 2 + Group: 'Neck', Weight: 0.303247 + Group: 'Head', Weight: 0.691695 +Vertex 1666: +Vertex groups: 2 + Group: 'Neck', Weight: 0.284230 + Group: 'Head', Weight: 0.709851 +Vertex 1667: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277779 + Group: 'Head', Weight: 0.715682 +Vertex 1668: +Vertex groups: 2 + Group: 'Neck', Weight: 0.337195 + Group: 'Head', Weight: 0.658594 +Vertex 1669: +Vertex groups: 2 + Group: 'Neck', Weight: 0.315374 + Group: 'Head', Weight: 0.679911 +Vertex 1670: +Vertex groups: 2 + Group: 'Neck', Weight: 0.359072 + Group: 'Head', Weight: 0.636890 +Vertex 1671: +Vertex groups: 2 + Group: 'Neck', Weight: 0.289225 + Group: 'Head', Weight: 0.704617 +Vertex 1672: +Vertex groups: 2 + Group: 'Neck', Weight: 0.287549 + Group: 'Head', Weight: 0.706527 +Vertex 1673: +Vertex groups: 2 + Group: 'Neck', Weight: 0.310257 + Group: 'Head', Weight: 0.684408 +Vertex 1674: +Vertex groups: 2 + Group: 'Neck', Weight: 0.329200 + Group: 'Head', Weight: 0.665619 +Vertex 1675: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280967 + Group: 'Head', Weight: 0.712436 +Vertex 1676: +Vertex groups: 2 + Group: 'Neck', Weight: 0.333151 + Group: 'Head', Weight: 0.662310 +Vertex 1677: +Vertex groups: 2 + Group: 'Neck', Weight: 0.353900 + Group: 'Head', Weight: 0.643602 +Vertex 1678: +Vertex groups: 2 + Group: 'Neck', Weight: 0.348348 + Group: 'Head', Weight: 0.649235 +Vertex 1679: +Vertex groups: 2 + Group: 'Neck', Weight: 0.329771 + Group: 'Head', Weight: 0.668033 +Vertex 1680: +Vertex groups: 2 + Group: 'Neck', Weight: 0.350606 + Group: 'Head', Weight: 0.646925 +Vertex 1681: +Vertex groups: 2 + Group: 'Neck', Weight: 0.314426 + Group: 'Head', Weight: 0.683507 +Vertex 1682: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294882 + Group: 'Head', Weight: 0.703237 +Vertex 1683: +Vertex groups: 2 + Group: 'Neck', Weight: 0.288089 + Group: 'Head', Weight: 0.710100 +Vertex 1684: +Vertex groups: 2 + Group: 'Neck', Weight: 0.284640 + Group: 'Head', Weight: 0.713579 +Vertex 1685: +Vertex groups: 2 + Group: 'Neck', Weight: 0.285160 + Group: 'Head', Weight: 0.713043 +Vertex 1686: +Vertex groups: 2 + Group: 'Neck', Weight: 0.289350 + Group: 'Head', Weight: 0.708797 +Vertex 1687: +Vertex groups: 2 + Group: 'Neck', Weight: 0.305509 + Group: 'Head', Weight: 0.692490 +Vertex 1688: +Vertex groups: 2 + Group: 'Neck', Weight: 0.305971 + Group: 'Head', Weight: 0.692040 +Vertex 1689: +Vertex groups: 2 + Group: 'Neck', Weight: 0.317857 + Group: 'Head', Weight: 0.680037 +Vertex 1690: +Vertex groups: 2 + Group: 'Neck', Weight: 0.305885 + Group: 'Head', Weight: 0.692085 +Vertex 1691: +Vertex groups: 2 + Group: 'Neck', Weight: 0.340080 + Group: 'Head', Weight: 0.657522 +Vertex 1692: +Vertex groups: 2 + Group: 'Neck', Weight: 0.315047 + Group: 'Head', Weight: 0.682746 +Vertex 1693: +Vertex groups: 2 + Group: 'Neck', Weight: 0.295595 + Group: 'Head', Weight: 0.702467 +Vertex 1694: +Vertex groups: 2 + Group: 'Neck', Weight: 0.282888 + Group: 'Head', Weight: 0.715320 +Vertex 1695: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280717 + Group: 'Head', Weight: 0.717533 +Vertex 1696: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280491 + Group: 'Head', Weight: 0.717778 +Vertex 1697: +Vertex groups: 2 + Group: 'Neck', Weight: 0.281737 + Group: 'Head', Weight: 0.716524 +Vertex 1698: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277632 + Group: 'Head', Weight: 0.720680 +Vertex 1699: +Vertex groups: 2 + Group: 'Neck', Weight: 0.274307 + Group: 'Head', Weight: 0.724052 +Vertex 1700: +Vertex groups: 2 + Group: 'Neck', Weight: 0.266168 + Group: 'Head', Weight: 0.732286 +Vertex 1701: +Vertex groups: 2 + Group: 'Neck', Weight: 0.253885 + Group: 'Head', Weight: 0.744644 +Vertex 1702: +Vertex groups: 2 + Group: 'Neck', Weight: 0.185456 + Group: 'Head', Weight: 0.813386 +Vertex 1703: +Vertex groups: 2 + Group: 'Neck', Weight: 0.156826 + Group: 'Head', Weight: 0.842161 +Vertex 1704: +Vertex groups: 2 + Group: 'Neck', Weight: 0.113874 + Group: 'Head', Weight: 0.885348 +Vertex 1705: +Vertex groups: 2 + Group: 'Neck', Weight: 0.101525 + Group: 'Head', Weight: 0.897768 +Vertex 1706: +Vertex groups: 2 + Group: 'Neck', Weight: 0.272183 + Group: 'Head', Weight: 0.726214 +Vertex 1707: +Vertex groups: 2 + Group: 'Neck', Weight: 0.271631 + Group: 'Head', Weight: 0.726766 +Vertex 1708: +Vertex groups: 2 + Group: 'Neck', Weight: 0.276972 + Group: 'Head', Weight: 0.721347 +Vertex 1709: +Vertex groups: 2 + Group: 'Neck', Weight: 0.275111 + Group: 'Head', Weight: 0.723242 +Vertex 1710: +Vertex groups: 2 + Group: 'Neck', Weight: 0.265100 + Group: 'Head', Weight: 0.733347 +Vertex 1711: +Vertex groups: 2 + Group: 'Neck', Weight: 0.253325 + Group: 'Head', Weight: 0.745188 +Vertex 1712: +Vertex groups: 2 + Group: 'Neck', Weight: 0.186591 + Group: 'Head', Weight: 0.812235 +Vertex 1713: +Vertex groups: 2 + Group: 'Neck', Weight: 0.160139 + Group: 'Head', Weight: 0.838823 +Vertex 1714: +Vertex groups: 2 + Group: 'Neck', Weight: 0.304970 + Group: 'Head', Weight: 0.693044 +Vertex 1715: +Vertex groups: 2 + Group: 'Neck', Weight: 0.297118 + Group: 'Head', Weight: 0.700974 +Vertex 1716: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294729 + Group: 'Head', Weight: 0.703383 +Vertex 1717: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294328 + Group: 'Head', Weight: 0.703785 +Vertex 1718: +Vertex groups: 2 + Group: 'Neck', Weight: 0.294301 + Group: 'Head', Weight: 0.703807 +Vertex 1719: +Vertex groups: 2 + Group: 'Neck', Weight: 0.296417 + Group: 'Head', Weight: 0.701669 +Vertex 1720: +Vertex groups: 2 + Group: 'Neck', Weight: 0.301854 + Group: 'Head', Weight: 0.696182 +Vertex 1721: +Vertex groups: 2 + Group: 'Neck', Weight: 0.302204 + Group: 'Head', Weight: 0.695837 +Vertex 1722: +Vertex groups: 2 + Group: 'Neck', Weight: 0.297049 + Group: 'Head', Weight: 0.701036 +Vertex 1723: +Vertex groups: 2 + Group: 'Neck', Weight: 0.279647 + Group: 'Head', Weight: 0.718531 +Vertex 1724: +Vertex groups: 2 + Group: 'Neck', Weight: 0.265934 + Group: 'Head', Weight: 0.732379 +Vertex 1725: +Vertex groups: 2 + Group: 'Neck', Weight: 0.254208 + Group: 'Head', Weight: 0.744216 +Vertex 1726: +Vertex groups: 2 + Group: 'Neck', Weight: 0.277314 + Group: 'Head', Weight: 0.720943 +Vertex 1727: +Vertex groups: 2 + Group: 'Neck', Weight: 0.270600 + Group: 'Head', Weight: 0.727728 +Vertex 1728: +Vertex groups: 2 + Group: 'Neck', Weight: 0.262001 + Group: 'Head', Weight: 0.736405 +Vertex 1729: +Vertex groups: 2 + Group: 'Neck', Weight: 0.276943 + Group: 'Head', Weight: 0.721353 +Vertex 1730: +Vertex groups: 2 + Group: 'Neck', Weight: 0.273027 + Group: 'Head', Weight: 0.725320 +Vertex 1731: +Vertex groups: 2 + Group: 'Neck', Weight: 0.268801 + Group: 'Head', Weight: 0.729588 +Vertex 1732: +Vertex groups: 2 + Group: 'Neck', Weight: 0.262874 + Group: 'Head', Weight: 0.735568 +Vertex 1733: +Vertex groups: 2 + Group: 'Neck', Weight: 0.254554 + Group: 'Head', Weight: 0.743928 +Vertex 1734: +Vertex groups: 2 + Group: 'Neck', Weight: 0.236369 + Group: 'Head', Weight: 0.762184 +Vertex 1735: +Vertex groups: 2 + Group: 'Neck', Weight: 0.237367 + Group: 'Head', Weight: 0.761244 +Vertex 1736: +Vertex groups: 2 + Group: 'Neck', Weight: 0.232689 + Group: 'Head', Weight: 0.765920 +Vertex 1737: +Vertex groups: 2 + Group: 'Neck', Weight: 0.189746 + Group: 'Head', Weight: 0.809046 +Vertex 1738: +Vertex groups: 2 + Group: 'Neck', Weight: 0.164948 + Group: 'Head', Weight: 0.833974 +Vertex 1739: +Vertex groups: 2 + Group: 'Neck', Weight: 0.225861 + Group: 'Head', Weight: 0.772728 +Vertex 1740: +Vertex groups: 2 + Group: 'Neck', Weight: 0.242219 + Group: 'Head', Weight: 0.756246 +Vertex 1741: +Vertex groups: 2 + Group: 'Neck', Weight: 0.199366 + Group: 'Head', Weight: 0.799358 +Vertex 1742: +Vertex groups: 2 + Group: 'Neck', Weight: 0.257625 + Group: 'Head', Weight: 0.740700 +Vertex 1743: +Vertex groups: 2 + Group: 'Neck', Weight: 0.275654 + Group: 'Head', Weight: 0.722503 +Vertex 1744: +Vertex groups: 2 + Group: 'Neck', Weight: 0.269620 + Group: 'Head', Weight: 0.728491 +Vertex 1745: +Vertex groups: 2 + Group: 'Neck', Weight: 0.227390 + Group: 'Head', Weight: 0.771130 +Vertex 1746: +Vertex groups: 2 + Group: 'Neck', Weight: 0.245649 + Group: 'Head', Weight: 0.752695 +Vertex 1747: +Vertex groups: 2 + Group: 'Neck', Weight: 0.170518 + Group: 'Head', Weight: 0.828361 +Vertex 1748: +Vertex groups: 2 + Group: 'Neck', Weight: 0.218161 + Group: 'Head', Weight: 0.780402 +Vertex 1749: +Vertex groups: 2 + Group: 'Neck', Weight: 0.205952 + Group: 'Head', Weight: 0.792723 +Vertex 1750: +Vertex groups: 2 + Group: 'Neck', Weight: 0.223585 + Group: 'Head', Weight: 0.774884 +Vertex 1751: +Vertex groups: 2 + Group: 'Neck', Weight: 0.207960 + Group: 'Head', Weight: 0.790603 +Vertex 1752: +Vertex groups: 2 + Group: 'Neck', Weight: 0.212319 + Group: 'Head', Weight: 0.786122 +Vertex 1753: +Vertex groups: 2 + Group: 'Neck', Weight: 0.201575 + Group: 'Head', Weight: 0.796937 +Vertex 1754: +Vertex groups: 2 + Group: 'Neck', Weight: 0.199669 + Group: 'Head', Weight: 0.798745 +Vertex 1755: +Vertex groups: 2 + Group: 'Neck', Weight: 0.190526 + Group: 'Head', Weight: 0.808002 +Vertex 1756: +Vertex groups: 2 + Group: 'Neck', Weight: 0.175978 + Group: 'Head', Weight: 0.822537 +Vertex 1757: +Vertex groups: 2 + Group: 'Neck', Weight: 0.164697 + Group: 'Head', Weight: 0.833944 +Vertex 1758: +Vertex groups: 2 + Group: 'Neck', Weight: 0.146183 + Group: 'Head', Weight: 0.852499 +Vertex 1759: +Vertex groups: 2 + Group: 'Neck', Weight: 0.139947 + Group: 'Head', Weight: 0.858835 +Vertex 1760: +Vertex groups: 2 + Group: 'Neck', Weight: 0.118437 + Group: 'Head', Weight: 0.880451 +Vertex 1761: +Vertex groups: 2 + Group: 'Neck', Weight: 0.123647 + Group: 'Head', Weight: 0.875255 +Vertex 1762: +Vertex groups: 2 + Group: 'Neck', Weight: 0.099737 + Group: 'Head', Weight: 0.899345 +Vertex 1763: +Vertex groups: 2 + Group: 'Neck', Weight: 0.112575 + Group: 'Head', Weight: 0.886438 +Vertex 1764: +Vertex groups: 2 + Group: 'Neck', Weight: 0.090061 + Group: 'Head', Weight: 0.909151 +Vertex 1765: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105779 + Group: 'Head', Weight: 0.893320 +Vertex 1766: +Vertex groups: 2 + Group: 'Neck', Weight: 0.088600 + Group: 'Head', Weight: 0.910693 +Vertex 1767: +Vertex groups: 2 + Group: 'Neck', Weight: 0.099558 + Group: 'Head', Weight: 0.899657 +Vertex 1768: +Vertex groups: 2 + Group: 'Neck', Weight: 0.088052 + Group: 'Head', Weight: 0.911213 +Vertex 1769: +Vertex groups: 2 + Group: 'Neck', Weight: 0.099885 + Group: 'Head', Weight: 0.899292 +Vertex 1770: +Vertex groups: 2 + Group: 'Neck', Weight: 0.095765 + Group: 'Head', Weight: 0.903513 +Vertex 1771: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105892 + Group: 'Head', Weight: 0.893317 +Vertex 1772: +Vertex groups: 2 + Group: 'Neck', Weight: 0.110864 + Group: 'Head', Weight: 0.888348 +Vertex 1773: +Vertex groups: 2 + Group: 'Neck', Weight: 0.117635 + Group: 'Head', Weight: 0.881529 +Vertex 1774: +Vertex groups: 2 + Group: 'Neck', Weight: 0.125641 + Group: 'Head', Weight: 0.873493 +Vertex 1775: +Vertex groups: 2 + Group: 'Neck', Weight: 0.131669 + Group: 'Head', Weight: 0.867423 +Vertex 1776: +Vertex groups: 2 + Group: 'Neck', Weight: 0.119747 + Group: 'Head', Weight: 0.879433 +Vertex 1777: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105712 + Group: 'Head', Weight: 0.893545 +Vertex 1778: +Vertex groups: 2 + Group: 'Neck', Weight: 0.177101 + Group: 'Head', Weight: 0.821722 +Vertex 1779: +Vertex groups: 2 + Group: 'Neck', Weight: 0.195028 + Group: 'Head', Weight: 0.803625 +Vertex 1780: +Vertex groups: 2 + Group: 'Neck', Weight: 0.193053 + Group: 'Head', Weight: 0.805531 +Vertex 1781: +Vertex groups: 2 + Group: 'Neck', Weight: 0.179545 + Group: 'Head', Weight: 0.819061 +Vertex 1782: +Vertex groups: 2 + Group: 'Neck', Weight: 0.156796 + Group: 'Head', Weight: 0.841919 +Vertex 1783: +Vertex groups: 2 + Group: 'Neck', Weight: 0.138439 + Group: 'Head', Weight: 0.860385 +Vertex 1784: +Vertex groups: 2 + Group: 'Neck', Weight: 0.127631 + Group: 'Head', Weight: 0.871268 +Vertex 1785: +Vertex groups: 2 + Group: 'Neck', Weight: 0.121849 + Group: 'Head', Weight: 0.877110 +Vertex 1786: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114440 + Group: 'Head', Weight: 0.884597 +Vertex 1787: +Vertex groups: 2 + Group: 'Neck', Weight: 0.108223 + Group: 'Head', Weight: 0.890890 +Vertex 1788: +Vertex groups: 2 + Group: 'Neck', Weight: 0.105543 + Group: 'Head', Weight: 0.893627 +Vertex 1789: +Vertex groups: 2 + Group: 'Neck', Weight: 0.110657 + Group: 'Head', Weight: 0.888520 +Vertex 1790: +Vertex groups: 2 + Group: 'Neck', Weight: 0.123951 + Group: 'Head', Weight: 0.875172 +Vertex 1791: +Vertex groups: 2 + Group: 'Neck', Weight: 0.138873 + Group: 'Head', Weight: 0.860170 +Vertex 1792: +Vertex groups: 2 + Group: 'Neck', Weight: 0.238423 + Group: 'Head', Weight: 0.759922 +Vertex 1793: +Vertex groups: 2 + Group: 'Neck', Weight: 0.222747 + Group: 'Head', Weight: 0.775617 +Vertex 1794: +Vertex groups: 2 + Group: 'Neck', Weight: 0.232670 + Group: 'Head', Weight: 0.765665 +Vertex 1795: +Vertex groups: 2 + Group: 'Neck', Weight: 0.227954 + Group: 'Head', Weight: 0.770212 +Vertex 1796: +Vertex groups: 2 + Group: 'Neck', Weight: 0.186298 + Group: 'Head', Weight: 0.812081 +Vertex 1797: +Vertex groups: 2 + Group: 'Neck', Weight: 0.154104 + Group: 'Head', Weight: 0.844453 +Vertex 1798: +Vertex groups: 2 + Group: 'Neck', Weight: 0.117948 + Group: 'Head', Weight: 0.880895 +Vertex 1799: +Vertex groups: 2 + Group: 'Neck', Weight: 0.092172 + Group: 'Head', Weight: 0.906937 +Vertex 1800: +Vertex groups: 2 + Group: 'Neck', Weight: 0.178232 + Group: 'Head', Weight: 0.820570 +Vertex 1801: +Vertex groups: 2 + Group: 'Neck', Weight: 0.188669 + Group: 'Head', Weight: 0.810027 +Vertex 1802: +Vertex groups: 2 + Group: 'Neck', Weight: 0.187174 + Group: 'Head', Weight: 0.811464 +Vertex 1803: +Vertex groups: 2 + Group: 'Neck', Weight: 0.172909 + Group: 'Head', Weight: 0.825760 +Vertex 1804: +Vertex groups: 2 + Group: 'Neck', Weight: 0.156802 + Group: 'Head', Weight: 0.841943 +Vertex 1805: +Vertex groups: 2 + Group: 'Neck', Weight: 0.140318 + Group: 'Head', Weight: 0.858528 +Vertex 1806: +Vertex groups: 2 + Group: 'Neck', Weight: 0.124957 + Group: 'Head', Weight: 0.873996 +Vertex 1807: +Vertex groups: 2 + Group: 'Neck', Weight: 0.122616 + Group: 'Head', Weight: 0.876360 +Vertex 1808: +Vertex groups: 2 + Group: 'Neck', Weight: 0.116277 + Group: 'Head', Weight: 0.882760 +Vertex 1809: +Vertex groups: 2 + Group: 'Neck', Weight: 0.110142 + Group: 'Head', Weight: 0.888961 +Vertex 1810: +Vertex groups: 2 + Group: 'Neck', Weight: 0.107250 + Group: 'Head', Weight: 0.891899 +Vertex 1811: +Vertex groups: 2 + Group: 'Neck', Weight: 0.111530 + Group: 'Head', Weight: 0.887638 +Vertex 1812: +Vertex groups: 2 + Group: 'Neck', Weight: 0.126798 + Group: 'Head', Weight: 0.872307 +Vertex 1813: +Vertex groups: 2 + Group: 'Neck', Weight: 0.138072 + Group: 'Head', Weight: 0.860975 +Vertex 1814: +Vertex groups: 2 + Group: 'Neck', Weight: 0.122174 + Group: 'Head', Weight: 0.876795 +Vertex 1815: +Vertex groups: 2 + Group: 'Neck', Weight: 0.126959 + Group: 'Head', Weight: 0.871963 +Vertex 1816: +Vertex groups: 2 + Group: 'Neck', Weight: 0.116479 + Group: 'Head', Weight: 0.882551 +Vertex 1817: +Vertex groups: 2 + Group: 'Neck', Weight: 0.191875 + Group: 'Head', Weight: 0.806796 +Vertex 1818: +Vertex groups: 2 + Group: 'Neck', Weight: 0.177618 + Group: 'Head', Weight: 0.821193 +Vertex 1819: +Vertex groups: 2 + Group: 'Neck', Weight: 0.110021 + Group: 'Head', Weight: 0.889080 +Vertex 1820: +Vertex groups: 2 + Group: 'Neck', Weight: 0.188496 + Group: 'Head', Weight: 0.810125 +Vertex 1821: +Vertex groups: 2 + Group: 'Neck', Weight: 0.106829 + Group: 'Head', Weight: 0.892329 +Vertex 1822: +Vertex groups: 2 + Group: 'Neck', Weight: 0.174104 + Group: 'Head', Weight: 0.824551 +Vertex 1823: +Vertex groups: 2 + Group: 'Neck', Weight: 0.111636 + Group: 'Head', Weight: 0.887533 +Vertex 1824: +Vertex groups: 2 + Group: 'Neck', Weight: 0.155916 + Group: 'Head', Weight: 0.842825 +Vertex 1825: +Vertex groups: 2 + Group: 'Neck', Weight: 0.125404 + Group: 'Head', Weight: 0.873709 +Vertex 1826: +Vertex groups: 2 + Group: 'Neck', Weight: 0.139008 + Group: 'Head', Weight: 0.859836 +Vertex 1827: +Vertex groups: 2 + Group: 'Neck', Weight: 0.138081 + Group: 'Head', Weight: 0.860966 +Vertex 1828: +Vertex groups: 2 + Group: 'Neck', Weight: 0.135415 + Group: 'Head', Weight: 0.863687 +Vertex 1829: +Vertex groups: 2 + Group: 'Neck', Weight: 0.140745 + Group: 'Head', Weight: 0.858321 +Vertex 1830: +Vertex groups: 2 + Group: 'Neck', Weight: 0.147391 + Group: 'Head', Weight: 0.851625 +Vertex 1831: +Vertex groups: 2 + Group: 'Neck', Weight: 0.154218 + Group: 'Head', Weight: 0.844750 +Vertex 1832: +Vertex groups: 2 + Group: 'Neck', Weight: 0.163488 + Group: 'Head', Weight: 0.835417 +Vertex 1833: +Vertex groups: 2 + Group: 'Neck', Weight: 0.162544 + Group: 'Head', Weight: 0.836362 +Vertex 1834: +Vertex groups: 2 + Group: 'Neck', Weight: 0.163064 + Group: 'Head', Weight: 0.835840 +Vertex 1835: +Vertex groups: 2 + Group: 'Neck', Weight: 0.334217 + Group: 'Head', Weight: 0.663349 +Vertex 1836: +Vertex groups: 2 + Group: 'Neck', Weight: 0.262302 + Group: 'Head', Weight: 0.735783 +Vertex 1837: +Vertex groups: 2 + Group: 'Neck', Weight: 0.344788 + Group: 'Head', Weight: 0.652571 +Vertex 1838: +Vertex groups: 2 + Group: 'Neck', Weight: 0.355810 + Group: 'Head', Weight: 0.641210 +Vertex 1839: +Vertex groups: 2 + Group: 'Neck', Weight: 0.264849 + Group: 'Head', Weight: 0.733067 +Vertex 1840: +Vertex groups: 2 + Group: 'Neck', Weight: 0.284510 + Group: 'Head', Weight: 0.713077 +Vertex 1841: +Vertex groups: 2 + Group: 'Neck', Weight: 0.243437 + Group: 'Head', Weight: 0.754777 +Vertex 1842: +Vertex groups: 2 + Group: 'Neck', Weight: 0.242556 + Group: 'Head', Weight: 0.755329 +Vertex 1843: +Vertex groups: 2 + Group: 'Neck', Weight: 0.204987 + Group: 'Head', Weight: 0.793134 +Vertex 1844: +Vertex groups: 2 + Group: 'Neck', Weight: 0.170009 + Group: 'Head', Weight: 0.828319 +Vertex 1845: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364820 + Group: 'Head', Weight: 0.630823 +Vertex 1846: +Vertex groups: 2 + Group: 'Neck', Weight: 0.366951 + Group: 'Head', Weight: 0.629606 +Vertex 1847: +Vertex groups: 2 + Group: 'Neck', Weight: 0.370821 + Group: 'Head', Weight: 0.624359 +Vertex 1848: +Vertex groups: 2 + Group: 'Neck', Weight: 0.340169 + Group: 'Head', Weight: 0.656724 +Vertex 1849: +Vertex groups: 2 + Group: 'Neck', Weight: 0.351924 + Group: 'Head', Weight: 0.641970 +Vertex 1850: +Vertex groups: 2 + Group: 'Neck', Weight: 0.386268 + Group: 'Head', Weight: 0.609118 +Vertex 1851: +Vertex groups: 2 + Group: 'Neck', Weight: 0.272008 + Group: 'Head', Weight: 0.725295 +Vertex 1852: +Vertex groups: 2 + Group: 'Neck', Weight: 0.378904 + Group: 'Head', Weight: 0.613455 +Vertex 1853: +Vertex groups: 2 + Group: 'Neck', Weight: 0.406507 + Group: 'Head', Weight: 0.587787 +Vertex 1854: +Vertex groups: 2 + Group: 'Neck', Weight: 0.383196 + Group: 'Head', Weight: 0.612613 +Vertex 1855: +Vertex groups: 2 + Group: 'Neck', Weight: 0.255741 + Group: 'Head', Weight: 0.741559 +Vertex 1856: +Vertex groups: 2 + Group: 'Neck', Weight: 0.174400 + Group: 'Head', Weight: 0.823755 +Vertex 1857: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114034 + Group: 'Head', Weight: 0.884787 +Vertex 1858: +Vertex groups: 2 + Group: 'Neck', Weight: 0.108176 + Group: 'Head', Weight: 0.890634 +Vertex 1859: +Vertex groups: 2 + Group: 'Neck', Weight: 0.082003 + Group: 'Head', Weight: 0.917155 +Vertex 1860: +Vertex groups: 2 + Group: 'Neck', Weight: 0.071744 + Group: 'Head', Weight: 0.927461 +Vertex 1861: +Vertex groups: 2 + Group: 'Neck', Weight: 0.057702 + Group: 'Head', Weight: 0.941733 +Vertex 1862: +Vertex groups: 2 + Group: 'Neck', Weight: 0.041388 + Group: 'Head', Weight: 0.953811 +Vertex 1863: +Vertex groups: 2 + Group: 'Neck', Weight: 0.073342 + Group: 'Head', Weight: 0.925982 +Vertex 1864: +Vertex groups: 2 + Group: 'Neck', Weight: 0.068220 + Group: 'Head', Weight: 0.931185 +Vertex 1865: +Vertex groups: 2 + Group: 'Neck', Weight: 0.071702 + Group: 'Head', Weight: 0.927720 +Vertex 1866: +Vertex groups: 2 + Group: 'Neck', Weight: 0.082997 + Group: 'Head', Weight: 0.916386 +Vertex 1867: +Vertex groups: 2 + Group: 'Neck', Weight: 0.080074 + Group: 'Head', Weight: 0.919342 +Vertex 1868: +Vertex groups: 2 + Group: 'Neck', Weight: 0.061790 + Group: 'Head', Weight: 0.937739 +Vertex 1869: +Vertex groups: 2 + Group: 'Neck', Weight: 0.062000 + Group: 'Head', Weight: 0.937518 +Vertex 1870: +Vertex groups: 2 + Group: 'Neck', Weight: 0.056101 + Group: 'Head', Weight: 0.943436 +Vertex 1871: +Vertex groups: 2 + Group: 'Neck', Weight: 0.053178 + Group: 'Head', Weight: 0.946344 +Vertex 1872: +Vertex groups: 2 + Group: 'Neck', Weight: 0.047005 + Group: 'Head', Weight: 0.951115 +Vertex 1873: +Vertex groups: 2 + Group: 'Neck', Weight: 0.034545 + Group: 'Head', Weight: 0.957382 +Vertex 1874: +Vertex groups: 2 + Group: 'Neck', Weight: 0.026766 + Group: 'Head', Weight: 0.961288 +Vertex 1875: +Vertex groups: 2 + Group: 'Neck', Weight: 0.021399 + Group: 'Head', Weight: 0.963969 +Vertex 1876: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004670 + Group: 'Head', Weight: 0.972351 +Vertex 1877: +Vertex groups: 2 + Group: 'Neck', Weight: 0.019719 + Group: 'Head', Weight: 0.964789 +Vertex 1878: +Vertex groups: 1 + Group: 'Head', Weight: 0.978842 +Vertex 1879: +Vertex groups: 1 + Group: 'Head', Weight: 0.987383 +Vertex 1880: +Vertex groups: 1 + Group: 'Head', Weight: 0.975061 +Vertex 1881: +Vertex groups: 1 + Group: 'Head', Weight: 0.979360 +Vertex 1882: +Vertex groups: 1 + Group: 'Head', Weight: 0.985479 +Vertex 1883: +Vertex groups: 1 + Group: 'Head', Weight: 0.977394 +Vertex 1884: +Vertex groups: 2 + Group: 'Neck', Weight: 0.109279 + Group: 'Head', Weight: 0.888685 +Vertex 1885: +Vertex groups: 2 + Group: 'Neck', Weight: 0.305978 + Group: 'Head', Weight: 0.688205 +Vertex 1886: +Vertex groups: 2 + Group: 'Neck', Weight: 0.060671 + Group: 'Head', Weight: 0.938220 +Vertex 1887: +Vertex groups: 2 + Group: 'Neck', Weight: 0.185300 + Group: 'Head', Weight: 0.811199 +Vertex 1888: +Vertex groups: 2 + Group: 'Neck', Weight: 0.014560 + Group: 'Head', Weight: 0.967148 +Vertex 1889: +Vertex groups: 1 + Group: 'Head', Weight: 0.982223 +Vertex 1890: +Vertex groups: 1 + Group: 'Head', Weight: 0.986013 +Vertex 1891: +Vertex groups: 2 + Group: 'Neck', Weight: 0.025482 + Group: 'Head', Weight: 0.961949 +Vertex 1892: +Vertex groups: 2 + Group: 'Neck', Weight: 0.016398 + Group: 'Head', Weight: 0.966518 +Vertex 1893: +Vertex groups: 2 + Group: 'Neck', Weight: 0.011976 + Group: 'Head', Weight: 0.968736 +Vertex 1894: +Vertex groups: 2 + Group: 'Neck', Weight: 0.009754 + Group: 'Head', Weight: 0.969840 +Vertex 1895: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004224 + Group: 'Head', Weight: 0.972652 +Vertex 1896: +Vertex groups: 2 + Group: 'Neck', Weight: 0.560448 + Group: 'RightShoulder', Weight: 0.387483 +Vertex 1897: +Vertex groups: 4 + Group: 'Spine2', Weight: 0.101270 + Group: 'Neck', Weight: 0.345387 + Group: 'LeftShoulder', Weight: 0.074556 + Group: 'RightShoulder', Weight: 0.470779 +Vertex 1898: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.209431 + Group: 'RightArm', Weight: 0.780615 +Vertex 1899: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.200078 + Group: 'RightArm', Weight: 0.793573 +Vertex 1900: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.326239 + Group: 'RightArm', Weight: 0.634830 +Vertex 1901: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.231058 + Group: 'RightArm', Weight: 0.748985 +Vertex 1902: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.197944 + Group: 'RightArm', Weight: 0.794957 +Vertex 1903: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.250808 + Group: 'RightArm', Weight: 0.736462 +Vertex 1904: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.353348 + Group: 'RightArm', Weight: 0.622155 +Vertex 1905: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.162230 + Group: 'RightArm', Weight: 0.811779 +Vertex 1906: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.099818 + Group: 'RightArm', Weight: 0.889381 +Vertex 1907: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.073967 + Group: 'RightArm', Weight: 0.921038 +Vertex 1908: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.061449 + Group: 'RightArm', Weight: 0.935648 +Vertex 1909: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.072774 + Group: 'RightArm', Weight: 0.923293 +Vertex 1910: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.118472 + Group: 'RightArm', Weight: 0.872812 +Vertex 1911: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.228190 + Group: 'RightArm', Weight: 0.750218 +Vertex 1912: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.109703 + Group: 'Spine2', Weight: 0.119016 + Group: 'RightShoulder', Weight: 0.552031 + Group: 'RightArm', Weight: 0.205425 +Vertex 1913: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.050463 + Group: 'Spine2', Weight: 0.057627 + Group: 'RightShoulder', Weight: 0.700582 + Group: 'RightArm', Weight: 0.176525 +Vertex 1914: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.006301 + Group: 'RightShoulder', Weight: 0.797455 + Group: 'RightArm', Weight: 0.138719 +Vertex 1915: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.078070 + Group: 'Spine2', Weight: 0.077672 + Group: 'RightShoulder', Weight: 0.613054 + Group: 'RightArm', Weight: 0.219206 +Vertex 1916: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.117231 + Group: 'Spine2', Weight: 0.134934 + Group: 'RightShoulder', Weight: 0.531313 + Group: 'RightArm', Weight: 0.201963 +Vertex 1917: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.837260 + Group: 'RightArm', Weight: 0.125687 +Vertex 1918: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.846464 + Group: 'RightArm', Weight: 0.120904 +Vertex 1919: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.853790 + Group: 'RightArm', Weight: 0.118559 +Vertex 1920: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.849314 + Group: 'RightArm', Weight: 0.115413 +Vertex 1921: +Vertex groups: 3 + Group: 'Spine2', Weight: 0.048595 + Group: 'RightShoulder', Weight: 0.788013 + Group: 'RightArm', Weight: 0.133081 +Vertex 1922: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.017828 + Group: 'Spine2', Weight: 0.062346 + Group: 'RightShoulder', Weight: 0.656739 + Group: 'RightArm', Weight: 0.238038 +Vertex 1923: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.062538 + Group: 'Spine2', Weight: 0.092168 + Group: 'RightShoulder', Weight: 0.589923 + Group: 'RightArm', Weight: 0.244251 +Vertex 1924: +Vertex groups: 4 + Group: 'Spine1', Weight: 0.105486 + Group: 'Spine2', Weight: 0.126015 + Group: 'RightShoulder', Weight: 0.511429 + Group: 'RightArm', Weight: 0.242464 +Vertex 1925: +Vertex groups: 5 + Group: 'Hips', Weight: 0.385065 + Group: 'Spine', Weight: 0.392847 + Group: 'Spine1', Weight: 0.067973 + Group: 'LeftUpLeg', Weight: 0.021450 + Group: 'RightUpLeg', Weight: 0.112777 +Vertex 1926: +Vertex groups: 4 + Group: 'Hips', Weight: 0.286594 + Group: 'Spine', Weight: 0.425835 + Group: 'Spine1', Weight: 0.069644 + Group: 'RightUpLeg', Weight: 0.192112 +Vertex 1927: +Vertex groups: 4 + Group: 'Hips', Weight: 0.156744 + Group: 'Spine', Weight: 0.483654 + Group: 'Spine1', Weight: 0.085119 + Group: 'RightUpLeg', Weight: 0.255894 +Vertex 1928: +Vertex groups: 4 + Group: 'Hips', Weight: 0.080297 + Group: 'Spine', Weight: 0.522545 + Group: 'Spine1', Weight: 0.107618 + Group: 'RightUpLeg', Weight: 0.271555 +Vertex 1929: +Vertex groups: 4 + Group: 'Hips', Weight: 0.040117 + Group: 'Spine', Weight: 0.553882 + Group: 'Spine1', Weight: 0.123854 + Group: 'RightUpLeg', Weight: 0.257438 +Vertex 1930: +Vertex groups: 4 + Group: 'Hips', Weight: 0.002550 + Group: 'Spine', Weight: 0.596061 + Group: 'Spine1', Weight: 0.126659 + Group: 'RightUpLeg', Weight: 0.229635 +Vertex 1931: +Vertex groups: 3 + Group: 'Spine', Weight: 0.663557 + Group: 'Spine1', Weight: 0.125660 + Group: 'RightUpLeg', Weight: 0.167095 +Vertex 1932: +Vertex groups: 3 + Group: 'Spine', Weight: 0.783563 + Group: 'Spine1', Weight: 0.109403 + Group: 'RightUpLeg', Weight: 0.063467 +Vertex 1933: +Vertex groups: 3 + Group: 'Spine', Weight: 0.727662 + Group: 'Spine1', Weight: 0.122021 + Group: 'RightUpLeg', Weight: 0.107637 +Vertex 1934: +Vertex groups: 5 + Group: 'Hips', Weight: 0.526165 + Group: 'Spine', Weight: 0.236665 + Group: 'Spine1', Weight: 0.030987 + Group: 'LeftUpLeg', Weight: 0.038697 + Group: 'RightUpLeg', Weight: 0.148891 +Vertex 1935: +Vertex groups: 4 + Group: 'Hips', Weight: 0.376758 + Group: 'Spine', Weight: 0.282149 + Group: 'Spine1', Weight: 0.043511 + Group: 'RightUpLeg', Weight: 0.269170 +Vertex 1936: +Vertex groups: 4 + Group: 'Hips', Weight: 0.180564 + Group: 'Spine', Weight: 0.363174 + Group: 'Spine1', Weight: 0.061177 + Group: 'RightUpLeg', Weight: 0.379507 +Vertex 1937: +Vertex groups: 4 + Group: 'Hips', Weight: 0.080770 + Group: 'Spine', Weight: 0.449590 + Group: 'Spine1', Weight: 0.078737 + Group: 'RightUpLeg', Weight: 0.376265 +Vertex 1938: +Vertex groups: 4 + Group: 'Hips', Weight: 0.043905 + Group: 'Spine', Weight: 0.488432 + Group: 'Spine1', Weight: 0.088427 + Group: 'RightUpLeg', Weight: 0.360658 +Vertex 1939: +Vertex groups: 4 + Group: 'Hips', Weight: 0.005260 + Group: 'Spine', Weight: 0.538589 + Group: 'Spine1', Weight: 0.086167 + Group: 'RightUpLeg', Weight: 0.330755 +Vertex 1940: +Vertex groups: 5 + Group: 'Hips', Weight: 0.019078 + Group: 'Spine', Weight: 0.777808 + Group: 'Spine1', Weight: 0.065765 + Group: 'LeftUpLeg', Weight: 0.001327 + Group: 'RightUpLeg', Weight: 0.090410 +Vertex 1941: +Vertex groups: 4 + Group: 'Hips', Weight: 0.009394 + Group: 'Spine', Weight: 0.703149 + Group: 'Spine1', Weight: 0.076485 + Group: 'RightUpLeg', Weight: 0.166591 +Vertex 1942: +Vertex groups: 4 + Group: 'Hips', Weight: 0.002186 + Group: 'Spine', Weight: 0.629459 + Group: 'Spine1', Weight: 0.084536 + Group: 'RightUpLeg', Weight: 0.239777 +Vertex 1943: +Vertex groups: 3 + Group: 'Hips', Weight: 0.421919 + Group: 'LeftUpLeg', Weight: 0.204857 + Group: 'RightUpLeg', Weight: 0.367798 +Vertex 1944: +Vertex groups: 3 + Group: 'Hips', Weight: 0.273323 + Group: 'LeftUpLeg', Weight: 0.232946 + Group: 'RightUpLeg', Weight: 0.487832 +Vertex 1945: +Vertex groups: 3 + Group: 'Hips', Weight: 0.088857 + Group: 'LeftUpLeg', Weight: 0.025934 + Group: 'RightUpLeg', Weight: 0.867738 +Vertex 1946: +Vertex groups: 3 + Group: 'Hips', Weight: 0.074913 + Group: 'LeftUpLeg', Weight: 0.000473 + Group: 'RightUpLeg', Weight: 0.894860 +Vertex 1947: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.959256 +Vertex 1948: +Vertex groups: 2 + Group: 'Hips', Weight: 0.029481 + Group: 'RightUpLeg', Weight: 0.930864 +Vertex 1949: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.979643 +Vertex 1950: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.990272 +Vertex 1951: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.990193 +Vertex 1952: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.986319 +Vertex 1953: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.973852 +Vertex 1954: +Vertex groups: 2 + Group: 'Hips', Weight: 0.005402 + Group: 'RightUpLeg', Weight: 0.961913 +Vertex 1955: +Vertex groups: 2 + Group: 'Hips', Weight: 0.050343 + Group: 'RightUpLeg', Weight: 0.931937 +Vertex 1956: +Vertex groups: 3 + Group: 'Hips', Weight: 0.338763 + Group: 'LeftUpLeg', Weight: 0.176265 + Group: 'RightUpLeg', Weight: 0.470300 +Vertex 1957: +Vertex groups: 4 + Group: 'Hips', Weight: 0.230803 + Group: 'Spine', Weight: 0.022351 + Group: 'LeftUpLeg', Weight: 0.116408 + Group: 'RightUpLeg', Weight: 0.613949 +Vertex 1958: +Vertex groups: 3 + Group: 'Hips', Weight: 0.240193 + Group: 'LeftUpLeg', Weight: 0.010930 + Group: 'RightUpLeg', Weight: 0.708119 +Vertex 1959: +Vertex groups: 2 + Group: 'Hips', Weight: 0.108514 + Group: 'RightUpLeg', Weight: 0.849998 +Vertex 1960: +Vertex groups: 3 + Group: 'Hips', Weight: 0.058339 + Group: 'Spine', Weight: 0.014400 + Group: 'RightUpLeg', Weight: 0.897941 +Vertex 1961: +Vertex groups: 3 + Group: 'Hips', Weight: 0.014231 + Group: 'Spine', Weight: 0.013177 + Group: 'RightUpLeg', Weight: 0.927428 +Vertex 1962: +Vertex groups: 2 + Group: 'Spine', Weight: 0.018202 + Group: 'RightUpLeg', Weight: 0.946733 +Vertex 1963: +Vertex groups: 2 + Group: 'Spine', Weight: 0.038387 + Group: 'RightUpLeg', Weight: 0.919774 +Vertex 1964: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.987070 +Vertex 1965: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.987759 +Vertex 1966: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.990163 +Vertex 1967: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.993221 +Vertex 1968: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.995676 +Vertex 1969: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.996089 +Vertex 1970: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.996513 +Vertex 1971: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.993907 +Vertex 1972: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.994883 +Vertex 1973: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.987831 +Vertex 1974: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.989769 +Vertex 1975: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.990446 +Vertex 1976: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.991466 +Vertex 1977: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.992578 +Vertex 1978: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.993162 +Vertex 1979: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.992284 +Vertex 1980: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.990343 +Vertex 1981: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.990696 +Vertex 1982: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.991804 +Vertex 1983: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.992530 +Vertex 1984: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.994005 +Vertex 1985: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.994898 +Vertex 1986: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.993887 +Vertex 1987: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.996137 +Vertex 1988: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.998155 +Vertex 1989: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.998374 +Vertex 1990: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.997985 +Vertex 1991: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.997030 +Vertex 1992: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.996162 +Vertex 1993: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.995290 +Vertex 1994: +Vertex groups: 4 + Group: 'Hips', Weight: 0.112711 + Group: 'Spine', Weight: 0.024540 + Group: 'LeftUpLeg', Weight: 0.054007 + Group: 'RightUpLeg', Weight: 0.793195 +Vertex 1995: +Vertex groups: 3 + Group: 'Hips', Weight: 0.053526 + Group: 'Spine', Weight: 0.045354 + Group: 'RightUpLeg', Weight: 0.870581 +Vertex 1996: +Vertex groups: 3 + Group: 'Hips', Weight: 0.293878 + Group: 'LeftUpLeg', Weight: 0.054582 + Group: 'RightUpLeg', Weight: 0.639411 +Vertex 1997: +Vertex groups: 3 + Group: 'Hips', Weight: 0.359976 + Group: 'LeftUpLeg', Weight: 0.098540 + Group: 'RightUpLeg', Weight: 0.533850 +Vertex 1998: +Vertex groups: 3 + Group: 'Hips', Weight: 0.065917 + Group: 'LeftUpLeg', Weight: 0.024926 + Group: 'RightUpLeg', Weight: 0.888755 +Vertex 1999: +Vertex groups: 3 + Group: 'Hips', Weight: 0.091578 + Group: 'LeftUpLeg', Weight: 0.057277 + Group: 'RightUpLeg', Weight: 0.843863 +Vertex 2000: +Vertex groups: 3 + Group: 'Hips', Weight: 0.080751 + Group: 'LeftUpLeg', Weight: 0.059747 + Group: 'RightUpLeg', Weight: 0.852906 +Vertex 2001: +Vertex groups: 3 + Group: 'Hips', Weight: 0.089949 + Group: 'LeftUpLeg', Weight: 0.052414 + Group: 'RightUpLeg', Weight: 0.851565 +Vertex 2002: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.669042 + Group: 'RightLeg', Weight: 0.329946 +Vertex 2003: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.673390 + Group: 'RightLeg', Weight: 0.325902 +Vertex 2004: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.289290 + Group: 'RightLeg', Weight: 0.710260 +Vertex 2005: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.284134 + Group: 'RightLeg', Weight: 0.715530 +Vertex 2006: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.782745 + Group: 'RightLeg', Weight: 0.215705 +Vertex 2007: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.787744 + Group: 'RightLeg', Weight: 0.211216 +Vertex 2008: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.652201 + Group: 'RightLeg', Weight: 0.347306 +Vertex 2009: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.327708 + Group: 'RightLeg', Weight: 0.672031 +Vertex 2010: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.744457 + Group: 'RightLeg', Weight: 0.254915 +Vertex 2011: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.564868 + Group: 'RightLeg', Weight: 0.434867 +Vertex 2012: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.391312 + Group: 'RightLeg', Weight: 0.608498 +Vertex 2013: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.694867 + Group: 'RightLeg', Weight: 0.304890 +Vertex 2014: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.377169 + Group: 'RightLeg', Weight: 0.622684 +Vertex 2015: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.698496 + Group: 'RightLeg', Weight: 0.301403 +Vertex 2016: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.685127 + Group: 'RightLeg', Weight: 0.314817 +Vertex 2017: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.687334 + Group: 'RightLeg', Weight: 0.312558 +Vertex 2018: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.659142 + Group: 'RightLeg', Weight: 0.340328 +Vertex 2019: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.681102 + Group: 'RightLeg', Weight: 0.318623 +Vertex 2020: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.148526 + Group: 'RightLeg', Weight: 0.851194 +Vertex 2021: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.128116 + Group: 'RightLeg', Weight: 0.871685 +Vertex 2022: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.098975 + Group: 'RightLeg', Weight: 0.900780 +Vertex 2023: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.086876 + Group: 'RightLeg', Weight: 0.912946 +Vertex 2024: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.148626 + Group: 'RightLeg', Weight: 0.851228 +Vertex 2025: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.093631 + Group: 'RightLeg', Weight: 0.906258 +Vertex 2026: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.229076 + Group: 'RightLeg', Weight: 0.770790 +Vertex 2027: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.147436 + Group: 'RightLeg', Weight: 0.852490 +Vertex 2028: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.171977 + Group: 'RightLeg', Weight: 0.827979 +Vertex 2029: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.208602 + Group: 'RightLeg', Weight: 0.791368 +Vertex 2030: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.217301 + Group: 'RightLeg', Weight: 0.782648 +Vertex 2031: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.305263 + Group: 'RightLeg', Weight: 0.694454 +Vertex 2032: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.270864 + Group: 'RightLeg', Weight: 0.728992 +Vertex 2033: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.649841 + Group: 'RightLeg', Weight: 0.348994 +Vertex 2034: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.336646 + Group: 'RightLeg', Weight: 0.662760 +Vertex 2035: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.754742 + Group: 'RightLeg', Weight: 0.243548 +Vertex 2036: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.590981 + Group: 'RightLeg', Weight: 0.407904 +Vertex 2037: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.381464 + Group: 'RightLeg', Weight: 0.617824 +Vertex 2038: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.667953 + Group: 'RightLeg', Weight: 0.330625 +Vertex 2039: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.393441 + Group: 'RightLeg', Weight: 0.605809 +Vertex 2040: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.562449 + Group: 'RightLeg', Weight: 0.436519 +Vertex 2041: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.607829 + Group: 'RightLeg', Weight: 0.390961 +Vertex 2042: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.617459 + Group: 'RightLeg', Weight: 0.381351 +Vertex 2043: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.651977 + Group: 'RightLeg', Weight: 0.347146 +Vertex 2044: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.172985 + Group: 'RightLeg', Weight: 0.826672 +Vertex 2045: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.126973 + Group: 'RightLeg', Weight: 0.872736 +Vertex 2046: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.253899 + Group: 'RightLeg', Weight: 0.745607 +Vertex 2047: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.227389 + Group: 'RightLeg', Weight: 0.772150 +Vertex 2048: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.305820 + Group: 'RightLeg', Weight: 0.693596 +Vertex 2049: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.342544 + Group: 'RightLeg', Weight: 0.656790 +Vertex 2050: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.363971 + Group: 'RightLeg', Weight: 0.635361 +Vertex 2051: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.335094 + Group: 'RightLeg', Weight: 0.664445 +Vertex 2052: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.903744 + Group: 'RightLeg', Weight: 0.095620 +Vertex 2053: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.847532 + Group: 'RightLeg', Weight: 0.150600 +Vertex 2054: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.873166 + Group: 'RightLeg', Weight: 0.123206 +Vertex 2055: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.919339 + Group: 'RightLeg', Weight: 0.078621 +Vertex 2056: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.809040 + Group: 'RightLeg', Weight: 0.188601 +Vertex 2057: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.810223 + Group: 'RightLeg', Weight: 0.187221 +Vertex 2058: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.921012 + Group: 'RightLeg', Weight: 0.078716 +Vertex 2059: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.880908 + Group: 'RightLeg', Weight: 0.117830 +Vertex 2060: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.812173 + Group: 'RightLeg', Weight: 0.185309 +Vertex 2061: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.903611 + Group: 'RightLeg', Weight: 0.092911 +Vertex 2062: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.837285 + Group: 'RightLeg', Weight: 0.159882 +Vertex 2063: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.922685 + Group: 'RightLeg', Weight: 0.077179 +Vertex 2064: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.916983 + Group: 'RightLeg', Weight: 0.082767 +Vertex 2065: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.920033 + Group: 'RightLeg', Weight: 0.078771 +Vertex 2066: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.910018 + Group: 'RightLeg', Weight: 0.089485 +Vertex 2067: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.957775 + Group: 'RightLeg', Weight: 0.020986 +Vertex 2068: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.952220 + Group: 'RightLeg', Weight: 0.025703 +Vertex 2069: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.937775 + Group: 'RightLeg', Weight: 0.053764 +Vertex 2070: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.985605 +Vertex 2071: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.985461 +Vertex 2072: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.981350 +Vertex 2073: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.979876 +Vertex 2074: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.972216 +Vertex 2075: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.943385 + Group: 'RightLeg', Weight: 0.046629 +Vertex 2076: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.969617 + Group: 'RightLeg', Weight: 0.001555 +Vertex 2077: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.938843 + Group: 'RightLeg', Weight: 0.051712 +Vertex 2078: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.962052 + Group: 'RightLeg', Weight: 0.009555 +Vertex 2079: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.942686 + Group: 'RightLeg', Weight: 0.045097 +Vertex 2080: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.987931 +Vertex 2081: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.976299 +Vertex 2082: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.986326 +Vertex 2083: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.066251 + Group: 'RightLeg', Weight: 0.933585 +Vertex 2084: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.021727 + Group: 'RightLeg', Weight: 0.963868 +Vertex 2085: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.016766 + Group: 'RightLeg', Weight: 0.966572 +Vertex 2086: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.979522 +Vertex 2087: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.078536 + Group: 'RightLeg', Weight: 0.921247 +Vertex 2088: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.008379 + Group: 'RightLeg', Weight: 0.970491 +Vertex 2089: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.052636 + Group: 'RightLeg', Weight: 0.947104 +Vertex 2090: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.066122 + Group: 'RightLeg', Weight: 0.933637 +Vertex 2091: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.991627 +Vertex 2092: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.052226 + Group: 'RightLeg', Weight: 0.947663 +Vertex 2093: +Vertex groups: 2 + Group: 'RightUpLeg', Weight: 0.037146 + Group: 'RightLeg', Weight: 0.956349 +Vertex 2094: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.989356 +Vertex 2095: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.983745 +Vertex 2096: +Vertex groups: 1 + Group: 'RightLeg', Weight: 0.989954 +Vertex 2097: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.074204 + Group: 'RightFoot', Weight: 0.863923 + Group: 'RightToeBase', Weight: 0.061869 +Vertex 2098: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.095506 + Group: 'RightFoot', Weight: 0.857677 + Group: 'RightToeBase', Weight: 0.043626 +Vertex 2099: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.080359 + Group: 'RightFoot', Weight: 0.885751 + Group: 'RightToeBase', Weight: 0.017774 +Vertex 2100: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.056054 + Group: 'RightFoot', Weight: 0.911752 + Group: 'RightToeBase', Weight: 0.014384 +Vertex 2101: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.011726 + Group: 'RightFoot', Weight: 0.948090 +Vertex 2102: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.026074 + Group: 'RightFoot', Weight: 0.955274 +Vertex 2103: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.140352 + Group: 'RightFoot', Weight: 0.854372 +Vertex 2104: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.241786 + Group: 'RightFoot', Weight: 0.752444 +Vertex 2105: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.222677 + Group: 'RightFoot', Weight: 0.772544 +Vertex 2106: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.064872 + Group: 'RightFoot', Weight: 0.884873 + Group: 'RightToeBase', Weight: 0.050251 +Vertex 2107: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.070153 + Group: 'RightFoot', Weight: 0.895300 + Group: 'RightToeBase', Weight: 0.019088 +Vertex 2108: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.078382 + Group: 'RightFoot', Weight: 0.897005 +Vertex 2109: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.098336 + Group: 'RightFoot', Weight: 0.884242 +Vertex 2110: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.126546 + Group: 'RightFoot', Weight: 0.860873 +Vertex 2111: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.184283 + Group: 'RightFoot', Weight: 0.807639 +Vertex 2112: +Vertex groups: 3 + Group: 'Hips', Weight: 0.367036 + Group: 'LeftUpLeg', Weight: 0.198609 + Group: 'RightUpLeg', Weight: 0.408199 +Vertex 2113: +Vertex groups: 4 + Group: 'Hips', Weight: 0.353205 + Group: 'Spine', Weight: 0.032459 + Group: 'LeftUpLeg', Weight: 0.180763 + Group: 'RightUpLeg', Weight: 0.421979 +Vertex 2114: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.997674 +Vertex 2115: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.992369 +Vertex 2116: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.997053 +Vertex 2117: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.994768 +Vertex 2118: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.203639 + Group: 'RightToeBase', Weight: 0.793221 +Vertex 2119: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.036834 + Group: 'RightToeBase', Weight: 0.956002 +Vertex 2120: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.976395 +Vertex 2121: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.975578 +Vertex 2122: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.085424 + Group: 'RightToeBase', Weight: 0.914327 +Vertex 2123: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.075967 + Group: 'RightToeBase', Weight: 0.923818 +Vertex 2124: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.237879 + Group: 'RightToeBase', Weight: 0.761564 +Vertex 2125: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.214618 + Group: 'RightToeBase', Weight: 0.784835 +Vertex 2126: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.911256 + Group: 'RightToeBase', Weight: 0.084567 +Vertex 2127: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.796190 + Group: 'RightToeBase', Weight: 0.199139 +Vertex 2128: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.007987 + Group: 'RightFoot', Weight: 0.941589 + Group: 'RightToeBase', Weight: 0.008835 +Vertex 2129: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.924170 + Group: 'RightToeBase', Weight: 0.055819 +Vertex 2130: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.050345 + Group: 'RightFoot', Weight: 0.927006 +Vertex 2131: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.015064 + Group: 'RightFoot', Weight: 0.934494 + Group: 'RightToeBase', Weight: 0.015949 +Vertex 2132: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.075257 + Group: 'RightFoot', Weight: 0.907937 +Vertex 2133: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.037951 + Group: 'RightFoot', Weight: 0.931254 +Vertex 2134: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.075816 + Group: 'RightFoot', Weight: 0.906556 +Vertex 2135: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.044715 + Group: 'RightFoot', Weight: 0.928227 +Vertex 2136: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.065750 + Group: 'RightFoot', Weight: 0.912722 +Vertex 2137: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.034150 + Group: 'RightFoot', Weight: 0.929021 + Group: 'RightToeBase', Weight: 0.007807 +Vertex 2138: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.049185 + Group: 'RightFoot', Weight: 0.921568 + Group: 'RightToeBase', Weight: 0.007678 +Vertex 2139: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.016734 + Group: 'RightFoot', Weight: 0.929363 + Group: 'RightToeBase', Weight: 0.024539 +Vertex 2140: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.028635 + Group: 'RightFoot', Weight: 0.922169 + Group: 'RightToeBase', Weight: 0.027026 +Vertex 2141: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.001399 + Group: 'RightFoot', Weight: 0.922623 + Group: 'RightToeBase', Weight: 0.051677 +Vertex 2142: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.903773 + Group: 'RightToeBase', Weight: 0.075498 +Vertex 2143: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.887536 + Group: 'RightToeBase', Weight: 0.098233 +Vertex 2144: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.644981 + Group: 'RightToeBase', Weight: 0.350473 +Vertex 2145: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.495213 + Group: 'RightToeBase', Weight: 0.503105 +Vertex 2146: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.843053 + Group: 'RightToeBase', Weight: 0.148255 +Vertex 2147: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.872582 + Group: 'RightToeBase', Weight: 0.113109 +Vertex 2148: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.314619 + Group: 'RightToeBase', Weight: 0.682784 +Vertex 2149: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.222212 + Group: 'RightToeBase', Weight: 0.776822 +Vertex 2150: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.148505 + Group: 'RightToeBase', Weight: 0.850139 +Vertex 2151: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.129279 + Group: 'RightToeBase', Weight: 0.870059 +Vertex 2152: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.062794 + Group: 'RightToeBase', Weight: 0.936626 +Vertex 2153: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.060320 + Group: 'RightToeBase', Weight: 0.939306 +Vertex 2154: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.003286 + Group: 'RightToeBase', Weight: 0.973098 +Vertex 2155: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.003382 + Group: 'RightToeBase', Weight: 0.973117 +Vertex 2156: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.989706 +Vertex 2157: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.988336 +Vertex 2158: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.144499 + Group: 'RightToeBase', Weight: 0.853966 +Vertex 2159: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.141080 + Group: 'RightToeBase', Weight: 0.856891 +Vertex 2160: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.024743 + Group: 'RightFoot', Weight: 0.911295 + Group: 'RightToeBase', Weight: 0.051332 +Vertex 2161: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.997922 +Vertex 2162: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.997938 +Vertex 2163: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.892739 + Group: 'RightToeBase', Weight: 0.084078 +Vertex 2164: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.699526 + Group: 'RightToeBase', Weight: 0.290916 +Vertex 2165: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.353200 + Group: 'RightToeBase', Weight: 0.641954 +Vertex 2166: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.157719 + Group: 'RightToeBase', Weight: 0.840235 +Vertex 2167: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.059939 + Group: 'RightToeBase', Weight: 0.939372 +Vertex 2168: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.007599 + Group: 'RightToeBase', Weight: 0.970865 +Vertex 2169: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.096197 + Group: 'RightToeBase', Weight: 0.902415 +Vertex 2170: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.987656 +Vertex 2171: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.996476 +Vertex 2172: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.988566 +Vertex 2173: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.983268 +Vertex 2174: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.020440 + Group: 'RightToeBase', Weight: 0.964615 +Vertex 2175: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.115006 + Group: 'RightToeBase', Weight: 0.884582 +Vertex 2176: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.273572 + Group: 'RightToeBase', Weight: 0.725697 +Vertex 2177: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.939661 + Group: 'RightToeBase', Weight: 0.055586 +Vertex 2178: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.016374 + Group: 'RightFoot', Weight: 0.955267 +Vertex 2179: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.093308 + Group: 'RightFoot', Weight: 0.895919 +Vertex 2180: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.118549 + Group: 'RightFoot', Weight: 0.870536 +Vertex 2181: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.134357 + Group: 'RightFoot', Weight: 0.854789 +Vertex 2182: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.113377 + Group: 'RightFoot', Weight: 0.873447 +Vertex 2183: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.083078 + Group: 'RightFoot', Weight: 0.898357 +Vertex 2184: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.062214 + Group: 'RightFoot', Weight: 0.912004 + Group: 'RightToeBase', Weight: 0.001562 +Vertex 2185: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.996806 +Vertex 2186: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.030912 + Group: 'RightFoot', Weight: 0.868216 + Group: 'RightToeBase', Weight: 0.091327 +Vertex 2187: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.006684 + Group: 'RightFoot', Weight: 0.900478 + Group: 'RightToeBase', Weight: 0.071179 +Vertex 2188: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.046433 + Group: 'RightToeBase', Weight: 0.951105 +Vertex 2189: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.050631 + Group: 'RightToeBase', Weight: 0.948835 +Vertex 2190: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.994410 +Vertex 2191: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.994239 +Vertex 2192: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.979810 +Vertex 2193: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.336081 + Group: 'RightToeBase', Weight: 0.658739 +Vertex 2194: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.332378 + Group: 'RightToeBase', Weight: 0.663794 +Vertex 2195: +Vertex groups: 3 + Group: 'Hips', Weight: 0.586404 + Group: 'LeftUpLeg', Weight: 0.107046 + Group: 'RightUpLeg', Weight: 0.293542 +Vertex 2196: +Vertex groups: 2 + Group: 'Spine', Weight: 0.010410 + Group: 'RightUpLeg', Weight: 0.945983 +Vertex 2197: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.985563 +Vertex 2198: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.987460 +Vertex 2199: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.012847 + Group: 'RightToeBase', Weight: 0.968311 +Vertex 2200: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.070836 + Group: 'RightToeBase', Weight: 0.928552 +Vertex 2201: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.290325 + Group: 'RightToeBase', Weight: 0.707198 +Vertex 2202: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.909170 + Group: 'RightToeBase', Weight: 0.067937 +Vertex 2203: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.026072 + Group: 'RightFoot', Weight: 0.846200 + Group: 'RightToeBase', Weight: 0.115762 +Vertex 2204: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.258643 + Group: 'RightToeBase', Weight: 0.737224 +Vertex 2205: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.045181 + Group: 'RightToeBase', Weight: 0.951735 +Vertex 2206: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.975358 +Vertex 2207: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.036056 + Group: 'RightToeBase', Weight: 0.956727 +Vertex 2208: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.246950 + Group: 'RightToeBase', Weight: 0.752090 +Vertex 2209: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.934067 + Group: 'RightToeBase', Weight: 0.058578 +Vertex 2210: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.137494 + Group: 'RightToeBase', Weight: 0.861333 +Vertex 2211: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.113778 + Group: 'RightToeBase', Weight: 0.884510 +Vertex 2212: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.113028 + Group: 'RightToeBase', Weight: 0.886433 +Vertex 2213: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.417375 + Group: 'RightToeBase', Weight: 0.575481 +Vertex 2214: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.762266 + Group: 'RightToeBase', Weight: 0.236245 +Vertex 2215: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.587199 + Group: 'RightToeBase', Weight: 0.411189 +Vertex 2216: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.721479 + Group: 'RightToeBase', Weight: 0.277041 +Vertex 2217: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.718357 + Group: 'RightToeBase', Weight: 0.273286 +Vertex 2218: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.684447 + Group: 'RightToeBase', Weight: 0.303862 +Vertex 2219: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.684865 + Group: 'RightToeBase', Weight: 0.309358 +Vertex 2220: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.546616 + Group: 'RightToeBase', Weight: 0.444209 +Vertex 2221: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.712745 + Group: 'RightToeBase', Weight: 0.284642 +Vertex 2222: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.741967 + Group: 'RightToeBase', Weight: 0.241379 +Vertex 2223: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.008248 + Group: 'RightFoot', Weight: 0.859907 + Group: 'RightToeBase', Weight: 0.110967 +Vertex 2224: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.738496 + Group: 'RightToeBase', Weight: 0.257174 +Vertex 2225: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.794679 + Group: 'RightToeBase', Weight: 0.197265 +Vertex 2226: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.841531 + Group: 'RightToeBase', Weight: 0.142140 +Vertex 2227: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.219432 + Group: 'RightFoot', Weight: 0.765530 +Vertex 2228: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.193854 + Group: 'RightFoot', Weight: 0.793764 +Vertex 2229: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.288708 + Group: 'RightFoot', Weight: 0.706411 +Vertex 2230: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.228242 + Group: 'RightFoot', Weight: 0.763575 +Vertex 2231: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.155986 + Group: 'RightFoot', Weight: 0.834630 +Vertex 2232: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.120757 + Group: 'RightFoot', Weight: 0.874028 +Vertex 2233: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.098418 + Group: 'RightFoot', Weight: 0.900611 +Vertex 2234: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.436005 + Group: 'RightFoot', Weight: 0.563589 +Vertex 2235: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.472042 + Group: 'RightFoot', Weight: 0.527378 +Vertex 2236: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.197604 + Group: 'RightFoot', Weight: 0.784562 +Vertex 2237: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.196950 + Group: 'RightFoot', Weight: 0.791466 +Vertex 2238: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.432647 + Group: 'RightFoot', Weight: 0.565311 +Vertex 2239: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.399369 + Group: 'RightFoot', Weight: 0.597717 +Vertex 2240: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.466617 + Group: 'RightFoot', Weight: 0.532207 +Vertex 2241: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.178382 + Group: 'RightFoot', Weight: 0.806169 +Vertex 2242: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.911614 + Group: 'RightToeBase', Weight: 0.067991 +Vertex 2243: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.012611 + Group: 'RightFoot', Weight: 0.918126 + Group: 'RightToeBase', Weight: 0.050568 +Vertex 2244: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.050317 + Group: 'RightFoot', Weight: 0.916019 + Group: 'RightToeBase', Weight: 0.017324 +Vertex 2245: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.868312 + Group: 'RightToeBase', Weight: 0.123315 +Vertex 2246: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.962613 + Group: 'RightToeBase', Weight: 0.004607 +Vertex 2247: +Vertex groups: 1 + Group: 'RightFoot', Weight: 0.972301 +Vertex 2248: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.008037 + Group: 'RightFoot', Weight: 0.963975 +Vertex 2249: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.998577 +Vertex 2250: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.998205 +Vertex 2251: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.991711 +Vertex 2252: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.974952 +Vertex 2253: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.082571 + Group: 'RightToeBase', Weight: 0.917199 +Vertex 2254: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.222109 + Group: 'RightToeBase', Weight: 0.777331 +Vertex 2255: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.684778 + Group: 'RightToeBase', Weight: 0.313450 +Vertex 2256: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.831618 + Group: 'RightToeBase', Weight: 0.163711 +Vertex 2257: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.890335 + Group: 'RightToeBase', Weight: 0.099333 +Vertex 2258: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.925534 + Group: 'RightToeBase', Weight: 0.054145 +Vertex 2259: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.019641 + Group: 'RightFoot', Weight: 0.934076 + Group: 'RightToeBase', Weight: 0.012207 +Vertex 2260: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.051066 + Group: 'RightFoot', Weight: 0.926619 +Vertex 2261: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.054221 + Group: 'RightFoot', Weight: 0.923651 +Vertex 2262: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.040787 + Group: 'RightFoot', Weight: 0.927457 + Group: 'RightToeBase', Weight: 0.004298 +Vertex 2263: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.020096 + Group: 'RightFoot', Weight: 0.928626 + Group: 'RightToeBase', Weight: 0.022651 +Vertex 2264: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.004560 + Group: 'RightFoot', Weight: 0.922588 + Group: 'RightToeBase', Weight: 0.050132 +Vertex 2265: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.910002 + Group: 'RightToeBase', Weight: 0.068663 +Vertex 2266: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.888715 + Group: 'RightToeBase', Weight: 0.095876 +Vertex 2267: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.757992 + Group: 'RightToeBase', Weight: 0.236766 +Vertex 2268: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.533022 + Group: 'RightToeBase', Weight: 0.464560 +Vertex 2269: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.842785 + Group: 'RightToeBase', Weight: 0.147778 +Vertex 2270: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.276228 + Group: 'RightToeBase', Weight: 0.722305 +Vertex 2271: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.137593 + Group: 'RightToeBase', Weight: 0.861576 +Vertex 2272: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.061538 + Group: 'RightToeBase', Weight: 0.938034 +Vertex 2273: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.004127 + Group: 'RightToeBase', Weight: 0.972728 +Vertex 2274: +Vertex groups: 1 + Group: 'RightToeBase', Weight: 0.989172 +Vertex 2275: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.963632 +Vertex 2276: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.957171 +Vertex 2277: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.949781 +Vertex 2278: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.992291 +Vertex 2279: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.994741 +Vertex 2280: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.992449 +Vertex 2281: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.985682 +Vertex 2282: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.980354 +Vertex 2283: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.951260 +Vertex 2284: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.975555 +Vertex 2285: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.948332 +Vertex 2286: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.967322 +Vertex 2287: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.950924 +Vertex 2288: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.995384 +Vertex 2289: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.986203 +Vertex 2290: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.098190 + Group: 'RightFoot', Weight: 0.868082 + Group: 'RightToeBase', Weight: 0.017446 +Vertex 2291: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.107765 + Group: 'RightFoot', Weight: 0.868400 +Vertex 2292: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.108725 + Group: 'RightFoot', Weight: 0.866127 + Group: 'RightToeBase', Weight: 0.000287 +Vertex 2293: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.078748 + Group: 'RightFoot', Weight: 0.898110 +Vertex 2294: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.114797 + Group: 'RightFoot', Weight: 0.841458 + Group: 'RightToeBase', Weight: 0.037478 +Vertex 2295: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.762831 + Group: 'RightToeBase', Weight: 0.216846 +Vertex 2296: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.106985 + Group: 'RightFoot', Weight: 0.874567 +Vertex 2297: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.128677 + Group: 'RightFoot', Weight: 0.857662 +Vertex 2298: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.166600 + Group: 'RightFoot', Weight: 0.823647 +Vertex 2299: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.236024 + Group: 'RightFoot', Weight: 0.758029 +Vertex 2300: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.334896 + Group: 'RightFoot', Weight: 0.661402 +Vertex 2301: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.336469 + Group: 'RightFoot', Weight: 0.660750 +Vertex 2302: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.171886 + Group: 'RightFoot', Weight: 0.824958 +Vertex 2303: +Vertex groups: 3 + Group: 'RightLeg', Weight: 0.131091 + Group: 'RightFoot', Weight: 0.835847 + Group: 'RightToeBase', Weight: 0.016113 +Vertex 2304: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.038756 + Group: 'RightFoot', Weight: 0.951205 +Vertex 2305: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.048461 + Group: 'RightFoot', Weight: 0.936100 +Vertex 2306: +Vertex groups: 4 + Group: 'Hips', Weight: 0.609578 + Group: 'Spine', Weight: 0.030201 + Group: 'LeftUpLeg', Weight: 0.063722 + Group: 'RightUpLeg', Weight: 0.279054 +Vertex 2307: +Vertex groups: 3 + Group: 'Hips', Weight: 0.632467 + Group: 'LeftUpLeg', Weight: 0.088598 + Group: 'RightUpLeg', Weight: 0.256588 +Vertex 2308: +Vertex groups: 3 + Group: 'Hips', Weight: 0.538458 + Group: 'LeftUpLeg', Weight: 0.147190 + Group: 'RightUpLeg', Weight: 0.306709 +Vertex 2309: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.814043 + Group: 'RightToeBase', Weight: 0.163427 +Vertex 2310: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.888922 + Group: 'RightToeBase', Weight: 0.108152 +Vertex 2311: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.846086 + Group: 'RightToeBase', Weight: 0.141862 +Vertex 2312: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.859982 + Group: 'RightToeBase', Weight: 0.122155 +Vertex 2313: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.872462 + Group: 'RightToeBase', Weight: 0.123106 +Vertex 2314: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.881324 + Group: 'RightToeBase', Weight: 0.115768 +Vertex 2315: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.941314 + Group: 'RightFoot', Weight: 0.058149 +Vertex 2316: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.903961 + Group: 'RightFoot', Weight: 0.094464 +Vertex 2317: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.909246 + Group: 'RightFoot', Weight: 0.089508 +Vertex 2318: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.921086 + Group: 'RightFoot', Weight: 0.077867 +Vertex 2319: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.951932 + Group: 'RightFoot', Weight: 0.045691 +Vertex 2320: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.956458 + Group: 'RightFoot', Weight: 0.036821 +Vertex 2321: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.879839 + Group: 'RightFoot', Weight: 0.117844 +Vertex 2322: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.898473 + Group: 'RightFoot', Weight: 0.099947 +Vertex 2323: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.933492 + Group: 'RightFoot', Weight: 0.065898 +Vertex 2324: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.896055 + Group: 'RightFoot', Weight: 0.102031 +Vertex 2325: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.918864 + Group: 'RightFoot', Weight: 0.080235 +Vertex 2326: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.961386 + Group: 'RightFoot', Weight: 0.027013 +Vertex 2327: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.938904 + Group: 'RightFoot', Weight: 0.060690 +Vertex 2328: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.948228 + Group: 'RightFoot', Weight: 0.051530 +Vertex 2329: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.884974 + Group: 'RightFoot', Weight: 0.112980 +Vertex 2330: +Vertex groups: 2 + Group: 'RightFoot', Weight: 0.943323 + Group: 'RightToeBase', Weight: 0.040643 +Vertex 2331: +Vertex groups: 1 + Group: 'RightFoot', Weight: 0.972830 +Vertex 2332: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.106781 + Group: 'RightFoot', Weight: 0.889705 +Vertex 2333: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.063433 + Group: 'RightFoot', Weight: 0.922211 +Vertex 2334: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.095509 + Group: 'RightFoot', Weight: 0.898800 +Vertex 2335: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.062523 + Group: 'RightFoot', Weight: 0.935838 +Vertex 2336: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.055526 + Group: 'RightFoot', Weight: 0.940127 +Vertex 2337: +Vertex groups: 2 + Group: 'RightLeg', Weight: 0.167904 + Group: 'RightFoot', Weight: 0.830419 +Vertex 2338: +Vertex groups: 4 + Group: 'Hips', Weight: 0.584804 + Group: 'Spine', Weight: 0.124277 + Group: 'LeftUpLeg', Weight: 0.050418 + Group: 'RightUpLeg', Weight: 0.217475 +Vertex 2339: +Vertex groups: 4 + Group: 'Hips', Weight: 0.352461 + Group: 'Spine', Weight: 0.185197 + Group: 'Spine1', Weight: 0.011718 + Group: 'RightUpLeg', Weight: 0.410114 +Vertex 2340: +Vertex groups: 4 + Group: 'Hips', Weight: 0.160299 + Group: 'Spine', Weight: 0.226150 + Group: 'Spine1', Weight: 0.026067 + Group: 'RightUpLeg', Weight: 0.562716 +Vertex 2341: +Vertex groups: 4 + Group: 'Hips', Weight: 0.064560 + Group: 'Spine', Weight: 0.277187 + Group: 'Spine1', Weight: 0.044935 + Group: 'RightUpLeg', Weight: 0.600343 +Vertex 2342: +Vertex groups: 4 + Group: 'Hips', Weight: 0.029006 + Group: 'Spine', Weight: 0.279419 + Group: 'Spine1', Weight: 0.042230 + Group: 'RightUpLeg', Weight: 0.624676 +Vertex 2343: +Vertex groups: 4 + Group: 'Hips', Weight: 0.004782 + Group: 'Spine', Weight: 0.280634 + Group: 'Spine1', Weight: 0.026187 + Group: 'RightUpLeg', Weight: 0.642152 +Vertex 2344: +Vertex groups: 3 + Group: 'Hips', Weight: 0.037560 + Group: 'Spine', Weight: 0.214354 + Group: 'RightUpLeg', Weight: 0.702359 +Vertex 2345: +Vertex groups: 4 + Group: 'Hips', Weight: 0.095776 + Group: 'Spine', Weight: 0.184191 + Group: 'LeftUpLeg', Weight: 0.029492 + Group: 'RightUpLeg', Weight: 0.666843 +Vertex 2346: +Vertex groups: 4 + Group: 'Hips', Weight: 0.173885 + Group: 'Spine', Weight: 0.129428 + Group: 'LeftUpLeg', Weight: 0.073480 + Group: 'RightUpLeg', Weight: 0.614806 +Vertex 2347: +Vertex groups: 4 + Group: 'Hips', Weight: 0.250851 + Group: 'Spine', Weight: 0.111852 + Group: 'LeftUpLeg', Weight: 0.109632 + Group: 'RightUpLeg', Weight: 0.521128 +Vertex 2348: +Vertex groups: 4 + Group: 'Hips', Weight: 0.338962 + Group: 'Spine', Weight: 0.137265 + Group: 'LeftUpLeg', Weight: 0.144829 + Group: 'RightUpLeg', Weight: 0.371729 +Vertex 2349: +Vertex groups: 4 + Group: 'Hips', Weight: 0.296269 + Group: 'Spine', Weight: 0.269758 + Group: 'LeftUpLeg', Weight: 0.110463 + Group: 'RightUpLeg', Weight: 0.310641 +Vertex 2350: +Vertex groups: 4 + Group: 'Hips', Weight: 0.118864 + Group: 'Spine', Weight: 0.296291 + Group: 'LeftUpLeg', Weight: 0.047934 + Group: 'RightUpLeg', Weight: 0.517351 +Vertex 2351: +Vertex groups: 4 + Group: 'Hips', Weight: 0.050592 + Group: 'Spine', Weight: 0.347420 + Group: 'Spine1', Weight: 0.009201 + Group: 'RightUpLeg', Weight: 0.547829 +Vertex 2352: +Vertex groups: 4 + Group: 'Hips', Weight: 0.347535 + Group: 'Spine', Weight: 0.071618 + Group: 'LeftUpLeg', Weight: 0.166795 + Group: 'RightUpLeg', Weight: 0.409851 +Vertex 2353: +Vertex groups: 4 + Group: 'Hips', Weight: 0.257734 + Group: 'Spine', Weight: 0.063870 + Group: 'LeftUpLeg', Weight: 0.123063 + Group: 'RightUpLeg', Weight: 0.551361 +Vertex 2354: +Vertex groups: 4 + Group: 'Hips', Weight: 0.155633 + Group: 'Spine', Weight: 0.067275 + Group: 'LeftUpLeg', Weight: 0.070622 + Group: 'RightUpLeg', Weight: 0.702027 +Vertex 2355: +Vertex groups: 4 + Group: 'Hips', Weight: 0.068973 + Group: 'Spine', Weight: 0.084240 + Group: 'LeftUpLeg', Weight: 0.010309 + Group: 'RightUpLeg', Weight: 0.809919 +Vertex 2356: +Vertex groups: 3 + Group: 'Hips', Weight: 0.010883 + Group: 'Spine', Weight: 0.098161 + Group: 'RightUpLeg', Weight: 0.848786 +Vertex 2357: +Vertex groups: 2 + Group: 'Spine', Weight: 0.097818 + Group: 'RightUpLeg', Weight: 0.864526 +Vertex 2358: +Vertex groups: 3 + Group: 'Hips', Weight: 0.006384 + Group: 'Spine', Weight: 0.099370 + Group: 'RightUpLeg', Weight: 0.851577 +Vertex 2359: +Vertex groups: 3 + Group: 'Hips', Weight: 0.052650 + Group: 'Spine', Weight: 0.101581 + Group: 'RightUpLeg', Weight: 0.822948 +Vertex 2360: +Vertex groups: 3 + Group: 'Hips', Weight: 0.104772 + Group: 'Spine', Weight: 0.097027 + Group: 'RightUpLeg', Weight: 0.772918 +Vertex 2361: +Vertex groups: 3 + Group: 'Hips', Weight: 0.212163 + Group: 'Spine', Weight: 0.085184 + Group: 'RightUpLeg', Weight: 0.671049 +Vertex 2362: +Vertex groups: 4 + Group: 'Hips', Weight: 0.638800 + Group: 'Spine', Weight: 0.081643 + Group: 'LeftUpLeg', Weight: 0.070492 + Group: 'RightUpLeg', Weight: 0.193887 +Vertex 2363: +Vertex groups: 4 + Group: 'Hips', Weight: 0.327613 + Group: 'Spine', Weight: 0.062101 + Group: 'LeftUpLeg', Weight: 0.012959 + Group: 'RightUpLeg', Weight: 0.567290 +Vertex 2364: +Vertex groups: 3 + Group: 'Hips', Weight: 0.472133 + Group: 'LeftUpLeg', Weight: 0.053494 + Group: 'RightUpLeg', Weight: 0.447721 +Vertex 2365: +Vertex groups: 3 + Group: 'Hips', Weight: 0.497880 + Group: 'LeftUpLeg', Weight: 0.070852 + Group: 'RightUpLeg', Weight: 0.414115 +Vertex 2366: +Vertex groups: 3 + Group: 'Hips', Weight: 0.509408 + Group: 'LeftUpLeg', Weight: 0.097511 + Group: 'RightUpLeg', Weight: 0.381721 +Vertex 2367: +Vertex groups: 4 + Group: 'Hips', Weight: 0.012032 + Group: 'Spine', Weight: 0.526011 + Group: 'Spine1', Weight: 0.057514 + Group: 'RightUpLeg', Weight: 0.366639 +Vertex 2368: +Vertex groups: 4 + Group: 'Hips', Weight: 0.032175 + Group: 'Spine', Weight: 0.648202 + Group: 'Spine1', Weight: 0.054027 + Group: 'RightUpLeg', Weight: 0.229941 +Vertex 2369: +Vertex groups: 5 + Group: 'Hips', Weight: 0.062605 + Group: 'Spine', Weight: 0.546292 + Group: 'Spine1', Weight: 0.022860 + Group: 'LeftUpLeg', Weight: 0.008729 + Group: 'RightUpLeg', Weight: 0.321438 +Vertex 2370: +Vertex groups: 5 + Group: 'Hips', Weight: 0.113389 + Group: 'Spine', Weight: 0.592353 + Group: 'Spine1', Weight: 0.002173 + Group: 'LeftUpLeg', Weight: 0.053955 + Group: 'RightUpLeg', Weight: 0.211672 +Vertex 2371: +Vertex groups: 4 + Group: 'Hips', Weight: 0.165524 + Group: 'Spine', Weight: 0.261504 + Group: 'LeftUpLeg', Weight: 0.066317 + Group: 'RightUpLeg', Weight: 0.491647 +Vertex 2372: +Vertex groups: 4 + Group: 'Hips', Weight: 0.258597 + Group: 'Spine', Weight: 0.385429 + Group: 'LeftUpLeg', Weight: 0.097325 + Group: 'RightUpLeg', Weight: 0.241003 +Vertex 2373: +Vertex groups: 5 + Group: 'Hips', Weight: 0.062573 + Group: 'Spine', Weight: 0.711397 + Group: 'Spine1', Weight: 0.033414 + Group: 'LeftUpLeg', Weight: 0.025588 + Group: 'RightUpLeg', Weight: 0.142625 +Vertex 2374: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.977589 +Vertex 2375: +Vertex groups: 3 + Group: 'Hips', Weight: 0.189329 + Group: 'LeftUpLeg', Weight: 0.108847 + Group: 'RightUpLeg', Weight: 0.691938 +Vertex 2376: +Vertex groups: 3 + Group: 'Hips', Weight: 0.208329 + Group: 'LeftUpLeg', Weight: 0.114081 + Group: 'RightUpLeg', Weight: 0.672588 +Vertex 2377: +Vertex groups: 3 + Group: 'Hips', Weight: 0.080979 + Group: 'LeftUpLeg', Weight: 0.031276 + Group: 'RightUpLeg', Weight: 0.857959 +Vertex 2378: +Vertex groups: 2 + Group: 'Hips', Weight: 0.031543 + Group: 'RightUpLeg', Weight: 0.917432 +Vertex 2379: +Vertex groups: 3 + Group: 'Hips', Weight: 0.153929 + Group: 'LeftUpLeg', Weight: 0.125762 + Group: 'RightUpLeg', Weight: 0.714513 +Vertex 2380: +Vertex groups: 2 + Group: 'Hips', Weight: 0.060092 + Group: 'RightUpLeg', Weight: 0.919759 +Vertex 2381: +Vertex groups: 3 + Group: 'Hips', Weight: 0.159826 + Group: 'LeftUpLeg', Weight: 0.032734 + Group: 'RightUpLeg', Weight: 0.792658 +Vertex 2382: +Vertex groups: 3 + Group: 'Hips', Weight: 0.192139 + Group: 'LeftUpLeg', Weight: 0.069147 + Group: 'RightUpLeg', Weight: 0.733504 +Vertex 2383: +Vertex groups: 3 + Group: 'Hips', Weight: 0.162533 + Group: 'LeftUpLeg', Weight: 0.084245 + Group: 'RightUpLeg', Weight: 0.733284 +Vertex 2384: +Vertex groups: 2 + Group: 'Hips', Weight: 0.020468 + Group: 'RightUpLeg', Weight: 0.946887 +Vertex 2385: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.957433 +Vertex 2386: +Vertex groups: 2 + Group: 'Hips', Weight: 0.110281 + Group: 'RightUpLeg', Weight: 0.860677 +Vertex 2387: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.968320 +Vertex 2388: +Vertex groups: 1 + Group: 'RightUpLeg', Weight: 0.977483 +Vertex 2389: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.978046 +Vertex 2390: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.982243 +Vertex 2391: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.984852 +Vertex 2392: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.985223 +Vertex 2393: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.980779 +Vertex 2394: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.974014 +Vertex 2395: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.962933 + Group: 'RightHand', Weight: 0.019514 +Vertex 2396: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.966115 + Group: 'RightHand', Weight: 0.013497 +Vertex 2397: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.965400 + Group: 'RightHand', Weight: 0.015343 +Vertex 2398: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.966983 + Group: 'RightHand', Weight: 0.012962 +Vertex 2399: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.976181 +Vertex 2400: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.978163 +Vertex 2401: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.978473 +Vertex 2402: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.084902 + Group: 'RightForeArm', Weight: 0.914688 +Vertex 2403: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.038218 + Group: 'RightForeArm', Weight: 0.955646 +Vertex 2404: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.041244 + Group: 'RightForeArm', Weight: 0.954153 +Vertex 2405: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.114389 + Group: 'RightForeArm', Weight: 0.885496 +Vertex 2406: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.242825 + Group: 'RightForeArm', Weight: 0.756971 +Vertex 2407: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.168059 + Group: 'RightForeArm', Weight: 0.831712 +Vertex 2408: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.072315 + Group: 'RightForeArm', Weight: 0.927385 +Vertex 2409: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.038998 + Group: 'RightForeArm', Weight: 0.955235 +Vertex 2410: +Vertex groups: 1 + Group: 'RightForeArm', Weight: 0.976664 +Vertex 2411: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.055620 + Group: 'RightForeArm', Weight: 0.944135 +Vertex 2412: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.000747 + Group: 'RightForeArm', Weight: 0.974138 +Vertex 2413: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.033684 + Group: 'RightForeArm', Weight: 0.957562 +Vertex 2414: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.037073 + Group: 'RightForeArm', Weight: 0.956192 +Vertex 2415: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.103643 + Group: 'RightArm', Weight: 0.866502 +Vertex 2416: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.112082 + Group: 'RightArm', Weight: 0.855144 +Vertex 2417: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.973968 +Vertex 2418: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.025836 + Group: 'RightArm', Weight: 0.954140 +Vertex 2419: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991109 +Vertex 2420: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.098133 + Group: 'RightArm', Weight: 0.878954 +Vertex 2421: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.119335 + Group: 'RightArm', Weight: 0.861288 +Vertex 2422: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.094725 + Group: 'RightArm', Weight: 0.878906 +Vertex 2423: +Vertex groups: 2 + Group: 'RightShoulder', Weight: 0.097832 + Group: 'RightArm', Weight: 0.879683 +Vertex 2424: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.983958 +Vertex 2425: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.989940 +Vertex 2426: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.989252 +Vertex 2427: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.975305 +Vertex 2428: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.801330 + Group: 'RightForeArm', Weight: 0.198284 +Vertex 2429: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.815796 + Group: 'RightForeArm', Weight: 0.184114 +Vertex 2430: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.783525 + Group: 'RightForeArm', Weight: 0.216446 +Vertex 2431: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.805311 + Group: 'RightForeArm', Weight: 0.194379 +Vertex 2432: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.839379 + Group: 'RightForeArm', Weight: 0.160587 +Vertex 2433: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.858916 + Group: 'RightForeArm', Weight: 0.141002 +Vertex 2434: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.827417 + Group: 'RightForeArm', Weight: 0.172523 +Vertex 2435: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.811600 + Group: 'RightForeArm', Weight: 0.188028 +Vertex 2436: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.815533 + Group: 'RightForeArm', Weight: 0.184335 +Vertex 2437: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.812544 + Group: 'RightForeArm', Weight: 0.187249 +Vertex 2438: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.607470 + Group: 'RightForeArm', Weight: 0.392492 +Vertex 2439: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.761655 + Group: 'RightForeArm', Weight: 0.238207 +Vertex 2440: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.918247 + Group: 'RightForeArm', Weight: 0.081486 +Vertex 2441: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.977092 +Vertex 2442: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.991370 +Vertex 2443: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.987444 +Vertex 2444: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.997854 +Vertex 2445: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.981088 +Vertex 2446: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.985092 +Vertex 2447: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.979809 +Vertex 2448: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.984710 +Vertex 2449: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.990725 +Vertex 2450: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.994445 +Vertex 2451: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.996634 +Vertex 2452: +Vertex groups: 1 + Group: 'RightArm', Weight: 0.998772 +Vertex 2453: +Vertex groups: 1 + Group: 'RightArm', Weight: 1.000318 +Vertex 2454: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.848196 + Group: 'RightForeArm', Weight: 0.151764 +Vertex 2455: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.212949 + Group: 'RightForeArm', Weight: 0.786994 +Vertex 2456: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.856169 + Group: 'RightForeArm', Weight: 0.143527 +Vertex 2457: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.453469 + Group: 'RightForeArm', Weight: 0.546424 +Vertex 2458: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.033016 + Group: 'RightForeArm', Weight: 0.958253 +Vertex 2459: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.091797 + Group: 'RightForeArm', Weight: 0.907826 +Vertex 2460: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.113142 + Group: 'RightForeArm', Weight: 0.886643 +Vertex 2461: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.071849 + Group: 'RightForeArm', Weight: 0.927635 +Vertex 2462: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.064012 + Group: 'RightForeArm', Weight: 0.935833 +Vertex 2463: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.075031 + Group: 'RightForeArm', Weight: 0.924840 +Vertex 2464: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.944175 + Group: 'RightForeArm', Weight: 0.055782 +Vertex 2465: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.954059 + Group: 'RightForeArm', Weight: 0.041737 +Vertex 2466: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.951261 + Group: 'RightForeArm', Weight: 0.047044 +Vertex 2467: +Vertex groups: 2 + Group: 'RightArm', Weight: 0.832847 + Group: 'RightForeArm', Weight: 0.167026 +Vertex 2468: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.961144 +Vertex 2469: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.079303 + Group: 'LeftHandMiddle1', Weight: 0.864221 + Group: 'LeftHandRing1', Weight: 0.006253 +Vertex 2470: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.996802 +Vertex 2471: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.916833 + Group: 'LeftHandRing3', Weight: 0.080327 +Vertex 2472: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.004169 + Group: 'LeftHandMiddle1', Weight: 0.832673 + Group: 'LeftHandRing1', Weight: 0.099464 +Vertex 2473: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.010783 + Group: 'LeftHandRing3_end', Weight: 0.968986 +Vertex 2474: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.926795 + Group: 'LeftHandMiddle1', Weight: 0.026740 +Vertex 2475: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.675341 + Group: 'LeftHandRing1', Weight: 0.251895 + Group: 'LeftHandRing2', Weight: 0.007547 +Vertex 2476: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.724020 + Group: 'LeftHandMiddle1', Weight: 0.246295 +Vertex 2477: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.901012 + Group: 'LeftHandMiddle1', Weight: 0.079125 +Vertex 2478: +Vertex groups: 1 + Group: 'LeftHandIndex1', Weight: 0.953621 +Vertex 2479: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.756775 + Group: 'LeftHandIndex2', Weight: 0.102537 + Group: 'LeftHandMiddle1', Weight: 0.105421 + Group: 'LeftHandMiddle2', Weight: 0.014365 +Vertex 2480: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.895317 + Group: 'LeftHandIndex2', Weight: 0.091135 +Vertex 2481: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.830782 + Group: 'LeftHandIndex2', Weight: 0.127727 + Group: 'LeftHandMiddle1', Weight: 0.010715 +Vertex 2482: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.706061 + Group: 'LeftHandMiddle2', Weight: 0.112650 + Group: 'LeftHandRing1', Weight: 0.078082 + Group: 'LeftHandRing2', Weight: 0.094147 +Vertex 2483: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.045458 + Group: 'LeftHandMiddle1', Weight: 0.825147 + Group: 'LeftHandMiddle2', Weight: 0.098417 +Vertex 2484: +Vertex groups: 2 + Group: 'LeftHandMiddle1', Weight: 0.796883 + Group: 'LeftHandMiddle2', Weight: 0.137225 +Vertex 2485: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.101736 + Group: 'LeftHandRing1', Weight: 0.799095 + Group: 'LeftHandRing2', Weight: 0.058247 +Vertex 2486: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.026968 + Group: 'LeftHandRing1', Weight: 0.811063 + Group: 'LeftHandRing2', Weight: 0.054082 + Group: 'LeftHandPinky1', Weight: 0.065857 +Vertex 2487: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.697787 + Group: 'LeftHandRing2', Weight: 0.052064 + Group: 'LeftHandPinky1', Weight: 0.172238 + Group: 'LeftHandPinky2', Weight: 0.056296 +Vertex 2488: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.580969 + Group: 'LeftHandRing2', Weight: 0.270438 + Group: 'LeftHandPinky2', Weight: 0.131095 +Vertex 2489: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.035730 + Group: 'LeftHandRing1', Weight: 0.677774 + Group: 'LeftHandRing2', Weight: 0.258476 +Vertex 2490: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.521144 + Group: 'LeftHandRing2', Weight: 0.430216 + Group: 'LeftHandPinky2', Weight: 0.004956 +Vertex 2491: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.097422 + Group: 'LeftHandPinky1', Weight: 0.789345 + Group: 'LeftHandPinky2', Weight: 0.108242 +Vertex 2492: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.022499 + Group: 'LeftHandPinky1', Weight: 0.866293 + Group: 'LeftHandPinky2', Weight: 0.094051 +Vertex 2493: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.887956 + Group: 'LeftHandPinky2', Weight: 0.099526 +Vertex 2494: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.073182 + Group: 'LeftHandIndex2', Weight: 0.827905 + Group: 'LeftHandMiddle2', Weight: 0.066315 +Vertex 2495: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.091444 + Group: 'LeftHandPinky2', Weight: 0.893115 +Vertex 2496: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.092687 + Group: 'LeftHandRing2', Weight: 0.024238 + Group: 'LeftHandPinky1', Weight: 0.098000 + Group: 'LeftHandPinky2', Weight: 0.760002 +Vertex 2497: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.001221 + Group: 'LeftHandPinky1', Weight: 0.090221 + Group: 'LeftHandPinky2', Weight: 0.869365 +Vertex 2498: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.103203 + Group: 'LeftHandIndex1', Weight: 0.005480 + Group: 'LeftHandMiddle1', Weight: 0.768843 + Group: 'LeftHandRing1', Weight: 0.089123 +Vertex 2499: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.018918 + Group: 'LeftHandMiddle1', Weight: 0.031095 + Group: 'LeftHandRing1', Weight: 0.749998 + Group: 'LeftHandPinky1', Weight: 0.162239 +Vertex 2500: +Vertex groups: 1 + Group: 'LeftHandPinky1', Weight: 0.970067 +Vertex 2501: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.361222 + Group: 'LeftHandMiddle1', Weight: 0.600954 +Vertex 2502: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.576825 + Group: 'LeftHandIndex2', Weight: 0.104352 + Group: 'LeftHandMiddle1', Weight: 0.234921 + Group: 'LeftHandMiddle2', Weight: 0.078760 +Vertex 2503: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.146299 + Group: 'LeftHandMiddle1', Weight: 0.806401 +Vertex 2504: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.156406 + Group: 'LeftHandIndex2', Weight: 0.036231 + Group: 'LeftHandMiddle1', Weight: 0.643732 + Group: 'LeftHandMiddle2', Weight: 0.148341 +Vertex 2505: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.478057 + Group: 'LeftHandMiddle2', Weight: 0.099620 + Group: 'LeftHandRing1', Weight: 0.171063 + Group: 'LeftHandRing2', Weight: 0.244968 +Vertex 2506: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.367456 + Group: 'LeftHandRing1', Weight: 0.553502 + Group: 'LeftHandRing2', Weight: 0.024818 +Vertex 2507: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.113128 + Group: 'LeftHandMiddle2', Weight: 0.003667 + Group: 'LeftHandRing1', Weight: 0.448418 + Group: 'LeftHandRing2', Weight: 0.405993 +Vertex 2508: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.190038 + Group: 'LeftHandRing1', Weight: 0.731484 + Group: 'LeftHandRing2', Weight: 0.024433 +Vertex 2509: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.539547 + Group: 'LeftHandRing2', Weight: 0.188657 + Group: 'LeftHandPinky1', Weight: 0.048948 + Group: 'LeftHandPinky2', Weight: 0.209871 +Vertex 2510: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.494214 + Group: 'LeftHandRing2', Weight: 0.002969 + Group: 'LeftHandPinky1', Weight: 0.371427 + Group: 'LeftHandPinky2', Weight: 0.093508 +Vertex 2511: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.199414 + Group: 'LeftHandRing2', Weight: 0.091060 + Group: 'LeftHandPinky1', Weight: 0.043485 + Group: 'LeftHandPinky2', Weight: 0.644654 +Vertex 2512: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.199680 + Group: 'LeftHandPinky1', Weight: 0.659393 + Group: 'LeftHandPinky2', Weight: 0.122696 +Vertex 2513: +Vertex groups: 1 + Group: 'LeftHandIndex1', Weight: 0.941101 +Vertex 2514: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.859458 + Group: 'LeftHandIndex2', Weight: 0.128680 +Vertex 2515: +Vertex groups: 3 + Group: 'LeftHandThumb2', Weight: 0.005425 + Group: 'LeftHandIndex1', Weight: 0.895992 + Group: 'LeftHandIndex2', Weight: 0.030889 +Vertex 2516: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.786442 + Group: 'LeftHandIndex2', Weight: 0.189456 +Vertex 2517: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.030784 + Group: 'LeftHandIndex3', Weight: 0.921714 + Group: 'LeftHandIndex3_end', Weight: 0.024487 +Vertex 2518: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.022032 + Group: 'LeftHandIndex2', Weight: 0.940438 +Vertex 2519: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.026354 + Group: 'LeftHandIndex3_end', Weight: 0.960162 +Vertex 2520: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.951106 + Group: 'LeftHandIndex3', Weight: 0.022475 +Vertex 2521: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.978680 +Vertex 2522: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.009919 + Group: 'LeftHandIndex3_end', Weight: 0.968885 +Vertex 2523: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.976845 +Vertex 2524: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.014379 + Group: 'LeftHandIndex3_end', Weight: 0.966651 +Vertex 2525: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.020087 + Group: 'LeftHandIndex3_end', Weight: 0.963455 +Vertex 2526: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.034468 + Group: 'LeftHandIndex3_end', Weight: 0.955929 +Vertex 2527: +Vertex groups: 2 + Group: 'LeftHandIndex3', Weight: 0.051883 + Group: 'LeftHandIndex3_end', Weight: 0.945615 +Vertex 2528: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998865 +Vertex 2529: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998915 +Vertex 2530: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998945 +Vertex 2531: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.997609 +Vertex 2532: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.995845 +Vertex 2533: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.995654 +Vertex 2534: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.994549 +Vertex 2535: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999324 +Vertex 2536: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999392 +Vertex 2537: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999409 +Vertex 2538: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999387 +Vertex 2539: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999306 +Vertex 2540: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999198 +Vertex 2541: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999251 +Vertex 2542: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999236 +Vertex 2543: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999332 +Vertex 2544: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998792 +Vertex 2545: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999359 +Vertex 2546: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999454 +Vertex 2547: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999365 +Vertex 2548: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998192 +Vertex 2549: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998762 +Vertex 2550: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998086 +Vertex 2551: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.997834 +Vertex 2552: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.020525 + Group: 'LeftHandIndex3', Weight: 0.929555 + Group: 'LeftHandIndex3_end', Weight: 0.019649 +Vertex 2553: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.024503 + Group: 'LeftHandIndex3', Weight: 0.932579 + Group: 'LeftHandIndex3_end', Weight: 0.009416 +Vertex 2554: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.009828 + Group: 'LeftHandIndex3', Weight: 0.936864 + Group: 'LeftHandIndex3_end', Weight: 0.015203 +Vertex 2555: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.013786 + Group: 'LeftHandIndex3', Weight: 0.937031 + Group: 'LeftHandIndex3_end', Weight: 0.010315 +Vertex 2556: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.021478 + Group: 'LeftHandIndex3', Weight: 0.925460 + Group: 'LeftHandIndex3_end', Weight: 0.025005 +Vertex 2557: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.027480 + Group: 'LeftHandIndex3', Weight: 0.914084 + Group: 'LeftHandIndex3_end', Weight: 0.041846 +Vertex 2558: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.053465 + Group: 'LeftHandIndex3', Weight: 0.914081 + Group: 'LeftHandIndex3_end', Weight: 0.010222 +Vertex 2559: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999188 +Vertex 2560: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999485 +Vertex 2561: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998918 +Vertex 2562: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998847 +Vertex 2563: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.998806 +Vertex 2564: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999417 +Vertex 2565: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999423 +Vertex 2566: +Vertex groups: 1 + Group: 'LeftHandIndex3_end', Weight: 0.999148 +Vertex 2567: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.924641 + Group: 'LeftHandIndex3', Weight: 0.037421 +Vertex 2568: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.101749 + Group: 'LeftHandIndex2', Weight: 0.890182 +Vertex 2569: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.951502 + Group: 'LeftHandIndex3', Weight: 0.030672 +Vertex 2570: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.156318 + Group: 'LeftHandIndex2', Weight: 0.835517 +Vertex 2571: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.937708 + Group: 'LeftHandIndex3', Weight: 0.051042 +Vertex 2572: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.930663 + Group: 'LeftHandIndex3', Weight: 0.046984 +Vertex 2573: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.195715 + Group: 'LeftHandIndex2', Weight: 0.786808 +Vertex 2574: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.901479 + Group: 'LeftHandIndex3', Weight: 0.071983 +Vertex 2575: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.884183 + Group: 'LeftHandIndex3', Weight: 0.082874 +Vertex 2576: +Vertex groups: 2 + Group: 'LeftHandIndex2', Weight: 0.883143 + Group: 'LeftHandIndex3', Weight: 0.066023 +Vertex 2577: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.166038 + Group: 'LeftHandIndex2', Weight: 0.717268 + Group: 'LeftHandMiddle1', Weight: 0.032858 + Group: 'LeftHandMiddle2', Weight: 0.070172 +Vertex 2578: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.345505 + Group: 'LeftHandIndex2', Weight: 0.305146 + Group: 'LeftHandMiddle1', Weight: 0.117519 + Group: 'LeftHandMiddle2', Weight: 0.224581 +Vertex 2579: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.108810 + Group: 'LeftHandIndex2', Weight: 0.087341 + Group: 'LeftHandMiddle1', Weight: 0.171198 + Group: 'LeftHandMiddle2', Weight: 0.624303 +Vertex 2580: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.020913 + Group: 'LeftHandIndex2', Weight: 0.007615 + Group: 'LeftHandMiddle1', Weight: 0.104429 + Group: 'LeftHandMiddle2', Weight: 0.820489 +Vertex 2581: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.253800 + Group: 'LeftHandIndex2', Weight: 0.369818 + Group: 'LeftHandMiddle1', Weight: 0.070323 + Group: 'LeftHandMiddle2', Weight: 0.292449 +Vertex 2582: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.118089 + Group: 'LeftHandIndex2', Weight: 0.155048 + Group: 'LeftHandMiddle1', Weight: 0.079474 + Group: 'LeftHandMiddle2', Weight: 0.631885 +Vertex 2583: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.058183 + Group: 'LeftHandIndex2', Weight: 0.077303 + Group: 'LeftHandMiddle1', Weight: 0.039801 + Group: 'LeftHandMiddle2', Weight: 0.784483 + Group: 'LeftHandMiddle3', Weight: 0.004510 +Vertex 2584: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.116641 + Group: 'LeftHandIndex2', Weight: 0.857030 +Vertex 2585: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.006078 + Group: 'LeftHandIndex2', Weight: 0.958573 +Vertex 2586: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.037676 + Group: 'LeftHandIndex2', Weight: 0.939811 +Vertex 2587: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.070431 + Group: 'LeftHandIndex2', Weight: 0.905388 +Vertex 2588: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.085920 + Group: 'LeftHandIndex2', Weight: 0.872731 +Vertex 2589: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.082211 + Group: 'LeftHandIndex2', Weight: 0.843390 + Group: 'LeftHandIndex3', Weight: 0.008503 + Group: 'LeftHandMiddle2', Weight: 0.004042 +Vertex 2590: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.117015 + Group: 'LeftHandIndex2', Weight: 0.710394 + Group: 'LeftHandMiddle1', Weight: 0.018343 + Group: 'LeftHandMiddle2', Weight: 0.109943 +Vertex 2591: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.211913 + Group: 'LeftHandIndex2', Weight: 0.748103 +Vertex 2592: +Vertex groups: 2 + Group: 'LeftHandIndex1', Weight: 0.724530 + Group: 'LeftHandIndex2', Weight: 0.221480 +Vertex 2593: +Vertex groups: 4 + Group: 'LeftHandThumb2', Weight: 0.016800 + Group: 'LeftHandIndex1', Weight: 0.844438 + Group: 'LeftHandIndex2', Weight: 0.041387 + Group: 'LeftHandMiddle1', Weight: 0.013387 +Vertex 2594: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.227102 + Group: 'LeftHandIndex2', Weight: 0.662686 + Group: 'LeftHandMiddle1', Weight: 0.018364 + Group: 'LeftHandMiddle2', Weight: 0.054118 +Vertex 2595: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.643064 + Group: 'LeftHandIndex2', Weight: 0.202406 + Group: 'LeftHandMiddle1', Weight: 0.068702 + Group: 'LeftHandMiddle2', Weight: 0.056199 +Vertex 2596: +Vertex groups: 3 + Group: 'LeftHandIndex1', Weight: 0.751457 + Group: 'LeftHandIndex2', Weight: 0.055126 + Group: 'LeftHandMiddle1', Weight: 0.106907 +Vertex 2597: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.211738 + Group: 'LeftHandIndex2', Weight: 0.391738 + Group: 'LeftHandMiddle1', Weight: 0.066271 + Group: 'LeftHandMiddle2', Weight: 0.307258 +Vertex 2598: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.120669 + Group: 'LeftHandIndex2', Weight: 0.179551 + Group: 'LeftHandMiddle1', Weight: 0.071422 + Group: 'LeftHandMiddle2', Weight: 0.602258 +Vertex 2599: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.258774 + Group: 'LeftHandIndex2', Weight: 0.326513 + Group: 'LeftHandMiddle1', Weight: 0.102632 + Group: 'LeftHandMiddle2', Weight: 0.283055 +Vertex 2600: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.148837 + Group: 'LeftHandIndex2', Weight: 0.159407 + Group: 'LeftHandMiddle1', Weight: 0.143082 + Group: 'LeftHandMiddle2', Weight: 0.513912 +Vertex 2601: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.268625 + Group: 'LeftHandIndex2', Weight: 0.461780 + Group: 'LeftHandMiddle1', Weight: 0.075383 + Group: 'LeftHandMiddle2', Weight: 0.167301 +Vertex 2602: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.440279 + Group: 'LeftHandIndex2', Weight: 0.188486 + Group: 'LeftHandMiddle1', Weight: 0.151336 + Group: 'LeftHandMiddle2', Weight: 0.182487 +Vertex 2603: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.626692 + Group: 'LeftHandIndex2', Weight: 0.044153 + Group: 'LeftHandMiddle1', Weight: 0.208500 + Group: 'LeftHandMiddle2', Weight: 0.031193 + Group: 'LeftHandRing1', Weight: 0.016146 +Vertex 2604: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.137579 + Group: 'LeftHandMiddle3_end', Weight: 0.861934 +Vertex 2605: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.102361 + Group: 'LeftHandMiddle3', Weight: 0.896141 +Vertex 2606: +Vertex groups: 1 + Group: 'LeftHandMiddle3', Weight: 0.981314 +Vertex 2607: +Vertex groups: 2 + Group: 'LeftHandMiddle1', Weight: 0.037128 + Group: 'LeftHandMiddle2', Weight: 0.922379 +Vertex 2608: +Vertex groups: 1 + Group: 'LeftHandMiddle3', Weight: 0.978897 +Vertex 2609: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.970936 + Group: 'LeftHandMiddle3_end', Weight: 0.002829 +Vertex 2610: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.965337 + Group: 'LeftHandMiddle3_end', Weight: 0.013374 +Vertex 2611: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.958119 + Group: 'LeftHandMiddle3_end', Weight: 0.026625 +Vertex 2612: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.956383 + Group: 'LeftHandMiddle3_end', Weight: 0.026954 +Vertex 2613: +Vertex groups: 1 + Group: 'LeftHandMiddle3', Weight: 0.972180 +Vertex 2614: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.962473 + Group: 'LeftHandMiddle3_end', Weight: 0.015546 +Vertex 2615: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.041334 + Group: 'LeftHandMiddle3_end', Weight: 0.954202 +Vertex 2616: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.038895 + Group: 'LeftHandMiddle3_end', Weight: 0.955414 +Vertex 2617: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.057140 + Group: 'LeftHandMiddle3_end', Weight: 0.942659 +Vertex 2618: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.067135 + Group: 'LeftHandMiddle3_end', Weight: 0.932584 +Vertex 2619: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.077176 + Group: 'LeftHandMiddle3_end', Weight: 0.922446 +Vertex 2620: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.073061 + Group: 'LeftHandMiddle3_end', Weight: 0.926616 +Vertex 2621: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.081530 + Group: 'LeftHandMiddle3_end', Weight: 0.918075 +Vertex 2622: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993541 +Vertex 2623: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.994352 +Vertex 2624: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.994355 +Vertex 2625: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993193 +Vertex 2626: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993134 +Vertex 2627: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.991590 +Vertex 2628: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.991944 +Vertex 2629: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.992566 +Vertex 2630: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993877 +Vertex 2631: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.004837 + Group: 'LeftHandMiddle3_end', Weight: 0.972465 +Vertex 2632: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.978774 +Vertex 2633: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.985771 +Vertex 2634: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.987818 +Vertex 2635: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.001119 + Group: 'LeftHandMiddle3_end', Weight: 0.974332 +Vertex 2636: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.031974 + Group: 'LeftHandMiddle3_end', Weight: 0.958863 +Vertex 2637: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.012545 + Group: 'LeftHandMiddle3_end', Weight: 0.968581 +Vertex 2638: +Vertex groups: 2 + Group: 'LeftHandMiddle3', Weight: 0.009635 + Group: 'LeftHandMiddle3_end', Weight: 0.970044 +Vertex 2639: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.080993 + Group: 'LeftHandMiddle3', Weight: 0.916880 +Vertex 2640: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.083557 + Group: 'LeftHandMiddle3', Weight: 0.912680 +Vertex 2641: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.075501 + Group: 'LeftHandMiddle3', Weight: 0.920127 +Vertex 2642: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.086190 + Group: 'LeftHandMiddle3', Weight: 0.910405 +Vertex 2643: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.180765 + Group: 'LeftHandMiddle3', Weight: 0.816229 +Vertex 2644: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.184572 + Group: 'LeftHandMiddle3', Weight: 0.813834 +Vertex 2645: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.703308 + Group: 'LeftHandMiddle3', Weight: 0.294620 +Vertex 2646: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.987498 +Vertex 2647: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.992842 +Vertex 2648: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.987319 +Vertex 2649: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.984702 +Vertex 2650: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.986359 +Vertex 2651: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.988913 +Vertex 2652: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.993859 +Vertex 2653: +Vertex groups: 1 + Group: 'LeftHandMiddle3_end', Weight: 0.988336 +Vertex 2654: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.071353 + Group: 'LeftHandMiddle2', Weight: 0.839094 + Group: 'LeftHandRing2', Weight: 0.066870 +Vertex 2655: +Vertex groups: 3 + Group: 'LeftHandIndex2', Weight: 0.007890 + Group: 'LeftHandMiddle1', Weight: 0.015981 + Group: 'LeftHandMiddle2', Weight: 0.892004 +Vertex 2656: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.160687 + Group: 'LeftHandMiddle2', Weight: 0.708923 + Group: 'LeftHandRing2', Weight: 0.100314 +Vertex 2657: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.075465 + Group: 'LeftHandIndex2', Weight: 0.079150 + Group: 'LeftHandMiddle1', Weight: 0.076513 + Group: 'LeftHandMiddle2', Weight: 0.729200 +Vertex 2658: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.009041 + Group: 'LeftHandMiddle1', Weight: 0.044241 + Group: 'LeftHandMiddle2', Weight: 0.836023 + Group: 'LeftHandMiddle3', Weight: 0.005263 + Group: 'LeftHandRing2', Weight: 0.003363 +Vertex 2659: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.048958 + Group: 'LeftHandMiddle2', Weight: 0.786701 + Group: 'LeftHandRing2', Weight: 0.108394 +Vertex 2660: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.050321 + Group: 'LeftHandMiddle2', Weight: 0.825984 + Group: 'LeftHandRing2', Weight: 0.089755 +Vertex 2661: +Vertex groups: 2 + Group: 'LeftHandRing1', Weight: 0.052180 + Group: 'LeftHandRing2', Weight: 0.922087 +Vertex 2662: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.963642 +Vertex 2663: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.970445 +Vertex 2664: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.963438 + Group: 'LeftHandRing3_end', Weight: 0.012744 +Vertex 2665: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.954066 + Group: 'LeftHandRing3_end', Weight: 0.023503 +Vertex 2666: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.947663 + Group: 'LeftHandRing3_end', Weight: 0.019594 +Vertex 2667: +Vertex groups: 1 + Group: 'LeftHandRing3', Weight: 0.956410 +Vertex 2668: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.952088 + Group: 'LeftHandRing3_end', Weight: 0.008629 +Vertex 2669: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.017246 + Group: 'LeftHandRing3_end', Weight: 0.965860 +Vertex 2670: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.005243 + Group: 'LeftHandRing3_end', Weight: 0.972387 +Vertex 2671: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.019291 + Group: 'LeftHandRing3_end', Weight: 0.965142 +Vertex 2672: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.025755 + Group: 'LeftHandRing3_end', Weight: 0.961646 +Vertex 2673: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.033794 + Group: 'LeftHandRing3_end', Weight: 0.957389 +Vertex 2674: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.019425 + Group: 'LeftHandRing3_end', Weight: 0.964608 +Vertex 2675: +Vertex groups: 2 + Group: 'LeftHandRing3', Weight: 0.039530 + Group: 'LeftHandRing3_end', Weight: 0.954400 +Vertex 2676: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.998052 +Vertex 2677: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997921 +Vertex 2678: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997941 +Vertex 2679: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997639 +Vertex 2680: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997849 +Vertex 2681: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997580 +Vertex 2682: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997958 +Vertex 2683: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997930 +Vertex 2684: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.998067 +Vertex 2685: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.989498 +Vertex 2686: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.991334 +Vertex 2687: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.993026 +Vertex 2688: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.993363 +Vertex 2689: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.992002 +Vertex 2690: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.989670 +Vertex 2691: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.988409 +Vertex 2692: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.989866 +Vertex 2693: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.796173 + Group: 'LeftHandRing3', Weight: 0.201453 +Vertex 2694: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.250680 + Group: 'LeftHandRing3', Weight: 0.746005 +Vertex 2695: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.137601 + Group: 'LeftHandRing3', Weight: 0.858142 +Vertex 2696: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.197123 + Group: 'LeftHandRing3', Weight: 0.799092 +Vertex 2697: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.800586 + Group: 'LeftHandRing3', Weight: 0.194730 +Vertex 2698: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.932930 + Group: 'LeftHandRing3', Weight: 0.063482 +Vertex 2699: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.929077 + Group: 'LeftHandRing3', Weight: 0.066344 +Vertex 2700: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996205 +Vertex 2701: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996839 +Vertex 2702: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996771 +Vertex 2703: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.995486 +Vertex 2704: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996261 +Vertex 2705: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.995931 +Vertex 2706: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.997224 +Vertex 2707: +Vertex groups: 1 + Group: 'LeftHandRing3_end', Weight: 0.996688 +Vertex 2708: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.066249 + Group: 'LeftHandRing2', Weight: 0.891464 + Group: 'LeftHandPinky2', Weight: 0.010263 +Vertex 2709: +Vertex groups: 3 + Group: 'LeftHandMiddle2', Weight: 0.003848 + Group: 'LeftHandRing1', Weight: 0.009867 + Group: 'LeftHandRing2', Weight: 0.914749 +Vertex 2710: +Vertex groups: 3 + Group: 'LeftHandMiddle1', Weight: 0.024971 + Group: 'LeftHandMiddle2', Weight: 0.066716 + Group: 'LeftHandRing2', Weight: 0.854098 +Vertex 2711: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.027371 + Group: 'LeftHandMiddle2', Weight: 0.124762 + Group: 'LeftHandRing1', Weight: 0.020990 + Group: 'LeftHandRing2', Weight: 0.767748 +Vertex 2712: +Vertex groups: 4 + Group: 'LeftHandMiddle2', Weight: 0.009630 + Group: 'LeftHandRing1', Weight: 0.004978 + Group: 'LeftHandRing2', Weight: 0.891260 + Group: 'LeftHandRing3', Weight: 0.000783 +Vertex 2713: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.209455 + Group: 'LeftHandRing2', Weight: 0.588843 + Group: 'LeftHandPinky2', Weight: 0.145400 +Vertex 2714: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.095463 + Group: 'LeftHandRing2', Weight: 0.816365 + Group: 'LeftHandPinky2', Weight: 0.067306 +Vertex 2715: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.910964 + Group: 'LeftHandPinky3_end', Weight: 0.082541 +Vertex 2716: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.068693 + Group: 'LeftHandPinky3', Weight: 0.926302 +Vertex 2717: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.134957 + Group: 'LeftHandPinky3_end', Weight: 0.864341 +Vertex 2718: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.941604 + Group: 'LeftHandPinky3_end', Weight: 0.054437 +Vertex 2719: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.937994 + Group: 'LeftHandPinky3_end', Weight: 0.056132 +Vertex 2720: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.878208 + Group: 'LeftHandPinky3_end', Weight: 0.116333 +Vertex 2721: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.701752 + Group: 'LeftHandPinky3_end', Weight: 0.291763 +Vertex 2722: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.575834 + Group: 'LeftHandPinky3_end', Weight: 0.422407 +Vertex 2723: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.937464 + Group: 'LeftHandPinky3_end', Weight: 0.060254 +Vertex 2724: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.870069 + Group: 'LeftHandPinky3_end', Weight: 0.127660 +Vertex 2725: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.087874 + Group: 'LeftHandPinky3_end', Weight: 0.911710 +Vertex 2726: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.064759 + Group: 'LeftHandPinky3_end', Weight: 0.934841 +Vertex 2727: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.058787 + Group: 'LeftHandPinky3_end', Weight: 0.940800 +Vertex 2728: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.066525 + Group: 'LeftHandPinky3_end', Weight: 0.932882 +Vertex 2729: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.023422 + Group: 'LeftHandPinky3_end', Weight: 0.963054 +Vertex 2730: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.045717 + Group: 'LeftHandPinky3_end', Weight: 0.951960 +Vertex 2731: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.030438 + Group: 'LeftHandPinky3_end', Weight: 0.959638 +Vertex 2732: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993442 +Vertex 2733: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991804 +Vertex 2734: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991934 +Vertex 2735: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.990583 +Vertex 2736: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991564 +Vertex 2737: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993107 +Vertex 2738: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.994440 +Vertex 2739: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.994362 +Vertex 2740: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993266 +Vertex 2741: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.003947 + Group: 'LeftHandPinky3_end', Weight: 0.972802 +Vertex 2742: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.978331 +Vertex 2743: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.976842 +Vertex 2744: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.002886 + Group: 'LeftHandPinky3_end', Weight: 0.973419 +Vertex 2745: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.990480 +Vertex 2746: +Vertex groups: 2 + Group: 'LeftHandPinky3', Weight: 0.020810 + Group: 'LeftHandPinky3_end', Weight: 0.964412 +Vertex 2747: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.987621 +Vertex 2748: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.991248 +Vertex 2749: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.070448 + Group: 'LeftHandPinky3', Weight: 0.921907 +Vertex 2750: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.055687 + Group: 'LeftHandPinky3', Weight: 0.931102 +Vertex 2751: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.061742 + Group: 'LeftHandPinky3', Weight: 0.923575 +Vertex 2752: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.070401 + Group: 'LeftHandPinky3', Weight: 0.910512 +Vertex 2753: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.050644 + Group: 'LeftHandPinky3', Weight: 0.933309 +Vertex 2754: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.063975 + Group: 'LeftHandPinky3', Weight: 0.932010 +Vertex 2755: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.043345 + Group: 'LeftHandPinky3', Weight: 0.947047 +Vertex 2756: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.985981 +Vertex 2757: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.987723 +Vertex 2758: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.995217 +Vertex 2759: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.993212 +Vertex 2760: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.996275 +Vertex 2761: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.987442 +Vertex 2762: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.986773 +Vertex 2763: +Vertex groups: 1 + Group: 'LeftHandPinky3_end', Weight: 0.989281 +Vertex 2764: +Vertex groups: 2 + Group: 'LeftHandMiddle1', Weight: 0.141200 + Group: 'LeftHandMiddle2', Weight: 0.818707 +Vertex 2765: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.277448 + Group: 'LeftHandMiddle2', Weight: 0.298294 + Group: 'LeftHandRing1', Weight: 0.091474 + Group: 'LeftHandRing2', Weight: 0.326443 +Vertex 2766: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.108656 + Group: 'LeftHandMiddle2', Weight: 0.081675 + Group: 'LeftHandRing1', Weight: 0.103703 + Group: 'LeftHandRing2', Weight: 0.701349 +Vertex 2767: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.205173 + Group: 'LeftHandIndex2', Weight: 0.104965 + Group: 'LeftHandMiddle1', Weight: 0.298336 + Group: 'LeftHandMiddle2', Weight: 0.334070 +Vertex 2768: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.277219 + Group: 'LeftHandIndex2', Weight: 0.009122 + Group: 'LeftHandMiddle1', Weight: 0.492876 + Group: 'LeftHandMiddle2', Weight: 0.069013 + Group: 'LeftHandRing1', Weight: 0.071157 +Vertex 2769: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.075502 + Group: 'LeftHandIndex2', Weight: 0.028097 + Group: 'LeftHandMiddle1', Weight: 0.138907 + Group: 'LeftHandMiddle2', Weight: 0.652406 + Group: 'LeftHandRing2', Weight: 0.057233 +Vertex 2770: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.153075 + Group: 'LeftHandMiddle1', Weight: 0.521072 + Group: 'LeftHandMiddle2', Weight: 0.105384 + Group: 'LeftHandRing1', Weight: 0.116323 + Group: 'LeftHandRing2', Weight: 0.040022 +Vertex 2771: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.311505 + Group: 'LeftHandIndex2', Weight: 0.246598 + Group: 'LeftHandMiddle1', Weight: 0.146881 + Group: 'LeftHandMiddle2', Weight: 0.259747 +Vertex 2772: +Vertex groups: 4 + Group: 'LeftHandIndex1', Weight: 0.208639 + Group: 'LeftHandIndex2', Weight: 0.167469 + Group: 'LeftHandMiddle1', Weight: 0.201378 + Group: 'LeftHandMiddle2', Weight: 0.381083 +Vertex 2773: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.071046 + Group: 'LeftHandMiddle2', Weight: 0.602885 + Group: 'LeftHandRing1', Weight: 0.037680 + Group: 'LeftHandRing2', Weight: 0.249654 +Vertex 2774: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.072666 + Group: 'LeftHandMiddle2', Weight: 0.266670 + Group: 'LeftHandRing1', Weight: 0.080378 + Group: 'LeftHandRing2', Weight: 0.557965 +Vertex 2775: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.011331 + Group: 'LeftHandMiddle1', Weight: 0.109972 + Group: 'LeftHandMiddle2', Weight: 0.596501 + Group: 'LeftHandRing1', Weight: 0.029461 + Group: 'LeftHandRing2', Weight: 0.192037 +Vertex 2776: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.459683 + Group: 'LeftHandRing1', Weight: 0.259227 + Group: 'LeftHandMiddle2', Weight: 0.102101 + Group: 'LeftHandRing2', Weight: 0.095133 + Group: 'LeftHandIndex1', Weight: 0.083856 +Vertex 2777: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.062311 + Group: 'LeftHandMiddle2', Weight: 0.182782 + Group: 'LeftHandRing1', Weight: 0.057735 + Group: 'LeftHandRing2', Weight: 0.655245 +Vertex 2778: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.457327 + Group: 'LeftHandMiddle1', Weight: 0.272488 + Group: 'LeftHandRing2', Weight: 0.146298 + Group: 'LeftHandMiddle2', Weight: 0.069240 + Group: 'LeftHandPinky1', Weight: 0.054647 +Vertex 2779: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.112418 + Group: 'LeftHandMiddle2', Weight: 0.540312 + Group: 'LeftHandRing1', Weight: 0.029079 + Group: 'LeftHandRing2', Weight: 0.261160 +Vertex 2780: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.104124 + Group: 'LeftHandMiddle2', Weight: 0.391362 + Group: 'LeftHandRing1', Weight: 0.038291 + Group: 'LeftHandRing2', Weight: 0.416966 +Vertex 2781: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.308515 + Group: 'LeftHandRing2', Weight: 0.414200 + Group: 'LeftHandPinky2', Weight: 0.236548 +Vertex 2782: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.140075 + Group: 'LeftHandRing2', Weight: 0.187139 + Group: 'LeftHandPinky2', Weight: 0.603066 + Group: 'LeftHandPinky3', Weight: 0.036202 +Vertex 2783: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.059932 + Group: 'LeftHandRing1', Weight: 0.477637 + Group: 'LeftHandRing2', Weight: 0.139516 + Group: 'LeftHandPinky1', Weight: 0.197543 + Group: 'LeftHandPinky2', Weight: 0.081258 +Vertex 2784: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.022762 + Group: 'LeftHandRing1', Weight: 0.315878 + Group: 'LeftHandRing2', Weight: 0.086338 + Group: 'LeftHandPinky1', Weight: 0.367940 + Group: 'LeftHandPinky2', Weight: 0.158273 +Vertex 2785: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.287153 + Group: 'LeftHandRing2', Weight: 0.453407 + Group: 'LeftHandPinky2', Weight: 0.204717 +Vertex 2786: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.143809 + Group: 'LeftHandRing2', Weight: 0.210943 + Group: 'LeftHandPinky1', Weight: 0.013837 + Group: 'LeftHandPinky2', Weight: 0.556727 + Group: 'LeftHandPinky3', Weight: 0.044155 +Vertex 2787: +Vertex groups: 2 + Group: 'LeftHandRing1', Weight: 0.143749 + Group: 'LeftHandRing2', Weight: 0.819255 +Vertex 2788: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.020576 + Group: 'LeftHandMiddle2', Weight: 0.001540 + Group: 'LeftHandRing1', Weight: 0.116179 + Group: 'LeftHandRing2', Weight: 0.816288 +Vertex 2789: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.192719 + Group: 'LeftHandRing2', Weight: 0.728518 + Group: 'LeftHandPinky2', Weight: 0.065128 +Vertex 2790: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.283835 + Group: 'LeftHandRing2', Weight: 0.564903 + Group: 'LeftHandPinky2', Weight: 0.122670 +Vertex 2791: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.911135 + Group: 'LeftHandMiddle3', Weight: 0.077375 +Vertex 2792: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.919737 + Group: 'LeftHandMiddle3', Weight: 0.062396 +Vertex 2793: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.884550 + Group: 'LeftHandMiddle3', Weight: 0.099837 +Vertex 2794: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.847322 + Group: 'LeftHandMiddle3', Weight: 0.112286 +Vertex 2795: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.855777 + Group: 'LeftHandMiddle3', Weight: 0.118650 +Vertex 2796: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.895888 + Group: 'LeftHandMiddle3', Weight: 0.075247 +Vertex 2797: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.932505 + Group: 'LeftHandMiddle3', Weight: 0.038535 +Vertex 2798: +Vertex groups: 2 + Group: 'LeftHandMiddle2', Weight: 0.846776 + Group: 'LeftHandMiddle3', Weight: 0.120438 +Vertex 2799: +Vertex groups: 1 + Group: 'LeftHandRing2', Weight: 0.971694 +Vertex 2800: +Vertex groups: 1 + Group: 'LeftHandRing2', Weight: 0.967795 +Vertex 2801: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.956900 + Group: 'LeftHandRing3', Weight: 0.012459 +Vertex 2802: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.892313 + Group: 'LeftHandRing3', Weight: 0.084739 +Vertex 2803: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.838956 + Group: 'LeftHandRing3', Weight: 0.131030 +Vertex 2804: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.867595 + Group: 'LeftHandRing3', Weight: 0.104502 +Vertex 2805: +Vertex groups: 2 + Group: 'LeftHandRing2', Weight: 0.914600 + Group: 'LeftHandRing3', Weight: 0.032311 +Vertex 2806: +Vertex groups: 1 + Group: 'LeftHandRing2', Weight: 0.950191 +Vertex 2807: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.924430 + Group: 'LeftHandPinky3', Weight: 0.051360 +Vertex 2808: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.930687 + Group: 'LeftHandPinky3', Weight: 0.055116 +Vertex 2809: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.870333 + Group: 'LeftHandPinky3', Weight: 0.079930 +Vertex 2810: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.069789 + Group: 'LeftHandRing2', Weight: 0.091071 + Group: 'LeftHandPinky2', Weight: 0.757076 + Group: 'LeftHandPinky3', Weight: 0.064500 +Vertex 2811: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.038317 + Group: 'LeftHandRing2', Weight: 0.054797 + Group: 'LeftHandPinky1', Weight: 0.014267 + Group: 'LeftHandPinky2', Weight: 0.794412 + Group: 'LeftHandPinky3', Weight: 0.070225 +Vertex 2812: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.835282 + Group: 'LeftHandPinky3', Weight: 0.121395 +Vertex 2813: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.891580 + Group: 'LeftHandPinky3', Weight: 0.094579 +Vertex 2814: +Vertex groups: 2 + Group: 'LeftHandPinky2', Weight: 0.914854 + Group: 'LeftHandPinky3', Weight: 0.074248 +Vertex 2815: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.218269 + Group: 'LeftHandRing2', Weight: 0.606047 + Group: 'LeftHandPinky2', Weight: 0.147056 +Vertex 2816: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.091570 + Group: 'LeftHandPinky2', Weight: 0.895421 +Vertex 2817: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.091363 + Group: 'LeftHandPinky2', Weight: 0.885927 +Vertex 2818: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.848590 + Group: 'LeftHandPinky2', Weight: 0.138671 +Vertex 2819: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.803568 + Group: 'LeftHandPinky2', Weight: 0.163804 +Vertex 2820: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.013341 + Group: 'LeftHandPinky1', Weight: 0.164303 + Group: 'LeftHandPinky2', Weight: 0.772427 +Vertex 2821: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.074465 + Group: 'LeftHandPinky1', Weight: 0.773028 + Group: 'LeftHandPinky2', Weight: 0.115414 +Vertex 2822: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.274996 + Group: 'LeftHandMiddle2', Weight: 0.340705 + Group: 'LeftHandRing1', Weight: 0.050056 + Group: 'LeftHandRing2', Weight: 0.326522 +Vertex 2823: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.104308 + Group: 'LeftHandMiddle2', Weight: 0.117327 + Group: 'LeftHandRing1', Weight: 0.052256 + Group: 'LeftHandRing2', Weight: 0.719152 +Vertex 2824: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.261822 + Group: 'LeftHandMiddle2', Weight: 0.356812 + Group: 'LeftHandRing1', Weight: 0.016412 + Group: 'LeftHandRing2', Weight: 0.337220 +Vertex 2825: +Vertex groups: 4 + Group: 'LeftHandMiddle1', Weight: 0.110198 + Group: 'LeftHandMiddle2', Weight: 0.137560 + Group: 'LeftHandRing1', Weight: 0.046775 + Group: 'LeftHandRing2', Weight: 0.692285 +Vertex 2826: +Vertex groups: 4 + Group: 'LeftHandMiddle2', Weight: 0.024369 + Group: 'LeftHandRing1', Weight: 0.098846 + Group: 'LeftHandRing2', Weight: 0.772345 + Group: 'LeftHandPinky2', Weight: 0.010105 +Vertex 2827: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.561280 + Group: 'LeftHandRing2', Weight: 0.165261 + Group: 'LeftHandMiddle1', Weight: 0.165058 + Group: 'LeftHandPinky1', Weight: 0.089946 + Group: 'LeftHandMiddle2', Weight: 0.018455 +Vertex 2828: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.011585 + Group: 'LeftHandThumb2', Weight: 0.008756 + Group: 'LeftHandIndex1', Weight: 0.920381 +Vertex 2829: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.036313 + Group: 'LeftHandIndex1', Weight: 0.729008 + Group: 'LeftHandMiddle1', Weight: 0.210212 +Vertex 2830: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.001391 + Group: 'LeftHandIndex1', Weight: 0.390990 + Group: 'LeftHandMiddle1', Weight: 0.562377 +Vertex 2831: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.011256 + Group: 'LeftHandIndex1', Weight: 0.132122 + Group: 'LeftHandMiddle1', Weight: 0.813353 +Vertex 2832: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.062134 + Group: 'LeftHandMiddle1', Weight: 0.376990 + Group: 'LeftHandRing1', Weight: 0.512185 +Vertex 2833: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.037848 + Group: 'LeftHandMiddle1', Weight: 0.185543 + Group: 'LeftHandRing1', Weight: 0.713060 + Group: 'LeftHandPinky1', Weight: 0.012186 +Vertex 2834: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.375980 + Group: 'LeftHandPinky1', Weight: 0.549193 + Group: 'LeftHandPinky2', Weight: 0.036972 +Vertex 2835: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.147366 + Group: 'LeftHandPinky1', Weight: 0.793648 + Group: 'LeftHandPinky2', Weight: 0.042453 +Vertex 2836: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.057275 + Group: 'LeftHandIndex1', Weight: 0.084123 + Group: 'LeftHandMiddle1', Weight: 0.830670 +Vertex 2837: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.116786 + Group: 'LeftHandMiddle1', Weight: 0.600661 + Group: 'LeftHandRing1', Weight: 0.245409 +Vertex 2838: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.066290 + Group: 'LeftHandMiddle1', Weight: 0.110132 + Group: 'LeftHandRing1', Weight: 0.749874 + Group: 'LeftHandPinky1', Weight: 0.062304 +Vertex 2839: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.000527 + Group: 'LeftHandRing1', Weight: 0.592324 + Group: 'LeftHandPinky1', Weight: 0.342787 +Vertex 2840: +Vertex groups: 2 + Group: 'LeftHandRing1', Weight: 0.065940 + Group: 'LeftHandPinky1', Weight: 0.910456 +Vertex 2841: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.118521 + Group: 'LeftHandThumb2', Weight: 0.143717 + Group: 'LeftHandIndex1', Weight: 0.710689 +Vertex 2842: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.106100 + Group: 'LeftHandThumb2', Weight: 0.190022 + Group: 'LeftHandIndex1', Weight: 0.655382 +Vertex 2843: +Vertex groups: 4 + Group: 'LeftHandRing1', Weight: 0.180721 + Group: 'LeftHandRing2', Weight: 0.033174 + Group: 'LeftHandPinky1', Weight: 0.467200 + Group: 'LeftHandPinky2', Weight: 0.262899 +Vertex 2844: +Vertex groups: 1 + Group: 'LeftHandPinky1', Weight: 0.964439 +Vertex 2845: +Vertex groups: 2 + Group: 'LeftHandPinky1', Weight: 0.933213 + Group: 'LeftHandPinky2', Weight: 0.014773 +Vertex 2846: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.010292 + Group: 'LeftHandRing1', Weight: 0.009548 + Group: 'LeftHandPinky1', Weight: 0.894473 + Group: 'LeftHandPinky2', Weight: 0.016510 +Vertex 2847: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.034531 + Group: 'LeftHandRing1', Weight: 0.069388 + Group: 'LeftHandPinky1', Weight: 0.832797 + Group: 'LeftHandPinky2', Weight: 0.011916 +Vertex 2848: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.072889 + Group: 'LeftHandThumb1', Weight: 0.607158 + Group: 'LeftHandThumb2', Weight: 0.064755 + Group: 'LeftHandIndex1', Weight: 0.248971 +Vertex 2849: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.007056 + Group: 'LeftHand', Weight: 0.928725 + Group: 'LeftHandThumb1', Weight: 0.023751 +Vertex 2850: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.100799 + Group: 'LeftHand', Weight: 0.781677 + Group: 'LeftHandThumb1', Weight: 0.111992 +Vertex 2851: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.165624 + Group: 'LeftHand', Weight: 0.647145 + Group: 'LeftHandThumb1', Weight: 0.181853 +Vertex 2852: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.056347 + Group: 'LeftHand', Weight: 0.359026 + Group: 'LeftHandThumb1', Weight: 0.571658 +Vertex 2853: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.157567 + Group: 'LeftHand', Weight: 0.571171 + Group: 'LeftHandThumb1', Weight: 0.263778 +Vertex 2854: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.065960 + Group: 'LeftHand', Weight: 0.312500 + Group: 'LeftHandThumb1', Weight: 0.610333 +Vertex 2855: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.332768 + Group: 'LeftHandThumb1', Weight: 0.073035 + Group: 'LeftHandIndex1', Weight: 0.550410 + Group: 'LeftHandMiddle1', Weight: 0.012802 +Vertex 2856: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.830788 + Group: 'LeftHandIndex1', Weight: 0.106787 + Group: 'LeftHandMiddle1', Weight: 0.012932 +Vertex 2857: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.036755 + Group: 'LeftHand', Weight: 0.672576 + Group: 'LeftHandThumb1', Weight: 0.266160 +Vertex 2858: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.007189 + Group: 'LeftHand', Weight: 0.241108 + Group: 'LeftHandThumb1', Weight: 0.714226 +Vertex 2859: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.139300 + Group: 'LeftHandThumb1', Weight: 0.819525 +Vertex 2860: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.358509 + Group: 'LeftHandThumb1', Weight: 0.573124 + Group: 'LeftHandPinky1', Weight: 0.013065 +Vertex 2861: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.232110 + Group: 'LeftHandThumb1', Weight: 0.644568 + Group: 'LeftHandIndex1', Weight: 0.010206 + Group: 'LeftHandPinky1', Weight: 0.040670 +Vertex 2862: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.096388 + Group: 'LeftHandThumb1', Weight: 0.816292 + Group: 'LeftHandThumb2', Weight: 0.017829 +Vertex 2863: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.071924 + Group: 'LeftHandThumb1', Weight: 0.680346 + Group: 'LeftHandThumb2', Weight: 0.097446 + Group: 'LeftHandIndex1', Weight: 0.091622 +Vertex 2864: +Vertex groups: 5 + Group: 'LeftHandThumb1', Weight: 0.580952 + Group: 'LeftHand', Weight: 0.184980 + Group: 'LeftHandIndex1', Weight: 0.141773 + Group: 'LeftHandThumb2', Weight: 0.054019 + Group: 'LeftHandPinky1', Weight: 0.038275 +Vertex 2865: +Vertex groups: 5 + Group: 'LeftHandThumb1', Weight: 0.209667 + Group: 'LeftHandThumb2', Weight: 0.383308 + Group: 'LeftHandThumb3', Weight: 0.018222 + Group: 'LeftHandIndex1', Weight: 0.297824 + Group: 'LeftHandMiddle1', Weight: 0.006383 +Vertex 2866: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.642096 + Group: 'LeftHandThumb2', Weight: 0.137461 + Group: 'LeftHandThumb1', Weight: 0.127513 + Group: 'LeftHandMiddle1', Weight: 0.077025 + Group: 'LeftHand', Weight: 0.015905 +Vertex 2867: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.196033 + Group: 'LeftHandThumb2', Weight: 0.354453 + Group: 'LeftHandThumb3', Weight: 0.053208 + Group: 'LeftHandIndex1', Weight: 0.354220 +Vertex 2868: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.104022 + Group: 'LeftHandThumb2', Weight: 0.171172 + Group: 'LeftHandIndex1', Weight: 0.636663 + Group: 'LeftHandMiddle1', Weight: 0.000459 +Vertex 2869: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.184870 + Group: 'LeftHandThumb2', Weight: 0.387571 + Group: 'LeftHandThumb3', Weight: 0.049141 + Group: 'LeftHandIndex1', Weight: 0.359741 +Vertex 2870: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.237698 + Group: 'LeftHandThumb2', Weight: 0.389387 + Group: 'LeftHandThumb3', Weight: 0.001766 + Group: 'LeftHandIndex1', Weight: 0.334555 +Vertex 2871: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.307520 + Group: 'LeftHandThumb2', Weight: 0.578119 + Group: 'LeftHandIndex1', Weight: 0.093280 +Vertex 2872: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.861266 + Group: 'LeftHandThumb2', Weight: 0.106802 +Vertex 2873: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.849859 + Group: 'LeftHandThumb2', Weight: 0.136959 +Vertex 2874: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.015961 + Group: 'LeftHandThumb1', Weight: 0.158429 + Group: 'LeftHandThumb2', Weight: 0.070186 + Group: 'LeftHandIndex1', Weight: 0.729646 +Vertex 2875: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.296802 + Group: 'LeftHandThumb2', Weight: 0.306187 + Group: 'LeftHandIndex1', Weight: 0.368685 +Vertex 2876: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.898526 + Group: 'LeftHandThumb2', Weight: 0.047283 + Group: 'LeftHandIndex1', Weight: 0.016044 +Vertex 2877: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.925450 + Group: 'LeftHandThumb2', Weight: 0.036656 +Vertex 2878: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.133801 + Group: 'LeftHandThumb1', Weight: 0.828835 +Vertex 2879: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.118676 + Group: 'LeftHandThumb1', Weight: 0.845311 +Vertex 2880: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.100376 + Group: 'LeftHandThumb1', Weight: 0.864993 +Vertex 2881: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.117107 + Group: 'LeftHandThumb1', Weight: 0.104241 + Group: 'LeftHandIndex1', Weight: 0.747456 +Vertex 2882: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.729898 + Group: 'LeftHandIndex1', Weight: 0.025962 + Group: 'LeftHandMiddle1', Weight: 0.174168 + Group: 'LeftHandRing1', Weight: 0.025865 +Vertex 2883: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.805781 + Group: 'LeftHandMiddle1', Weight: 0.080896 + Group: 'LeftHandRing1', Weight: 0.060215 + Group: 'LeftHandPinky1', Weight: 0.021036 +Vertex 2884: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.822291 + Group: 'LeftHandPinky1', Weight: 0.123224 +Vertex 2885: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.325893 + Group: 'LeftHandRing1', Weight: 0.052446 + Group: 'LeftHandPinky1', Weight: 0.607005 +Vertex 2886: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.121240 + Group: 'LeftHandRing1', Weight: 0.141269 + Group: 'LeftHandPinky1', Weight: 0.723064 +Vertex 2887: +Vertex groups: 1 + Group: 'LeftHandPinky1', Weight: 0.953058 +Vertex 2888: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.060839 + Group: 'LeftHandPinky1', Weight: 0.927969 +Vertex 2889: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.050535 + Group: 'LeftHandThumb1', Weight: 0.842684 + Group: 'LeftHandThumb2', Weight: 0.013623 + Group: 'LeftHandIndex1', Weight: 0.070811 +Vertex 2890: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.664521 + Group: 'LeftHandThumb2', Weight: 0.278311 + Group: 'LeftHandIndex1', Weight: 0.039115 +Vertex 2891: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.000822 + Group: 'LeftHandThumb1', Weight: 0.663987 + Group: 'LeftHandThumb2', Weight: 0.148660 + Group: 'LeftHandIndex1', Weight: 0.156117 +Vertex 2892: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.238455 + Group: 'LeftHandThumb1', Weight: 0.510812 + Group: 'LeftHandIndex1', Weight: 0.221838 +Vertex 2893: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.095597 + Group: 'LeftHandThumb1', Weight: 0.836130 + Group: 'LeftHandIndex1', Weight: 0.048632 +Vertex 2894: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.053472 + Group: 'LeftHandThumb1', Weight: 0.908799 +Vertex 2895: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.040242 + Group: 'LeftHandThumb1', Weight: 0.919091 +Vertex 2896: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.605289 + Group: 'LeftHandThumb1', Weight: 0.244986 + Group: 'LeftHandIndex1', Weight: 0.130776 +Vertex 2897: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.879781 + Group: 'LeftHandThumb1', Weight: 0.089889 +Vertex 2898: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.277821 + Group: 'LeftHandThumb1', Weight: 0.667525 + Group: 'LeftHandIndex1', Weight: 0.019240 +Vertex 2899: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.037077 + Group: 'LeftHand', Weight: 0.641277 + Group: 'LeftHandThumb1', Weight: 0.299618 +Vertex 2900: +Vertex groups: 1 + Group: 'LeftHand', Weight: 0.937484 +Vertex 2901: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.917843 + Group: 'LeftHandPinky1', Weight: 0.063063 +Vertex 2902: +Vertex groups: 1 + Group: 'LeftHand', Weight: 0.966306 +Vertex 2903: +Vertex groups: 1 + Group: 'LeftHand', Weight: 0.967154 +Vertex 2904: +Vertex groups: 2 + Group: 'LeftForeArm', Weight: 0.051253 + Group: 'LeftHand', Weight: 0.931140 +Vertex 2905: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.945536 + Group: 'LeftHandPinky1', Weight: 0.007722 +Vertex 2906: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.319693 + Group: 'LeftHandPinky1', Weight: 0.658517 +Vertex 2907: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.038549 + Group: 'LeftHand', Weight: 0.724514 + Group: 'LeftHandPinky1', Weight: 0.221647 +Vertex 2908: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.727409 + Group: 'LeftHandPinky1', Weight: 0.245512 +Vertex 2909: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.029869 + Group: 'LeftHand', Weight: 0.855992 + Group: 'LeftHandPinky1', Weight: 0.097023 +Vertex 2910: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.131350 + Group: 'LeftHand', Weight: 0.826251 + Group: 'LeftHandPinky1', Weight: 0.027220 +Vertex 2911: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.083766 + Group: 'LeftHand', Weight: 0.796385 + Group: 'LeftHandPinky1', Weight: 0.112431 +Vertex 2912: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.068231 + Group: 'LeftHand', Weight: 0.800752 + Group: 'LeftHandPinky1', Weight: 0.116740 +Vertex 2913: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.028295 + Group: 'LeftHand', Weight: 0.699306 + Group: 'LeftHandPinky1', Weight: 0.242266 +Vertex 2914: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.273435 + Group: 'LeftHandPinky1', Weight: 0.692649 +Vertex 2915: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.071215 + Group: 'LeftHandPinky1', Weight: 0.902154 +Vertex 2916: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.058137 + Group: 'LeftHandPinky1', Weight: 0.927450 +Vertex 2917: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.273577 + Group: 'LeftHandPinky1', Weight: 0.701255 +Vertex 2918: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.034655 + Group: 'LeftHand', Weight: 0.704517 + Group: 'LeftHandPinky1', Weight: 0.240802 +Vertex 2919: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.077048 + Group: 'LeftHand', Weight: 0.794616 + Group: 'LeftHandPinky1', Weight: 0.119115 +Vertex 2920: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.110418 + Group: 'LeftHand', Weight: 0.804639 + Group: 'LeftHandPinky1', Weight: 0.076444 +Vertex 2921: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.088048 + Group: 'LeftHand', Weight: 0.829988 + Group: 'LeftHandPinky1', Weight: 0.071197 +Vertex 2922: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.071048 + Group: 'LeftHand', Weight: 0.835841 + Group: 'LeftHandPinky1', Weight: 0.075436 +Vertex 2923: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.056431 + Group: 'LeftHand', Weight: 0.803190 + Group: 'LeftHandPinky1', Weight: 0.118059 +Vertex 2924: +Vertex groups: 3 + Group: 'LeftForeArm', Weight: 0.020276 + Group: 'LeftHand', Weight: 0.709848 + Group: 'LeftHandPinky1', Weight: 0.224643 +Vertex 2925: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.293493 + Group: 'LeftHandPinky1', Weight: 0.659999 +Vertex 2926: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.087406 + Group: 'LeftHandPinky1', Weight: 0.870599 +Vertex 2927: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.288131 + Group: 'LeftHandThumb1', Weight: 0.030871 + Group: 'LeftHandPinky1', Weight: 0.636076 +Vertex 2928: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.003454 + Group: 'LeftHand', Weight: 0.696282 + Group: 'LeftHandThumb1', Weight: 0.038842 + Group: 'LeftHandPinky1', Weight: 0.220406 +Vertex 2929: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.037364 + Group: 'LeftHand', Weight: 0.799619 + Group: 'LeftHandThumb1', Weight: 0.019752 + Group: 'LeftHandPinky1', Weight: 0.114821 +Vertex 2930: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.109102 + Group: 'LeftHandRing1', Weight: 0.033765 + Group: 'LeftHandPinky1', Weight: 0.806273 +Vertex 2931: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.021768 + Group: 'LeftHand', Weight: 0.813371 + Group: 'LeftHandThumb1', Weight: 0.069478 + Group: 'LeftHandPinky1', Weight: 0.071721 +Vertex 2932: +Vertex groups: 4 + Group: 'LeftForeArm', Weight: 0.018720 + Group: 'LeftHand', Weight: 0.781045 + Group: 'LeftHandThumb1', Weight: 0.145455 + Group: 'LeftHandPinky1', Weight: 0.010262 +Vertex 2933: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.706787 + Group: 'LeftHandThumb1', Weight: 0.099355 + Group: 'LeftHandPinky1', Weight: 0.151627 +Vertex 2934: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.630768 + Group: 'LeftHandThumb1', Weight: 0.278889 + Group: 'LeftHandPinky1', Weight: 0.052703 +Vertex 2935: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.521816 + Group: 'LeftHandThumb1', Weight: 0.117582 + Group: 'LeftHandRing1', Weight: 0.037185 + Group: 'LeftHandPinky1', Weight: 0.290663 +Vertex 2936: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.503803 + Group: 'LeftHandThumb1', Weight: 0.315431 + Group: 'LeftHandRing1', Weight: 0.004175 + Group: 'LeftHandPinky1', Weight: 0.105606 +Vertex 2937: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.763264 + Group: 'LeftHandThumb2', Weight: 0.218251 +Vertex 2938: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.903310 + Group: 'LeftHandThumb2', Weight: 0.065749 +Vertex 2939: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.036561 + Group: 'LeftHandThumb1', Weight: 0.912809 + Group: 'LeftHandThumb2', Weight: 0.013476 +Vertex 2940: +Vertex groups: 2 + Group: 'LeftHand', Weight: 0.084211 + Group: 'LeftHandThumb1', Weight: 0.875191 +Vertex 2941: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.021471 + Group: 'LeftHandThumb1', Weight: 0.854656 + Group: 'LeftHandThumb2', Weight: 0.080393 +Vertex 2942: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.039617 + Group: 'LeftHandThumb1', Weight: 0.901151 + Group: 'LeftHandThumb2', Weight: 0.029761 +Vertex 2943: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.864972 + Group: 'LeftHandThumb2', Weight: 0.093695 +Vertex 2944: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.732468 + Group: 'LeftHandThumb2', Weight: 0.235895 +Vertex 2945: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.864771 + Group: 'LeftHandThumb3_end', Weight: 0.129307 +Vertex 2946: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.823937 + Group: 'LeftHandThumb3_end', Weight: 0.155126 +Vertex 2947: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.821606 + Group: 'LeftHandThumb3_end', Weight: 0.151260 +Vertex 2948: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.818642 + Group: 'LeftHandThumb3_end', Weight: 0.162972 +Vertex 2949: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.844692 + Group: 'LeftHandThumb3_end', Weight: 0.143065 +Vertex 2950: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.851697 + Group: 'LeftHandThumb3_end', Weight: 0.142789 +Vertex 2951: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.885650 + Group: 'LeftHandThumb3_end', Weight: 0.108908 +Vertex 2952: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.989765 +Vertex 2953: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.854520 + Group: 'LeftHandThumb3_end', Weight: 0.130774 +Vertex 2954: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.011432 + Group: 'LeftHandThumb3_end', Weight: 0.968908 +Vertex 2955: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.055318 + Group: 'LeftHandThumb3_end', Weight: 0.943758 +Vertex 2956: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.068443 + Group: 'LeftHandThumb3_end', Weight: 0.929982 +Vertex 2957: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.065366 + Group: 'LeftHandThumb3_end', Weight: 0.932790 +Vertex 2958: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.061396 + Group: 'LeftHandThumb3_end', Weight: 0.937127 +Vertex 2959: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.048169 + Group: 'LeftHandThumb3_end', Weight: 0.950300 +Vertex 2960: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.054968 + Group: 'LeftHandThumb3_end', Weight: 0.944015 +Vertex 2961: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998594 +Vertex 2962: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997753 +Vertex 2963: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997187 +Vertex 2964: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.996244 +Vertex 2965: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.996890 +Vertex 2966: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997025 +Vertex 2967: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998508 +Vertex 2968: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998068 +Vertex 2969: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998001 +Vertex 2970: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.982082 +Vertex 2971: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.981532 +Vertex 2972: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.984962 +Vertex 2973: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.992677 +Vertex 2974: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.988402 +Vertex 2975: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998420 +Vertex 2976: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.983780 +Vertex 2977: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.985282 +Vertex 2978: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.993081 +Vertex 2979: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.993709 +Vertex 2980: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.997113 +Vertex 2981: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.993960 +Vertex 2982: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.995044 +Vertex 2983: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.991404 +Vertex 2984: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.996365 +Vertex 2985: +Vertex groups: 1 + Group: 'LeftHandThumb3_end', Weight: 0.998950 +Vertex 2986: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.124197 + Group: 'LeftHandThumb3_end', Weight: 0.874685 +Vertex 2987: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.189701 + Group: 'LeftHandThumb3_end', Weight: 0.807386 +Vertex 2988: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.205975 + Group: 'LeftHandThumb3_end', Weight: 0.789319 +Vertex 2989: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.202305 + Group: 'LeftHandThumb3_end', Weight: 0.791543 +Vertex 2990: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.193259 + Group: 'LeftHandThumb3_end', Weight: 0.801959 +Vertex 2991: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.180402 + Group: 'LeftHandThumb3_end', Weight: 0.816316 +Vertex 2992: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.122722 + Group: 'LeftHandThumb3_end', Weight: 0.876107 +Vertex 2993: +Vertex groups: 2 + Group: 'LeftHandThumb3', Weight: 0.085580 + Group: 'LeftHandThumb3_end', Weight: 0.913816 +Vertex 2994: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.068439 + Group: 'LeftHandThumb3', Weight: 0.918787 +Vertex 2995: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.098780 + Group: 'LeftHandThumb3', Weight: 0.856901 +Vertex 2996: +Vertex groups: 3 + Group: 'LeftHandThumb2', Weight: 0.115830 + Group: 'LeftHandThumb3', Weight: 0.839209 + Group: 'LeftHandThumb3_end', Weight: 0.009775 +Vertex 2997: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.100937 + Group: 'LeftHandThumb3', Weight: 0.868882 +Vertex 2998: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.083498 + Group: 'LeftHandThumb3', Weight: 0.893185 +Vertex 2999: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.055221 + Group: 'LeftHandThumb3', Weight: 0.927945 +Vertex 3000: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.066811 + Group: 'LeftHandThumb3', Weight: 0.923209 +Vertex 3001: +Vertex groups: 2 + Group: 'LeftHandThumb2', Weight: 0.089580 + Group: 'LeftHandThumb3', Weight: 0.881423 +Vertex 3002: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.003960 + Group: 'LeftHandThumb2', Weight: 0.831961 + Group: 'LeftHandThumb3', Weight: 0.118251 +Vertex 3003: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.067525 + Group: 'LeftHandThumb2', Weight: 0.675611 + Group: 'LeftHandThumb3', Weight: 0.144033 + Group: 'LeftHandIndex1', Weight: 0.096145 +Vertex 3004: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.056421 + Group: 'LeftHandThumb2', Weight: 0.747786 + Group: 'LeftHandThumb3', Weight: 0.157340 + Group: 'LeftHandIndex1', Weight: 0.004034 +Vertex 3005: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.072604 + Group: 'LeftHandThumb2', Weight: 0.786057 + Group: 'LeftHandThumb3', Weight: 0.125891 +Vertex 3006: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.061900 + Group: 'LeftHandThumb2', Weight: 0.809955 + Group: 'LeftHandThumb3', Weight: 0.120684 +Vertex 3007: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.019327 + Group: 'LeftHandThumb2', Weight: 0.854478 + Group: 'LeftHandThumb3', Weight: 0.106996 +Vertex 3008: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.004332 + Group: 'LeftHandThumb2', Weight: 0.889283 + Group: 'LeftHandThumb3', Weight: 0.078130 +Vertex 3009: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.059620 + Group: 'LeftHandThumb2', Weight: 0.723946 + Group: 'LeftHandThumb3', Weight: 0.116664 + Group: 'LeftHandIndex1', Weight: 0.091705 +Vertex 3010: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.106597 + Group: 'LeftHandThumb2', Weight: 0.715377 + Group: 'LeftHandThumb3', Weight: 0.054052 + Group: 'LeftHandIndex1', Weight: 0.117663 +Vertex 3011: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.107815 + Group: 'LeftHandThumb2', Weight: 0.816794 + Group: 'LeftHandThumb3', Weight: 0.013710 + Group: 'LeftHandIndex1', Weight: 0.030907 +Vertex 3012: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.168641 + Group: 'LeftHandThumb2', Weight: 0.806583 +Vertex 3013: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.175160 + Group: 'LeftHandThumb2', Weight: 0.791247 + Group: 'LeftHandThumb3', Weight: 0.007570 +Vertex 3014: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.239739 + Group: 'LeftHandThumb2', Weight: 0.711208 + Group: 'LeftHandThumb3', Weight: 0.027319 +Vertex 3015: +Vertex groups: 3 + Group: 'LeftHandThumb1', Weight: 0.261956 + Group: 'LeftHandThumb2', Weight: 0.667978 + Group: 'LeftHandThumb3', Weight: 0.036919 +Vertex 3016: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.220903 + Group: 'LeftHandThumb2', Weight: 0.639715 + Group: 'LeftHandThumb3', Weight: 0.038874 + Group: 'LeftHandIndex1', Weight: 0.067187 +Vertex 3017: +Vertex groups: 4 + Group: 'LeftHandThumb1', Weight: 0.172629 + Group: 'LeftHandThumb2', Weight: 0.582023 + Group: 'LeftHandThumb3', Weight: 0.058224 + Group: 'LeftHandIndex1', Weight: 0.149299 +Vertex 3018: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.442834 + Group: 'LeftHandThumb1', Weight: 0.291966 + Group: 'LeftHand', Weight: 0.102219 + Group: 'LeftHandThumb2', Weight: 0.093561 + Group: 'LeftHandMiddle1', Weight: 0.069420 +Vertex 3019: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.046188 + Group: 'LeftHandThumb1', Weight: 0.453428 + Group: 'LeftHandThumb2', Weight: 0.218234 + Group: 'LeftHandIndex1', Weight: 0.200821 + Group: 'LeftHandMiddle1', Weight: 0.003909 +Vertex 3020: +Vertex groups: 2 + Group: 'LeftHandThumb1', Weight: 0.655531 + Group: 'LeftHandThumb2', Weight: 0.292862 +Vertex 3021: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.004767 + Group: 'LeftHandThumb1', Weight: 0.703291 + Group: 'LeftHandThumb2', Weight: 0.200322 + Group: 'LeftHandIndex1', Weight: 0.024684 +Vertex 3022: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.472709 + Group: 'LeftHandThumb1', Weight: 0.179445 + Group: 'LeftHandPinky1', Weight: 0.127641 + Group: 'LeftHandRing1', Weight: 0.114974 + Group: 'LeftHandIndex1', Weight: 0.105231 +Vertex 3023: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.630340 + Group: 'LeftHandMiddle1', Weight: 0.184890 + Group: 'LeftHandThumb1', Weight: 0.066465 + Group: 'LeftHandThumb2', Weight: 0.063020 + Group: 'LeftHandRing1', Weight: 0.055285 +Vertex 3024: +Vertex groups: 5 + Group: 'LeftHandIndex1', Weight: 0.471119 + Group: 'LeftHandMiddle1', Weight: 0.202009 + Group: 'LeftHandThumb1', Weight: 0.120714 + Group: 'LeftHand', Weight: 0.106069 + Group: 'LeftHandRing1', Weight: 0.100089 +Vertex 3025: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.393230 + Group: 'LeftHandRing1', Weight: 0.272201 + Group: 'LeftHandIndex1', Weight: 0.189076 + Group: 'LeftHand', Weight: 0.089237 + Group: 'LeftHandPinky1', Weight: 0.056256 +Vertex 3026: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.402064 + Group: 'LeftHandIndex1', Weight: 0.326192 + Group: 'LeftHandRing1', Weight: 0.142281 + Group: 'LeftHand', Weight: 0.066755 + Group: 'LeftHandThumb1', Weight: 0.062708 +Vertex 3027: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.591673 + Group: 'LeftHandRing1', Weight: 0.193214 + Group: 'LeftHandIndex1', Weight: 0.189621 + Group: 'LeftHandMiddle2', Weight: 0.015204 + Group: 'LeftHand', Weight: 0.010288 +Vertex 3028: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.546629 + Group: 'LeftHandIndex1', Weight: 0.318600 + Group: 'LeftHandRing1', Weight: 0.112473 + Group: 'LeftHandMiddle2', Weight: 0.014698 + Group: 'LeftHandThumb1', Weight: 0.007600 +Vertex 3029: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.501641 + Group: 'LeftHandRing1', Weight: 0.318040 + Group: 'LeftHandIndex1', Weight: 0.107083 + Group: 'LeftHandPinky1', Weight: 0.048843 + Group: 'LeftHandRing2', Weight: 0.024392 +Vertex 3030: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.600907 + Group: 'LeftHandMiddle1', Weight: 0.180221 + Group: 'LeftHandPinky1', Weight: 0.108235 + Group: 'LeftHandRing2', Weight: 0.088622 + Group: 'LeftHandIndex1', Weight: 0.022014 +Vertex 3031: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.473754 + Group: 'LeftHandMiddle1', Weight: 0.309080 + Group: 'LeftHandRing2', Weight: 0.084046 + Group: 'LeftHandPinky1', Weight: 0.069126 + Group: 'LeftHandIndex1', Weight: 0.063993 +Vertex 3032: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.472121 + Group: 'LeftHandMiddle1', Weight: 0.240690 + Group: 'LeftHand', Weight: 0.102761 + Group: 'LeftHandIndex1', Weight: 0.099686 + Group: 'LeftHandPinky1', Weight: 0.084742 +Vertex 3033: +Vertex groups: 5 + Group: 'LeftHandRing1', Weight: 0.450187 + Group: 'LeftHandPinky1', Weight: 0.310954 + Group: 'LeftHand', Weight: 0.175835 + Group: 'LeftHandThumb1', Weight: 0.039725 + Group: 'LeftHandMiddle1', Weight: 0.023299 +Vertex 3034: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.339907 + Group: 'LeftHandRing1', Weight: 0.310780 + Group: 'LeftHandPinky1', Weight: 0.156825 + Group: 'LeftHandMiddle1', Weight: 0.105121 + Group: 'LeftHandThumb1', Weight: 0.087367 +Vertex 3035: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.222236 + Group: 'LeftHandThumb1', Weight: 0.063145 + Group: 'LeftHandIndex1', Weight: 0.003144 + Group: 'LeftHandRing1', Weight: 0.172624 + Group: 'LeftHandPinky1', Weight: 0.476157 +Vertex 3036: +Vertex groups: 3 + Group: 'LeftHand', Weight: 0.084499 + Group: 'LeftHandRing1', Weight: 0.112491 + Group: 'LeftHandPinky1', Weight: 0.738819 +Vertex 3037: +Vertex groups: 4 + Group: 'LeftHand', Weight: 0.043559 + Group: 'LeftHandRing1', Weight: 0.147759 + Group: 'LeftHandPinky1', Weight: 0.734000 + Group: 'LeftHandPinky2', Weight: 0.009107 +Vertex 3038: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.077805 + Group: 'LeftHandRing1', Weight: 0.605562 + Group: 'LeftHandRing2', Weight: 0.030378 + Group: 'LeftHandPinky1', Weight: 0.176057 + Group: 'LeftHandPinky2', Weight: 0.020286 +Vertex 3039: +Vertex groups: 5 + Group: 'LeftHandMiddle1', Weight: 0.041685 + Group: 'LeftHandRing1', Weight: 0.496783 + Group: 'LeftHandRing2', Weight: 0.015165 + Group: 'LeftHandPinky1', Weight: 0.316962 + Group: 'LeftHandPinky2', Weight: 0.058551 +Vertex 3040: +Vertex groups: 3 + Group: 'LeftHandRing1', Weight: 0.232041 + Group: 'LeftHandPinky1', Weight: 0.602925 + Group: 'LeftHandPinky2', Weight: 0.087236 +Vertex 3041: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.080658 + Group: 'LeftHandIndex1', Weight: 0.014617 + Group: 'LeftHandMiddle1', Weight: 0.070021 + Group: 'LeftHandRing1', Weight: 0.574352 + Group: 'LeftHandPinky1', Weight: 0.187265 +Vertex 3042: +Vertex groups: 5 + Group: 'LeftHand', Weight: 0.050026 + Group: 'LeftHandMiddle1', Weight: 0.042418 + Group: 'LeftHandRing1', Weight: 0.503093 + Group: 'LeftHandPinky1', Weight: 0.316594 + Group: 'LeftHandPinky2', Weight: 0.005787 +Vertex 3043: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.961144 +Vertex 3044: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.079314 + Group: 'RightHandMiddle1', Weight: 0.864207 + Group: 'RightHandRing1', Weight: 0.006270 +Vertex 3045: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.996803 +Vertex 3046: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.916781 + Group: 'RightHandRing3', Weight: 0.080321 +Vertex 3047: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.004176 + Group: 'RightHandMiddle1', Weight: 0.832676 + Group: 'RightHandRing1', Weight: 0.099487 +Vertex 3048: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.010773 + Group: 'RightHandRing3_end', Weight: 0.968991 +Vertex 3049: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.926789 + Group: 'RightHandMiddle1', Weight: 0.026740 +Vertex 3050: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.675355 + Group: 'RightHandRing1', Weight: 0.251954 + Group: 'RightHandRing2', Weight: 0.007415 +Vertex 3051: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.724034 + Group: 'RightHandMiddle1', Weight: 0.246280 +Vertex 3052: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.901014 + Group: 'RightHandMiddle1', Weight: 0.079121 +Vertex 3053: +Vertex groups: 1 + Group: 'RightHandIndex1', Weight: 0.953615 +Vertex 3054: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.756794 + Group: 'RightHandIndex2', Weight: 0.102535 + Group: 'RightHandMiddle1', Weight: 0.105404 + Group: 'RightHandMiddle2', Weight: 0.014367 +Vertex 3055: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.895303 + Group: 'RightHandIndex2', Weight: 0.091148 +Vertex 3056: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.830780 + Group: 'RightHandIndex2', Weight: 0.127732 + Group: 'RightHandMiddle1', Weight: 0.010706 +Vertex 3057: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.706081 + Group: 'RightHandMiddle2', Weight: 0.112648 + Group: 'RightHandRing1', Weight: 0.078145 + Group: 'RightHandRing2', Weight: 0.094077 +Vertex 3058: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.045479 + Group: 'RightHandMiddle1', Weight: 0.825124 + Group: 'RightHandMiddle2', Weight: 0.098428 +Vertex 3059: +Vertex groups: 2 + Group: 'RightHandMiddle1', Weight: 0.796882 + Group: 'RightHandMiddle2', Weight: 0.137228 +Vertex 3060: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.101742 + Group: 'RightHandRing1', Weight: 0.799621 + Group: 'RightHandRing2', Weight: 0.057789 +Vertex 3061: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.026949 + Group: 'RightHandRing1', Weight: 0.812280 + Group: 'RightHandRing2', Weight: 0.053016 + Group: 'RightHandPinky1', Weight: 0.066133 +Vertex 3062: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.700170 + Group: 'RightHandRing2', Weight: 0.049787 + Group: 'RightHandPinky1', Weight: 0.173052 + Group: 'RightHandPinky2', Weight: 0.055351 +Vertex 3063: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.594477 + Group: 'RightHandRing2', Weight: 0.259806 + Group: 'RightHandPinky2', Weight: 0.128834 +Vertex 3064: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.035733 + Group: 'RightHandRing1', Weight: 0.678802 + Group: 'RightHandRing2', Weight: 0.257654 +Vertex 3065: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.524783 + Group: 'RightHandRing2', Weight: 0.427346 + Group: 'RightHandPinky2', Weight: 0.003714 +Vertex 3066: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.094157 + Group: 'RightHandPinky1', Weight: 0.797338 + Group: 'RightHandPinky2', Weight: 0.103838 +Vertex 3067: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.017336 + Group: 'RightHandPinky1', Weight: 0.875194 + Group: 'RightHandPinky2', Weight: 0.088046 +Vertex 3068: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.895000 + Group: 'RightHandPinky2', Weight: 0.093705 +Vertex 3069: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.073179 + Group: 'RightHandIndex2', Weight: 0.827924 + Group: 'RightHandMiddle2', Weight: 0.066348 +Vertex 3070: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.092126 + Group: 'RightHandPinky2', Weight: 0.892565 +Vertex 3071: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.094763 + Group: 'RightHandRing2', Weight: 0.020521 + Group: 'RightHandPinky1', Weight: 0.098711 + Group: 'RightHandPinky2', Weight: 0.759145 +Vertex 3072: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.001653 + Group: 'RightHandPinky1', Weight: 0.091054 + Group: 'RightHandPinky2', Weight: 0.868760 +Vertex 3073: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.103200 + Group: 'RightHandIndex1', Weight: 0.005483 + Group: 'RightHandMiddle1', Weight: 0.768852 + Group: 'RightHandRing1', Weight: 0.089124 +Vertex 3074: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.018868 + Group: 'RightHandMiddle1', Weight: 0.031084 + Group: 'RightHandRing1', Weight: 0.749953 + Group: 'RightHandPinky1', Weight: 0.162659 +Vertex 3075: +Vertex groups: 1 + Group: 'RightHandPinky1', Weight: 0.972528 +Vertex 3076: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.361243 + Group: 'RightHandMiddle1', Weight: 0.600931 +Vertex 3077: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.576856 + Group: 'RightHandIndex2', Weight: 0.104348 + Group: 'RightHandMiddle1', Weight: 0.234890 + Group: 'RightHandMiddle2', Weight: 0.078765 +Vertex 3078: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.146314 + Group: 'RightHandMiddle1', Weight: 0.806381 +Vertex 3079: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.156428 + Group: 'RightHandIndex2', Weight: 0.036237 + Group: 'RightHandMiddle1', Weight: 0.643693 + Group: 'RightHandMiddle2', Weight: 0.148355 +Vertex 3080: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.478082 + Group: 'RightHandMiddle2', Weight: 0.099622 + Group: 'RightHandRing1', Weight: 0.171227 + Group: 'RightHandRing2', Weight: 0.244810 +Vertex 3081: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.367474 + Group: 'RightHandRing1', Weight: 0.553628 + Group: 'RightHandRing2', Weight: 0.024558 +Vertex 3082: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.113147 + Group: 'RightHandMiddle2', Weight: 0.003676 + Group: 'RightHandRing1', Weight: 0.448717 + Group: 'RightHandRing2', Weight: 0.405731 +Vertex 3083: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.190052 + Group: 'RightHandRing1', Weight: 0.731745 + Group: 'RightHandRing2', Weight: 0.023948 +Vertex 3084: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.554808 + Group: 'RightHandRing2', Weight: 0.176592 + Group: 'RightHandPinky1', Weight: 0.048500 + Group: 'RightHandPinky2', Weight: 0.207195 +Vertex 3085: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.496074 + Group: 'RightHandPinky1', Weight: 0.373335 + Group: 'RightHandPinky2', Weight: 0.091979 +Vertex 3086: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.205126 + Group: 'RightHandRing2', Weight: 0.086642 + Group: 'RightHandPinky1', Weight: 0.043072 + Group: 'RightHandPinky2', Weight: 0.643682 +Vertex 3087: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.198991 + Group: 'RightHandPinky1', Weight: 0.663112 + Group: 'RightHandPinky2', Weight: 0.120468 +Vertex 3088: +Vertex groups: 1 + Group: 'RightHandIndex1', Weight: 0.941093 +Vertex 3089: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.859444 + Group: 'RightHandIndex2', Weight: 0.128692 +Vertex 3090: +Vertex groups: 3 + Group: 'RightHandThumb2', Weight: 0.005431 + Group: 'RightHandIndex1', Weight: 0.895989 + Group: 'RightHandIndex2', Weight: 0.030899 +Vertex 3091: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.786437 + Group: 'RightHandIndex2', Weight: 0.189461 +Vertex 3092: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.030779 + Group: 'RightHandIndex3', Weight: 0.921718 + Group: 'RightHandIndex3_end', Weight: 0.024483 +Vertex 3093: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.022027 + Group: 'RightHandIndex2', Weight: 0.940445 +Vertex 3094: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.026345 + Group: 'RightHandIndex3_end', Weight: 0.960167 +Vertex 3095: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.951110 + Group: 'RightHandIndex3', Weight: 0.022470 +Vertex 3096: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.978680 +Vertex 3097: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.009931 + Group: 'RightHandIndex3_end', Weight: 0.968878 +Vertex 3098: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.976839 +Vertex 3099: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.014381 + Group: 'RightHandIndex3_end', Weight: 0.966651 +Vertex 3100: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.020079 + Group: 'RightHandIndex3_end', Weight: 0.963460 +Vertex 3101: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.034454 + Group: 'RightHandIndex3_end', Weight: 0.955936 +Vertex 3102: +Vertex groups: 2 + Group: 'RightHandIndex3', Weight: 0.051876 + Group: 'RightHandIndex3_end', Weight: 0.945622 +Vertex 3103: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998865 +Vertex 3104: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998914 +Vertex 3105: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998945 +Vertex 3106: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.997610 +Vertex 3107: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.995846 +Vertex 3108: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.995655 +Vertex 3109: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.994551 +Vertex 3110: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999324 +Vertex 3111: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999392 +Vertex 3112: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999409 +Vertex 3113: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999387 +Vertex 3114: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999306 +Vertex 3115: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999198 +Vertex 3116: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999251 +Vertex 3117: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999237 +Vertex 3118: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999332 +Vertex 3119: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998793 +Vertex 3120: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999360 +Vertex 3121: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999454 +Vertex 3122: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999365 +Vertex 3123: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998193 +Vertex 3124: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998763 +Vertex 3125: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998087 +Vertex 3126: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.997835 +Vertex 3127: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.020529 + Group: 'RightHandIndex3', Weight: 0.929550 + Group: 'RightHandIndex3_end', Weight: 0.019653 +Vertex 3128: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.024514 + Group: 'RightHandIndex3', Weight: 0.932568 + Group: 'RightHandIndex3_end', Weight: 0.009426 +Vertex 3129: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.009839 + Group: 'RightHandIndex3', Weight: 0.936852 + Group: 'RightHandIndex3_end', Weight: 0.015214 +Vertex 3130: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.013788 + Group: 'RightHandIndex3', Weight: 0.937028 + Group: 'RightHandIndex3_end', Weight: 0.010318 +Vertex 3131: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.021471 + Group: 'RightHandIndex3', Weight: 0.925467 + Group: 'RightHandIndex3_end', Weight: 0.024998 +Vertex 3132: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.027469 + Group: 'RightHandIndex3', Weight: 0.914095 + Group: 'RightHandIndex3_end', Weight: 0.041835 +Vertex 3133: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.053458 + Group: 'RightHandIndex3', Weight: 0.914094 + Group: 'RightHandIndex3_end', Weight: 0.010212 +Vertex 3134: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999188 +Vertex 3135: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999485 +Vertex 3136: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998919 +Vertex 3137: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998848 +Vertex 3138: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.998807 +Vertex 3139: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999417 +Vertex 3140: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999424 +Vertex 3141: +Vertex groups: 1 + Group: 'RightHandIndex3_end', Weight: 0.999149 +Vertex 3142: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.924654 + Group: 'RightHandIndex3', Weight: 0.037408 +Vertex 3143: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.101761 + Group: 'RightHandIndex2', Weight: 0.890169 +Vertex 3144: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.951497 + Group: 'RightHandIndex3', Weight: 0.030679 +Vertex 3145: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.156336 + Group: 'RightHandIndex2', Weight: 0.835498 +Vertex 3146: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.937698 + Group: 'RightHandIndex3', Weight: 0.051049 +Vertex 3147: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.930653 + Group: 'RightHandIndex3', Weight: 0.046995 +Vertex 3148: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.195731 + Group: 'RightHandIndex2', Weight: 0.786791 +Vertex 3149: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.901474 + Group: 'RightHandIndex3', Weight: 0.071985 +Vertex 3150: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.884188 + Group: 'RightHandIndex3', Weight: 0.082870 +Vertex 3151: +Vertex groups: 2 + Group: 'RightHandIndex2', Weight: 0.883156 + Group: 'RightHandIndex3', Weight: 0.066016 +Vertex 3152: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.166032 + Group: 'RightHandIndex2', Weight: 0.717293 + Group: 'RightHandMiddle1', Weight: 0.032811 + Group: 'RightHandMiddle2', Weight: 0.070179 +Vertex 3153: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.345534 + Group: 'RightHandIndex2', Weight: 0.305144 + Group: 'RightHandMiddle1', Weight: 0.117473 + Group: 'RightHandMiddle2', Weight: 0.224606 +Vertex 3154: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.108829 + Group: 'RightHandIndex2', Weight: 0.087345 + Group: 'RightHandMiddle1', Weight: 0.171174 + Group: 'RightHandMiddle2', Weight: 0.624306 +Vertex 3155: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.020932 + Group: 'RightHandIndex2', Weight: 0.007622 + Group: 'RightHandMiddle1', Weight: 0.104423 + Group: 'RightHandMiddle2', Weight: 0.820482 +Vertex 3156: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.253824 + Group: 'RightHandIndex2', Weight: 0.369811 + Group: 'RightHandMiddle1', Weight: 0.070225 + Group: 'RightHandMiddle2', Weight: 0.292543 +Vertex 3157: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.118107 + Group: 'RightHandIndex2', Weight: 0.155045 + Group: 'RightHandMiddle1', Weight: 0.079386 + Group: 'RightHandMiddle2', Weight: 0.631971 +Vertex 3158: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.058196 + Group: 'RightHandIndex2', Weight: 0.077282 + Group: 'RightHandMiddle1', Weight: 0.039438 + Group: 'RightHandMiddle2', Weight: 0.784700 + Group: 'RightHandMiddle3', Weight: 0.004505 +Vertex 3159: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.116635 + Group: 'RightHandIndex2', Weight: 0.857041 +Vertex 3160: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.006088 + Group: 'RightHandIndex2', Weight: 0.958566 +Vertex 3161: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.037695 + Group: 'RightHandIndex2', Weight: 0.939797 +Vertex 3162: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.070441 + Group: 'RightHandIndex2', Weight: 0.905374 +Vertex 3163: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.085928 + Group: 'RightHandIndex2', Weight: 0.872721 +Vertex 3164: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.082216 + Group: 'RightHandIndex2', Weight: 0.843388 + Group: 'RightHandIndex3', Weight: 0.008500 + Group: 'RightHandMiddle2', Weight: 0.004204 +Vertex 3165: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.117023 + Group: 'RightHandIndex2', Weight: 0.710392 + Group: 'RightHandMiddle1', Weight: 0.018026 + Group: 'RightHandMiddle2', Weight: 0.110121 +Vertex 3166: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.211927 + Group: 'RightHandIndex2', Weight: 0.748088 +Vertex 3167: +Vertex groups: 2 + Group: 'RightHandIndex1', Weight: 0.724543 + Group: 'RightHandIndex2', Weight: 0.221474 +Vertex 3168: +Vertex groups: 4 + Group: 'RightHandThumb2', Weight: 0.016803 + Group: 'RightHandIndex1', Weight: 0.844458 + Group: 'RightHandIndex2', Weight: 0.041403 + Group: 'RightHandMiddle1', Weight: 0.012952 +Vertex 3169: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.227119 + Group: 'RightHandIndex2', Weight: 0.662669 + Group: 'RightHandMiddle1', Weight: 0.017945 + Group: 'RightHandMiddle2', Weight: 0.054340 +Vertex 3170: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.643107 + Group: 'RightHandIndex2', Weight: 0.202378 + Group: 'RightHandMiddle1', Weight: 0.068227 + Group: 'RightHandMiddle2', Weight: 0.056653 +Vertex 3171: +Vertex groups: 3 + Group: 'RightHandIndex1', Weight: 0.751535 + Group: 'RightHandIndex2', Weight: 0.055159 + Group: 'RightHandMiddle1', Weight: 0.106111 +Vertex 3172: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.211761 + Group: 'RightHandIndex2', Weight: 0.391715 + Group: 'RightHandMiddle1', Weight: 0.066050 + Group: 'RightHandMiddle2', Weight: 0.307512 +Vertex 3173: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.120688 + Group: 'RightHandIndex2', Weight: 0.179526 + Group: 'RightHandMiddle1', Weight: 0.071199 + Group: 'RightHandMiddle2', Weight: 0.602520 +Vertex 3174: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.258808 + Group: 'RightHandIndex2', Weight: 0.326449 + Group: 'RightHandMiddle1', Weight: 0.102131 + Group: 'RightHandMiddle2', Weight: 0.283657 +Vertex 3175: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.148862 + Group: 'RightHandIndex2', Weight: 0.159328 + Group: 'RightHandMiddle1', Weight: 0.142504 + Group: 'RightHandMiddle2', Weight: 0.514634 +Vertex 3176: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.268659 + Group: 'RightHandIndex2', Weight: 0.461729 + Group: 'RightHandMiddle1', Weight: 0.074971 + Group: 'RightHandMiddle2', Weight: 0.167785 +Vertex 3177: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.440337 + Group: 'RightHandIndex2', Weight: 0.188379 + Group: 'RightHandMiddle1', Weight: 0.150343 + Group: 'RightHandMiddle2', Weight: 0.183625 +Vertex 3178: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.626837 + Group: 'RightHandIndex2', Weight: 0.044297 + Group: 'RightHandMiddle1', Weight: 0.206907 + Group: 'RightHandMiddle2', Weight: 0.033360 + Group: 'RightHandRing1', Weight: 0.018085 +Vertex 3179: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.137581 + Group: 'RightHandMiddle3_end', Weight: 0.861932 +Vertex 3180: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.102356 + Group: 'RightHandMiddle3', Weight: 0.896147 +Vertex 3181: +Vertex groups: 1 + Group: 'RightHandMiddle3', Weight: 0.981317 +Vertex 3182: +Vertex groups: 2 + Group: 'RightHandMiddle1', Weight: 0.037112 + Group: 'RightHandMiddle2', Weight: 0.922387 +Vertex 3183: +Vertex groups: 1 + Group: 'RightHandMiddle3', Weight: 0.978895 +Vertex 3184: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.970930 + Group: 'RightHandMiddle3_end', Weight: 0.002839 +Vertex 3185: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.965330 + Group: 'RightHandMiddle3_end', Weight: 0.013385 +Vertex 3186: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.958114 + Group: 'RightHandMiddle3_end', Weight: 0.026633 +Vertex 3187: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.956384 + Group: 'RightHandMiddle3_end', Weight: 0.026951 +Vertex 3188: +Vertex groups: 1 + Group: 'RightHandMiddle3', Weight: 0.972187 +Vertex 3189: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.962478 + Group: 'RightHandMiddle3_end', Weight: 0.015537 +Vertex 3190: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.041360 + Group: 'RightHandMiddle3_end', Weight: 0.954189 +Vertex 3191: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.038917 + Group: 'RightHandMiddle3_end', Weight: 0.955403 +Vertex 3192: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.057148 + Group: 'RightHandMiddle3_end', Weight: 0.942651 +Vertex 3193: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.067139 + Group: 'RightHandMiddle3_end', Weight: 0.932580 +Vertex 3194: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.077175 + Group: 'RightHandMiddle3_end', Weight: 0.922447 +Vertex 3195: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.073052 + Group: 'RightHandMiddle3_end', Weight: 0.926625 +Vertex 3196: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.081525 + Group: 'RightHandMiddle3_end', Weight: 0.918080 +Vertex 3197: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993543 +Vertex 3198: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.994352 +Vertex 3199: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.994356 +Vertex 3200: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993193 +Vertex 3201: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993135 +Vertex 3202: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.991592 +Vertex 3203: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.991946 +Vertex 3204: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.992567 +Vertex 3205: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993878 +Vertex 3206: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.004840 + Group: 'RightHandMiddle3_end', Weight: 0.972463 +Vertex 3207: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.978771 +Vertex 3208: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.985766 +Vertex 3209: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.987813 +Vertex 3210: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.001111 + Group: 'RightHandMiddle3_end', Weight: 0.974336 +Vertex 3211: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.031972 + Group: 'RightHandMiddle3_end', Weight: 0.958865 +Vertex 3212: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.012543 + Group: 'RightHandMiddle3_end', Weight: 0.968582 +Vertex 3213: +Vertex groups: 2 + Group: 'RightHandMiddle3', Weight: 0.009630 + Group: 'RightHandMiddle3_end', Weight: 0.970047 +Vertex 3214: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.080998 + Group: 'RightHandMiddle3', Weight: 0.916876 +Vertex 3215: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.083573 + Group: 'RightHandMiddle3', Weight: 0.912668 +Vertex 3216: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.075521 + Group: 'RightHandMiddle3', Weight: 0.920114 +Vertex 3217: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.086212 + Group: 'RightHandMiddle3', Weight: 0.910393 +Vertex 3218: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.180778 + Group: 'RightHandMiddle3', Weight: 0.816223 +Vertex 3219: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.184557 + Group: 'RightHandMiddle3', Weight: 0.813850 +Vertex 3220: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.703353 + Group: 'RightHandMiddle3', Weight: 0.294577 +Vertex 3221: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.987498 +Vertex 3222: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.992839 +Vertex 3223: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.987322 +Vertex 3224: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.984703 +Vertex 3225: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.986362 +Vertex 3226: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.988911 +Vertex 3227: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.993858 +Vertex 3228: +Vertex groups: 1 + Group: 'RightHandMiddle3_end', Weight: 0.988340 +Vertex 3229: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.071326 + Group: 'RightHandMiddle2', Weight: 0.839115 + Group: 'RightHandRing2', Weight: 0.066800 +Vertex 3230: +Vertex groups: 3 + Group: 'RightHandIndex2', Weight: 0.007890 + Group: 'RightHandMiddle1', Weight: 0.015923 + Group: 'RightHandMiddle2', Weight: 0.892028 +Vertex 3231: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.160671 + Group: 'RightHandMiddle2', Weight: 0.708949 + Group: 'RightHandRing2', Weight: 0.100240 +Vertex 3232: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.075480 + Group: 'RightHandIndex2', Weight: 0.079077 + Group: 'RightHandMiddle1', Weight: 0.076034 + Group: 'RightHandMiddle2', Weight: 0.729817 +Vertex 3233: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.009040 + Group: 'RightHandMiddle1', Weight: 0.042218 + Group: 'RightHandMiddle2', Weight: 0.837432 + Group: 'RightHandMiddle3', Weight: 0.005174 + Group: 'RightHandRing2', Weight: 0.003379 +Vertex 3234: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.048119 + Group: 'RightHandMiddle2', Weight: 0.786672 + Group: 'RightHandRing2', Weight: 0.108031 +Vertex 3235: +Vertex groups: 3 + Group: 'RightHandMiddle1', Weight: 0.050176 + Group: 'RightHandMiddle2', Weight: 0.825981 + Group: 'RightHandRing2', Weight: 0.089539 +Vertex 3236: +Vertex groups: 2 + Group: 'RightHandRing1', Weight: 0.055068 + Group: 'RightHandRing2', Weight: 0.919817 +Vertex 3237: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.963638 +Vertex 3238: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.970439 +Vertex 3239: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.963433 + Group: 'RightHandRing3_end', Weight: 0.012751 +Vertex 3240: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.954063 + Group: 'RightHandRing3_end', Weight: 0.023507 +Vertex 3241: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.947665 + Group: 'RightHandRing3_end', Weight: 0.019591 +Vertex 3242: +Vertex groups: 1 + Group: 'RightHandRing3', Weight: 0.956416 +Vertex 3243: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.952095 + Group: 'RightHandRing3_end', Weight: 0.008621 +Vertex 3244: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.017254 + Group: 'RightHandRing3_end', Weight: 0.965856 +Vertex 3245: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.005255 + Group: 'RightHandRing3_end', Weight: 0.972380 +Vertex 3246: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.019301 + Group: 'RightHandRing3_end', Weight: 0.965137 +Vertex 3247: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.025756 + Group: 'RightHandRing3_end', Weight: 0.961646 +Vertex 3248: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.033793 + Group: 'RightHandRing3_end', Weight: 0.957389 +Vertex 3249: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.019416 + Group: 'RightHandRing3_end', Weight: 0.964613 +Vertex 3250: +Vertex groups: 2 + Group: 'RightHandRing3', Weight: 0.039520 + Group: 'RightHandRing3_end', Weight: 0.954405 +Vertex 3251: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.998053 +Vertex 3252: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997922 +Vertex 3253: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997941 +Vertex 3254: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997639 +Vertex 3255: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997849 +Vertex 3256: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997580 +Vertex 3257: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997959 +Vertex 3258: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997931 +Vertex 3259: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.998068 +Vertex 3260: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.989497 +Vertex 3261: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.991332 +Vertex 3262: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.993024 +Vertex 3263: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.993362 +Vertex 3264: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.992005 +Vertex 3265: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.989672 +Vertex 3266: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.988410 +Vertex 3267: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.989868 +Vertex 3268: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.796153 + Group: 'RightHandRing3', Weight: 0.201451 +Vertex 3269: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.250685 + Group: 'RightHandRing3', Weight: 0.745983 +Vertex 3270: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.137594 + Group: 'RightHandRing3', Weight: 0.858122 +Vertex 3271: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.197102 + Group: 'RightHandRing3', Weight: 0.799076 +Vertex 3272: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.800553 + Group: 'RightHandRing3', Weight: 0.194713 +Vertex 3273: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.932855 + Group: 'RightHandRing3', Weight: 0.063475 +Vertex 3274: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.929000 + Group: 'RightHandRing3', Weight: 0.066333 +Vertex 3275: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996206 +Vertex 3276: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996838 +Vertex 3277: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996772 +Vertex 3278: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.995487 +Vertex 3279: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996262 +Vertex 3280: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.995931 +Vertex 3281: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.997224 +Vertex 3282: +Vertex groups: 1 + Group: 'RightHandRing3_end', Weight: 0.996690 +Vertex 3283: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.073411 + Group: 'RightHandRing2', Weight: 0.885847 + Group: 'RightHandPinky2', Weight: 0.007908 +Vertex 3284: +Vertex groups: 3 + Group: 'RightHandMiddle2', Weight: 0.003868 + Group: 'RightHandRing1', Weight: 0.010704 + Group: 'RightHandRing2', Weight: 0.914407 +Vertex 3285: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.024889 + Group: 'RightHandMiddle2', Weight: 0.066767 + Group: 'RightHandRing1', Weight: 0.000001 + Group: 'RightHandRing2', Weight: 0.853748 +Vertex 3286: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.026878 + Group: 'RightHandMiddle2', Weight: 0.125034 + Group: 'RightHandRing1', Weight: 0.024427 + Group: 'RightHandRing2', Weight: 0.766218 +Vertex 3287: +Vertex groups: 4 + Group: 'RightHandMiddle2', Weight: 0.009060 + Group: 'RightHandRing1', Weight: 0.011881 + Group: 'RightHandRing2', Weight: 0.889081 + Group: 'RightHandRing3', Weight: 0.000729 +Vertex 3288: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.213756 + Group: 'RightHandRing2', Weight: 0.585964 + Group: 'RightHandPinky2', Weight: 0.145088 +Vertex 3289: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.100725 + Group: 'RightHandRing2', Weight: 0.812298 + Group: 'RightHandPinky2', Weight: 0.066560 +Vertex 3290: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.910966 + Group: 'RightHandPinky3_end', Weight: 0.082540 +Vertex 3291: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.068683 + Group: 'RightHandPinky3', Weight: 0.926304 +Vertex 3292: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.134959 + Group: 'RightHandPinky3_end', Weight: 0.864339 +Vertex 3293: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.941596 + Group: 'RightHandPinky3_end', Weight: 0.054444 +Vertex 3294: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.937982 + Group: 'RightHandPinky3_end', Weight: 0.056142 +Vertex 3295: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.878198 + Group: 'RightHandPinky3_end', Weight: 0.116343 +Vertex 3296: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.701742 + Group: 'RightHandPinky3_end', Weight: 0.291773 +Vertex 3297: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.575826 + Group: 'RightHandPinky3_end', Weight: 0.422416 +Vertex 3298: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.937470 + Group: 'RightHandPinky3_end', Weight: 0.060248 +Vertex 3299: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.870083 + Group: 'RightHandPinky3_end', Weight: 0.127647 +Vertex 3300: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.087884 + Group: 'RightHandPinky3_end', Weight: 0.911700 +Vertex 3301: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.064769 + Group: 'RightHandPinky3_end', Weight: 0.934832 +Vertex 3302: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.058789 + Group: 'RightHandPinky3_end', Weight: 0.940798 +Vertex 3303: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.066531 + Group: 'RightHandPinky3_end', Weight: 0.932877 +Vertex 3304: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.023414 + Group: 'RightHandPinky3_end', Weight: 0.963058 +Vertex 3305: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.045702 + Group: 'RightHandPinky3_end', Weight: 0.951968 +Vertex 3306: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.030416 + Group: 'RightHandPinky3_end', Weight: 0.959648 +Vertex 3307: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993444 +Vertex 3308: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991805 +Vertex 3309: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991934 +Vertex 3310: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.990583 +Vertex 3311: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991565 +Vertex 3312: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993108 +Vertex 3313: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.994442 +Vertex 3314: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.994364 +Vertex 3315: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993267 +Vertex 3316: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.003946 + Group: 'RightHandPinky3_end', Weight: 0.972803 +Vertex 3317: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.978330 +Vertex 3318: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.976838 +Vertex 3319: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.002898 + Group: 'RightHandPinky3_end', Weight: 0.973413 +Vertex 3320: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.990482 +Vertex 3321: +Vertex groups: 2 + Group: 'RightHandPinky3', Weight: 0.020807 + Group: 'RightHandPinky3_end', Weight: 0.964413 +Vertex 3322: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.987623 +Vertex 3323: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.991251 +Vertex 3324: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.070437 + Group: 'RightHandPinky3', Weight: 0.921903 +Vertex 3325: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.055664 + Group: 'RightHandPinky3', Weight: 0.931101 +Vertex 3326: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.061731 + Group: 'RightHandPinky3', Weight: 0.923582 +Vertex 3327: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.070424 + Group: 'RightHandPinky3', Weight: 0.910502 +Vertex 3328: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.050642 + Group: 'RightHandPinky3', Weight: 0.933315 +Vertex 3329: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.063967 + Group: 'RightHandPinky3', Weight: 0.932015 +Vertex 3330: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.043334 + Group: 'RightHandPinky3', Weight: 0.947054 +Vertex 3331: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.985981 +Vertex 3332: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.987722 +Vertex 3333: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.995220 +Vertex 3334: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.993215 +Vertex 3335: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.996278 +Vertex 3336: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.987442 +Vertex 3337: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.986772 +Vertex 3338: +Vertex groups: 1 + Group: 'RightHandPinky3_end', Weight: 0.989282 +Vertex 3339: +Vertex groups: 2 + Group: 'RightHandMiddle1', Weight: 0.141192 + Group: 'RightHandMiddle2', Weight: 0.818715 +Vertex 3340: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.277453 + Group: 'RightHandMiddle2', Weight: 0.298310 + Group: 'RightHandRing1', Weight: 0.091685 + Group: 'RightHandRing2', Weight: 0.326250 +Vertex 3341: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.108662 + Group: 'RightHandMiddle2', Weight: 0.081688 + Group: 'RightHandRing1', Weight: 0.104137 + Group: 'RightHandRing2', Weight: 0.700981 +Vertex 3342: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.205234 + Group: 'RightHandIndex2', Weight: 0.104691 + Group: 'RightHandMiddle1', Weight: 0.296335 + Group: 'RightHandMiddle2', Weight: 0.336607 +Vertex 3343: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.277548 + Group: 'RightHandIndex2', Weight: 0.009587 + Group: 'RightHandMiddle1', Weight: 0.488728 + Group: 'RightHandMiddle2', Weight: 0.071798 + Group: 'RightHandRing1', Weight: 0.073689 +Vertex 3344: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.075531 + Group: 'RightHandIndex2', Weight: 0.026533 + Group: 'RightHandMiddle1', Weight: 0.135021 + Group: 'RightHandMiddle2', Weight: 0.658132 + Group: 'RightHandRing2', Weight: 0.057435 +Vertex 3345: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.311550 + Group: 'RightHandIndex2', Weight: 0.246492 + Group: 'RightHandMiddle1', Weight: 0.146032 + Group: 'RightHandMiddle2', Weight: 0.260769 +Vertex 3346: +Vertex groups: 4 + Group: 'RightHandIndex1', Weight: 0.208681 + Group: 'RightHandIndex2', Weight: 0.167323 + Group: 'RightHandMiddle1', Weight: 0.200293 + Group: 'RightHandMiddle2', Weight: 0.382437 +Vertex 3347: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.070630 + Group: 'RightHandMiddle2', Weight: 0.602759 + Group: 'RightHandRing1', Weight: 0.040906 + Group: 'RightHandRing2', Weight: 0.248754 +Vertex 3348: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.072482 + Group: 'RightHandMiddle2', Weight: 0.266712 + Group: 'RightHandRing1', Weight: 0.081367 + Group: 'RightHandRing2', Weight: 0.557236 +Vertex 3349: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.010504 + Group: 'RightHandMiddle1', Weight: 0.108896 + Group: 'RightHandMiddle2', Weight: 0.594694 + Group: 'RightHandRing1', Weight: 0.037023 + Group: 'RightHandRing2', Weight: 0.191423 +Vertex 3350: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.462181 + Group: 'RightHandRing1', Weight: 0.259955 + Group: 'RightHandMiddle2', Weight: 0.101560 + Group: 'RightHandRing2', Weight: 0.091944 + Group: 'RightHandIndex1', Weight: 0.084359 +Vertex 3351: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.061542 + Group: 'RightHandMiddle2', Weight: 0.184247 + Group: 'RightHandRing1', Weight: 0.062815 + Group: 'RightHandRing2', Weight: 0.649981 +Vertex 3352: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.466027 + Group: 'RightHandMiddle1', Weight: 0.277324 + Group: 'RightHandRing2', Weight: 0.139145 + Group: 'RightHandMiddle2', Weight: 0.068554 + Group: 'RightHandIndex1', Weight: 0.048950 +Vertex 3353: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.111677 + Group: 'RightHandMiddle2', Weight: 0.539604 + Group: 'RightHandRing1', Weight: 0.034880 + Group: 'RightHandRing2', Weight: 0.259963 +Vertex 3354: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.103424 + Group: 'RightHandMiddle2', Weight: 0.391408 + Group: 'RightHandRing1', Weight: 0.045192 + Group: 'RightHandRing2', Weight: 0.414498 +Vertex 3355: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.325443 + Group: 'RightHandRing2', Weight: 0.400993 + Group: 'RightHandPinky2', Weight: 0.233707 +Vertex 3356: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.146427 + Group: 'RightHandRing2', Weight: 0.182484 + Group: 'RightHandPinky2', Weight: 0.601928 + Group: 'RightHandPinky3', Weight: 0.036264 +Vertex 3357: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.054029 + Group: 'RightHandRing1', Weight: 0.489362 + Group: 'RightHandRing2', Weight: 0.133465 + Group: 'RightHandPinky1', Weight: 0.196825 + Group: 'RightHandPinky2', Weight: 0.084558 +Vertex 3358: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.017233 + Group: 'RightHandRing1', Weight: 0.325547 + Group: 'RightHandRing2', Weight: 0.083782 + Group: 'RightHandPinky1', Weight: 0.360172 + Group: 'RightHandPinky2', Weight: 0.162516 +Vertex 3359: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.292332 + Group: 'RightHandRing2', Weight: 0.449686 + Group: 'RightHandPinky2', Weight: 0.204427 +Vertex 3360: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.146601 + Group: 'RightHandRing2', Weight: 0.208827 + Group: 'RightHandPinky1', Weight: 0.012040 + Group: 'RightHandPinky2', Weight: 0.557252 + Group: 'RightHandPinky3', Weight: 0.044304 +Vertex 3361: +Vertex groups: 2 + Group: 'RightHandRing1', Weight: 0.150244 + Group: 'RightHandRing2', Weight: 0.814140 +Vertex 3362: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.020564 + Group: 'RightHandMiddle2', Weight: 0.001545 + Group: 'RightHandRing1', Weight: 0.117428 + Group: 'RightHandRing2', Weight: 0.815294 +Vertex 3363: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.224554 + Group: 'RightHandRing2', Weight: 0.703436 + Group: 'RightHandPinky2', Weight: 0.059727 +Vertex 3364: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.333218 + Group: 'RightHandRing2', Weight: 0.525961 + Group: 'RightHandPinky2', Weight: 0.114251 +Vertex 3365: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.911139 + Group: 'RightHandMiddle3', Weight: 0.077375 +Vertex 3366: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.919751 + Group: 'RightHandMiddle3', Weight: 0.062389 +Vertex 3367: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.884551 + Group: 'RightHandMiddle3', Weight: 0.099847 +Vertex 3368: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.847428 + Group: 'RightHandMiddle3', Weight: 0.112292 +Vertex 3369: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.855970 + Group: 'RightHandMiddle3', Weight: 0.118648 +Vertex 3370: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.895972 + Group: 'RightHandMiddle3', Weight: 0.075240 +Vertex 3371: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.932532 + Group: 'RightHandMiddle3', Weight: 0.038515 +Vertex 3372: +Vertex groups: 2 + Group: 'RightHandMiddle2', Weight: 0.846822 + Group: 'RightHandMiddle3', Weight: 0.120448 +Vertex 3373: +Vertex groups: 1 + Group: 'RightHandRing2', Weight: 0.971295 +Vertex 3374: +Vertex groups: 1 + Group: 'RightHandRing2', Weight: 0.967084 +Vertex 3375: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.956794 + Group: 'RightHandRing3', Weight: 0.012463 +Vertex 3376: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.892196 + Group: 'RightHandRing3', Weight: 0.084746 +Vertex 3377: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.838660 + Group: 'RightHandRing3', Weight: 0.131038 +Vertex 3378: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.867024 + Group: 'RightHandRing3', Weight: 0.104498 +Vertex 3379: +Vertex groups: 2 + Group: 'RightHandRing2', Weight: 0.914024 + Group: 'RightHandRing3', Weight: 0.032301 +Vertex 3380: +Vertex groups: 1 + Group: 'RightHandRing2', Weight: 0.949558 +Vertex 3381: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.924332 + Group: 'RightHandPinky3', Weight: 0.051366 +Vertex 3382: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.930632 + Group: 'RightHandPinky3', Weight: 0.055114 +Vertex 3383: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.870165 + Group: 'RightHandPinky3', Weight: 0.079956 +Vertex 3384: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.072338 + Group: 'RightHandRing2', Weight: 0.089353 + Group: 'RightHandPinky2', Weight: 0.756552 + Group: 'RightHandPinky3', Weight: 0.064616 +Vertex 3385: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.040871 + Group: 'RightHandRing2', Weight: 0.054260 + Group: 'RightHandPinky1', Weight: 0.013350 + Group: 'RightHandPinky2', Weight: 0.794327 + Group: 'RightHandPinky3', Weight: 0.070145 +Vertex 3386: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.835217 + Group: 'RightHandPinky3', Weight: 0.121490 +Vertex 3387: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.891589 + Group: 'RightHandPinky3', Weight: 0.094587 +Vertex 3388: +Vertex groups: 2 + Group: 'RightHandPinky2', Weight: 0.914845 + Group: 'RightHandPinky3', Weight: 0.074246 +Vertex 3389: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.242515 + Group: 'RightHandRing2', Weight: 0.586931 + Group: 'RightHandPinky2', Weight: 0.143062 +Vertex 3390: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.091729 + Group: 'RightHandPinky2', Weight: 0.895251 +Vertex 3391: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.090965 + Group: 'RightHandPinky2', Weight: 0.886120 +Vertex 3392: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.850518 + Group: 'RightHandPinky2', Weight: 0.136890 +Vertex 3393: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.800442 + Group: 'RightHandPinky2', Weight: 0.165888 +Vertex 3394: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.015896 + Group: 'RightHandPinky1', Weight: 0.162448 + Group: 'RightHandPinky2', Weight: 0.773259 +Vertex 3395: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.077151 + Group: 'RightHandPinky1', Weight: 0.767140 + Group: 'RightHandPinky2', Weight: 0.118057 +Vertex 3396: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.274997 + Group: 'RightHandMiddle2', Weight: 0.340717 + Group: 'RightHandRing1', Weight: 0.050271 + Group: 'RightHandRing2', Weight: 0.326329 +Vertex 3397: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.104304 + Group: 'RightHandMiddle2', Weight: 0.117355 + Group: 'RightHandRing1', Weight: 0.052588 + Group: 'RightHandRing2', Weight: 0.718853 +Vertex 3398: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.261803 + Group: 'RightHandMiddle2', Weight: 0.356820 + Group: 'RightHandRing1', Weight: 0.016997 + Group: 'RightHandRing2', Weight: 0.336980 +Vertex 3399: +Vertex groups: 4 + Group: 'RightHandMiddle1', Weight: 0.110177 + Group: 'RightHandMiddle2', Weight: 0.137616 + Group: 'RightHandRing1', Weight: 0.047509 + Group: 'RightHandRing2', Weight: 0.691937 +Vertex 3400: +Vertex groups: 4 + Group: 'RightHandMiddle2', Weight: 0.022171 + Group: 'RightHandRing1', Weight: 0.108734 + Group: 'RightHandRing2', Weight: 0.766488 + Group: 'RightHandPinky2', Weight: 0.008962 +Vertex 3401: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.011598 + Group: 'RightHandThumb2', Weight: 0.008766 + Group: 'RightHandIndex1', Weight: 0.920366 +Vertex 3402: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.036311 + Group: 'RightHandIndex1', Weight: 0.729020 + Group: 'RightHandMiddle1', Weight: 0.210199 +Vertex 3403: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.001392 + Group: 'RightHandIndex1', Weight: 0.391009 + Group: 'RightHandMiddle1', Weight: 0.562355 +Vertex 3404: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.011259 + Group: 'RightHandIndex1', Weight: 0.132134 + Group: 'RightHandMiddle1', Weight: 0.813338 +Vertex 3405: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.062131 + Group: 'RightHandMiddle1', Weight: 0.377006 + Group: 'RightHandRing1', Weight: 0.512250 +Vertex 3406: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.037842 + Group: 'RightHandMiddle1', Weight: 0.185554 + Group: 'RightHandRing1', Weight: 0.713156 + Group: 'RightHandPinky1', Weight: 0.012359 +Vertex 3407: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.375556 + Group: 'RightHandPinky1', Weight: 0.551554 + Group: 'RightHandPinky2', Weight: 0.034484 +Vertex 3408: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.144629 + Group: 'RightHandPinky1', Weight: 0.799037 + Group: 'RightHandPinky2', Weight: 0.038165 +Vertex 3409: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.057276 + Group: 'RightHandIndex1', Weight: 0.084129 + Group: 'RightHandMiddle1', Weight: 0.830663 +Vertex 3410: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.116780 + Group: 'RightHandMiddle1', Weight: 0.600678 + Group: 'RightHandRing1', Weight: 0.245416 +Vertex 3411: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.066283 + Group: 'RightHandMiddle1', Weight: 0.110137 + Group: 'RightHandRing1', Weight: 0.749865 + Group: 'RightHandPinky1', Weight: 0.062464 +Vertex 3412: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.000401 + Group: 'RightHandRing1', Weight: 0.591949 + Group: 'RightHandPinky1', Weight: 0.343999 +Vertex 3413: +Vertex groups: 2 + Group: 'RightHandRing1', Weight: 0.063145 + Group: 'RightHandPinky1', Weight: 0.914869 +Vertex 3414: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.118532 + Group: 'RightHandThumb2', Weight: 0.143726 + Group: 'RightHandIndex1', Weight: 0.710669 +Vertex 3415: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.106110 + Group: 'RightHandThumb2', Weight: 0.190030 + Group: 'RightHandIndex1', Weight: 0.655370 +Vertex 3416: +Vertex groups: 4 + Group: 'RightHandRing1', Weight: 0.187988 + Group: 'RightHandRing2', Weight: 0.031661 + Group: 'RightHandPinky1', Weight: 0.456330 + Group: 'RightHandPinky2', Weight: 0.268246 +Vertex 3417: +Vertex groups: 1 + Group: 'RightHandPinky1', Weight: 0.965376 +Vertex 3418: +Vertex groups: 2 + Group: 'RightHandPinky1', Weight: 0.932754 + Group: 'RightHandPinky2', Weight: 0.015067 +Vertex 3419: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.010725 + Group: 'RightHandRing1', Weight: 0.011068 + Group: 'RightHandPinky1', Weight: 0.892739 + Group: 'RightHandPinky2', Weight: 0.017792 +Vertex 3420: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.035236 + Group: 'RightHandRing1', Weight: 0.070877 + Group: 'RightHandPinky1', Weight: 0.829867 + Group: 'RightHandPinky2', Weight: 0.013699 +Vertex 3421: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.072890 + Group: 'RightHandThumb1', Weight: 0.607168 + Group: 'RightHandThumb2', Weight: 0.064759 + Group: 'RightHandIndex1', Weight: 0.248956 +Vertex 3422: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.007062 + Group: 'RightHand', Weight: 0.928719 + Group: 'RightHandThumb1', Weight: 0.023756 +Vertex 3423: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.100802 + Group: 'RightHand', Weight: 0.781673 + Group: 'RightHandThumb1', Weight: 0.111993 +Vertex 3424: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.165625 + Group: 'RightHand', Weight: 0.647146 + Group: 'RightHandThumb1', Weight: 0.181851 +Vertex 3425: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.056350 + Group: 'RightHand', Weight: 0.359037 + Group: 'RightHandThumb1', Weight: 0.571643 +Vertex 3426: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.157568 + Group: 'RightHand', Weight: 0.571175 + Group: 'RightHandThumb1', Weight: 0.263774 +Vertex 3427: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.065962 + Group: 'RightHand', Weight: 0.312511 + Group: 'RightHandThumb1', Weight: 0.610318 +Vertex 3428: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.332771 + Group: 'RightHandThumb1', Weight: 0.073042 + Group: 'RightHandIndex1', Weight: 0.550398 + Group: 'RightHandMiddle1', Weight: 0.012803 +Vertex 3429: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.830773 + Group: 'RightHandIndex1', Weight: 0.106794 + Group: 'RightHandMiddle1', Weight: 0.012937 +Vertex 3430: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.036755 + Group: 'RightHand', Weight: 0.672579 + Group: 'RightHandThumb1', Weight: 0.266158 +Vertex 3431: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.007191 + Group: 'RightHand', Weight: 0.241118 + Group: 'RightHandThumb1', Weight: 0.714214 +Vertex 3432: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.139304 + Group: 'RightHandThumb1', Weight: 0.819523 +Vertex 3433: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.358513 + Group: 'RightHandThumb1', Weight: 0.573127 + Group: 'RightHandPinky1', Weight: 0.013001 +Vertex 3434: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.232105 + Group: 'RightHandThumb1', Weight: 0.644589 + Group: 'RightHandIndex1', Weight: 0.010205 + Group: 'RightHandPinky1', Weight: 0.040535 +Vertex 3435: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.096383 + Group: 'RightHandThumb1', Weight: 0.816307 + Group: 'RightHandThumb2', Weight: 0.017824 +Vertex 3436: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.071920 + Group: 'RightHandThumb1', Weight: 0.680374 + Group: 'RightHandThumb2', Weight: 0.097442 + Group: 'RightHandIndex1', Weight: 0.091620 +Vertex 3437: +Vertex groups: 5 + Group: 'RightHandThumb1', Weight: 0.581130 + Group: 'RightHand', Weight: 0.185026 + Group: 'RightHandIndex1', Weight: 0.141814 + Group: 'RightHandThumb2', Weight: 0.054028 + Group: 'RightHandPinky1', Weight: 0.038002 +Vertex 3438: +Vertex groups: 5 + Group: 'RightHandThumb1', Weight: 0.209672 + Group: 'RightHandThumb2', Weight: 0.383328 + Group: 'RightHandThumb3', Weight: 0.018212 + Group: 'RightHandIndex1', Weight: 0.297826 + Group: 'RightHandMiddle1', Weight: 0.006260 +Vertex 3439: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.642199 + Group: 'RightHandThumb2', Weight: 0.137481 + Group: 'RightHandThumb1', Weight: 0.127532 + Group: 'RightHandMiddle1', Weight: 0.076879 + Group: 'RightHand', Weight: 0.015910 +Vertex 3440: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.196044 + Group: 'RightHandThumb2', Weight: 0.354466 + Group: 'RightHandThumb3', Weight: 0.053202 + Group: 'RightHandIndex1', Weight: 0.354213 +Vertex 3441: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.104029 + Group: 'RightHandThumb2', Weight: 0.171180 + Group: 'RightHandIndex1', Weight: 0.636669 + Group: 'RightHandMiddle1', Weight: 0.000284 +Vertex 3442: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.184884 + Group: 'RightHandThumb2', Weight: 0.387580 + Group: 'RightHandThumb3', Weight: 0.049132 + Group: 'RightHandIndex1', Weight: 0.359726 +Vertex 3443: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.237715 + Group: 'RightHandThumb2', Weight: 0.389391 + Group: 'RightHandThumb3', Weight: 0.001762 + Group: 'RightHandIndex1', Weight: 0.334538 +Vertex 3444: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.307519 + Group: 'RightHandThumb2', Weight: 0.578128 + Group: 'RightHandIndex1', Weight: 0.093272 +Vertex 3445: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.861247 + Group: 'RightHandThumb2', Weight: 0.106817 +Vertex 3446: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.849832 + Group: 'RightHandThumb2', Weight: 0.136981 +Vertex 3447: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.015972 + Group: 'RightHandThumb1', Weight: 0.158449 + Group: 'RightHandThumb2', Weight: 0.070197 + Group: 'RightHandIndex1', Weight: 0.729609 +Vertex 3448: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.296805 + Group: 'RightHandThumb2', Weight: 0.306204 + Group: 'RightHandIndex1', Weight: 0.368664 +Vertex 3449: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.898512 + Group: 'RightHandThumb2', Weight: 0.047299 + Group: 'RightHandIndex1', Weight: 0.016046 +Vertex 3450: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.925434 + Group: 'RightHandThumb2', Weight: 0.036674 +Vertex 3451: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.133816 + Group: 'RightHandThumb1', Weight: 0.828816 +Vertex 3452: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.118689 + Group: 'RightHandThumb1', Weight: 0.845293 +Vertex 3453: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.100384 + Group: 'RightHandThumb1', Weight: 0.864981 +Vertex 3454: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.117119 + Group: 'RightHandThumb1', Weight: 0.104255 + Group: 'RightHandIndex1', Weight: 0.747424 +Vertex 3455: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.729893 + Group: 'RightHandIndex1', Weight: 0.025967 + Group: 'RightHandMiddle1', Weight: 0.174171 + Group: 'RightHandRing1', Weight: 0.025862 +Vertex 3456: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.805786 + Group: 'RightHandMiddle1', Weight: 0.080895 + Group: 'RightHandRing1', Weight: 0.060209 + Group: 'RightHandPinky1', Weight: 0.021070 +Vertex 3457: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.822296 + Group: 'RightHandPinky1', Weight: 0.123254 +Vertex 3458: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.325873 + Group: 'RightHandRing1', Weight: 0.052363 + Group: 'RightHandPinky1', Weight: 0.607183 +Vertex 3459: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.121168 + Group: 'RightHandRing1', Weight: 0.141066 + Group: 'RightHandPinky1', Weight: 0.723537 +Vertex 3460: +Vertex groups: 1 + Group: 'RightHandPinky1', Weight: 0.954174 +Vertex 3461: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.060759 + Group: 'RightHandPinky1', Weight: 0.928180 +Vertex 3462: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.050540 + Group: 'RightHandThumb1', Weight: 0.842674 + Group: 'RightHandThumb2', Weight: 0.013633 + Group: 'RightHandIndex1', Weight: 0.070810 +Vertex 3463: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.664519 + Group: 'RightHandThumb2', Weight: 0.278315 + Group: 'RightHandIndex1', Weight: 0.039110 +Vertex 3464: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.000824 + Group: 'RightHandThumb1', Weight: 0.663992 + Group: 'RightHandThumb2', Weight: 0.148665 + Group: 'RightHandIndex1', Weight: 0.156106 +Vertex 3465: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.238454 + Group: 'RightHandThumb1', Weight: 0.510821 + Group: 'RightHandIndex1', Weight: 0.221828 +Vertex 3466: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.095606 + Group: 'RightHandThumb1', Weight: 0.836117 + Group: 'RightHandIndex1', Weight: 0.048634 +Vertex 3467: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.053481 + Group: 'RightHandThumb1', Weight: 0.908782 +Vertex 3468: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.040257 + Group: 'RightHandThumb1', Weight: 0.919076 +Vertex 3469: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.605281 + Group: 'RightHandThumb1', Weight: 0.244993 + Group: 'RightHandIndex1', Weight: 0.130775 +Vertex 3470: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.879774 + Group: 'RightHandThumb1', Weight: 0.089893 +Vertex 3471: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.277831 + Group: 'RightHandThumb1', Weight: 0.667511 + Group: 'RightHandIndex1', Weight: 0.019243 +Vertex 3472: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.037082 + Group: 'RightHand', Weight: 0.641276 + Group: 'RightHandThumb1', Weight: 0.299615 +Vertex 3473: +Vertex groups: 1 + Group: 'RightHand', Weight: 0.937477 +Vertex 3474: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.917847 + Group: 'RightHandPinky1', Weight: 0.063070 +Vertex 3475: +Vertex groups: 1 + Group: 'RightHand', Weight: 0.966303 +Vertex 3476: +Vertex groups: 1 + Group: 'RightHand', Weight: 0.967150 +Vertex 3477: +Vertex groups: 2 + Group: 'RightForeArm', Weight: 0.051252 + Group: 'RightHand', Weight: 0.931141 +Vertex 3478: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.945538 + Group: 'RightHandPinky1', Weight: 0.007723 +Vertex 3479: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.319687 + Group: 'RightHandPinky1', Weight: 0.658543 +Vertex 3480: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.038546 + Group: 'RightHand', Weight: 0.724520 + Group: 'RightHandPinky1', Weight: 0.221639 +Vertex 3481: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.727414 + Group: 'RightHandPinky1', Weight: 0.245541 +Vertex 3482: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.029867 + Group: 'RightHand', Weight: 0.855998 + Group: 'RightHandPinky1', Weight: 0.097025 +Vertex 3483: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.131351 + Group: 'RightHand', Weight: 0.826253 + Group: 'RightHandPinky1', Weight: 0.027217 +Vertex 3484: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.083765 + Group: 'RightHand', Weight: 0.796391 + Group: 'RightHandPinky1', Weight: 0.112424 +Vertex 3485: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.068229 + Group: 'RightHand', Weight: 0.800759 + Group: 'RightHandPinky1', Weight: 0.116721 +Vertex 3486: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.028292 + Group: 'RightHand', Weight: 0.699315 + Group: 'RightHandPinky1', Weight: 0.242232 +Vertex 3487: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.273444 + Group: 'RightHandPinky1', Weight: 0.692573 +Vertex 3488: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.071224 + Group: 'RightHandPinky1', Weight: 0.901976 +Vertex 3489: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.058103 + Group: 'RightHandPinky1', Weight: 0.927551 +Vertex 3490: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.273577 + Group: 'RightHandPinky1', Weight: 0.701245 +Vertex 3491: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.034652 + Group: 'RightHand', Weight: 0.704524 + Group: 'RightHandPinky1', Weight: 0.240786 +Vertex 3492: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.077046 + Group: 'RightHand', Weight: 0.794622 + Group: 'RightHandPinky1', Weight: 0.119104 +Vertex 3493: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.110417 + Group: 'RightHand', Weight: 0.804644 + Group: 'RightHandPinky1', Weight: 0.076434 +Vertex 3494: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.088046 + Group: 'RightHand', Weight: 0.829994 + Group: 'RightHandPinky1', Weight: 0.071185 +Vertex 3495: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.071046 + Group: 'RightHand', Weight: 0.835848 + Group: 'RightHandPinky1', Weight: 0.075418 +Vertex 3496: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.056429 + Group: 'RightHand', Weight: 0.803198 + Group: 'RightHandPinky1', Weight: 0.118032 +Vertex 3497: +Vertex groups: 3 + Group: 'RightForeArm', Weight: 0.020274 + Group: 'RightHand', Weight: 0.709858 + Group: 'RightHandPinky1', Weight: 0.224595 +Vertex 3498: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.293509 + Group: 'RightHandPinky1', Weight: 0.659863 +Vertex 3499: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.087436 + Group: 'RightHandPinky1', Weight: 0.870191 +Vertex 3500: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.288151 + Group: 'RightHandThumb1', Weight: 0.030880 + Group: 'RightHandPinky1', Weight: 0.635802 +Vertex 3501: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.003452 + Group: 'RightHand', Weight: 0.696295 + Group: 'RightHandThumb1', Weight: 0.038843 + Group: 'RightHandPinky1', Weight: 0.220322 +Vertex 3502: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.037361 + Group: 'RightHand', Weight: 0.799629 + Group: 'RightHandThumb1', Weight: 0.019752 + Group: 'RightHandPinky1', Weight: 0.114778 +Vertex 3503: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.109132 + Group: 'RightHandRing1', Weight: 0.034638 + Group: 'RightHandPinky1', Weight: 0.805531 +Vertex 3504: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.021765 + Group: 'RightHand', Weight: 0.813380 + Group: 'RightHandThumb1', Weight: 0.069477 + Group: 'RightHandPinky1', Weight: 0.071682 +Vertex 3505: +Vertex groups: 4 + Group: 'RightForeArm', Weight: 0.018718 + Group: 'RightHand', Weight: 0.781052 + Group: 'RightHandThumb1', Weight: 0.145453 + Group: 'RightHandPinky1', Weight: 0.010220 +Vertex 3506: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.706802 + Group: 'RightHandThumb1', Weight: 0.099356 + Group: 'RightHandPinky1', Weight: 0.151528 +Vertex 3507: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.630776 + Group: 'RightHandThumb1', Weight: 0.278889 + Group: 'RightHandPinky1', Weight: 0.052660 +Vertex 3508: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.521844 + Group: 'RightHandThumb1', Weight: 0.117587 + Group: 'RightHandRing1', Weight: 0.037519 + Group: 'RightHandPinky1', Weight: 0.290405 +Vertex 3509: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.503813 + Group: 'RightHandThumb1', Weight: 0.315439 + Group: 'RightHandRing1', Weight: 0.004371 + Group: 'RightHandPinky1', Weight: 0.105481 +Vertex 3510: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.763254 + Group: 'RightHandThumb2', Weight: 0.218259 +Vertex 3511: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.903301 + Group: 'RightHandThumb2', Weight: 0.065754 +Vertex 3512: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.036571 + Group: 'RightHandThumb1', Weight: 0.912799 + Group: 'RightHandThumb2', Weight: 0.013483 +Vertex 3513: +Vertex groups: 2 + Group: 'RightHand', Weight: 0.084215 + Group: 'RightHandThumb1', Weight: 0.875186 +Vertex 3514: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.021468 + Group: 'RightHandThumb1', Weight: 0.854664 + Group: 'RightHandThumb2', Weight: 0.080392 +Vertex 3515: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.039624 + Group: 'RightHandThumb1', Weight: 0.901145 + Group: 'RightHandThumb2', Weight: 0.029765 +Vertex 3516: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.864972 + Group: 'RightHandThumb2', Weight: 0.093696 +Vertex 3517: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.732468 + Group: 'RightHandThumb2', Weight: 0.235896 +Vertex 3518: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.864762 + Group: 'RightHandThumb3_end', Weight: 0.129316 +Vertex 3519: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.823956 + Group: 'RightHandThumb3_end', Weight: 0.155112 +Vertex 3520: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.821629 + Group: 'RightHandThumb3_end', Weight: 0.151243 +Vertex 3521: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.818646 + Group: 'RightHandThumb3_end', Weight: 0.162969 +Vertex 3522: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.844685 + Group: 'RightHandThumb3_end', Weight: 0.143070 +Vertex 3523: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.851676 + Group: 'RightHandThumb3_end', Weight: 0.142808 +Vertex 3524: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.885627 + Group: 'RightHandThumb3_end', Weight: 0.108930 +Vertex 3525: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.989759 +Vertex 3526: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.854526 + Group: 'RightHandThumb3_end', Weight: 0.130770 +Vertex 3527: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.011435 + Group: 'RightHandThumb3_end', Weight: 0.968906 +Vertex 3528: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.055316 + Group: 'RightHandThumb3_end', Weight: 0.943760 +Vertex 3529: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.068437 + Group: 'RightHandThumb3_end', Weight: 0.929989 +Vertex 3530: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.065356 + Group: 'RightHandThumb3_end', Weight: 0.932801 +Vertex 3531: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.061386 + Group: 'RightHandThumb3_end', Weight: 0.937137 +Vertex 3532: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.048167 + Group: 'RightHandThumb3_end', Weight: 0.950301 +Vertex 3533: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.054962 + Group: 'RightHandThumb3_end', Weight: 0.944021 +Vertex 3534: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998594 +Vertex 3535: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997753 +Vertex 3536: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997188 +Vertex 3537: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.996246 +Vertex 3538: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.996891 +Vertex 3539: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997027 +Vertex 3540: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998509 +Vertex 3541: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998069 +Vertex 3542: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998002 +Vertex 3543: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.982087 +Vertex 3544: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.981535 +Vertex 3545: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.984963 +Vertex 3546: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.992677 +Vertex 3547: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.988404 +Vertex 3548: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998419 +Vertex 3549: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.983784 +Vertex 3550: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.985286 +Vertex 3551: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.993083 +Vertex 3552: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.993710 +Vertex 3553: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.997114 +Vertex 3554: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.993962 +Vertex 3555: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.995046 +Vertex 3556: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.991406 +Vertex 3557: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.996365 +Vertex 3558: +Vertex groups: 1 + Group: 'RightHandThumb3_end', Weight: 0.998950 +Vertex 3559: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.124205 + Group: 'RightHandThumb3_end', Weight: 0.874676 +Vertex 3560: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.189699 + Group: 'RightHandThumb3_end', Weight: 0.807388 +Vertex 3561: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.205967 + Group: 'RightHandThumb3_end', Weight: 0.789327 +Vertex 3562: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.202290 + Group: 'RightHandThumb3_end', Weight: 0.791559 +Vertex 3563: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.193245 + Group: 'RightHandThumb3_end', Weight: 0.801975 +Vertex 3564: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.180393 + Group: 'RightHandThumb3_end', Weight: 0.816325 +Vertex 3565: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.122722 + Group: 'RightHandThumb3_end', Weight: 0.876108 +Vertex 3566: +Vertex groups: 2 + Group: 'RightHandThumb3', Weight: 0.085604 + Group: 'RightHandThumb3_end', Weight: 0.913792 +Vertex 3567: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.068443 + Group: 'RightHandThumb3', Weight: 0.918781 +Vertex 3568: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.098770 + Group: 'RightHandThumb3', Weight: 0.856921 +Vertex 3569: +Vertex groups: 3 + Group: 'RightHandThumb2', Weight: 0.115821 + Group: 'RightHandThumb3', Weight: 0.839229 + Group: 'RightHandThumb3_end', Weight: 0.009763 +Vertex 3570: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.100933 + Group: 'RightHandThumb3', Weight: 0.868890 +Vertex 3571: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.083499 + Group: 'RightHandThumb3', Weight: 0.893184 +Vertex 3572: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.055229 + Group: 'RightHandThumb3', Weight: 0.927932 +Vertex 3573: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.066824 + Group: 'RightHandThumb3', Weight: 0.923191 +Vertex 3574: +Vertex groups: 2 + Group: 'RightHandThumb2', Weight: 0.089578 + Group: 'RightHandThumb3', Weight: 0.881430 +Vertex 3575: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.003965 + Group: 'RightHandThumb2', Weight: 0.831956 + Group: 'RightHandThumb3', Weight: 0.118255 +Vertex 3576: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.067520 + Group: 'RightHandThumb2', Weight: 0.675647 + Group: 'RightHandThumb3', Weight: 0.144019 + Group: 'RightHandIndex1', Weight: 0.096134 +Vertex 3577: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.056414 + Group: 'RightHandThumb2', Weight: 0.747817 + Group: 'RightHandThumb3', Weight: 0.157326 + Group: 'RightHandIndex1', Weight: 0.004024 +Vertex 3578: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.072601 + Group: 'RightHandThumb2', Weight: 0.786069 + Group: 'RightHandThumb3', Weight: 0.125886 +Vertex 3579: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.061902 + Group: 'RightHandThumb2', Weight: 0.809951 + Group: 'RightHandThumb3', Weight: 0.120687 +Vertex 3580: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.019342 + Group: 'RightHandThumb2', Weight: 0.854453 + Group: 'RightHandThumb3', Weight: 0.107012 +Vertex 3581: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.004350 + Group: 'RightHandThumb2', Weight: 0.889256 + Group: 'RightHandThumb3', Weight: 0.078146 +Vertex 3582: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.059618 + Group: 'RightHandThumb2', Weight: 0.723974 + Group: 'RightHandThumb3', Weight: 0.116654 + Group: 'RightHandIndex1', Weight: 0.091692 +Vertex 3583: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.106599 + Group: 'RightHandThumb2', Weight: 0.715393 + Group: 'RightHandThumb3', Weight: 0.054048 + Group: 'RightHandIndex1', Weight: 0.117652 +Vertex 3584: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.107820 + Group: 'RightHandThumb2', Weight: 0.816792 + Group: 'RightHandThumb3', Weight: 0.013711 + Group: 'RightHandIndex1', Weight: 0.030901 +Vertex 3585: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.168665 + Group: 'RightHandThumb2', Weight: 0.806553 +Vertex 3586: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.175174 + Group: 'RightHandThumb2', Weight: 0.791226 + Group: 'RightHandThumb3', Weight: 0.007581 +Vertex 3587: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.239745 + Group: 'RightHandThumb2', Weight: 0.711201 + Group: 'RightHandThumb3', Weight: 0.027322 +Vertex 3588: +Vertex groups: 3 + Group: 'RightHandThumb1', Weight: 0.261952 + Group: 'RightHandThumb2', Weight: 0.667989 + Group: 'RightHandThumb3', Weight: 0.036913 +Vertex 3589: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.220895 + Group: 'RightHandThumb2', Weight: 0.639744 + Group: 'RightHandThumb3', Weight: 0.038861 + Group: 'RightHandIndex1', Weight: 0.067182 +Vertex 3590: +Vertex groups: 4 + Group: 'RightHandThumb1', Weight: 0.172625 + Group: 'RightHandThumb2', Weight: 0.582052 + Group: 'RightHandThumb3', Weight: 0.058217 + Group: 'RightHandIndex1', Weight: 0.149293 +Vertex 3591: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.442898 + Group: 'RightHandThumb1', Weight: 0.292007 + Group: 'RightHand', Weight: 0.102228 + Group: 'RightHandThumb2', Weight: 0.093571 + Group: 'RightHandMiddle1', Weight: 0.069297 +Vertex 3592: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.046183 + Group: 'RightHandThumb1', Weight: 0.453449 + Group: 'RightHandThumb2', Weight: 0.218238 + Group: 'RightHandIndex1', Weight: 0.200822 + Group: 'RightHandMiddle1', Weight: 0.003801 +Vertex 3593: +Vertex groups: 2 + Group: 'RightHandThumb1', Weight: 0.655537 + Group: 'RightHandThumb2', Weight: 0.292862 +Vertex 3594: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.004762 + Group: 'RightHandThumb1', Weight: 0.703306 + Group: 'RightHandThumb2', Weight: 0.200320 + Group: 'RightHandIndex1', Weight: 0.024678 +Vertex 3595: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.472703 + Group: 'RightHandThumb1', Weight: 0.179447 + Group: 'RightHandPinky1', Weight: 0.127261 + Group: 'RightHandRing1', Weight: 0.115350 + Group: 'RightHandIndex1', Weight: 0.105238 +Vertex 3596: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.630335 + Group: 'RightHandMiddle1', Weight: 0.184299 + Group: 'RightHandThumb1', Weight: 0.066464 + Group: 'RightHandThumb2', Weight: 0.063016 + Group: 'RightHandRing1', Weight: 0.055887 +Vertex 3597: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.471039 + Group: 'RightHandMiddle1', Weight: 0.201536 + Group: 'RightHandThumb1', Weight: 0.120682 + Group: 'RightHand', Weight: 0.106036 + Group: 'RightHandRing1', Weight: 0.100707 +Vertex 3598: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.392607 + Group: 'RightHandRing1', Weight: 0.273620 + Group: 'RightHandIndex1', Weight: 0.189157 + Group: 'RightHand', Weight: 0.089223 + Group: 'RightHandPinky1', Weight: 0.055392 +Vertex 3599: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.401094 + Group: 'RightHandIndex1', Weight: 0.326172 + Group: 'RightHandRing1', Weight: 0.143315 + Group: 'RightHand', Weight: 0.066728 + Group: 'RightHandThumb1', Weight: 0.062691 +Vertex 3600: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.588078 + Group: 'RightHandRing1', Weight: 0.195807 + Group: 'RightHandIndex1', Weight: 0.189840 + Group: 'RightHandMiddle2', Weight: 0.015886 + Group: 'RightHand', Weight: 0.010389 +Vertex 3601: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.543245 + Group: 'RightHandIndex1', Weight: 0.318231 + Group: 'RightHandRing1', Weight: 0.114233 + Group: 'RightHandMiddle2', Weight: 0.016632 + Group: 'RightHandThumb1', Weight: 0.007658 +Vertex 3602: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.502066 + Group: 'RightHandRing1', Weight: 0.323156 + Group: 'RightHandIndex1', Weight: 0.107274 + Group: 'RightHandPinky1', Weight: 0.044155 + Group: 'RightHandRing2', Weight: 0.023349 +Vertex 3603: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.019318 + Group: 'RightHandMiddle1', Weight: 0.161178 + Group: 'RightHandRing1', Weight: 0.553623 + Group: 'RightHandRing2', Weight: 0.081976 + Group: 'RightHandPinky1', Weight: 0.091700 +Vertex 3604: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.482928 + Group: 'RightHandMiddle1', Weight: 0.307021 + Group: 'RightHandRing2', Weight: 0.082284 + Group: 'RightHandPinky1', Weight: 0.064215 + Group: 'RightHandIndex1', Weight: 0.063552 +Vertex 3605: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.473755 + Group: 'RightHandMiddle1', Weight: 0.240242 + Group: 'RightHand', Weight: 0.102736 + Group: 'RightHandIndex1', Weight: 0.099695 + Group: 'RightHandPinky1', Weight: 0.083572 +Vertex 3606: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.451241 + Group: 'RightHandPinky1', Weight: 0.309937 + Group: 'RightHand', Weight: 0.175968 + Group: 'RightHandThumb1', Weight: 0.039773 + Group: 'RightHandMiddle1', Weight: 0.023080 +Vertex 3607: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.339957 + Group: 'RightHandRing1', Weight: 0.311704 + Group: 'RightHandPinky1', Weight: 0.156034 + Group: 'RightHandMiddle1', Weight: 0.104926 + Group: 'RightHandThumb1', Weight: 0.087379 +Vertex 3608: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.222308 + Group: 'RightHandThumb1', Weight: 0.063164 + Group: 'RightHandIndex1', Weight: 0.003160 + Group: 'RightHandRing1', Weight: 0.173176 + Group: 'RightHandPinky1', Weight: 0.475377 +Vertex 3609: +Vertex groups: 3 + Group: 'RightHand', Weight: 0.084789 + Group: 'RightHandRing1', Weight: 0.113875 + Group: 'RightHandPinky1', Weight: 0.736410 +Vertex 3610: +Vertex groups: 4 + Group: 'RightHand', Weight: 0.044473 + Group: 'RightHandRing1', Weight: 0.150146 + Group: 'RightHandPinky1', Weight: 0.729867 + Group: 'RightHandPinky2', Weight: 0.011218 +Vertex 3611: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.076898 + Group: 'RightHandRing1', Weight: 0.610094 + Group: 'RightHandRing2', Weight: 0.029500 + Group: 'RightHandPinky1', Weight: 0.172335 + Group: 'RightHandPinky2', Weight: 0.022274 +Vertex 3612: +Vertex groups: 5 + Group: 'RightHandMiddle1', Weight: 0.040163 + Group: 'RightHandRing1', Weight: 0.501594 + Group: 'RightHandRing2', Weight: 0.014156 + Group: 'RightHandPinky1', Weight: 0.311682 + Group: 'RightHandPinky2', Weight: 0.060408 +Vertex 3613: +Vertex groups: 3 + Group: 'RightHandRing1', Weight: 0.237893 + Group: 'RightHandPinky1', Weight: 0.593923 + Group: 'RightHandPinky2', Weight: 0.090349 +Vertex 3614: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.080691 + Group: 'RightHandIndex1', Weight: 0.014577 + Group: 'RightHandMiddle1', Weight: 0.069776 + Group: 'RightHandRing1', Weight: 0.575785 + Group: 'RightHandPinky1', Weight: 0.185825 +Vertex 3615: +Vertex groups: 5 + Group: 'RightHand', Weight: 0.050147 + Group: 'RightHandMiddle1', Weight: 0.041778 + Group: 'RightHandRing1', Weight: 0.505560 + Group: 'RightHandPinky1', Weight: 0.313648 + Group: 'RightHandPinky2', Weight: 0.007564 +Vertex 3616: +Vertex groups: 2 + Group: 'Neck', Weight: 0.591631 + Group: 'Head', Weight: 0.408373 +Vertex 3617: +Vertex groups: 2 + Group: 'Neck', Weight: 0.591628 + Group: 'Head', Weight: 0.408376 +Vertex 3618: +Vertex groups: 2 + Group: 'Neck', Weight: 0.016573 + Group: 'Head', Weight: 0.966714 +Vertex 3619: +Vertex groups: 2 + Group: 'Neck', Weight: 0.012752 + Group: 'Head', Weight: 0.968624 +Vertex 3620: +Vertex groups: 2 + Group: 'Neck', Weight: 0.139397 + Group: 'Head', Weight: 0.860605 +Vertex 3621: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280707 + Group: 'Head', Weight: 0.719295 +Vertex 3622: +Vertex groups: 2 + Group: 'Neck', Weight: 0.407702 + Group: 'Head', Weight: 0.592301 +Vertex 3623: +Vertex groups: 2 + Group: 'Neck', Weight: 0.530131 + Group: 'Head', Weight: 0.469872 +Vertex 3624: +Vertex groups: 2 + Group: 'Neck', Weight: 0.535465 + Group: 'Head', Weight: 0.464537 +Vertex 3625: +Vertex groups: 2 + Group: 'Neck', Weight: 0.409298 + Group: 'Head', Weight: 0.590704 +Vertex 3626: +Vertex groups: 2 + Group: 'Neck', Weight: 0.280219 + Group: 'Head', Weight: 0.719783 +Vertex 3627: +Vertex groups: 2 + Group: 'Neck', Weight: 0.150119 + Group: 'Head', Weight: 0.849883 +Vertex 3628: +Vertex groups: 2 + Group: 'Neck', Weight: 0.081598 + Group: 'Head', Weight: 0.918404 +Vertex 3629: +Vertex groups: 2 + Group: 'Neck', Weight: 0.024644 + Group: 'Head', Weight: 0.962678 +Vertex 3630: +Vertex groups: 2 + Group: 'Neck', Weight: 0.035128 + Group: 'Head', Weight: 0.957436 +Vertex 3631: +Vertex groups: 2 + Group: 'Neck', Weight: 0.067166 + Group: 'Head', Weight: 0.932835 +Vertex 3632: +Vertex groups: 2 + Group: 'Neck', Weight: 0.201003 + Group: 'Head', Weight: 0.798999 +Vertex 3633: +Vertex groups: 2 + Group: 'Neck', Weight: 0.239814 + Group: 'Head', Weight: 0.760189 +Vertex 3634: +Vertex groups: 2 + Group: 'Neck', Weight: 0.240238 + Group: 'Head', Weight: 0.759764 +Vertex 3635: +Vertex groups: 2 + Group: 'Neck', Weight: 0.199169 + Group: 'Head', Weight: 0.800833 +Vertex 3636: +Vertex groups: 2 + Group: 'Neck', Weight: 0.320279 + Group: 'Head', Weight: 0.679724 +Vertex 3637: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364319 + Group: 'Head', Weight: 0.635684 +Vertex 3638: +Vertex groups: 2 + Group: 'Neck', Weight: 0.364215 + Group: 'Head', Weight: 0.635787 +Vertex 3639: +Vertex groups: 2 + Group: 'Neck', Weight: 0.319967 + Group: 'Head', Weight: 0.680036 +Vertex 3640: +Vertex groups: 2 + Group: 'Neck', Weight: 0.445815 + Group: 'Head', Weight: 0.554187 +Vertex 3641: +Vertex groups: 2 + Group: 'Neck', Weight: 0.483148 + Group: 'Head', Weight: 0.516855 +Vertex 3642: +Vertex groups: 2 + Group: 'Neck', Weight: 0.494272 + Group: 'Head', Weight: 0.505730 +Vertex 3643: +Vertex groups: 2 + Group: 'Neck', Weight: 0.453846 + Group: 'Head', Weight: 0.546157 +Vertex 3644: +Vertex groups: 2 + Group: 'Neck', Weight: 0.604306 + Group: 'Head', Weight: 0.395696 +Vertex 3645: +Vertex groups: 2 + Group: 'Neck', Weight: 0.592207 + Group: 'Head', Weight: 0.407796 +Vertex 3646: +Vertex groups: 2 + Group: 'Neck', Weight: 0.591403 + Group: 'Head', Weight: 0.408600 +Vertex 3647: +Vertex groups: 2 + Group: 'Neck', Weight: 0.586662 + Group: 'Head', Weight: 0.413341 +Vertex 3648: +Vertex groups: 2 + Group: 'Neck', Weight: 0.013881 + Group: 'Head', Weight: 0.968060 +Vertex 3649: +Vertex groups: 2 + Group: 'Neck', Weight: 0.020833 + Group: 'Head', Weight: 0.964584 +Vertex 3650: +Vertex groups: 2 + Group: 'Neck', Weight: 0.058266 + Group: 'Head', Weight: 0.941735 +Vertex 3651: +Vertex groups: 2 + Group: 'Neck', Weight: 0.052437 + Group: 'Head', Weight: 0.947564 +Vertex 3652: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885654 +Vertex 3653: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885654 +Vertex 3654: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114782 + Group: 'Head', Weight: 0.885204 +Vertex 3655: +Vertex groups: 2 + Group: 'Neck', Weight: 0.116020 + Group: 'Head', Weight: 0.883965 +Vertex 3656: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885663 +Vertex 3657: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885661 +Vertex 3658: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885657 +Vertex 3659: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885656 +Vertex 3660: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885656 +Vertex 3661: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885658 +Vertex 3662: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885661 +Vertex 3663: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114323 + Group: 'Head', Weight: 0.885661 +Vertex 3664: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114335 + Group: 'Head', Weight: 0.885649 +Vertex 3665: +Vertex groups: 2 + Group: 'Neck', Weight: 0.115174 + Group: 'Head', Weight: 0.884811 +Vertex 3666: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114153 + Group: 'Head', Weight: 0.885832 +Vertex 3667: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114316 + Group: 'Head', Weight: 0.885669 +Vertex 3668: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885655 +Vertex 3669: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885654 +Vertex 3670: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885654 +Vertex 3671: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885655 +Vertex 3672: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885662 +Vertex 3673: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114322 + Group: 'Head', Weight: 0.885661 +Vertex 3674: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885659 +Vertex 3675: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885659 +Vertex 3676: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885657 +Vertex 3677: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885657 +Vertex 3678: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885654 +Vertex 3679: +Vertex groups: 2 + Group: 'Neck', Weight: 0.115141 + Group: 'Head', Weight: 0.884844 +Vertex 3680: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885656 +Vertex 3681: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885657 +Vertex 3682: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885661 +Vertex 3683: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114322 + Group: 'Head', Weight: 0.885662 +Vertex 3684: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114325 + Group: 'Head', Weight: 0.885659 +Vertex 3685: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114474 + Group: 'Head', Weight: 0.885511 +Vertex 3686: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885654 +Vertex 3687: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885655 +Vertex 3688: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114322 + Group: 'Head', Weight: 0.885662 +Vertex 3689: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885659 +Vertex 3690: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885657 +Vertex 3691: +Vertex groups: 2 + Group: 'Neck', Weight: 0.116359 + Group: 'Head', Weight: 0.883627 +Vertex 3692: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114557 + Group: 'Head', Weight: 0.885429 +Vertex 3693: +Vertex groups: 2 + Group: 'Neck', Weight: 0.115138 + Group: 'Head', Weight: 0.884848 +Vertex 3694: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114339 + Group: 'Head', Weight: 0.885647 +Vertex 3695: +Vertex groups: 2 + Group: 'Neck', Weight: 0.115922 + Group: 'Head', Weight: 0.884063 +Vertex 3696: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114844 + Group: 'Head', Weight: 0.885141 +Vertex 3697: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114377 + Group: 'Head', Weight: 0.885608 +Vertex 3698: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114264 + Group: 'Head', Weight: 0.885721 +Vertex 3699: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114308 + Group: 'Head', Weight: 0.885677 +Vertex 3700: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114319 + Group: 'Head', Weight: 0.885665 +Vertex 3701: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114326 + Group: 'Head', Weight: 0.885659 +Vertex 3702: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114324 + Group: 'Head', Weight: 0.885660 +Vertex 3703: +Vertex groups: 1 + Group: 'Head', Weight: 0.999977 +Vertex 3704: +Vertex groups: 1 + Group: 'Head', Weight: 0.999978 +Vertex 3705: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 3706: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 3707: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 3708: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 3709: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 3710: +Vertex groups: 1 + Group: 'Head', Weight: 0.999980 +Vertex 3711: +Vertex groups: 1 + Group: 'Head', Weight: 0.999980 +Vertex 3712: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 3713: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 3714: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 3715: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 3716: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 3717: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 3718: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 3719: +Vertex groups: 1 + Group: 'Head', Weight: 0.999979 +Vertex 3720: +Vertex groups: 1 + Group: 'Head', Weight: 0.999978 +Vertex 3721: +Vertex groups: 1 + Group: 'Head', Weight: 0.999978 +Vertex 3722: +Vertex groups: 1 + Group: 'Head', Weight: 0.999979 +Vertex 3723: +Vertex groups: 1 + Group: 'Head', Weight: 0.999986 +Vertex 3724: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 3725: +Vertex groups: 1 + Group: 'Head', Weight: 0.999983 +Vertex 3726: +Vertex groups: 1 + Group: 'Head', Weight: 0.999983 +Vertex 3727: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 3728: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 3729: +Vertex groups: 1 + Group: 'Head', Weight: 0.999977 +Vertex 3730: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 3731: +Vertex groups: 1 + Group: 'Head', Weight: 0.999980 +Vertex 3732: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 3733: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 3734: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 3735: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 3736: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 3737: +Vertex groups: 1 + Group: 'Head', Weight: 0.999978 +Vertex 3738: +Vertex groups: 1 + Group: 'Head', Weight: 0.999979 +Vertex 3739: +Vertex groups: 1 + Group: 'Head', Weight: 0.999986 +Vertex 3740: +Vertex groups: 1 + Group: 'Head', Weight: 0.999983 +Vertex 3741: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 3742: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 3743: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 3744: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 3745: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 3746: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 3747: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 3748: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 3749: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 3750: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 3751: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 3752: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 3753: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 3754: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3755: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3756: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3757: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3758: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3759: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3760: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3761: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3762: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3763: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3764: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3765: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3766: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3767: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3768: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3769: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3770: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3771: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3772: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3773: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3774: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3775: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3776: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3777: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3778: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3779: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3780: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3781: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3782: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3783: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3784: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3785: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3786: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3787: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3788: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3789: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3790: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3791: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3792: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999791 +Vertex 3793: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3794: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3795: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3796: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3797: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3798: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3799: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3800: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3801: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3802: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3803: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999793 +Vertex 3804: +Vertex groups: 1 + Group: 'Neck', Weight: 0.999792 +Vertex 3805: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3806: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3807: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3808: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3809: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3810: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3811: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3812: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3813: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3814: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3815: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3816: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3817: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3818: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3819: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3820: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3821: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3822: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3823: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3824: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3825: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3826: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3827: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3828: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3829: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3830: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3831: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3832: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3833: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3834: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3835: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3836: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3837: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3838: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3839: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3840: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3841: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3842: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3843: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3844: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3845: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3846: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3847: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3848: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3849: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3850: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3851: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3852: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3853: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3854: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3855: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3856: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3857: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3858: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3859: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3860: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3861: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3862: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3863: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3864: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3865: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3866: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3867: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3868: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3869: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3870: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3871: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3872: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3873: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3874: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3875: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3876: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3877: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3878: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3879: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3880: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3881: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3882: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3883: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3884: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3885: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3886: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3887: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3888: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3889: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3890: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3891: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3892: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3893: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3894: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3895: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3896: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3897: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3898: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3899: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3900: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3901: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3902: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3903: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3904: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3905: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3906: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 3907: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3908: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3909: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3910: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3911: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3912: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3913: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3914: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3915: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3916: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3917: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3918: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3919: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3920: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3921: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3922: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3923: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3924: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3925: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3926: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3927: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3928: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3929: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3930: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3931: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3932: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3933: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3934: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3935: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3936: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3937: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3938: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3939: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3940: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3941: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3942: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3943: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3944: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3945: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3946: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3947: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3948: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3949: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3950: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3951: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3952: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3953: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3954: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3955: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3956: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3957: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3958: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3959: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3960: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3961: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3962: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3963: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3964: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3965: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3966: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3967: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3968: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3969: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3970: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3971: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3972: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3973: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3974: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3975: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3976: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3977: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3978: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3979: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3980: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3981: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3982: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3983: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3984: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3985: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3986: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3987: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 3988: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3989: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3990: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3991: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3992: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3993: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3994: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3995: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3996: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 3997: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3998: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 3999: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4000: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4001: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4002: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4003: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4004: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4005: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4006: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4007: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4008: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4009: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4010: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4011: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4012: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4013: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4014: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4015: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4016: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4017: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4018: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4019: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4020: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4021: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4022: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4023: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4024: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4025: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4026: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4027: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4028: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4029: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4030: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 4031: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 4032: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4033: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4034: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4035: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4036: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4037: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4038: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4039: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4040: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4041: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4042: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4043: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4044: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 4045: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4046: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4047: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4048: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4049: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4050: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4051: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4052: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4053: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4054: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4055: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4056: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4057: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901480 +Vertex 4058: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901480 +Vertex 4059: +Vertex groups: 2 + Group: 'Neck', Weight: 0.093527 + Group: 'Head', Weight: 0.906479 +Vertex 4060: +Vertex groups: 2 + Group: 'Neck', Weight: 0.093465 + Group: 'Head', Weight: 0.906542 +Vertex 4061: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098545 + Group: 'Head', Weight: 0.901468 +Vertex 4062: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901470 +Vertex 4063: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901474 +Vertex 4064: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901477 +Vertex 4065: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901477 +Vertex 4066: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901474 +Vertex 4067: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901470 +Vertex 4068: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901466 +Vertex 4069: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098572 + Group: 'Head', Weight: 0.901438 +Vertex 4070: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098954 + Group: 'Head', Weight: 0.901054 +Vertex 4071: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098377 + Group: 'Head', Weight: 0.901631 +Vertex 4072: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098533 + Group: 'Head', Weight: 0.901478 +Vertex 4073: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901478 +Vertex 4074: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901479 +Vertex 4075: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901480 +Vertex 4076: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901478 +Vertex 4077: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901468 +Vertex 4078: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901468 +Vertex 4079: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901471 +Vertex 4080: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901471 +Vertex 4081: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901475 +Vertex 4082: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901475 +Vertex 4083: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901480 +Vertex 4084: +Vertex groups: 2 + Group: 'Neck', Weight: 0.093198 + Group: 'Head', Weight: 0.906808 +Vertex 4085: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901477 +Vertex 4086: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901474 +Vertex 4087: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901470 +Vertex 4088: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901466 +Vertex 4089: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098548 + Group: 'Head', Weight: 0.901463 +Vertex 4090: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098523 + Group: 'Head', Weight: 0.901485 +Vertex 4091: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901479 +Vertex 4092: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901478 +Vertex 4093: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901468 +Vertex 4094: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901471 +Vertex 4095: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901475 +Vertex 4096: +Vertex groups: 2 + Group: 'Neck', Weight: 0.100402 + Group: 'Head', Weight: 0.899604 +Vertex 4097: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098281 + Group: 'Head', Weight: 0.901726 +Vertex 4098: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098729 + Group: 'Head', Weight: 0.901278 +Vertex 4099: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098708 + Group: 'Head', Weight: 0.901300 +Vertex 4100: +Vertex groups: 2 + Group: 'Neck', Weight: 0.100693 + Group: 'Head', Weight: 0.899314 +Vertex 4101: +Vertex groups: 2 + Group: 'Neck', Weight: 0.099212 + Group: 'Head', Weight: 0.900795 +Vertex 4102: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098646 + Group: 'Head', Weight: 0.901363 +Vertex 4103: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098490 + Group: 'Head', Weight: 0.901520 +Vertex 4104: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098534 + Group: 'Head', Weight: 0.901475 +Vertex 4105: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098541 + Group: 'Head', Weight: 0.901470 +Vertex 4106: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098554 + Group: 'Head', Weight: 0.901457 +Vertex 4107: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098548 + Group: 'Head', Weight: 0.901464 +Vertex 4108: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4109: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4110: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4111: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4112: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4113: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4114: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4115: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4116: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4117: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4118: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4119: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4120: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4121: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4122: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4123: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4124: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4125: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4126: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4127: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4128: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4129: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4130: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4131: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4132: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4133: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4134: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4135: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4136: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4137: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4138: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4139: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4140: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4141: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4142: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4143: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4144: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4145: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4146: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4147: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4148: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4149: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4150: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4151: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4152: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4153: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4154: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4155: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4156: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4157: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4158: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4159: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4160: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4161: +Vertex groups: 2 + Group: 'Neck', Weight: 0.096775 + Group: 'Head', Weight: 0.903232 +Vertex 4162: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097469 + Group: 'Head', Weight: 0.902538 +Vertex 4163: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4164: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4165: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4166: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4167: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4168: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4169: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4170: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4171: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097097 + Group: 'Head', Weight: 0.902910 +Vertex 4172: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097101 + Group: 'Head', Weight: 0.902906 +Vertex 4173: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097092 + Group: 'Head', Weight: 0.902915 +Vertex 4174: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097095 + Group: 'Head', Weight: 0.902911 +Vertex 4175: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4176: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4177: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4178: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4179: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4180: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4181: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4182: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4183: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4184: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4185: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4186: +Vertex groups: 2 + Group: 'Neck', Weight: 0.096994 + Group: 'Head', Weight: 0.903013 +Vertex 4187: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4188: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4189: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4190: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4191: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097097 + Group: 'Head', Weight: 0.902910 +Vertex 4192: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097099 + Group: 'Head', Weight: 0.902908 +Vertex 4193: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4194: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4195: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4196: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4197: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4198: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097147 + Group: 'Head', Weight: 0.902860 +Vertex 4199: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097043 + Group: 'Head', Weight: 0.902964 +Vertex 4200: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097093 + Group: 'Head', Weight: 0.902914 +Vertex 4201: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097086 + Group: 'Head', Weight: 0.902922 +Vertex 4202: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097110 + Group: 'Head', Weight: 0.902897 +Vertex 4203: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097100 + Group: 'Head', Weight: 0.902907 +Vertex 4204: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097099 + Group: 'Head', Weight: 0.902908 +Vertex 4205: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097094 + Group: 'Head', Weight: 0.902913 +Vertex 4206: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097098 + Group: 'Head', Weight: 0.902909 +Vertex 4207: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 4208: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4209: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 4210: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4211: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4212: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4213: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4214: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4215: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4216: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4217: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4218: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4219: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4220: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4221: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4222: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4223: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4224: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4225: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4226: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4227: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4228: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4229: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4230: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4231: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4232: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4233: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4234: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4235: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4236: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4237: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4238: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4239: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4240: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4241: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4242: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4243: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4244: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4245: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4246: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4247: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4248: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4249: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4250: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4251: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4252: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4253: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4254: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4255: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4256: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4257: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4258: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4259: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4260: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4261: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4262: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4263: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4264: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4265: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4266: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4267: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4268: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4269: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4270: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4271: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4272: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4273: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4274: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4275: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4276: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4277: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4278: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4279: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4280: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4281: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4282: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4283: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4284: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4285: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4286: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4287: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4288: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4289: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4290: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4291: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4292: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4293: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4294: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4295: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4296: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4297: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4298: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4299: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4300: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4301: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4302: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4303: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4304: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4305: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4306: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4307: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4308: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4309: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4310: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4311: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4312: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4313: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4314: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4315: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4316: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4317: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4318: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4319: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4320: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4321: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4322: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4323: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4324: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4325: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4326: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4327: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4328: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4329: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4330: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4331: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4332: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4333: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4334: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4335: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4336: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4337: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4338: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4339: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4340: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4341: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4342: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4343: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4344: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4345: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4346: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4347: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4348: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4349: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4350: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4351: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4352: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4353: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4354: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4355: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4356: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4357: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4358: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4359: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4360: +Vertex groups: 1 + Group: 'Head', Weight: 1.000044 +Vertex 4361: +Vertex groups: 1 + Group: 'Head', Weight: 1.000044 +Vertex 4362: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4363: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4364: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 4365: +Vertex groups: 1 + Group: 'Head', Weight: 1.000019 +Vertex 4366: +Vertex groups: 1 + Group: 'Head', Weight: 1.000027 +Vertex 4367: +Vertex groups: 1 + Group: 'Head', Weight: 1.000034 +Vertex 4368: +Vertex groups: 1 + Group: 'Head', Weight: 1.000034 +Vertex 4369: +Vertex groups: 1 + Group: 'Head', Weight: 1.000027 +Vertex 4370: +Vertex groups: 1 + Group: 'Head', Weight: 1.000018 +Vertex 4371: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4372: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4373: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4374: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4375: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4376: +Vertex groups: 1 + Group: 'Head', Weight: 1.000036 +Vertex 4377: +Vertex groups: 1 + Group: 'Head', Weight: 1.000044 +Vertex 4378: +Vertex groups: 1 + Group: 'Head', Weight: 1.000044 +Vertex 4379: +Vertex groups: 1 + Group: 'Head', Weight: 1.000036 +Vertex 4380: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4381: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4382: +Vertex groups: 1 + Group: 'Head', Weight: 1.000023 +Vertex 4383: +Vertex groups: 1 + Group: 'Head', Weight: 1.000023 +Vertex 4384: +Vertex groups: 1 + Group: 'Head', Weight: 1.000031 +Vertex 4385: +Vertex groups: 1 + Group: 'Head', Weight: 1.000031 +Vertex 4386: +Vertex groups: 1 + Group: 'Head', Weight: 1.000045 +Vertex 4387: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4388: +Vertex groups: 1 + Group: 'Head', Weight: 1.000034 +Vertex 4389: +Vertex groups: 1 + Group: 'Head', Weight: 1.000027 +Vertex 4390: +Vertex groups: 1 + Group: 'Head', Weight: 1.000019 +Vertex 4391: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4392: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4393: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4394: +Vertex groups: 1 + Group: 'Head', Weight: 1.000044 +Vertex 4395: +Vertex groups: 1 + Group: 'Head', Weight: 1.000036 +Vertex 4396: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4397: +Vertex groups: 1 + Group: 'Head', Weight: 1.000023 +Vertex 4398: +Vertex groups: 1 + Group: 'Head', Weight: 1.000031 +Vertex 4399: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4400: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4401: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4402: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4403: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4404: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4405: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4406: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4407: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4408: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4409: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4410: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4411: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4412: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4413: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4414: +Vertex groups: 1 + Group: 'Head', Weight: 1.000016 +Vertex 4415: +Vertex groups: 1 + Group: 'Head', Weight: 1.000016 +Vertex 4416: +Vertex groups: 1 + Group: 'Head', Weight: 1.000016 +Vertex 4417: +Vertex groups: 1 + Group: 'Head', Weight: 1.000021 +Vertex 4418: +Vertex groups: 1 + Group: 'Head', Weight: 1.000021 +Vertex 4419: +Vertex groups: 1 + Group: 'Head', Weight: 1.000021 +Vertex 4420: +Vertex groups: 1 + Group: 'Head', Weight: 1.000025 +Vertex 4421: +Vertex groups: 1 + Group: 'Head', Weight: 1.000025 +Vertex 4422: +Vertex groups: 1 + Group: 'Head', Weight: 1.000025 +Vertex 4423: +Vertex groups: 1 + Group: 'Head', Weight: 1.000029 +Vertex 4424: +Vertex groups: 1 + Group: 'Head', Weight: 1.000029 +Vertex 4425: +Vertex groups: 1 + Group: 'Head', Weight: 1.000029 +Vertex 4426: +Vertex groups: 1 + Group: 'Head', Weight: 1.000041 +Vertex 4427: +Vertex groups: 1 + Group: 'Head', Weight: 1.000041 +Vertex 4428: +Vertex groups: 1 + Group: 'Head', Weight: 1.000041 +Vertex 4429: +Vertex groups: 1 + Group: 'Head', Weight: 1.000039 +Vertex 4430: +Vertex groups: 1 + Group: 'Head', Weight: 1.000039 +Vertex 4431: +Vertex groups: 1 + Group: 'Head', Weight: 1.000039 +Vertex 4432: +Vertex groups: 1 + Group: 'Head', Weight: 1.000033 +Vertex 4433: +Vertex groups: 1 + Group: 'Head', Weight: 1.000033 +Vertex 4434: +Vertex groups: 1 + Group: 'Head', Weight: 1.000033 +Vertex 4435: +Vertex groups: 1 + Group: 'Head', Weight: 0.999986 +Vertex 4436: +Vertex groups: 1 + Group: 'Head', Weight: 0.999986 +Vertex 4437: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4438: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4439: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4440: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4441: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4442: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4443: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4444: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4445: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4446: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4447: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4448: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4449: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4450: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4451: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4452: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4453: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4454: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4455: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4456: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4457: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4458: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4459: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4460: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4461: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4462: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4463: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4464: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4465: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4466: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4467: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4468: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4469: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4470: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4471: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4472: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4473: +Vertex groups: 1 + Group: 'Head', Weight: 0.980512 +Vertex 4474: +Vertex groups: 1 + Group: 'Head', Weight: 0.982431 +Vertex 4475: +Vertex groups: 1 + Group: 'Head', Weight: 0.983293 +Vertex 4476: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4477: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4478: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4479: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4480: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4481: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4482: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4483: +Vertex groups: 1 + Group: 'Head', Weight: 0.983303 +Vertex 4484: +Vertex groups: 1 + Group: 'Head', Weight: 0.983529 +Vertex 4485: +Vertex groups: 1 + Group: 'Head', Weight: 0.983081 +Vertex 4486: +Vertex groups: 1 + Group: 'Head', Weight: 0.983277 +Vertex 4487: +Vertex groups: 1 + Group: 'Head', Weight: 0.983294 +Vertex 4488: +Vertex groups: 1 + Group: 'Head', Weight: 0.983295 +Vertex 4489: +Vertex groups: 1 + Group: 'Head', Weight: 0.983295 +Vertex 4490: +Vertex groups: 1 + Group: 'Head', Weight: 0.983295 +Vertex 4491: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4492: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4493: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4494: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4495: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4496: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4497: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4498: +Vertex groups: 1 + Group: 'Head', Weight: 0.983296 +Vertex 4499: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4500: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4501: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4502: +Vertex groups: 1 + Group: 'Head', Weight: 0.983297 +Vertex 4503: +Vertex groups: 1 + Group: 'Head', Weight: 0.983089 +Vertex 4504: +Vertex groups: 1 + Group: 'Head', Weight: 0.982187 +Vertex 4505: +Vertex groups: 1 + Group: 'Head', Weight: 0.983340 +Vertex 4506: +Vertex groups: 1 + Group: 'Head', Weight: 0.983229 +Vertex 4507: +Vertex groups: 1 + Group: 'Head', Weight: 0.994199 +Vertex 4508: +Vertex groups: 1 + Group: 'Head', Weight: 0.994198 +Vertex 4509: +Vertex groups: 1 + Group: 'Head', Weight: 0.989961 +Vertex 4510: +Vertex groups: 1 + Group: 'Head', Weight: 0.990425 +Vertex 4511: +Vertex groups: 1 + Group: 'Head', Weight: 0.994223 +Vertex 4512: +Vertex groups: 1 + Group: 'Head', Weight: 0.994207 +Vertex 4513: +Vertex groups: 1 + Group: 'Head', Weight: 0.994204 +Vertex 4514: +Vertex groups: 1 + Group: 'Head', Weight: 0.994202 +Vertex 4515: +Vertex groups: 1 + Group: 'Head', Weight: 0.994202 +Vertex 4516: +Vertex groups: 1 + Group: 'Head', Weight: 0.994203 +Vertex 4517: +Vertex groups: 1 + Group: 'Head', Weight: 0.994206 +Vertex 4518: +Vertex groups: 1 + Group: 'Head', Weight: 0.994185 +Vertex 4519: +Vertex groups: 1 + Group: 'Head', Weight: 0.993926 +Vertex 4520: +Vertex groups: 1 + Group: 'Head', Weight: 0.991222 +Vertex 4521: +Vertex groups: 1 + Group: 'Head', Weight: 0.991586 +Vertex 4522: +Vertex groups: 1 + Group: 'Head', Weight: 0.994246 +Vertex 4523: +Vertex groups: 1 + Group: 'Head', Weight: 0.994211 +Vertex 4524: +Vertex groups: 1 + Group: 'Head', Weight: 0.994208 +Vertex 4525: +Vertex groups: 1 + Group: 'Head', Weight: 0.994207 +Vertex 4526: +Vertex groups: 1 + Group: 'Head', Weight: 0.994206 +Vertex 4527: +Vertex groups: 1 + Group: 'Head', Weight: 0.994206 +Vertex 4528: +Vertex groups: 1 + Group: 'Head', Weight: 0.994205 +Vertex 4529: +Vertex groups: 1 + Group: 'Head', Weight: 0.994204 +Vertex 4530: +Vertex groups: 1 + Group: 'Head', Weight: 0.994205 +Vertex 4531: +Vertex groups: 1 + Group: 'Head', Weight: 0.994203 +Vertex 4532: +Vertex groups: 1 + Group: 'Head', Weight: 0.994202 +Vertex 4533: +Vertex groups: 1 + Group: 'Head', Weight: 0.994202 +Vertex 4534: +Vertex groups: 1 + Group: 'Head', Weight: 0.994202 +Vertex 4535: +Vertex groups: 1 + Group: 'Head', Weight: 0.994201 +Vertex 4536: +Vertex groups: 1 + Group: 'Head', Weight: 0.994200 +Vertex 4537: +Vertex groups: 1 + Group: 'Head', Weight: 0.994200 +Vertex 4538: +Vertex groups: 1 + Group: 'Head', Weight: 0.994201 +Vertex 4539: +Vertex groups: 1 + Group: 'Head', Weight: 0.989923 +Vertex 4540: +Vertex groups: 1 + Group: 'Head', Weight: 0.989601 +Vertex 4541: +Vertex groups: 1 + Group: 'Head', Weight: 0.992444 +Vertex 4542: +Vertex groups: 1 + Group: 'Head', Weight: 0.993001 +Vertex 4543: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.463504 + Group: 'Head', Weight: 0.536497 +Vertex 4544: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.466517 + Group: 'Head', Weight: 0.533484 +Vertex 4545: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.037903 + Group: 'Head', Weight: 0.956049 +Vertex 4546: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.028446 + Group: 'Head', Weight: 0.960777 +Vertex 4547: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.115476 + Group: 'Head', Weight: 0.884524 +Vertex 4548: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.190489 + Group: 'Head', Weight: 0.809512 +Vertex 4549: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.280325 + Group: 'Head', Weight: 0.719676 +Vertex 4550: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.378790 + Group: 'Head', Weight: 0.621211 +Vertex 4551: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.376285 + Group: 'Head', Weight: 0.623716 +Vertex 4552: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.275584 + Group: 'Head', Weight: 0.724417 +Vertex 4553: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.191170 + Group: 'Head', Weight: 0.808831 +Vertex 4554: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.111862 + Group: 'Head', Weight: 0.888138 +Vertex 4555: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.087504 + Group: 'Head', Weight: 0.912497 +Vertex 4556: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.055040 + Group: 'Head', Weight: 0.944961 +Vertex 4557: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.062185 + Group: 'Head', Weight: 0.937816 +Vertex 4558: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.091439 + Group: 'Head', Weight: 0.908562 +Vertex 4559: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.138760 + Group: 'Head', Weight: 0.861241 +Vertex 4560: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.163435 + Group: 'Head', Weight: 0.836565 +Vertex 4561: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.162614 + Group: 'Head', Weight: 0.837387 +Vertex 4562: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.136118 + Group: 'Head', Weight: 0.863883 +Vertex 4563: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.220043 + Group: 'Head', Weight: 0.779958 +Vertex 4564: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.250750 + Group: 'Head', Weight: 0.749251 +Vertex 4565: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.247045 + Group: 'Head', Weight: 0.752956 +Vertex 4566: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.219701 + Group: 'Head', Weight: 0.780299 +Vertex 4567: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.314547 + Group: 'Head', Weight: 0.685454 +Vertex 4568: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.349768 + Group: 'Head', Weight: 0.650232 +Vertex 4569: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.346836 + Group: 'Head', Weight: 0.653165 +Vertex 4570: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.311346 + Group: 'Head', Weight: 0.688655 +Vertex 4571: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.405806 + Group: 'Head', Weight: 0.594194 +Vertex 4572: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.436025 + Group: 'Head', Weight: 0.563976 +Vertex 4573: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.441436 + Group: 'Head', Weight: 0.558564 +Vertex 4574: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.405485 + Group: 'Head', Weight: 0.594516 +Vertex 4575: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.035065 + Group: 'Head', Weight: 0.957468 +Vertex 4576: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.050501 + Group: 'Head', Weight: 0.949499 +Vertex 4577: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.073341 + Group: 'Head', Weight: 0.926660 +Vertex 4578: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.078038 + Group: 'Head', Weight: 0.921962 +Vertex 4579: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4580: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4581: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4582: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4583: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4584: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4585: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4586: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4587: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4588: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4589: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4590: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4591: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4592: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4593: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4594: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4595: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4596: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4597: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4598: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4599: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4600: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4601: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4602: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4603: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4604: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4605: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4606: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4607: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4608: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4609: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 4610: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4611: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4612: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4613: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4614: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4615: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4616: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4617: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4618: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4619: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4620: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4621: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4622: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4623: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4624: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4625: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4626: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4627: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4628: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4629: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4630: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4631: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 4632: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 4633: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 4634: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 4635: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4636: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4637: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4638: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 4639: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4640: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4641: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4642: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 4643: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4644: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4645: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4646: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 4647: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4648: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4649: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4650: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4651: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4652: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4653: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4654: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4655: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4656: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4657: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4658: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4659: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4660: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4661: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4662: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4663: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4664: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4665: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4666: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4667: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4668: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4669: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4670: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4671: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4672: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4673: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4674: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4675: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4676: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4677: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4678: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4679: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4680: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4681: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4682: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4683: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4684: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4685: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4686: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4687: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4688: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4689: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4690: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4691: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4692: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4693: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4694: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4695: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4696: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4697: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4698: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4699: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4700: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4701: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4702: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4703: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4704: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4705: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4706: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4707: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4708: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4709: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4710: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4711: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4712: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4713: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4714: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 4715: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4716: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4717: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 4718: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 4719: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4720: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4721: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4722: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4723: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972556 +Vertex 4724: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972556 +Vertex 4725: +Vertex groups: 2 + Group: 'Neck', Weight: 0.033899 + Group: 'Head', Weight: 0.958054 +Vertex 4726: +Vertex groups: 2 + Group: 'Neck', Weight: 0.039628 + Group: 'Head', Weight: 0.955190 +Vertex 4727: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004961 + Group: 'Head', Weight: 0.972525 +Vertex 4728: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972547 +Vertex 4729: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972550 +Vertex 4730: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972552 +Vertex 4731: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972552 +Vertex 4732: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972550 +Vertex 4733: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972548 +Vertex 4734: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004880 + Group: 'Head', Weight: 0.972566 +Vertex 4735: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004676 + Group: 'Head', Weight: 0.972667 +Vertex 4736: +Vertex groups: 2 + Group: 'Neck', Weight: 0.024446 + Group: 'Head', Weight: 0.962781 +Vertex 4737: +Vertex groups: 2 + Group: 'Neck', Weight: 0.022521 + Group: 'Head', Weight: 0.963744 +Vertex 4738: +Vertex groups: 2 + Group: 'Neck', Weight: 0.005355 + Group: 'Head', Weight: 0.972327 +Vertex 4739: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004929 + Group: 'Head', Weight: 0.972542 +Vertex 4740: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004924 + Group: 'Head', Weight: 0.972546 +Vertex 4741: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004921 + Group: 'Head', Weight: 0.972547 +Vertex 4742: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004915 + Group: 'Head', Weight: 0.972549 +Vertex 4743: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972548 +Vertex 4744: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972549 +Vertex 4745: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972549 +Vertex 4746: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972548 +Vertex 4747: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972550 +Vertex 4748: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972551 +Vertex 4749: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972551 +Vertex 4750: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004922 + Group: 'Head', Weight: 0.972551 +Vertex 4751: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972553 +Vertex 4752: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972554 +Vertex 4753: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972554 +Vertex 4754: +Vertex groups: 2 + Group: 'Neck', Weight: 0.004923 + Group: 'Head', Weight: 0.972553 +Vertex 4755: +Vertex groups: 2 + Group: 'Neck', Weight: 0.037159 + Group: 'Head', Weight: 0.956425 +Vertex 4756: +Vertex groups: 2 + Group: 'Neck', Weight: 0.032336 + Group: 'Head', Weight: 0.958836 +Vertex 4757: +Vertex groups: 2 + Group: 'Neck', Weight: 0.013321 + Group: 'Head', Weight: 0.968344 +Vertex 4758: +Vertex groups: 2 + Group: 'Neck', Weight: 0.013797 + Group: 'Head', Weight: 0.968106 +Vertex 4759: +Vertex groups: 1 + Group: 'Head', Weight: 0.994199 +Vertex 4760: +Vertex groups: 1 + Group: 'Head', Weight: 0.990076 +Vertex 4761: +Vertex groups: 1 + Group: 'Head', Weight: 0.994202 +Vertex 4762: +Vertex groups: 1 + Group: 'Head', Weight: 0.994203 +Vertex 4763: +Vertex groups: 1 + Group: 'Head', Weight: 0.994206 +Vertex 4764: +Vertex groups: 1 + Group: 'Head', Weight: 0.994217 +Vertex 4765: +Vertex groups: 1 + Group: 'Head', Weight: 0.994371 +Vertex 4766: +Vertex groups: 1 + Group: 'Head', Weight: 0.991289 +Vertex 4767: +Vertex groups: 1 + Group: 'Head', Weight: 0.994207 +Vertex 4768: +Vertex groups: 1 + Group: 'Head', Weight: 0.994209 +Vertex 4769: +Vertex groups: 1 + Group: 'Head', Weight: 0.994204 +Vertex 4770: +Vertex groups: 1 + Group: 'Head', Weight: 0.994206 +Vertex 4771: +Vertex groups: 1 + Group: 'Head', Weight: 0.994202 +Vertex 4772: +Vertex groups: 1 + Group: 'Head', Weight: 0.994203 +Vertex 4773: +Vertex groups: 1 + Group: 'Head', Weight: 0.994200 +Vertex 4774: +Vertex groups: 1 + Group: 'Head', Weight: 0.994201 +Vertex 4775: +Vertex groups: 1 + Group: 'Head', Weight: 0.988768 +Vertex 4776: +Vertex groups: 1 + Group: 'Head', Weight: 0.992832 +Vertex 4777: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.483880 + Group: 'Head', Weight: 0.516121 +Vertex 4778: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.049751 + Group: 'Head', Weight: 0.950125 +Vertex 4779: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.366070 + Group: 'Head', Weight: 0.633931 +Vertex 4780: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.266361 + Group: 'Head', Weight: 0.733639 +Vertex 4781: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.193074 + Group: 'Head', Weight: 0.806926 +Vertex 4782: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.116441 + Group: 'Head', Weight: 0.883559 +Vertex 4783: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.095535 + Group: 'Head', Weight: 0.904466 +Vertex 4784: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.065166 + Group: 'Head', Weight: 0.934835 +Vertex 4785: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.165156 + Group: 'Head', Weight: 0.834844 +Vertex 4786: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.139147 + Group: 'Head', Weight: 0.860853 +Vertex 4787: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.243389 + Group: 'Head', Weight: 0.756611 +Vertex 4788: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.219403 + Group: 'Head', Weight: 0.780597 +Vertex 4789: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.335256 + Group: 'Head', Weight: 0.664745 +Vertex 4790: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.298470 + Group: 'Head', Weight: 0.701530 +Vertex 4791: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.422422 + Group: 'Head', Weight: 0.577579 +Vertex 4792: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.394856 + Group: 'Head', Weight: 0.605145 +Vertex 4793: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.052803 + Group: 'Head', Weight: 0.947197 +Vertex 4794: +Vertex groups: 2 + Group: 'Spine2', Weight: 0.081762 + Group: 'Head', Weight: 0.918239 +Vertex 4795: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 4796: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 4797: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4798: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4799: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4800: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4801: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4802: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 4803: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 4804: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4805: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4806: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4807: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4808: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4809: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4810: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4811: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 4812: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 4813: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 4814: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 4815: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4816: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4817: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4818: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4819: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 4820: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 4821: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 4822: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4823: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 4824: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4825: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4826: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4827: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4828: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4829: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 4830: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 4831: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4832: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 4833: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 4834: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4835: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4836: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4837: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4838: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4839: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4840: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4841: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4842: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4843: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4844: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4845: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4846: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 4847: +Vertex groups: 1 + Group: 'Head', Weight: 0.999986 +Vertex 4848: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4849: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4850: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4851: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 4852: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4853: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4854: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4855: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4856: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4857: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4858: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4859: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4860: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4861: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4862: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4863: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4864: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4865: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4866: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4867: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4868: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4869: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4870: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 4871: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 4872: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 4873: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4874: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4875: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 4876: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 4877: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4878: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4879: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4880: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 4881: +Vertex groups: 1 + Group: 'Head', Weight: 0.999989 +Vertex 4882: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 4883: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 4884: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 4885: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4886: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4887: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4888: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4889: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4890: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4891: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4892: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4893: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4894: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4895: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4896: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4897: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4898: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4899: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4900: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4901: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4902: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4903: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4904: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4905: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4906: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4907: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4908: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4909: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4910: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4911: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4912: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4913: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4914: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4915: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4916: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4917: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4918: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4919: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4920: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4921: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4922: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4923: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4924: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4925: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4926: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4927: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4928: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 4929: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 4930: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4931: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4932: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4933: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4934: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4935: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4936: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4937: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4938: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4939: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4940: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4941: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4942: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4943: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4944: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4945: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 4946: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4947: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4948: +Vertex groups: 1 + Group: 'Head', Weight: 1.000010 +Vertex 4949: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4950: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4951: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4952: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4953: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4954: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4955: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4956: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4957: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4958: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4959: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4960: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4961: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4962: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4963: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4964: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4965: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4966: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4967: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4968: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4969: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4970: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4971: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4972: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4973: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4974: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4975: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4976: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4977: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4978: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4979: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4980: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4981: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4982: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4983: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4984: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4985: +Vertex groups: 1 + Group: 'Head', Weight: 0.999997 +Vertex 4986: +Vertex groups: 1 + Group: 'Head', Weight: 0.999999 +Vertex 4987: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4988: +Vertex groups: 1 + Group: 'Head', Weight: 0.999998 +Vertex 4989: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 4990: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 4991: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4992: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 4993: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 4994: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 4995: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4996: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4997: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 4998: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 4999: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5000: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5001: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5002: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5003: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5004: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5005: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 5006: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 5007: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 5008: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 5009: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5010: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5011: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5012: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5013: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 5014: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 5015: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 5016: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5017: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 5018: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 5019: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5020: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5021: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5022: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5023: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 5024: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 5025: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5026: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5027: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 5028: +Vertex groups: 1 + Group: 'Head', Weight: 1.000000 +Vertex 5029: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5030: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5031: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5032: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5033: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5034: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5035: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5036: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5037: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5038: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5039: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5040: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5041: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5042: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5043: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5044: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5045: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5046: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5047: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5048: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5049: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5050: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5051: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5052: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 5053: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 5054: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 5055: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5056: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5057: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5058: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 5059: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5060: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 5061: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 5062: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5063: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5064: +Vertex groups: 1 + Group: 'Head', Weight: 0.999983 +Vertex 5065: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 5066: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5067: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5068: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5069: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5070: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5071: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 5072: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 5073: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5074: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5075: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5076: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5077: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5078: +Vertex groups: 1 + Group: 'Head', Weight: 0.999996 +Vertex 5079: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5080: +Vertex groups: 1 + Group: 'Head', Weight: 0.999982 +Vertex 5081: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 5082: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5083: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5084: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5085: +Vertex groups: 1 + Group: 'Head', Weight: 0.999990 +Vertex 5086: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5087: +Vertex groups: 1 + Group: 'Head', Weight: 0.999981 +Vertex 5088: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5089: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5090: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5091: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5092: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5093: +Vertex groups: 1 + Group: 'Head', Weight: 0.999995 +Vertex 5094: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 5095: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 5096: +Vertex groups: 1 + Group: 'Head', Weight: 0.999994 +Vertex 5097: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5098: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5099: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5100: +Vertex groups: 1 + Group: 'Head', Weight: 1.000022 +Vertex 5101: +Vertex groups: 1 + Group: 'Head', Weight: 1.000022 +Vertex 5102: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5103: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5104: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5105: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5106: +Vertex groups: 1 + Group: 'Head', Weight: 1.000012 +Vertex 5107: +Vertex groups: 1 + Group: 'Head', Weight: 1.000018 +Vertex 5108: +Vertex groups: 1 + Group: 'Head', Weight: 1.000017 +Vertex 5109: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 5110: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5111: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5112: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5113: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5114: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5115: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5116: +Vertex groups: 1 + Group: 'Head', Weight: 1.000019 +Vertex 5117: +Vertex groups: 1 + Group: 'Head', Weight: 1.000022 +Vertex 5118: +Vertex groups: 1 + Group: 'Head', Weight: 1.000022 +Vertex 5119: +Vertex groups: 1 + Group: 'Head', Weight: 1.000018 +Vertex 5120: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5121: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5122: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 5123: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 5124: +Vertex groups: 1 + Group: 'Head', Weight: 1.000015 +Vertex 5125: +Vertex groups: 1 + Group: 'Head', Weight: 1.000015 +Vertex 5126: +Vertex groups: 1 + Group: 'Head', Weight: 1.000022 +Vertex 5127: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5128: +Vertex groups: 1 + Group: 'Head', Weight: 1.000018 +Vertex 5129: +Vertex groups: 1 + Group: 'Head', Weight: 1.000011 +Vertex 5130: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5131: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5132: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5133: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5134: +Vertex groups: 1 + Group: 'Head', Weight: 1.000022 +Vertex 5135: +Vertex groups: 1 + Group: 'Head', Weight: 1.000018 +Vertex 5136: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5137: +Vertex groups: 1 + Group: 'Head', Weight: 1.000008 +Vertex 5138: +Vertex groups: 1 + Group: 'Head', Weight: 1.000015 +Vertex 5139: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5140: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5141: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5142: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5143: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5144: +Vertex groups: 1 + Group: 'Head', Weight: 1.000003 +Vertex 5145: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5146: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5147: +Vertex groups: 1 + Group: 'Head', Weight: 1.000004 +Vertex 5148: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5149: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5150: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5151: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5152: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5153: +Vertex groups: 1 + Group: 'Head', Weight: 1.000005 +Vertex 5154: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5155: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5156: +Vertex groups: 1 + Group: 'Head', Weight: 1.000006 +Vertex 5157: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 5158: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 5159: +Vertex groups: 1 + Group: 'Head', Weight: 1.000007 +Vertex 5160: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 5161: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 5162: +Vertex groups: 1 + Group: 'Head', Weight: 1.000009 +Vertex 5163: +Vertex groups: 1 + Group: 'Head', Weight: 1.000013 +Vertex 5164: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 5165: +Vertex groups: 1 + Group: 'Head', Weight: 1.000014 +Vertex 5166: +Vertex groups: 1 + Group: 'Head', Weight: 1.000021 +Vertex 5167: +Vertex groups: 1 + Group: 'Head', Weight: 1.000020 +Vertex 5168: +Vertex groups: 1 + Group: 'Head', Weight: 1.000021 +Vertex 5169: +Vertex groups: 1 + Group: 'Head', Weight: 1.000019 +Vertex 5170: +Vertex groups: 1 + Group: 'Head', Weight: 1.000019 +Vertex 5171: +Vertex groups: 1 + Group: 'Head', Weight: 1.000020 +Vertex 5172: +Vertex groups: 1 + Group: 'Head', Weight: 1.000017 +Vertex 5173: +Vertex groups: 1 + Group: 'Head', Weight: 1.000016 +Vertex 5174: +Vertex groups: 1 + Group: 'Head', Weight: 1.000016 +Vertex 5175: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 5176: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 5177: +Vertex groups: 1 + Group: 'Head', Weight: 0.999991 +Vertex 5178: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5179: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5180: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5181: +Vertex groups: 0 +Vertex 5182: +Vertex groups: 0 +Vertex 5183: +Vertex groups: 0 +Vertex 5184: +Vertex groups: 0 +Vertex 5185: +Vertex groups: 0 +Vertex 5186: +Vertex groups: 0 +Vertex 5187: +Vertex groups: 0 +Vertex 5188: +Vertex groups: 0 +Vertex 5189: +Vertex groups: 0 +Vertex 5190: +Vertex groups: 5 + Group: 'Hips', Weight: 0.485924 + Group: 'Spine', Weight: 0.284869 + Group: 'Spine1', Weight: 0.047699 + Group: 'LeftUpLeg', Weight: 0.134998 + Group: 'RightUpLeg', Weight: 0.032522 +Vertex 5191: +Vertex groups: 4 + Group: 'Hips', Weight: 0.354494 + Group: 'Spine', Weight: 0.327522 + Group: 'Spine1', Weight: 0.053944 + Group: 'LeftUpLeg', Weight: 0.238671 +Vertex 5192: +Vertex groups: 4 + Group: 'Hips', Weight: 0.172641 + Group: 'Spine', Weight: 0.411245 + Group: 'Spine1', Weight: 0.068821 + Group: 'LeftUpLeg', Weight: 0.330687 +Vertex 5193: +Vertex groups: 4 + Group: 'Hips', Weight: 0.081324 + Group: 'Spine', Weight: 0.479573 + Group: 'Spine1', Weight: 0.087901 + Group: 'LeftUpLeg', Weight: 0.335512 +Vertex 5194: +Vertex groups: 4 + Group: 'Hips', Weight: 0.043142 + Group: 'Spine', Weight: 0.516324 + Group: 'Spine1', Weight: 0.099493 + Group: 'LeftUpLeg', Weight: 0.320809 +Vertex 5195: +Vertex groups: 4 + Group: 'Hips', Weight: 0.004592 + Group: 'Spine', Weight: 0.564738 + Group: 'Spine1', Weight: 0.098608 + Group: 'LeftUpLeg', Weight: 0.291211 +Vertex 5196: +Vertex groups: 4 + Group: 'Hips', Weight: 0.005990 + Group: 'Spine', Weight: 0.785445 + Group: 'Spine1', Weight: 0.078378 + Group: 'LeftUpLeg', Weight: 0.079791 +Vertex 5197: +Vertex groups: 5 + Group: 'Hips', Weight: 0.007893 + Group: 'Spine', Weight: 0.825365 + Group: 'Spine1', Weight: 0.062200 + Group: 'LeftUpLeg', Weight: 0.028686 + Group: 'RightUpLeg', Weight: 0.028844 +Vertex 5198: +Vertex groups: 4 + Group: 'Hips', Weight: 0.000820 + Group: 'Spine', Weight: 0.718595 + Group: 'Spine1', Weight: 0.089622 + Group: 'LeftUpLeg', Weight: 0.143002 +Vertex 5199: +Vertex groups: 3 + Group: 'Spine', Weight: 0.646628 + Group: 'Spine1', Weight: 0.096957 + Group: 'LeftUpLeg', Weight: 0.211612 +Vertex 5200: +Vertex groups: 5 + Group: 'Hips', Weight: 0.521450 + Group: 'Spine', Weight: 0.276425 + Group: 'Spine1', Weight: 0.045458 + Group: 'LeftUpLeg', Weight: 0.075189 + Group: 'RightUpLeg', Weight: 0.075295 +Vertex 5201: +Vertex groups: 5 + Group: 'Hips', Weight: 0.485698 + Group: 'Spine', Weight: 0.284845 + Group: 'Spine1', Weight: 0.047799 + Group: 'LeftUpLeg', Weight: 0.032457 + Group: 'RightUpLeg', Weight: 0.135221 +Vertex 5202: +Vertex groups: 4 + Group: 'Hips', Weight: 0.354173 + Group: 'Spine', Weight: 0.327376 + Group: 'Spine1', Weight: 0.054040 + Group: 'RightUpLeg', Weight: 0.239024 +Vertex 5203: +Vertex groups: 4 + Group: 'Hips', Weight: 0.172511 + Group: 'Spine', Weight: 0.410811 + Group: 'Spine1', Weight: 0.068956 + Group: 'RightUpLeg', Weight: 0.331074 +Vertex 5204: +Vertex groups: 4 + Group: 'Hips', Weight: 0.081325 + Group: 'Spine', Weight: 0.478920 + Group: 'Spine1', Weight: 0.088071 + Group: 'RightUpLeg', Weight: 0.335931 +Vertex 5205: +Vertex groups: 4 + Group: 'Hips', Weight: 0.043211 + Group: 'Spine', Weight: 0.515574 + Group: 'Spine1', Weight: 0.099686 + Group: 'RightUpLeg', Weight: 0.321251 +Vertex 5206: +Vertex groups: 4 + Group: 'Hips', Weight: 0.004689 + Group: 'Spine', Weight: 0.563903 + Group: 'Spine1', Weight: 0.098832 + Group: 'RightUpLeg', Weight: 0.291684 +Vertex 5207: +Vertex groups: 4 + Group: 'Hips', Weight: 0.006091 + Group: 'Spine', Weight: 0.784867 + Group: 'Spine1', Weight: 0.078597 + Group: 'RightUpLeg', Weight: 0.080054 +Vertex 5208: +Vertex groups: 4 + Group: 'Hips', Weight: 0.000943 + Group: 'Spine', Weight: 0.717778 + Group: 'Spine1', Weight: 0.089893 + Group: 'RightUpLeg', Weight: 0.143401 +Vertex 5209: +Vertex groups: 3 + Group: 'Spine', Weight: 0.645737 + Group: 'Spine1', Weight: 0.097215 + Group: 'RightUpLeg', Weight: 0.212090 +Vertex 5210: +Vertex groups: 5 + Group: 'Hips', Weight: 0.472234 + Group: 'Spine', Weight: 0.299955 + Group: 'Spine1', Weight: 0.051487 + Group: 'LeftUpLeg', Weight: 0.131717 + Group: 'RightUpLeg', Weight: 0.030599 +Vertex 5211: +Vertex groups: 4 + Group: 'Hips', Weight: 0.345828 + Group: 'Spine', Weight: 0.340443 + Group: 'Spine1', Weight: 0.056000 + Group: 'LeftUpLeg', Weight: 0.232409 +Vertex 5212: +Vertex groups: 4 + Group: 'Hips', Weight: 0.169230 + Group: 'Spine', Weight: 0.423859 + Group: 'Spine1', Weight: 0.071180 + Group: 'LeftUpLeg', Weight: 0.318888 +Vertex 5213: +Vertex groups: 4 + Group: 'Hips', Weight: 0.080965 + Group: 'Spine', Weight: 0.487819 + Group: 'Spine1', Weight: 0.090966 + Group: 'LeftUpLeg', Weight: 0.324218 +Vertex 5214: +Vertex groups: 4 + Group: 'Hips', Weight: 0.042778 + Group: 'Spine', Weight: 0.523297 + Group: 'Spine1', Weight: 0.103115 + Group: 'LeftUpLeg', Weight: 0.309972 +Vertex 5215: +Vertex groups: 4 + Group: 'Hips', Weight: 0.004382 + Group: 'Spine', Weight: 0.570553 + Group: 'Spine1', Weight: 0.102662 + Group: 'LeftUpLeg', Weight: 0.281019 +Vertex 5216: +Vertex groups: 4 + Group: 'Hips', Weight: 0.002764 + Group: 'Spine', Weight: 0.785954 + Group: 'Spine1', Weight: 0.082599 + Group: 'LeftUpLeg', Weight: 0.077521 +Vertex 5217: +Vertex groups: 5 + Group: 'Hips', Weight: 0.004754 + Group: 'Spine', Weight: 0.827288 + Group: 'Spine1', Weight: 0.064734 + Group: 'LeftUpLeg', Weight: 0.025655 + Group: 'RightUpLeg', Weight: 0.025810 +Vertex 5218: +Vertex groups: 3 + Group: 'Spine', Weight: 0.720624 + Group: 'Spine1', Weight: 0.093906 + Group: 'LeftUpLeg', Weight: 0.137893 +Vertex 5219: +Vertex groups: 3 + Group: 'Spine', Weight: 0.649791 + Group: 'Spine1', Weight: 0.101083 + Group: 'LeftUpLeg', Weight: 0.204623 +Vertex 5220: +Vertex groups: 5 + Group: 'Hips', Weight: 0.508398 + Group: 'Spine', Weight: 0.290198 + Group: 'Spine1', Weight: 0.050146 + Group: 'LeftUpLeg', Weight: 0.073528 + Group: 'RightUpLeg', Weight: 0.073633 +Vertex 5221: +Vertex groups: 5 + Group: 'Hips', Weight: 0.472017 + Group: 'Spine', Weight: 0.299920 + Group: 'Spine1', Weight: 0.051539 + Group: 'LeftUpLeg', Weight: 0.030534 + Group: 'RightUpLeg', Weight: 0.131938 +Vertex 5222: +Vertex groups: 4 + Group: 'Hips', Weight: 0.345527 + Group: 'Spine', Weight: 0.340277 + Group: 'Spine1', Weight: 0.056098 + Group: 'RightUpLeg', Weight: 0.232759 +Vertex 5223: +Vertex groups: 4 + Group: 'Hips', Weight: 0.169114 + Group: 'Spine', Weight: 0.423405 + Group: 'Spine1', Weight: 0.071319 + Group: 'RightUpLeg', Weight: 0.319277 +Vertex 5224: +Vertex groups: 4 + Group: 'Hips', Weight: 0.080969 + Group: 'Spine', Weight: 0.487157 + Group: 'Spine1', Weight: 0.091138 + Group: 'RightUpLeg', Weight: 0.324639 +Vertex 5225: +Vertex groups: 4 + Group: 'Hips', Weight: 0.042851 + Group: 'Spine', Weight: 0.522539 + Group: 'Spine1', Weight: 0.103311 + Group: 'RightUpLeg', Weight: 0.310416 +Vertex 5226: +Vertex groups: 4 + Group: 'Hips', Weight: 0.004480 + Group: 'Spine', Weight: 0.569710 + Group: 'Spine1', Weight: 0.102889 + Group: 'RightUpLeg', Weight: 0.281493 +Vertex 5227: +Vertex groups: 4 + Group: 'Hips', Weight: 0.002866 + Group: 'Spine', Weight: 0.785358 + Group: 'Spine1', Weight: 0.082830 + Group: 'RightUpLeg', Weight: 0.077785 +Vertex 5228: +Vertex groups: 3 + Group: 'Spine', Weight: 0.719797 + Group: 'Spine1', Weight: 0.094185 + Group: 'RightUpLeg', Weight: 0.138291 +Vertex 5229: +Vertex groups: 3 + Group: 'Spine', Weight: 0.648894 + Group: 'Spine1', Weight: 0.101347 + Group: 'RightUpLeg', Weight: 0.205099 +Vertex 5230: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5231: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5232: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5233: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5234: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5235: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5236: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5237: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5238: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5239: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5240: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5241: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5242: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5243: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5244: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5245: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5246: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5247: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5248: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5249: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5250: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5251: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5252: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5253: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5254: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5255: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5256: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5257: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5258: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5259: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5260: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5261: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5262: +Vertex groups: 1 + Group: 'Head', Weight: 1.000001 +Vertex 5263: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5264: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5265: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5266: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5267: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5268: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5269: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5270: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5271: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5272: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5273: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5274: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5275: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5276: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5277: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5278: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5279: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5280: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5281: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5282: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5283: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5284: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5285: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5286: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5287: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5288: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5289: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5290: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5291: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5292: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5293: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5294: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5295: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5296: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5297: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5298: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5299: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5300: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5301: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5302: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5303: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5304: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5305: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5306: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5307: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5308: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5309: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5310: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5311: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5312: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5313: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5314: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5315: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5316: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5317: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5318: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5319: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5320: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5321: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5322: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5323: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5324: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5325: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5326: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5327: +Vertex groups: 1 + Group: 'Head', Weight: 1.000002 +Vertex 5328: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 5329: +Vertex groups: 1 + Group: 'Head', Weight: 0.999988 +Vertex 5330: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 5331: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 5332: +Vertex groups: 2 + Group: 'Neck', Weight: 0.178895 + Group: 'Head', Weight: 0.821108 +Vertex 5333: +Vertex groups: 2 + Group: 'Neck', Weight: 0.174796 + Group: 'Head', Weight: 0.825206 +Vertex 5334: +Vertex groups: 2 + Group: 'Neck', Weight: 0.103010 + Group: 'Head', Weight: 0.896991 +Vertex 5335: +Vertex groups: 2 + Group: 'Neck', Weight: 0.120043 + Group: 'Head', Weight: 0.879958 +Vertex 5336: +Vertex groups: 1 + Group: 'Head', Weight: 0.999986 +Vertex 5337: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 5338: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 5339: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 5340: +Vertex groups: 1 + Group: 'Head', Weight: 0.999986 +Vertex 5341: +Vertex groups: 1 + Group: 'Head', Weight: 0.999987 +Vertex 5342: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5343: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5344: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5345: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5346: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5347: +Vertex groups: 1 + Group: 'Head', Weight: 0.999985 +Vertex 5348: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5349: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5350: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5351: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5352: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5353: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5354: +Vertex groups: 2 + Group: 'Neck', Weight: 0.220515 + Group: 'Head', Weight: 0.779487 +Vertex 5355: +Vertex groups: 2 + Group: 'Neck', Weight: 0.218319 + Group: 'Head', Weight: 0.781683 +Vertex 5356: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 5357: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 5358: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 5359: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 5360: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 5361: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902910 +Vertex 5362: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885658 +Vertex 5363: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885658 +Vertex 5364: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114321 + Group: 'Head', Weight: 0.885658 +Vertex 5365: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901468 +Vertex 5366: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901468 +Vertex 5367: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098546 + Group: 'Head', Weight: 0.901468 +Vertex 5368: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098543 + Group: 'Head', Weight: 0.901469 +Vertex 5369: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098549 + Group: 'Head', Weight: 0.901463 +Vertex 5370: +Vertex groups: 2 + Group: 'Neck', Weight: 0.098547 + Group: 'Head', Weight: 0.901465 +Vertex 5371: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114320 + Group: 'Head', Weight: 0.885664 +Vertex 5372: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114324 + Group: 'Head', Weight: 0.885660 +Vertex 5373: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114323 + Group: 'Head', Weight: 0.885661 +Vertex 5374: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097095 + Group: 'Head', Weight: 0.902912 +Vertex 5375: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097098 + Group: 'Head', Weight: 0.902909 +Vertex 5376: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097097 + Group: 'Head', Weight: 0.902910 +Vertex 5377: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097100 + Group: 'Head', Weight: 0.902907 +Vertex 5378: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097098 + Group: 'Head', Weight: 0.902909 +Vertex 5379: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097093 + Group: 'Head', Weight: 0.902914 +Vertex 5380: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114329 + Group: 'Head', Weight: 0.885655 +Vertex 5381: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114325 + Group: 'Head', Weight: 0.885660 +Vertex 5382: +Vertex groups: 2 + Group: 'Neck', Weight: 0.114318 + Group: 'Head', Weight: 0.885667 +Vertex 5383: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 5384: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 5385: +Vertex groups: 1 + Group: 'Head', Weight: 0.999984 +Vertex 5386: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5387: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5388: +Vertex groups: 1 + Group: 'Head', Weight: 0.999993 +Vertex 5389: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 5390: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 5391: +Vertex groups: 2 + Group: 'Neck', Weight: 0.097096 + Group: 'Head', Weight: 0.902911 +Vertex 5392: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5393: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5394: +Vertex groups: 1 + Group: 'Head', Weight: 0.999992 +Vertex 5395: +Vertex groups: 1 + Group: 'Head', Weight: 0.999983 +Vertex 5396: +Vertex groups: 1 + Group: 'Head', Weight: 0.999983 +Vertex 5397: +Vertex groups: 1 + Group: 'Head', Weight: 0.999983 +Vertex 5398: +Vertex groups: 5 + Group: 'RightHandIndex1', Weight: 0.146728 + Group: 'RightHandMiddle1', Weight: 0.519471 + Group: 'RightHandMiddle2', Weight: 0.097048 + Group: 'RightHandRing1', Weight: 0.132439 + Group: 'RightHandRing2', Weight: 0.039756 +Vertex 5399: +Vertex groups: 5 + Group: 'RightHandRing1', Weight: 0.566446 + Group: 'RightHandRing2', Weight: 0.198868 + Group: 'RightHandMiddle1', Weight: 0.125631 + Group: 'RightHandPinky1', Weight: 0.086894 + Group: 'RightHandPinky2', Weight: 0.022161 +=== Animation Keyframes === +=== Bone Transforms per Keyframe === +Keyframes: 31 +Frame: 0 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 1 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 2 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 3 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 4 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 5 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 6 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 7 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 8 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 9 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 10 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 11 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 12 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 13 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 14 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 15 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 16 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 17 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 18 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 19 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 20 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 21 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 22 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 23 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 24 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 25 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 26 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 27 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 28 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 29 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + +Frame: 30 + Bone: Hips + Location: + Rotation: + Matrix: + + + + + Bone: Spine + Location: + Rotation: + Matrix: + + + + + Bone: Spine1 + Location: + Rotation: + Matrix: + + + + + Bone: Spine2 + Location: + Rotation: + Matrix: + + + + + Bone: Neck + Location: + Rotation: + Matrix: + + + + + Bone: Head + Location: + Rotation: + Matrix: + + + + + Bone: LeftShoulder + Location: + Rotation: + Matrix: + + + + + Bone: LeftArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftForeArm + Location: + Rotation: + Matrix: + + + + + Bone: LeftHand + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: LeftHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightShoulder + Location: + Rotation: + Matrix: + + + + + Bone: RightArm + Location: + Rotation: + Matrix: + + + + + Bone: RightForeArm + Location: + Rotation: + Matrix: + + + + + Bone: RightHand + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandThumb3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandIndex3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandMiddle3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandRing3_end + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky1 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky2 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3 + Location: + Rotation: + Matrix: + + + + + Bone: RightHandPinky3_end + Location: + Rotation: + Matrix: + + + + + Bone: LeftUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftLeg + Location: + Rotation: + Matrix: + + + + + Bone: LeftFoot + Location: + Rotation: + Matrix: + + + + + Bone: LeftToeBase + Location: + Rotation: + Matrix: + + + + + Bone: RightUpLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightLeg + Location: + Rotation: + Matrix: + + + + + Bone: RightFoot + Location: + Rotation: + Matrix: + + + + + Bone: RightToeBase + Location: + Rotation: + Matrix: + + + + diff --git a/resources/w/interior/computer001_002.txt b/resources/w/interior/computer001_002.txt deleted file mode 100644 index f206454..0000000 --- a/resources/w/interior/computer001_002.txt +++ /dev/null @@ -1,182 +0,0 @@ -===Vertices (Split by UV/Normal): 119 -V 0: Pos(-0.321174, -0.380694, 0.03328) Norm(-0.577341, -0.577355, 0.577355) UV(0.622728, 0.985786) -V 1: Pos(-0.321174, -0.080976, -0.12644) Norm(-0.577341, 0.577355, -0.577355) UV(0.701365, 0.838077) -V 2: Pos(-0.321174, -0.380694, -0.12644) Norm(-0.57735, -0.577325, -0.577377) UV(0.701365, 0.985786) -V 3: Pos(-0.321174, -0.080976, 0.03328) Norm(-0.57735, 0.577325, 0.577377) UV(0.84347, 0.785241) -V 4: Pos(0.038545, -0.080976, -0.12644) Norm(0.57735, 0.577325, -0.577377) UV(0.764763, 0.962461) -V 5: Pos(-0.321174, -0.080976, -0.12644) Norm(-0.577341, 0.577355, -0.577355) UV(0.764763, 0.785276) -V 6: Pos(0.038545, -0.080976, 0.03328) Norm(0.577341, 0.577355, 0.577355) UV(-0.0, 0.985999) -V 7: Pos(0.038545, -0.380694, -0.12644) Norm(0.577341, -0.577355, -0.577355) UV(0.078326, 0.83829) -V 8: Pos(0.038545, -0.080976, -0.12644) Norm(0.57735, 0.577325, -0.577377) UV(0.078326, 0.985999) -V 9: Pos(0.038545, -0.380694, 0.03328) Norm(0.57735, -0.577325, 0.577377) UV(0.843469, 0.962426) -V 10: Pos(-0.321174, -0.380694, -0.12644) Norm(-0.57735, -0.577325, -0.577377) UV(0.922175, 0.785276) -V 11: Pos(0.038545, -0.380694, -0.12644) Norm(0.577341, -0.577355, -0.577355) UV(0.922175, 0.962461) -V 12: Pos(0.038545, -0.080976, -0.12644) Norm(0.57735, 0.577325, -0.577377) UV(0.717688, 0.0) -V 13: Pos(-0.321174, -0.380694, -0.12644) Norm(-0.57735, -0.577325, -0.577377) UV(0.865397, 0.17727) -V 14: Pos(-0.321174, -0.080976, -0.12644) Norm(-0.577341, 0.577355, -0.577355) UV(0.717688, 0.17727) -V 15: Pos(-0.321174, -0.080976, 0.03328) Norm(-0.57735, 0.577325, 0.577377) UV(0.764763, 0.60813) -V 16: Pos(0.038545, -0.380694, 0.03328) Norm(0.57735, -0.577325, 0.577377) UV(0.912472, 0.785241) -V 17: Pos(0.038545, -0.080976, 0.03328) Norm(0.577341, 0.577355, 0.577355) UV(0.764763, 0.785241) -V 18: Pos(-0.614892, 0.342792, 0.284424) Norm(-0.57734, -0.577355, 0.577355) UV(0.865397, 0.0) -V 19: Pos(-0.614892, 0.561483, -0.134268) Norm(-0.57734, 0.577355, -0.577355) UV(0.973174, 0.206141) -V 20: Pos(-0.614892, 0.342792, -0.134268) Norm(-0.577355, -0.577371, -0.577325) UV(0.865397, 0.206141) -V 21: Pos(-0.614892, 0.561483, 0.284424) Norm(-0.577355, 0.577371, 0.577325) UV(0.206323, 0.553153) -V 22: Pos(-0.0362, 0.561483, -0.134268) Norm(0.577355, 0.577371, -0.577325) UV(0.0, 0.83829) -V 23: Pos(-0.614892, 0.561483, -0.134268) Norm(-0.57734, 0.577355, -0.577355) UV(0.0, 0.553246) -V 24: Pos(-0.0362, 0.561483, 0.284424) Norm(0.57734, 0.577355, 0.577355) UV(0.867943, 0.277359) -V 25: Pos(-0.0362, 0.342792, -0.134268) Norm(0.57734, -0.577355, -0.577355) UV(0.97572, 0.482684) -V 26: Pos(-0.0362, 0.561483, -0.134268) Norm(0.577355, 0.577371, -0.577325) UV(0.867943, 0.482684) -V 27: Pos(-0.0362, 0.342792, 0.284424) Norm(0.577355, -0.577371, 0.577325) UV(0.206322, 0.838197) -V 28: Pos(-0.614892, 0.342792, -0.134268) Norm(-0.577355, -0.577371, -0.577325) UV(0.412645, 0.553246) -V 29: Pos(-0.0362, 0.342792, -0.134268) Norm(0.57734, -0.577355, -0.577355) UV(0.412645, 0.83829) -V 30: Pos(-0.0362, 0.561483, -0.134268) Norm(0.577355, 0.577371, -0.577325) UV(0.514952, 0.553153) -V 31: Pos(-0.614892, 0.342792, -0.134268) Norm(-0.577355, -0.577371, -0.577325) UV(0.622728, 0.838334) -V 32: Pos(-0.614892, 0.561483, -0.134268) Norm(-0.57734, 0.577355, -0.577355) UV(0.514952, 0.838334) -V 33: Pos(-0.614892, 0.561483, 0.284424) Norm(-0.577355, 0.577371, 0.577325) UV(0.622728, 0.553153) -V 34: Pos(-0.0362, 0.342792, 0.284424) Norm(0.577355, -0.577371, 0.577325) UV(0.730505, 0.838077) -V 35: Pos(-0.0362, 0.561483, 0.284424) Norm(0.57734, 0.577355, 0.577355) UV(0.622728, 0.838077) -V 36: Pos(-0.04492, -0.422368, 0.425114) Norm(-0.964019, -0.126929, -0.233572) UV(0.551589, 0.17729) -V 37: Pos(0.154366, -0.062626, -0.106573) Norm(0.092451, 0.354611, -0.930432) UV(0.717688, 0.0) -V 38: Pos(0.154366, -0.422368, -0.106573) Norm(0.09503, -0.342725, -0.934617) UV(0.717688, 0.17729) -V 39: Pos(-0.04492, -0.062626, 0.425114) Norm(-0.95805, 0.148128, -0.245352) UV(0.049252, 0.277359) -V 40: Pos(0.16953, 0.037313, 0.020093) Norm(0.364582, 0.91558, -0.169683) UV(0.275794, -0.0) -V 41: Pos(0.154366, -0.062626, -0.106573) Norm(0.092451, 0.354611, -0.930432) UV(0.226542, 0.277359) -V 42: Pos(-0.049131, 0.037313, 0.535225) Norm(-0.186957, 0.70094, 0.68828) UV(0.27372, 0.553153) -V 43: Pos(0.16953, -0.522306, 0.020093) Norm(0.391468, -0.900748, -0.188163) UV(0.537026, 0.277359) -V 44: Pos(0.16953, 0.037313, 0.020093) Norm(0.364582, 0.91558, -0.169683) UV(0.537026, 0.553153) -V 45: Pos(-0.049131, -0.522306, 0.535225) Norm(-0.192057, -0.680692, 0.706946) UV(0.551589, -0.0) -V 46: Pos(0.154366, -0.422368, -0.106573) Norm(0.09503, -0.342725, -0.934617) UV(0.325047, 0.277359) -V 47: Pos(0.16953, -0.522306, 0.020093) Norm(0.391468, -0.900748, -0.188163) UV(0.275794, -0.0) -V 48: Pos(0.16953, 0.037313, 0.020093) Norm(0.364582, 0.91558, -0.169683) UV(-0.0, 0.553153) -V 49: Pos(0.154366, -0.422368, -0.106573) Norm(0.09503, -0.342725, -0.934617) UV(0.27372, 0.326611) -V 50: Pos(0.154366, -0.062626, -0.106573) Norm(0.092451, 0.354611, -0.930432) UV(0.27372, 0.503901) -V 51: Pos(-0.04492, -0.062626, 0.425114) Norm(-0.95805, 0.148128, -0.245352) UV(0.537025, 0.503901) -V 52: Pos(-0.049131, -0.522306, 0.535225) Norm(-0.192057, -0.680692, 0.706946) UV(0.764763, 0.277359) -V 53: Pos(-0.049131, 0.037313, 0.535225) Norm(-0.186957, 0.70094, 0.68828) UV(0.764763, 0.553154) -V 54: Pos(0.269496, -0.567769, -0.048135) Norm(-0.468336, -0.577333, 0.668841) UV(0.730505, 0.883925) -V 55: Pos(0.26061, 0.103404, -0.098532) Norm(-0.66884, 0.577347, -0.468319) UV(0.755124, 0.553154) -V 56: Pos(0.26061, -0.567769, -0.098532) Norm(-0.668841, -0.57736, -0.468302) UV(0.755124, 0.883925) -V 57: Pos(0.269496, 0.103404, -0.048135) Norm(-0.468342, 0.577346, 0.668826) UV(0.893159, 0.482684) -V 58: Pos(0.468575, 0.103404, -0.135202) Norm(0.468342, 0.577346, -0.668826) UV(0.867943, 0.586724) -V 59: Pos(0.26061, 0.103404, -0.098532) Norm(-0.66884, 0.577347, -0.468319) UV(0.867943, 0.482698) -V 60: Pos(0.477461, 0.103404, -0.084805) Norm(0.66884, 0.577347, 0.468319) UV(0.97572, 0.60813) -V 61: Pos(0.468575, -0.567769, -0.135202) Norm(0.468336, -0.577333, -0.668841) UV(1.0, 0.277359) -V 62: Pos(0.468575, 0.103404, -0.135202) Norm(0.468342, 0.577346, -0.668826) UV(1.0, 0.60813) -V 63: Pos(0.468575, -0.567769, -0.135202) Norm(0.468336, -0.577333, -0.668841) UV(0.918374, 0.586724) -V 64: Pos(0.269496, -0.567769, -0.048135) Norm(-0.468336, -0.577333, 0.668841) UV(0.893159, 0.482684) -V 65: Pos(0.26061, -0.567769, -0.098532) Norm(-0.668841, -0.57736, -0.468302) UV(0.918374, 0.482698) -V 66: Pos(0.468575, 0.103404, -0.135202) Norm(0.468342, 0.577346, -0.668826) UV(0.412645, 0.883924) -V 67: Pos(0.26061, -0.567769, -0.098532) Norm(-0.668841, -0.57736, -0.468302) UV(0.514952, 0.553153) -V 68: Pos(0.26061, 0.103404, -0.098532) Norm(-0.66884, 0.577347, -0.468319) UV(0.514952, 0.883924) -V 69: Pos(0.269496, 0.103404, -0.048135) Norm(-0.468342, 0.577346, 0.668826) UV(0.764763, 0.60813) -V 70: Pos(0.477461, -0.567769, -0.084805) Norm(0.668841, -0.57736, 0.468302) UV(0.867943, 0.277359) -V 71: Pos(0.477461, 0.103404, -0.084805) Norm(0.66884, 0.577347, 0.468319) UV(0.867943, 0.60813) -V 72: Pos(0.243142, 0.221328, -0.083115) Norm(-0.577358, -0.577347, 0.577347) UV(0.551589, 0.260175) -V 73: Pos(0.243142, 0.285422, -0.127209) Norm(-0.577358, 0.577347, -0.577347) UV(0.573298, 0.228587) -V 74: Pos(0.243142, 0.221328, -0.127209) Norm(-0.577359, -0.577332, -0.577359) UV(0.573298, 0.260175) -V 75: Pos(0.243142, 0.285422, -0.083115) Norm(-0.577359, 0.577332, 0.577359) UV(0.658221, 0.17729) -V 76: Pos(0.347237, 0.285422, -0.127209) Norm(0.577359, 0.577332, -0.577359) UV(0.636492, 0.228573) -V 77: Pos(0.243142, 0.285422, -0.127209) Norm(-0.577358, 0.577347, -0.577347) UV(0.636492, 0.177299) -V 78: Pos(0.347237, 0.285422, -0.083115) Norm(0.577358, 0.577347, 0.577347) UV(0.573298, 0.260175) -V 79: Pos(0.347237, 0.221328, -0.127209) Norm(0.577358, -0.577347, -0.577347) UV(0.594921, 0.228588) -V 80: Pos(0.347237, 0.285422, -0.127209) Norm(0.577359, 0.577332, -0.577359) UV(0.594921, 0.260175) -V 81: Pos(0.347237, 0.221328, -0.083115) Norm(0.577359, -0.577332, 0.577359) UV(0.614763, 0.228563) -V 82: Pos(0.243142, 0.221328, -0.127209) Norm(-0.577359, -0.577332, -0.577359) UV(0.636492, 0.177299) -V 83: Pos(0.347237, 0.221328, -0.127209) Norm(0.577358, -0.577347, -0.577347) UV(0.636492, 0.228573) -V 84: Pos(0.347237, 0.285422, -0.127209) Norm(0.577359, 0.577332, -0.577359) UV(0.551589, 0.17729) -V 85: Pos(0.243142, 0.221328, -0.127209) Norm(-0.577359, -0.577332, -0.577359) UV(0.583176, 0.228588) -V 86: Pos(0.243142, 0.285422, -0.127209) Norm(-0.577358, 0.577347, -0.577347) UV(0.551589, 0.228588) -V 87: Pos(0.243142, 0.285422, -0.083115) Norm(-0.577359, 0.577332, 0.577359) UV(0.583176, 0.17729) -V 88: Pos(0.347237, 0.221328, -0.083115) Norm(0.577359, -0.577332, 0.577359) UV(0.614763, 0.228541) -V 89: Pos(0.347237, 0.285422, -0.083115) Norm(0.577358, 0.577347, 0.577347) UV(0.583176, 0.228541) -V 90: Pos(-0.321174, -0.080976, 0.03328) Norm(-0.57735, 0.577325, 0.577377) UV(0.622728, 0.838077) -V 91: Pos(0.038545, -0.080976, 0.03328) Norm(0.577341, 0.577355, 0.577355) UV(0.84347, 0.962426) -V 92: Pos(0.038545, -0.380694, 0.03328) Norm(0.57735, -0.577325, 0.577377) UV(-0.0, 0.83829) -V 93: Pos(-0.321174, -0.380694, 0.03328) Norm(-0.577341, -0.577355, 0.577355) UV(0.843469, 0.785241) -V 94: Pos(0.038545, -0.380694, -0.12644) Norm(0.577341, -0.577355, -0.577355) UV(0.865397, 0.0) -V 95: Pos(-0.321174, -0.380694, 0.03328) Norm(-0.577341, -0.577355, 0.577355) UV(0.912472, 0.60813) -V 96: Pos(-0.614892, 0.561483, 0.284424) Norm(-0.577355, 0.577371, 0.577325) UV(0.973174, 0.0) -V 97: Pos(-0.0362, 0.561483, 0.284424) Norm(0.57734, 0.577355, 0.577355) UV(0.206323, 0.838198) -V 98: Pos(-0.0362, 0.342792, 0.284424) Norm(0.577355, -0.577371, 0.577325) UV(0.97572, 0.277359) -V 99: Pos(-0.614892, 0.342792, 0.284424) Norm(-0.57734, -0.577355, 0.577355) UV(0.206322, 0.553153) -V 100: Pos(-0.0362, 0.342792, -0.134268) Norm(0.57734, -0.577355, -0.577355) UV(0.622728, 0.553153) -V 101: Pos(-0.614892, 0.342792, 0.284424) Norm(-0.57734, -0.577355, 0.577355) UV(0.730505, 0.553153) -V 102: Pos(-0.04492, -0.062626, 0.425114) Norm(-0.95805, 0.148128, -0.245352) UV(0.551589, 0.0) -V 103: Pos(-0.049131, 0.037313, 0.535225) Norm(-0.186957, 0.70094, 0.68828) UV(-0.0, -0.0) -V 104: Pos(-0.049131, -0.522306, 0.535225) Norm(-0.192057, -0.680692, 0.706946) UV(0.27372, 0.277359) -V 105: Pos(-0.04492, -0.422368, 0.425114) Norm(-0.964019, -0.126929, -0.233572) UV(0.502336, 0.277359) -V 106: Pos(0.16953, -0.522306, 0.020093) Norm(0.391468, -0.900748, -0.188163) UV(-0.0, 0.277359) -V 107: Pos(-0.04492, -0.422368, 0.425114) Norm(-0.964019, -0.126929, -0.233572) UV(0.537025, 0.326611) -V 108: Pos(0.269496, 0.103404, -0.048135) Norm(-0.468342, 0.577346, 0.668826) UV(0.730505, 0.553154) -V 109: Pos(0.477461, 0.103404, -0.084805) Norm(0.66884, 0.577347, 0.468319) UV(0.893159, 0.58671) -V 110: Pos(0.477461, -0.567769, -0.084805) Norm(0.668841, -0.57736, 0.468302) UV(0.97572, 0.277359) -V 111: Pos(0.477461, -0.567769, -0.084805) Norm(0.668841, -0.57736, 0.468302) UV(0.893159, 0.58671) -V 112: Pos(0.468575, -0.567769, -0.135202) Norm(0.468336, -0.577333, -0.668841) UV(0.412645, 0.553153) -V 113: Pos(0.269496, -0.567769, -0.048135) Norm(-0.468336, -0.577333, 0.668841) UV(0.764763, 0.277359) -V 114: Pos(0.243142, 0.285422, -0.083115) Norm(-0.577359, 0.577332, 0.577359) UV(0.551589, 0.228587) -V 115: Pos(0.347237, 0.285422, -0.083115) Norm(0.577358, 0.577347, 0.577347) UV(0.658221, 0.228563) -V 116: Pos(0.347237, 0.221328, -0.083115) Norm(0.577359, -0.577332, 0.577359) UV(0.573298, 0.228588) -V 117: Pos(0.243142, 0.221328, -0.083115) Norm(-0.577358, -0.577347, 0.577347) UV(0.614763, 0.17729) -V 118: Pos(0.347237, 0.221328, -0.127209) Norm(0.577358, -0.577347, -0.577347) UV(0.583176, 0.17729) - -===Triangles (Indices): 60 -Tri: 0 1 2 -Tri: 3 4 5 -Tri: 6 7 8 -Tri: 9 10 11 -Tri: 12 13 14 -Tri: 15 16 17 -Tri: 18 19 20 -Tri: 21 22 23 -Tri: 24 25 26 -Tri: 27 28 29 -Tri: 30 31 32 -Tri: 33 34 35 -Tri: 36 37 38 -Tri: 39 40 41 -Tri: 42 43 44 -Tri: 45 46 47 -Tri: 48 49 50 -Tri: 51 52 53 -Tri: 54 55 56 -Tri: 57 58 59 -Tri: 60 61 62 -Tri: 63 64 65 -Tri: 66 67 68 -Tri: 69 70 71 -Tri: 72 73 74 -Tri: 75 76 77 -Tri: 78 79 80 -Tri: 81 82 83 -Tri: 84 85 86 -Tri: 87 88 89 -Tri: 0 90 1 -Tri: 3 91 4 -Tri: 6 92 7 -Tri: 9 93 10 -Tri: 12 94 13 -Tri: 15 95 16 -Tri: 18 96 19 -Tri: 21 97 22 -Tri: 24 98 25 -Tri: 27 99 28 -Tri: 30 100 31 -Tri: 33 101 34 -Tri: 36 102 37 -Tri: 39 103 40 -Tri: 42 104 43 -Tri: 45 105 46 -Tri: 48 106 49 -Tri: 51 107 52 -Tri: 54 108 55 -Tri: 57 109 58 -Tri: 60 110 61 -Tri: 63 111 64 -Tri: 66 112 67 -Tri: 69 113 70 -Tri: 72 114 73 -Tri: 75 115 76 -Tri: 78 116 79 -Tri: 81 117 82 -Tri: 84 118 85 -Tri: 87 117 88 diff --git a/resources/w/interior/computer001_004.txt b/resources/w/interior/computer001_004.txt new file mode 100644 index 0000000..514df28 --- /dev/null +++ b/resources/w/interior/computer001_004.txt @@ -0,0 +1,172 @@ +===Vertices (Split by UV/Normal): 109 +V 0: Pos(0.02036, -0.316218, 0.03328) Norm(-0.577372, -0.57734, 0.57734) UV(0.582523, 0.71522) +V 1: Pos(0.02036, -0.14665, -0.12644) Norm(-0.577372, 0.57734, -0.57734) UV(0.672618, 0.618748) +V 2: Pos(0.02036, -0.316218, -0.12644) Norm(-0.577341, -0.577361, -0.577348) UV(0.672618, 0.715234) +V 3: Pos(0.02036, -0.14665, 0.03328) Norm(-0.577341, 0.577354, 0.577356) UV(0.0, 0.850964) +V 4: Pos(0.132668, -0.14665, -0.12644) Norm(0.543117, 0.593412, -0.594042) UV(0.063904, 0.941846) +V 5: Pos(0.02036, -0.14665, -0.12644) Norm(-0.577372, 0.57734, -0.57734) UV(0.0, 0.941846) +V 6: Pos(0.14154, -0.14665, 0.03328) Norm(0.584307, 0.579838, 0.567779) UV(0.672958, 0.522251) +V 7: Pos(0.14154, -0.316218, -0.12644) Norm(0.583322, -0.568894, -0.579737) UV(0.582523, 0.618734) +V 8: Pos(0.132668, -0.14665, -0.12644) Norm(0.543117, 0.593412, -0.594042) UV(0.582929, 0.522217) +V 9: Pos(0.14154, -0.316218, 0.03328) Norm(0.577339, -0.577359, 0.577353) UV(0.068952, 0.850964) +V 10: Pos(0.02036, -0.316218, -0.12644) Norm(-0.577341, -0.577361, -0.577348) UV(0.137905, 0.941846) +V 11: Pos(0.14154, -0.316218, -0.12644) Norm(0.583322, -0.568894, -0.579737) UV(0.068952, 0.941846) +V 12: Pos(0.132668, -0.14665, -0.12644) Norm(0.543117, 0.593412, -0.594042) UV(0.646367, 0.811719) +V 13: Pos(0.02036, -0.316218, -0.12644) Norm(-0.577341, -0.577361, -0.577348) UV(0.582523, 0.908205) +V 14: Pos(0.02036, -0.14665, -0.12644) Norm(-0.577372, 0.57734, -0.57734) UV(0.582523, 0.811719) +V 15: Pos(0.02036, -0.14665, 0.03328) Norm(-0.577341, 0.577354, 0.577356) UV(0.582523, 0.811719) +V 16: Pos(0.14154, -0.316218, 0.03328) Norm(0.577339, -0.577359, 0.577353) UV(0.65141, 0.715234) +V 17: Pos(0.14154, -0.14665, 0.03328) Norm(0.584307, 0.579838, 0.567779) UV(0.65141, 0.811719) +V 18: Pos(-0.614892, 0.342792, 0.284424) Norm(-0.57734, -0.577355, 0.577355) UV(0.680198, 0.763823) +V 19: Pos(-0.614892, 0.561483, -0.134268) Norm(-0.57734, 0.577355, -0.577355) UV(0.804635, 0.999981) +V 20: Pos(-0.614892, 0.342792, -0.134268) Norm(-0.577355, -0.577371, -0.577325) UV(0.680198, 1.0) +V 21: Pos(-0.614892, 0.561483, 0.284424) Norm(-0.577355, 0.577371, 0.577325) UV(0.0, 0.850964) +V 22: Pos(-0.0362, 0.561483, -0.134268) Norm(0.577355, 0.577371, -0.577325) UV(0.238239, 0.521684) +V 23: Pos(-0.614892, 0.561483, -0.134268) Norm(-0.57734, 0.577355, -0.577355) UV(0.238239, 0.850964) +V 24: Pos(-0.0362, 0.561483, 0.284424) Norm(0.57734, 0.577355, 0.577355) UV(0.804635, 0.658012) +V 25: Pos(-0.0362, 0.342792, -0.134268) Norm(0.57734, -0.577355, -0.577355) UV(0.929069, 0.895159) +V 26: Pos(-0.0362, 0.561483, -0.134268) Norm(0.577355, 0.577371, -0.577325) UV(0.804635, 0.895235) +V 27: Pos(-0.0362, 0.342792, 0.284424) Norm(0.577355, -0.577371, 0.577325) UV(0.344284, 0.851497) +V 28: Pos(-0.614892, 0.342792, -0.134268) Norm(-0.577355, -0.577371, -0.577325) UV(0.582523, 0.522217) +V 29: Pos(-0.0362, 0.342792, -0.134268) Norm(0.57734, -0.577355, -0.577355) UV(0.582523, 0.851497) +V 30: Pos(-0.0362, 0.561483, -0.134268) Norm(0.577355, 0.577371, -0.577325) UV(0.929072, 0.657935) +V 31: Pos(-0.614892, 0.342792, -0.134268) Norm(-0.577355, -0.577371, -0.577325) UV(0.804635, 0.328968) +V 32: Pos(-0.614892, 0.561483, -0.134268) Norm(-0.57734, 0.577355, -0.577355) UV(0.929072, 0.328968) +V 33: Pos(-0.614892, 0.561483, 0.284424) Norm(-0.577355, 0.577371, 0.577325) UV(0.804635, 0.0) +V 34: Pos(-0.0362, 0.342792, 0.284424) Norm(0.577355, -0.577371, 0.577325) UV(0.929072, 0.328968) +V 35: Pos(-0.0362, 0.561483, 0.284424) Norm(0.57734, 0.577355, 0.577355) UV(0.804635, 0.328968) +V 36: Pos(-0.04492, -0.422368, 0.425114) Norm(-0.970839, -0.041701, -0.236076) UV(0.062426, 0.358244) +V 37: Pos(0.154366, -0.062626, -0.04817) Norm(0.071923, 0.11404, -0.990869) UV(0.344284, 0.15346) +V 38: Pos(0.154366, -0.422368, -0.04817) Norm(0.073067, -0.106497, -0.991625) UV(0.344284, 0.358155) +V 39: Pos(-0.04492, -0.062626, 0.425114) Norm(-0.970251, 0.045613, -0.237765) UV(0.062426, 0.153549) +V 40: Pos(0.16953, 0.207044, 0.020093) Norm(0.24987, 0.873883, -0.417005) UV(0.306911, -0.0) +V 41: Pos(-0.049131, 0.207044, 0.535225) Norm(-0.195195, 0.782445, 0.591336) UV(0.344284, 0.522217) +V 42: Pos(0.16953, -0.709618, 0.020093) Norm(0.2492, -0.870253, -0.424923) UV(0.647624, 0.0) +V 43: Pos(0.16953, 0.207044, 0.020093) Norm(0.24987, 0.873883, -0.417005) UV(0.647624, 0.521575) +V 44: Pos(-0.049131, -0.709618, 0.535225) Norm(-0.196826, -0.783515, 0.589376) UV(0.0, 0.521684) +V 45: Pos(0.16953, -0.709618, 0.020093) Norm(0.2492, -0.870253, -0.424923) UV(0.306911, 0.521586) +V 46: Pos(0.154366, -0.422368, -0.04817) Norm(0.073067, -0.106497, -0.991625) UV(0.685505, 0.163524) +V 47: Pos(0.154366, -0.062626, -0.04817) Norm(0.071923, 0.11404, -0.990869) UV(0.685505, 0.368215) +V 48: Pos(-0.049131, 0.207044, 0.535225) Norm(-0.195195, 0.782445, 0.591336) UV(0.0, 9.8e-05) +V 49: Pos(0.269496, -0.567769, -0.048135) Norm(-0.468336, -0.577333, 0.668841) UV(0.266327, 0.903586) +V 50: Pos(0.26061, 0.103404, -0.098532) Norm(-0.66884, 0.577347, -0.468319) UV(0.294091, 0.521694) +V 51: Pos(0.26061, -0.567769, -0.098532) Norm(-0.668841, -0.57736, -0.468302) UV(0.294091, 0.903596) +V 52: Pos(0.269496, 0.103404, -0.048135) Norm(-0.468342, 0.577346, 0.668826) UV(0.323209, 0.521684) +V 53: Pos(0.468575, 0.103404, -0.135202) Norm(0.468342, 0.577346, -0.668826) UV(0.294091, 0.641843) +V 54: Pos(0.26061, 0.103404, -0.098532) Norm(-0.66884, 0.577347, -0.468319) UV(0.294091, 0.521684) +V 55: Pos(0.477461, 0.103404, -0.084805) Norm(0.66884, 0.577347, 0.468319) UV(0.238239, 0.903578) +V 56: Pos(0.468575, -0.567769, -0.135202) Norm(0.468336, -0.577333, -0.668841) UV(0.266327, 0.521735) +V 57: Pos(0.468575, 0.103404, -0.135202) Norm(0.468342, 0.577346, -0.668826) UV(0.266327, 0.903629) +V 58: Pos(0.468575, -0.567769, -0.135202) Norm(0.468336, -0.577333, -0.668841) UV(0.323209, 0.762002) +V 59: Pos(0.269496, -0.567769, -0.048135) Norm(-0.468336, -0.577333, 0.668841) UV(0.294091, 0.641843) +V 60: Pos(0.26061, -0.567769, -0.098532) Norm(-0.668841, -0.57736, -0.468302) UV(0.323209, 0.641843) +V 61: Pos(0.468575, 0.103404, -0.135202) Norm(0.468342, 0.577346, -0.668826) UV(0.804635, 0.381902) +V 62: Pos(0.26061, -0.567769, -0.098532) Norm(-0.668841, -0.57736, -0.468302) UV(0.685505, 0.763804) +V 63: Pos(0.26061, 0.103404, -0.098532) Norm(-0.66884, 0.577347, -0.468319) UV(0.685505, 0.381902) +V 64: Pos(0.269496, 0.103404, -0.048135) Norm(-0.468342, 0.577346, 0.668826) UV(0.685505, 0.381902) +V 65: Pos(0.477461, -0.567769, -0.084805) Norm(0.668841, -0.57736, 0.468302) UV(0.804635, 0.0) +V 66: Pos(0.477461, 0.103404, -0.084805) Norm(0.66884, 0.577347, 0.468319) UV(0.804635, 0.381902) +V 67: Pos(0.243142, 0.221328, -0.083115) Norm(-0.577358, -0.577347, 0.577347) UV(0.137905, 0.887434) +V 68: Pos(0.243142, 0.285422, -0.127209) Norm(-0.577358, 0.577347, -0.577347) UV(0.162777, 0.850968) +V 69: Pos(0.243142, 0.221328, -0.127209) Norm(-0.577359, -0.577332, -0.577359) UV(0.162777, 0.887438) +V 70: Pos(0.243142, 0.285422, -0.083115) Norm(-0.577359, 0.577332, 0.577359) UV(0.65141, 0.774464) +V 71: Pos(0.347237, 0.285422, -0.127209) Norm(0.577359, 0.577332, -0.577359) UV(0.6765, 0.715234) +V 72: Pos(0.243142, 0.285422, -0.127209) Norm(-0.577358, 0.577347, -0.577347) UV(0.6765, 0.774464) +V 73: Pos(0.347237, 0.285422, -0.083115) Norm(0.577358, 0.577347, 0.577347) UV(0.65141, 0.870164) +V 74: Pos(0.347237, 0.221328, -0.127209) Norm(0.577358, -0.577347, -0.577347) UV(0.676393, 0.83371) +V 75: Pos(0.347237, 0.285422, -0.127209) Norm(0.577359, 0.577332, -0.577359) UV(0.676393, 0.870179) +V 76: Pos(0.347237, 0.221328, -0.083115) Norm(0.577359, -0.577332, 0.577359) UV(0.65141, 0.833694) +V 77: Pos(0.243142, 0.221328, -0.127209) Norm(-0.577359, -0.577332, -0.577359) UV(0.6765, 0.774464) +V 78: Pos(0.347237, 0.221328, -0.127209) Norm(0.577358, -0.577347, -0.577347) UV(0.6765, 0.833694) +V 79: Pos(0.347237, 0.285422, -0.127209) Norm(0.577359, 0.577332, -0.577359) UV(0.330561, 0.821176) +V 80: Pos(0.243142, 0.221328, -0.127209) Norm(-0.577359, -0.577332, -0.577359) UV(0.294091, 0.762002) +V 81: Pos(0.243142, 0.285422, -0.127209) Norm(-0.577358, 0.577347, -0.577347) UV(0.330561, 0.762002) +V 82: Pos(0.243142, 0.285422, -0.083115) Norm(-0.577359, 0.577332, 0.577359) UV(0.294091, 0.821176) +V 83: Pos(0.347237, 0.221328, -0.083115) Norm(0.577359, -0.577332, 0.577359) UV(0.330561, 0.880351) +V 84: Pos(0.347237, 0.285422, -0.083115) Norm(0.577358, 0.577347, 0.577347) UV(0.294091, 0.880351) +V 85: Pos(0.02036, -0.14665, 0.03328) Norm(-0.577341, 0.577354, 0.577356) UV(0.582523, 0.618734) +V 86: Pos(0.14154, -0.14665, 0.03328) Norm(0.584307, 0.579838, 0.567779) UV(0.068952, 0.850964) +V 87: Pos(0.14154, -0.316218, 0.03328) Norm(0.577339, -0.577359, 0.577353) UV(0.673017, 0.618734) +V 88: Pos(0.02036, -0.316218, 0.03328) Norm(-0.577372, -0.57734, 0.57734) UV(0.137905, 0.850964) +V 89: Pos(0.14154, -0.316218, -0.12644) Norm(0.583322, -0.568894, -0.579737) UV(0.65141, 0.908205) +V 90: Pos(0.02036, -0.316218, 0.03328) Norm(-0.577372, -0.57734, 0.57734) UV(0.582523, 0.715234) +V 91: Pos(-0.614892, 0.561483, 0.284424) Norm(-0.577355, 0.577371, 0.577325) UV(0.804635, 0.763804) +V 92: Pos(-0.0362, 0.561483, 0.284424) Norm(0.57734, 0.577355, 0.577355) UV(0.0, 0.521684) +V 93: Pos(-0.0362, 0.342792, 0.284424) Norm(0.577355, -0.577371, 0.577325) UV(0.929069, 0.657935) +V 94: Pos(-0.614892, 0.342792, 0.284424) Norm(-0.57734, -0.577355, 0.577355) UV(0.344284, 0.522217) +V 95: Pos(-0.0362, 0.342792, -0.134268) Norm(0.57734, -0.577355, -0.577355) UV(0.804635, 0.657935) +V 96: Pos(-0.614892, 0.342792, 0.284424) Norm(-0.57734, -0.577355, 0.577355) UV(0.929072, 0.0) +V 97: Pos(-0.049131, -0.709618, 0.535225) Norm(-0.196826, -0.783515, 0.589376) UV(0.344284, 0.000642) +V 98: Pos(0.269496, 0.103404, -0.048135) Norm(-0.468342, 0.577346, 0.668826) UV(0.266327, 0.521684) +V 99: Pos(0.477461, 0.103404, -0.084805) Norm(0.66884, 0.577347, 0.468319) UV(0.323209, 0.641843) +V 100: Pos(0.477461, -0.567769, -0.084805) Norm(0.668841, -0.57736, 0.468302) UV(0.238239, 0.521684) +V 101: Pos(0.477461, -0.567769, -0.084805) Norm(0.668841, -0.57736, 0.468302) UV(0.294091, 0.762002) +V 102: Pos(0.468575, -0.567769, -0.135202) Norm(0.468336, -0.577333, -0.668841) UV(0.804635, 0.763804) +V 103: Pos(0.269496, -0.567769, -0.048135) Norm(-0.468336, -0.577333, 0.668841) UV(0.685505, 0.0) +V 104: Pos(0.243142, 0.285422, -0.083115) Norm(-0.577359, 0.577332, 0.577359) UV(0.137905, 0.850964) +V 105: Pos(0.347237, 0.285422, -0.083115) Norm(0.577358, 0.577347, 0.577347) UV(0.65141, 0.715234) +V 106: Pos(0.243142, 0.221328, -0.083115) Norm(-0.577358, -0.577347, 0.577347) UV(0.65141, 0.774464) +V 107: Pos(0.347237, 0.221328, -0.127209) Norm(0.577358, -0.577347, -0.577347) UV(0.294091, 0.821176) +V 108: Pos(0.243142, 0.221328, -0.083115) Norm(-0.577358, -0.577347, 0.577347) UV(0.330561, 0.821176) + +===Triangles (Indices): 60 +Tri: 0 1 2 +Tri: 3 4 5 +Tri: 6 7 8 +Tri: 9 10 11 +Tri: 12 13 14 +Tri: 15 16 17 +Tri: 18 19 20 +Tri: 21 22 23 +Tri: 24 25 26 +Tri: 27 28 29 +Tri: 30 31 32 +Tri: 33 34 35 +Tri: 36 37 38 +Tri: 39 40 37 +Tri: 41 42 43 +Tri: 44 38 45 +Tri: 43 46 47 +Tri: 39 44 48 +Tri: 49 50 51 +Tri: 52 53 54 +Tri: 55 56 57 +Tri: 58 59 60 +Tri: 61 62 63 +Tri: 64 65 66 +Tri: 67 68 69 +Tri: 70 71 72 +Tri: 73 74 75 +Tri: 76 77 78 +Tri: 79 80 81 +Tri: 82 83 84 +Tri: 0 85 1 +Tri: 3 86 4 +Tri: 6 87 7 +Tri: 9 88 10 +Tri: 12 89 13 +Tri: 15 90 16 +Tri: 18 91 19 +Tri: 21 92 22 +Tri: 24 93 25 +Tri: 27 94 28 +Tri: 30 95 31 +Tri: 33 96 34 +Tri: 36 39 37 +Tri: 39 48 40 +Tri: 41 97 42 +Tri: 44 36 38 +Tri: 43 42 46 +Tri: 39 36 44 +Tri: 49 98 50 +Tri: 52 99 53 +Tri: 55 100 56 +Tri: 58 101 59 +Tri: 61 102 62 +Tri: 64 103 65 +Tri: 67 104 68 +Tri: 70 105 71 +Tri: 73 76 74 +Tri: 76 106 77 +Tri: 79 107 80 +Tri: 82 108 83 diff --git a/resources/w/interior/computer_texture002.png b/resources/w/interior/computer_texture002.png new file mode 100644 index 0000000..a9947ae --- /dev/null +++ b/resources/w/interior/computer_texture002.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:365cb5586095b7202f03cecb2ea0179f1aac97a7da11dd6f4c8666bc628e9521 +size 370336 diff --git a/src/Character.cpp b/src/Character.cpp index 785c12f..4a2708f 100644 --- a/src/Character.cpp +++ b/src/Character.cpp @@ -7,6 +7,7 @@ #include "GameConstants.h" #include "Environment.h" + namespace ZL { const float ATTACK_COOLDOWN_TIME = 1.6f; @@ -94,6 +95,15 @@ Eigen::Vector3f Character::getCurrentNavigationTarget() const return walkTarget; } +void Character::stopInPlace() +{ + walkTarget = Eigen::Vector3f(position.x(), 0.f, position.z()); + requestedWalkTarget = walkTarget; + pathWaypoints.clear(); + currentWaypointIndex = 0; + onArrivedCallback = nullptr; +} + void Character::forceReplan() { if (!pathPlanner) { @@ -343,6 +353,18 @@ void Character::update(int64_t deltaMs) { } + if (!isPlayer && hp > 0.f && battle_state == 0 && maxHomeDrift > 0.f) { + homeDriftCheckTimer -= static_cast(deltaMs) / 1000.f; + if (homeDriftCheckTimer <= 0.f) { + homeDriftCheckTimer = HOME_DRIFT_CHECK_INTERVAL; + Eigen::Vector3f toHome = homePosition - position; + toHome.y() = 0.f; + if (!isMoving() && toHome.norm() > maxHomeDrift) { + setTarget(homePosition); + } + } + } + if (hitSparkEmitter.isConfigured()) { hitSparkEmitter.update(static_cast(deltaMs)); } diff --git a/src/Character.h b/src/Character.h index 38d7756..8b49224 100644 --- a/src/Character.h +++ b/src/Character.h @@ -61,6 +61,10 @@ public: const Eigen::Vector3f& getRequestedWalkTarget() const { return requestedWalkTarget; } Eigen::Vector3f getCurrentNavigationTarget() const; void forceReplan(); + // Cancels any active walk target and clears waypoints so the character + // stays at its current position. Used when an external push moves the + // character and we don't want it to walk back to where it was. + void stopInPlace(); // attackDirection is a world-space horizontal vector pointing from the @@ -110,6 +114,13 @@ public: float hp = 200.f; float initialHp = 200.f; + // The position the NPC should return to if pushed too far away. + // Initialised to the spawn position; updated whenever a script walk command is issued. + Eigen::Vector3f homePosition = Eigen::Vector3f::Zero(); + // Maximum allowed drift from homePosition before a return walk is triggered (metres). + // Set to 0 to disable drift recovery for this character. + float maxHomeDrift = 3.0f; + int battle_state = 0; bool resetAnim = false; @@ -163,6 +174,9 @@ private: static constexpr float WALK_THRESHOLD = 0.05f; static constexpr float TARGET_REPLAN_THRESHOLD = 0.25f; + static constexpr float HOME_DRIFT_CHECK_INTERVAL = 5.0f; + + float homeDriftCheckTimer = HOME_DRIFT_CHECK_INTERVAL; // Returns the animation state to actually play/draw, falling back to IDLE // if the requested state has no loaded animation. diff --git a/src/Game.cpp b/src/Game.cpp index 6f9e197..9af396b 100644 --- a/src/Game.cpp +++ b/src/Game.cpp @@ -233,9 +233,7 @@ namespace ZL }; - - - uniInteriorParams.teleportsJsonPath = "resources/config2/teleports.json"; + uniInteriorParams.teleportsJsonPath = "resources/config2/teleports_uni_interior.json"; uniInteriorParams.triggerZonesJsonPath = "resources/config2/trigger_zones_uni_interior.json"; uniInteriorParams.scriptPath = "resources/start_uni_interior.lua"; uniInteriorParams.interactiveObjectsJsonPath = "resources/config2/interactive_objects_uni_interior.json"; diff --git a/src/Location.cpp b/src/Location.cpp index 9e84153..99a34bb 100644 --- a/src/Location.cpp +++ b/src/Location.cpp @@ -111,6 +111,7 @@ namespace ZL npcs = GameObjectLoader::loadAndCreate_Npcs(params.npcsJsonPath, CONST_ZIP_FILE); for (auto& npc : npcs) { if (!npc) continue; + npc->homePosition = Eigen::Vector3f(npc->position.x(), 0.f, npc->position.z()); if (npc->canAttack) { npc->setupHitSparks(sparkTexture); npc->attackTarget = player.get(); @@ -297,6 +298,7 @@ namespace ZL const auto addCharacter = [&](const Character* other) { if (!other || other == self) return; if (other->hp <= 0.f || !other->enabled) return; + if (other->isMoving()) return; if (distancePointToSegmentXZ(other->position, start, end) > kDynamicObstacleInfluenceDist) { return; @@ -304,7 +306,7 @@ namespace ZL PathFinder::DynamicObstacle obs; obs.position = Eigen::Vector3f(other->position.x(), navigation->getFloorY(), other->position.z()); - obs.radius = (std::max)(0.0f, other->collisionRadius); + obs.radius = (std::max)(0.0f, other->collisionRadius * 0.6f); dynamicObstacles.push_back(obs); }; @@ -313,7 +315,7 @@ namespace ZL addCharacter(npc.get()); } - return navigation->findPath(start, end, dynamicObstacles); + return navigation->findPathToNearest(start, end, dynamicObstacles); }; }; @@ -981,6 +983,30 @@ namespace ZL return navigation->setAreaAvailable(areaName, available); } + void Location::nudgeCharacterAside(Character* standing, const Eigen::Vector3f& awayFrom) + { + if (!standing || standing->isPlayer) return; + if (!navigation || !navigation->isReady()) return; + + static constexpr float kNudgeDist = 1.2f; + + Eigen::Vector3f dir = standing->position - awayFrom; + dir.y() = 0.f; + if (dir.norm() < 1e-3f) dir = Eigen::Vector3f(1.f, 0.f, 0.f); + else dir.normalize(); + + const float angles[] = { 0.f, static_cast(M_PI * 0.5), static_cast(-M_PI * 0.5), static_cast(M_PI) }; + for (float angle : angles) { + Eigen::Vector3f rotated = Eigen::AngleAxisf(angle, Eigen::Vector3f::UnitY()) * dir; + Eigen::Vector3f candidate = standing->position + rotated * kNudgeDist; + candidate.y() = 0.f; + if (navigation->isWalkable(candidate)) { + standing->setTarget(candidate); + return; + } + } + } + void Location::resolveCharacterCollisions() { std::vector characters; @@ -1039,6 +1065,9 @@ namespace ZL newB.z() += normal.y() * push; newB.y() = 0.f; + const bool aWasMoving = a->isMoving(); + const bool bWasMoving = b->isMoving(); + if (navigation && navigation->isReady()) { const bool aOk = navigation->isWalkable(newA); const bool bOk = navigation->isWalkable(newB); @@ -1058,6 +1087,15 @@ namespace ZL a->position = newA; b->position = newB; } + + if (a->isPlayer && !aWasMoving) a->stopInPlace(); + if (b->isPlayer && !bWasMoving) b->stopInPlace(); + + if (aWasMoving && !bWasMoving) { + nudgeCharacterAside(b, a->position); + } else if (bWasMoving && !aWasMoving) { + nudgeCharacterAside(a, b->position); + } } } } @@ -1066,8 +1104,8 @@ namespace ZL void Location::updateDynamicReplans(int64_t deltaMs) { static constexpr float kMovedEps = 0.05f; - static constexpr float kReplanTriggerDist = 1.1f; - static constexpr int64_t kReplanCooldownMs = 300; + static constexpr float kReplanTriggerDist = 1.8f; + static constexpr int64_t kReplanCooldownMs = 500; for (auto it = replanCooldownRemainingMs.begin(); it != replanCooldownRemainingMs.end();) { it->second -= deltaMs; diff --git a/src/Location.h b/src/Location.h index 4f5b508..9bdfb27 100644 --- a/src/Location.h +++ b/src/Location.h @@ -151,6 +151,7 @@ namespace ZL void loadTeleportZones(const std::string& jsonPath, const char* zipFile); void loadTriggerZones(const std::string& jsonPath, const char* zipFile); void updateTriggerZones(const Eigen::Vector3f& playerPos); + void nudgeCharacterAside(Character* standing, const Eigen::Vector3f& awayFrom); std::unordered_map lastCharacterPositions; std::unordered_map replanCooldownRemainingMs; diff --git a/src/ScriptEngine.cpp b/src/ScriptEngine.cpp index 7c63bc8..15436f8 100644 --- a/src/ScriptEngine.cpp +++ b/src/ScriptEngine.cpp @@ -57,6 +57,7 @@ namespace ZL { } }; } + npcs[index]->homePosition = Eigen::Vector3f(x, 0.f, z); npcs[index]->setTarget(Eigen::Vector3f(x, y, z), std::move(cb)); }); @@ -104,7 +105,7 @@ namespace ZL { api.set_function("set_object_rotation", [game](const std::string& objectName, float value) { for (auto& intObj : game->interactiveObjects) { if (intObj.loadedObject.name == objectName) { - intObj.rotationY = value; + intObj.rotationY = value * static_cast(M_PI) / 180.f; std::cout << "[script] set_object_rotation: " << objectName << " " << value << std::endl; return; } @@ -316,7 +317,7 @@ namespace ZL { npcs[index]->setTarget(pos); }); - // npc_set_rotation(index, angle) — sets NPC facing angle around Y axis (radians). + // npc_set_rotation(index, angle) — sets NPC facing angle around Y axis (degrees). api.set_function("npc_set_rotation", [game](int index, float angle) { auto& npcs = game->npcs; @@ -324,8 +325,9 @@ namespace ZL { std::cerr << "[script] npc_set_rotation: index " << index << " out of range\n"; return; } - npcs[index]->facingAngle = angle; - npcs[index]->targetFacingAngle = angle; + const float rad = angle * static_cast(M_PI) / 180.f; + npcs[index]->facingAngle = rad; + npcs[index]->targetFacingAngle = rad; }); // set_npc_enabled(index, enabled) diff --git a/src/items/GameObjectLoader.cpp b/src/items/GameObjectLoader.cpp index 765dc13..4823785 100644 --- a/src/items/GameObjectLoader.cpp +++ b/src/items/GameObjectLoader.cpp @@ -119,13 +119,14 @@ namespace ZL { else obj.mesh.data = LoadFromTextFile02(data.meshPath, zipPath); + constexpr float kDeg2Rad = static_cast(M_PI) / 180.0f; Eigen::Quaternionf rot = Eigen::Quaternionf::Identity(); if (data.rotationX != 0.0f) - rot = Eigen::Quaternionf(Eigen::AngleAxisf(data.rotationX, Eigen::Vector3f::UnitX())) * rot; + rot = Eigen::Quaternionf(Eigen::AngleAxisf(data.rotationX * kDeg2Rad, Eigen::Vector3f::UnitX())) * rot; if (data.rotationY != 0.0f) - rot = Eigen::Quaternionf(Eigen::AngleAxisf(data.rotationY, Eigen::Vector3f::UnitY())) * rot; + rot = Eigen::Quaternionf(Eigen::AngleAxisf(data.rotationY * kDeg2Rad, Eigen::Vector3f::UnitY())) * rot; if (data.rotationZ != 0.0f) - rot = Eigen::Quaternionf(Eigen::AngleAxisf(data.rotationZ, Eigen::Vector3f::UnitZ())) * rot; + rot = Eigen::Quaternionf(Eigen::AngleAxisf(data.rotationZ * kDeg2Rad, Eigen::Vector3f::UnitZ())) * rot; obj.mesh.data.RotateByMatrix(rot.toRotationMatrix()); if (data.scale != 1.0f) @@ -262,7 +263,7 @@ namespace ZL { data.modelCorrectionRotX = item.value("modelCorrectionRotX", 0.0f) * static_cast(M_PI) / 180.0f; data.modelCorrectionRotY = item.value("modelCorrectionRotY", 0.0f) * static_cast(M_PI) / 180.0f; data.modelCorrectionRotZ = item.value("modelCorrectionRotZ", 0.0f) * static_cast(M_PI) / 180.0f; - data.facingAngle = item.value("facingAngle", 0.0f); + data.facingAngle = item.value("facingAngle", 0.0f) * static_cast(M_PI) / 180.0f; data.hp = item.value("hp", 100.0f); data.canAttack = item.value("canAttack", false); data.enabled = item.value("enabled", true); diff --git a/src/navigation/PathFinder.cpp b/src/navigation/PathFinder.cpp index 9454be4..0cb27a5 100644 --- a/src/navigation/PathFinder.cpp +++ b/src/navigation/PathFinder.cpp @@ -397,6 +397,124 @@ std::vector PathFinder::findPath(const Eigen::Vector3f& start, return path; } +std::vector PathFinder::findNearestReachableImpl( + const Eigen::Vector3f& start, + const Eigen::Vector3f& end, + const std::vector& walkableGrid) const +{ + if (!ready || walkableGrid.empty()) return {}; + + Cell startCell; + Cell endCell; + if (!findNearestWalkableCell(start, startCell, walkableGrid)) return {}; + if (!findNearestWalkableCell(end, endCell, walkableGrid)) return {}; + + struct QueueNode { + int index = 0; + float priority = 0.0f; + bool operator<(const QueueNode& other) const { return priority > other.priority; } + }; + + const int cellCount = gridWidth * gridDepth; + std::vector cost(static_cast(cellCount), INF_COST); + std::vector cameFrom(static_cast(cellCount), -1); + std::priority_queue open; + + const int startIndex = indexOf(startCell); + const int endIndex = indexOf(endCell); + + cost[static_cast(startIndex)] = 0.f; + open.push({ startIndex, 0.f }); + + int bestIndex = startIndex; + float bestDist = distanceCells(startCell, endCell); + + static const int offsets[8][2] = { + { 1, 0 }, { -1, 0 }, { 0, 1 }, { 0, -1 }, + { 1, 1 }, { 1, -1 }, { -1, 1 }, { -1, -1 } + }; + + while (!open.empty()) { + const QueueNode current = open.top(); + open.pop(); + + if (current.index == endIndex) { + bestIndex = endIndex; + break; + } + + if (cost[static_cast(current.index)] < current.priority - distanceCells({ current.index % gridWidth, current.index / gridWidth }, endCell)) { + continue; // stale entry + } + + const Cell currentCell{ current.index % gridWidth, current.index / gridWidth }; + const float d = distanceCells(currentCell, endCell); + if (d < bestDist) { + bestDist = d; + bestIndex = current.index; + } + + for (const auto& offset : offsets) { + Cell next{ currentCell.x + offset[0], currentCell.z + offset[1] }; + if (!isCellWalkable(next, walkableGrid)) continue; + + const bool diagonal = offset[0] != 0 && offset[1] != 0; + if (diagonal) { + Cell h{ currentCell.x + offset[0], currentCell.z }; + Cell v{ currentCell.x, currentCell.z + offset[1] }; + if (!isCellWalkable(h, walkableGrid) || !isCellWalkable(v, walkableGrid)) continue; + } + + const int nextIndex = indexOf(next); + const float stepCost = diagonal ? 1.41421356f : 1.0f; + const float newCost = cost[static_cast(current.index)] + stepCost; + if (newCost >= cost[static_cast(nextIndex)]) continue; + + cost[static_cast(nextIndex)] = newCost; + cameFrom[static_cast(nextIndex)] = current.index; + open.push({ nextIndex, newCost + distanceCells(next, endCell) }); + } + } + + if (bestIndex == startIndex) return {}; + + std::vector cells; + for (int cur = bestIndex; cur != -1; cur = cameFrom[static_cast(cur)]) { + cells.push_back({ cur % gridWidth, cur / gridWidth }); + if (cur == startIndex) break; + } + std::reverse(cells.begin(), cells.end()); + cells = smoothCells(cells, walkableGrid); + + std::vector path; + path.reserve(cells.size()); + for (const Cell& cell : cells) path.push_back(cellCenter(cell)); + + if (!path.empty() && (path.front() - Eigen::Vector3f(start.x(), floorY, start.z())).norm() < cellSize * 0.75f) + path.erase(path.begin()); + + return path; +} + +std::vector PathFinder::findPathToNearest( + const Eigen::Vector3f& start, const Eigen::Vector3f& end) const +{ + auto path = findPath(start, end); + if (!path.empty()) return path; + return findNearestReachableImpl(start, end, walkable); +} + +std::vector PathFinder::findPathToNearest( + const Eigen::Vector3f& start, const Eigen::Vector3f& end, + const std::vector& dynamicObstacles) const +{ + auto path = findPath(start, end, dynamicObstacles); + if (!path.empty()) return path; + path = findPath(start, end); + if (!path.empty()) return path; + return findNearestReachableImpl(start, end, walkable); +} + bool PathFinder::setAreaAvailable(const std::string& areaName, bool available) { bool found = false; diff --git a/src/navigation/PathFinder.h b/src/navigation/PathFinder.h index 501eb85..c3669ca 100644 --- a/src/navigation/PathFinder.h +++ b/src/navigation/PathFinder.h @@ -41,6 +41,14 @@ public: const Eigen::Vector3f& end, const std::vector& dynamicObstacles) const; + // Like findPath, but when the destination is unreachable the character + // walks as close as possible instead of not moving at all. + std::vector findPathToNearest(const Eigen::Vector3f& start, + const Eigen::Vector3f& end) const; + std::vector findPathToNearest(const Eigen::Vector3f& start, + const Eigen::Vector3f& end, + const std::vector& dynamicObstacles) const; + bool setAreaAvailable(const std::string& areaName, bool available); bool isReady() const { return ready; } bool isWalkable(const Eigen::Vector3f& point) const; @@ -95,6 +103,12 @@ private: bool findNearestWalkableCell(const Eigen::Vector3f& point, Cell& out, const std::vector& walkableGrid) const; bool hasLineOfSight(const Cell& from, const Cell& to, const std::vector& walkableGrid) const; std::vector smoothCells(const std::vector& cells, const std::vector& walkableGrid) const; + + // A* that runs to exhaustion and returns a path to the reachable cell + // geometrically closest to end when end itself is unreachable. + std::vector findNearestReachableImpl(const Eigen::Vector3f& start, + const Eigen::Vector3f& end, + const std::vector& walkableGrid) const; }; } // namespace ZL